@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;

  /* フォントカラー */
  --font-primary: #222;
  --font-wht: #fff;
  --font-blue: #025bac;
  --font-light_blue: #00b0ed;
  --font-yellow: #f8e11b;

  --bg-a: #fff; /* 背景_白 */
  --bg-b: #025bac; /* 背景_青 */
  --bg-c: #00b0ed; /* 背景_水色 */
  --bg-d: #3db135; /* 背景_緑 */
  --bg-e: #fff000; /* 背景_黄 */
  --bg-f: #e9e9e9; /* 背景_ライトグレー */
  --bg-red: #ff4503; /* 背景_赤 */

  --ff: "Noto Sans JP", sans-serif;
  --ff_serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 8px;
    }
}
*{box-sizing: border-box;}
html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background: var(--bg-a);
  font-family: var(--ff);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--font-primary);
  overflow-x: hidden;
}
img{
  width: 100%;
  height: auto;
}
p{
  position: relative;
  text-align: justify;
  font-size: 1.6rem;
}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}
.wrapper{
  max-width: 1140px;
  width: 92.1875%;
  padding: 60px 50px;
  margin-inline: auto;
}
.item_container,
.item_container_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.item_container_r{
  flex-direction: row-reverse;
}
.itembox02{width: 48%;}
.itembox03{width: 32%;}
.itembox04{width: 23%;}

.pc_case{display: block;}
.sp_case{display: none;}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .wrapper{
    padding: 20px 10px;
  }
  p{font-size: 1.6rem;}
  .pc_case{display: none;}
  .sp_case{display: block;}
  .itembox02,
  .itembox03,
  .itembox04{
    width: 100%;
  }
}
/* ==============================
    共通設定
=============================== */
.col_blue{color: var(--bg-c);}
.bg_blue{background: var(--bg-b);}
.bg_wht{background: var(--bg-a);}
.bg_lightblue{background: rgba(0,176,237,0.2);}
.text_c{text-align: center;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mt40{margin-top: 40px;}
.border_gry{border: 1px solid #ccc;}

@media (max-width: 768px) {

}

/* ==============================
    header
=============================== */
header{
  position: relative;
  background: var(--bg-f);
  height: 100vh;
  /* max-height: 750px; */
  overflow: hidden;
  padding-bottom: 100px;
}
header img.pc_case{
  width: 100%;
  height: 100%;
  /* max-height: 750px; */
  object-fit: cover;
}
.head_btn{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.foot_btn{display: none;}
.head_btn_tel,
.head_btn_mail{
  display: inline-block;
  width: 300px;
  text-align: center;
  color: var(--font-wht);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 70px;
  margin: 0;
  padding: 0;
}
.head_btn_tel{
  background: var(--bg-d);
}
.head_btn_mail{
  background: var(--bg-red);
}
.head_btn_icon{
  display: inline-block;
  vertical-align: sub;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.head_btn_tel:hover,
.head_btn_mail:hover{
  opacity: 0.7;
}
.head_logo{
  position: absolute;
  top: 10px;
  left: 20px;
  width: 260px;
  height: 80px;
}
.before_wrap{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1140px;
  width: 92.1875%;
  height: 250px;
}
.mv_before{
  position: absolute;
  top: 0%;
  left: 5%;
  display: block;
  max-width: 440px;
  height: auto;
}

.mv_h1{
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:flex-end;
  max-width: 1140px;
  width: 92.1875%;
}
.mv_h1box:first-child{
  width: calc(100% - 390px);
}
.mv_h1box:last-child{
  width: 360px;
}
.title_mv img{
  display: block;
  max-width: 640px;
  width: 100%;
  margin-top: 5px;
}
/* .title_mv{
  color: var(--font-wht);
  font-size: 4.2rem;
  font-size: clamp(2.0rem, calc(1.5vw + 1.7rem), 4.2rem);
  font-weight: 700;
  line-height: 1.4;
} */
.title_mv span{
  text-decoration-color: var(--bg-b);
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding-bottom: 250px;
  }
  .head_btn{
    display: none;
    /* top: 94%;
    top: auto;
    bottom: 0;
    width: 100%; */
  }
  .head_btn_tel,
  .head_btn_mail{
    width: 50%;
    font-size: 1.7rem;
    line-height: 50px;
  }
  .head_btn_icon{
    width: 18px;
    height: 18px;
  }
  .head_logo{
    top: 0;
    left: auto;
    right: 10px;
    width: 170px;
    height: auto;
  }

  .mv_h1box:first-child,
  .mv_h1box:last-child{
    width: 100%;
  }
  .mv_h1{
    top: 3%;
    left: 3%;
    bottom: auto;
    transform: none;
    height: 100%;
    padding-bottom: 10%;
  }
  .mv_h1box:first-child{
    margin-bottom: auto;
  }
  .mv_h1box:last-child{
    width: 100%;
    /* margin-top: auto; */
    margin-bottom: 70%;
  }
  .mv_before{
    top: -5%;
    left: 0;
    max-width: 200px;
  }
  .mv_meda{
    display: block;
    width: 80%;
    margin-left: auto;
  }
  .foot_btn{
    background: var(--bg-b);
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 15px 30px;
    z-index: 999;
  }
  .foot_btn p{
    color: var(--font-wht);
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .foot_btn .head_btn_tel,
  .foot_btn .head_btn_mail{
    width: 49%;
    border-radius: 3px;
    border: 1px solid #fff;
    font-size: 1.5rem;
    line-height: 40px;
  }
  .foot_btn .head_btn_tel{
    margin-right: 2%;
  }
}

/* スマホ横向き（landscape）のとき */
@media screen and (max-width: 932px) and (orientation: landscape) {
  header{
    padding-bottom: 150px;
  }
  .head_logo{
    top: 0;
    width: 170px;
    height: auto;
  }
  .mv_h1{bottom: 42%;}
  .mv_h1box:first-child{
    width: calc(100% - 230px);
    padding-left: 230px;
  }
  .mv_h1box:last-child{
    width: 210px;
  }
  .mv_before{
    top: 7%;
    left: -16px;
    display: block;
    max-width: 220px;
  }
  #swiperArea .sliderArea{
    bottom: -140px;
  }
  .head_btn_tel,
  .head_btn_mail{
    font-size: 1.6rem;
    line-height: 50px;
  }

}

/* ==============================
    main
=============================== */
/* タイトル */
.title_main{
  position: relative;
  color: var(--bg-b);
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.fuchi_wht{
  -webkit-text-stroke: 6px #fff;
  text-stroke: 6px #fff;
  paint-order: stroke;
}
.fuchi_blue{
  -webkit-text-stroke: 6px var(--bg-b);
  text-stroke: 6px #025bac;
  paint-order: stroke;
}
@media (max-width: 768px) {
  .title_main{
    font-size: 2.5rem;
  }
}

/* slider */
#swiperArea{
  position: relative;
}
.sliderArea{
  position: absolute;
  /* top: -80px; */
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  width: 92.1875%;
}
.slider img {
  width: 100%;
  height: auto;
  display: block;
}
.slick-slide {
  padding: 0 10px 10px;
}
.slide-inner {
  box-shadow: 0 5px 15px rgba(0,0,0,0.35);
}
.slider .slick-track {
  margin: 0 ;
}

/* 矢印 */
/* デフォルトの文字矢印を消す */
.slick-prev:before,
.slick-next:before {
  content: "";
}

/* ボタンの基本スタイル */
.slick-prev, .slick-next {
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* 左矢印（三角形） */
.slick-prev {
  left: -20px;
}
.slick-prev:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #b4edfd;
}

/* 右矢印（三角形） */
.slick-next {
  right: -20px;
}
.slick-next:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #b4edfd;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
  background: #fff;
}

@media (max-width: 768px) {
  .sliderArea{
    top: 30px;
  }
  .slick-next{right: -10px;}
  .slick-prev {left: -10px;}
}


/* ビルオーナーにおすすめ */
#osusume{
  background: var(--bg-f);
  padding: 80px 0 60px;
}
#osusume .title_main{
  margin-bottom: 80px;
}
.title_osusume{
  color: var(--font-blue);
  font-size: 3.2rem;
  font-weight: 600;
  padding-left: 30px;
}

.title_osusume02{
  text-align: center;
}
.title_osusume02 span{
  display: inline-block;
  background: var(--bg-b);
  color: var(--font-wht);
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 50px;
  padding: 0 10px;
}

#osusume .item_container_r{
  position: relative;
  margin-bottom: 80px;
}.#osusume .item_container:last-of-type{
  margin-bottom: 0;
}
.osusume_icon{
  position: absolute;
  top: -50px;
  left: -90px;
  background: var(--bg-d);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
}
.osusume_icon img{
  width: 65%;
}

@media (max-width: 768px) {
  #osusume{
    padding: 40px 10px 0;
  }
  #osusume .title_main{
    margin-bottom: 20px;
  }
  #osusume .item_container_r{
    margin-bottom: 60px;
  }
  #osusume .item_container_r:last-of-type{
    margin-bottom: 30px;
  }
  .osusume_icon{
    top: -6px;
    left: 0;
    width: 60px;
    height: 60px;
  }
  .osusume_icon img{
    width: 80%;
  }
  .title_osusume{
    font-size: 2.8rem;
    padding-left: 65px;
  }
  .title_osusume02{
    margin-block: 15px 10px;
  }
  .title_osusume02 span{
    line-height: 40px;
  }
}

/* 特徴 */
#tokuchou{
  background: var(--bg-f);
  padding: 40px 0 60px;
}
/* #tokuchou .title_main{
  margin-bottom: 40px;
} */
.title_main_tokucho img{
  display: block;
  max-width: 500px;
  width: 90%;
  height: auto;
  margin:0 auto 40px;
}
.title_tokucho{
  text-align: center;
  font-size: 2.4rem;
  color: var(--bg-b);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title_tokucho02,
.title_tokucho02_c{
  position: relative;
  color: var(--bg-b);
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1.5;
}
.title_tokucho02_c{
  text-align: center;
}
.position_r{position: relative;}
.tokucho_icon{
  position: absolute;
  top: -65px;
  left: -90px;
  background: var(--bg-d);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
}
.tokucho_icon img{
    width: 65%;
}
.title_tokucho_img{
  display: block;
  max-width: 800px;
  width: 90%;
  height: auto;
  margin: 10px auto 0;
}

@media (max-width: 768px) {
 .title_main_tokucho img{
    margin-bottom: 20px;
  }
  .title_tokucho02,
  .title_tokucho02_c{
    font-size: 2.6rem;
  }
  .tokucho_icon{
    top: -50px;
    left: -40px;
    width: 80px;
    height: 80px;
  }
  .tokucho_icon img{
      width: 65%;
  }
}

#tokuchou .itembox03{
  border: 2px solid var(--bg-b);
  padding: 20px 40px;
}
#tokuchou .itembox03:nth-child(odd){
  background: rgba(2,91,172,0.15);
}
#tokuchou .itembox03:nth-child(even){
  background: rgba(0,176,237,0.15);
}
#tokuchou .item_container.mb60{
  margin-bottom: 60px;
}
.con_itembox{
  padding: 30px;
}

.tokuchobox{
  margin: 40px auto 20px;
}
.tokuchou_ba:first-child,
.tokuchou_ba:last-child{
  position: relative;
  background: var(--bg-a);
  width: 47%;
  padding: 20px;
}
.tokuchou_ba:first-child{
  border: 2px solid var(--bg-b);
}
.tokuchou_ba:last-child{
  border: 2px solid var(--bg-c);
}
.tab_before,
.tab_after{
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  text-align: center;
  color: var(--font-wht);
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 40px;
}
.tab_before{background: var(--bg-b);}
.tab_after{background: var(--bg-c);}

.tokuchou_price,
.case_detail{
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.tokuchou_price > div,
.tokuchou_price02 > div,
.case_detail > div {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #000;
  padding: 5px 0;
}
.tokuchou_price > div dt,
.tokuchou_price > div dd,
.tokuchou_price02 > div dt,
.tokuchou_price02 > div dd,
.case_detail > div dt,
.case_detail > div dd {
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 10px;
  margin: 0;
}
.tokuchou_price > div dt,
.tokuchou_price02 > div dt,
.case_detail > div dt {
  width: 45%;
  text-align: justify;
  text-align-last: justify;
  -moz-text-align-last: justify;
  -webkit-text-align-last: justify;
  hyphens: auto;
}
.tokuchou_price > div dd,
.tokuchou_price02 > div dd,
.case_detail > div dd {
  width: 55%;
  text-align: left;
  padding-left: 5%;
  margin-left: 0;
}
.tokuchou_price > div dd b,
.tokuchou_price02 > div dd b{
  font-size: 3.2rem;
  font-weight: 400;
}
.tokuchou_price > div dd span,
.tokuchou_price02 > div dd span{
  font-size: 2.0rem;
}
.tokuchou_s{
  text-align: right;
  font-size: 1.3rem;
}

.pd10_box{
  padding: 10px;
  margin-top: 10px;
}
ul.list_check{
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
}
.list_check li{
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  padding-left: 30px;
}
.list_check li:last-child{
  margin-bottom: 0;
}
.list_check li::before{
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url(../images/icon_check.svg) no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

@media (max-width: 768px) {
  #tokuchou{
    padding: 0 10px 60px;
  }
  .con_itembox{padding: 10px;}
  #tokuchou .itembox03{
    margin-bottom: 30px;
  }
  #tokuchou .itembox03:last-of-type{
    margin-bottom: 0;
  }
  #tokuchou .item_container.mb60{
    margin-bottom: 30px;
  }
  .tokuchou_ba:first-child,
  .tokuchou_ba:last-child{
    width: 100%;
  }
  .tokuchou_ba:first-child{
    margin-bottom: 40px;
  }
  .tokuchou_price > div dt{
    width: 60%;
    font-size: 1.7rem;
  }
  .tokuchou_price > div dd{
    width: 40%;
    font-size: 1.7rem;
  }
  .tokuchou_price02 > div dt{
    width: 40%;
    font-size: 1.7rem;
  }
  .tokuchou_price02 > div dd{
    width: 60%;
    font-size: 1.7rem;
    padding: 0;

  }
}

/* CTA Area */
.ctaArea{
  background: var(--bg-b);
}
.ctaArea .wrapper{
  padding: 30px;
}
.title_cta{
  text-align: center;
  color: var(--font-wht);
  font-size: 3.0rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.ctaArea p{
  color: var(--font-wht);
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
a.ctabtn_red,
a.ctabtn_grn,
a.ctabtn_red:visited,
a.ctabtn_grn:visited{
  position: relative;
  display: block;
  border-radius: 60px;
  width: 100%;
  color: var(--font-wht);
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 5px 0;
  margin: 0 auto;
}
a.ctabtn_red{
  background-image: linear-gradient(180deg, rgba(255, 69, 3, 1), rgba(152, 1, 2, 1) 70%);
}
a.ctabtn_grn{
  background-image: linear-gradient(0deg, rgba(39, 117, 33, 1), rgba(61, 177, 53, 1) 70%);
}
a.ctabtn_red::after,
a.ctabtn_grn::after{
  content: '';
  position: absolute;
  top: 45%;
  right: 20px;
  /* transform: translateY(-50%); */
  width: 15px;
  height: 15px;
  margin-top: -5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
a.ctabtn_red:hover{
  background: var(--bg-red);
}
a.ctabtn_grn:hover{
  background: var(--bg-d);
}
@media (max-width: 768px) {
  .ctaArea .wrapper{
    padding: 30px 30px 40px;
  }
  .title_cta{
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .ctaArea p{
    font-size: 1.5rem;
  }
  a.ctabtn_red{
    margin-bottom: 30px;
  }
  a.ctabtn_red, a.ctabtn_grn, a.ctabtn_red:visited, a.ctabtn_grn:visited{
    font-size: 2.2rem;
  }
}

/* 導入事例 */
.bg_case{
  background: rgba(0,176,237,0.3);
}
.bg_case_light{
  background: rgba(0,176,237,0.1);
}
.title_case img{
  display: block;
  max-width: 320px;
  width: 65%;
  height: auto;
  margin: 0 auto 30px;
}
.title_case02 img{
  /* display: block; */
  width: auto;
  height: 60px;
  margin: 0 auto 30px;
}
.bg_naname{
  border: 10px solid #fff;
  background:repeating-linear-gradient(
  -45deg,
  #b4edfd,
  #b4edfd 1px,
  #fff 0,
  #fff 9px
  );
}
.map_img{
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .title_case02 img{
    height: 130px;
    margin: 20px auto;
  }
  .title_case img {
    width: 70%;
    margin: 0 auto 20px;
  }
}


/* 空きテナント事例 */
.case_box{
  background: var(--font-wht);
  border: 2px solid var(--bg-b);
  padding: 20px 30px;
  margin-bottom: 30px;
}
.case_box:last-of-type{
  margin-bottom: 0;
}
.case_titleArea{
  margin-bottom: 20px;
}
.title_caseadd{
  display: inline-block;
  background: var(--bg-b);
  color: var(--font-wht);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.0;
  padding: 7px 10px;
  margin-right: 10px;
}
.title_casename{
  display: inline-block;
  color: var(--bg-d);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.case_ba{
  position: relative;
  width: 45%;
}
.case_ba:first-child::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
  border: 25px solid transparent;
  border-left: 40px solid var(--bg-b);
}
@media (max-width: 768px) {
  .case_ba:first-child::after{
    right: -25%;
    border: 16px solid transparent;
    border-left: 20px solid var(--bg-b);
  }
  .case_ba{
    width: 100%;
    margin-bottom: 40px;
  }
  #case_shinchiku .case_ba figure{
    border: 1px solid var(--bg-b);
    line-height: 0;
  }
  .case_ba:last-of-type{
    margin-bottom: 10px;
  }

  .case_ba:first-child::after{
    top: 100%;
    right: auto;
    left: 50%;
    bottom: -25%;
    transform: translateX(-50%);
    border: 25px solid transparent;
    border-top: 30px solid var(--bg-b);
  }
  .case_box{
    padding: 10px;
  }
  .title_caseadd{
    margin: 0 0 5px;
  }
  .title_casename{
    display: block;
  }
}

.case_detail > div dt,
.case_detail > div dd{
  font-size: 1.6rem;
}
.case_detail > div dd b{
  font-size: 2.4rem;
  font-weight: 600;
}
.price_s{font-size: 2.2rem!important;}

.case_detailimg{
  position: relative;
  margin-bottom: 10px;
}
.case_detail_tab01,
.case_detail_tab02{
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  color: var(--font-wht);
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 2px 10px;
  z-index: 3;
}
.case_detail_tab01{background: var(--bg-b);}
.case_detail_tab02{background: var(--bg-c);}

/* 新築事例 */
#case_shinchiku{
  background: rgba(61, 177, 53, .1);
}

@media (max-width: 768px) {
  .case_detail > div dt{
    font-size: 1.3rem;
  }
  .case_detail > div dd{
    font-size: 1.4rem;
    padding: 0;
  }
  .price_s{font-size: 1.8rem!important;}
  .case_detail > div dd b{
    font-size: 2.0rem;
  }
}


/* その確かな理由 */
#riyu{
  background: var(--bg-f);
}
#riyu .bg_blue{
  padding: 20px 0;
}
.box_blue{
  border: 2px solid var(--bg-b);
  background: var(--font-wht);
}
.title_riyu_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.title_riyu span{
  text-align: center;
  display: inline-block;
  color: var(--font-wht);
  font-size: 3.2rem;
  font-weight: 600;
  text-decoration-color: var(--bg-e);
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
}
.title_logo{
  display: inline-block;
  width: 230px;
  height: auto;
  margin-right: -10px;
  /* margin-left: 10px; */
}
.title_riyu_wht_c{
  color: var(--font-wht);
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.4;
}
.title_riyu_wht_c span{
  color: var(--bg-e);
}
.title_riyu02_c{
  color: var(--font-blue);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.title_riyu_blue_c{
  text-align: center;
  color: var(--font-blue);
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: 40px;
}
.marker_yel{
  text-decoration-color: var(--bg-e);
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
}
.title_riyu02_blue_c{
  text-align: center;
  color: var(--font-blue);
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.title_riyu02_blue_c span{
  color: var(--font-light_blue);
  font-size: 5.0rem;
}

.pdding_box{padding: 30px;}

.rirubox{
  position: relative;
  width: 48%;
  background: rgba(0,176,237,0.1);
  padding: 20px 30px;
}

.rirubox:first-of-type::before{
  content: "01";
}
.rirubox:last-of-type::before{
  content: "02";
}
.rirubox:first-of-type::before,
.rirubox:last-of-type::before{
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--font-light_blue);
  font-family: var(--ff-en);
  font-size: 5.0rem;
  font-weight: 500;
  line-height: 1.0;
}

.rirubox p{
  font-size: 1.8rem;
}
.rirubox p b{
  color: #008eac;
  font-weight: 400;
}

@media (max-width: 768px) {
  .title_riyu_wrap{
    display: block;
  }
  .title_riyu span{
    display: block;
    font-size: 2.4rem;
  }
  .title_logo{
    display: block;
    margin: 10px auto 0;
  }
  .title_riyu_wht_c{
    font-size: 3.4rem;
  }
  .pdding_box{
    padding: 30px 20px;
  }
  .rirubox{
    width: 100%;
    padding: 20px;
  }
  .rirubox:first-of-type{
    margin-bottom: 30px;
  }
  .title_riyu_blue_c{
    font-size: 2.2rem;
  }
  .title_riyu02_blue_c{
    font-size: 2.4rem;
  }
  .title_riyu02_blue_c span{
    font-size: 4.0rem;
  }
  .title_riyu02_c{
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
}

.supportbox{
  width: 32%;
  border: 2px solid var(--bg-b);
  display: flex;
  flex-direction: column;
  padding: 20px 10px 10px;
}
.supportbox:nth-child(odd){
  background: rgba(2,91,172,0.1);
}
.supportbox:nth-child(even){
  background: rgba(0,176,237,0.15);
}

.supportbox p{
  color: var(--font-blue);
}
.supportbox h3 {
  color: var(--font-blue);
  font-size: 2.0rem;
  text-align: center;
  line-height: 1.4;
  min-height: 3.5em;
  margin: 0;
  display: block;
}
.supportbox h3 span{
  color: var(--font-light_blue);
  line-height: inherit;
  display: inline;
}
@media (max-width: 768px) {
  .supportbox{
    width: 100%;
    margin-bottom: 20px;
  }
  .supportbox:last-of-type{
    margin-bottom: 0;
  }
  .supportbox h3{
    min-height: auto;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

/* オープンするまでの流れ */
#flow,
#faq{
  background: var(--bg-f);
}
.title_flowimg{
  display: block;
  max-width: 360px;
  width: 95%;
  margin: 0 auto 5px;
}
.titleArea_en{
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
}
#flow h2,
#faq h2{
  position: relative;
  color: var(--font-blue);
  text-align: center;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#flow h2 span{
  display: block;
  font-size: 3.2rem;
}
.title_en{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-en);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(0,176,237,0.1);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.flow_boxArea{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.flow_box{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #f7f7f7;
  width: 100%;
  min-height: 200px;
  text-align: left;
  font-size: 1.8rem;
  margin-left: -100px;
  padding: 20px 40px 20px 120px;
  z-index: 1;
}
.flow_box h3{
  text-align: left;
  color: var(--font-light_blue);
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  align-self: flex-start;
  margin: 0 0 5px;
}
.flow_circle {
  background: var(--bg-c);
  color: var(--font-wht);
  font-weight: 500;
  text-align: center;
  font-family: var(--ff-en);
  font-size: 3.2rem;
  line-height: 1.0;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  z-index: 3;
}
.flow_circle span{
  display: block;
  font-size: 7.2rem;
}
.flow_bg01{background: #00b0ed;}
.flow_bg02{background: #009fe0;}
.flow_bg03{background: #018ed3;}
.flow_bg04{background: #017dc6;}
.flow_bg05{background: #026cb9;}
.flow_bg06{background: #025bac;}

@media (max-width: 768px) {
  #flow h2,
  #faq h2{
    font-size: 2.8rem;
  }
  .titleArea_en{
    margin-bottom: 20px;
  }
  .title_en{
    font-size: 10.0rem;
  }
  .flow_boxArea{
    display: block;
  }
  .flow_box{
    background: none;
    min-height: auto;
    margin-left: 0;
    padding: 0 10px;
  }
  .flow_circle{
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    position: absolute;
    top: -5px;
  }
  .flow_circle span{
    font-size: 2.0rem;
  }
  .flow_box h3{
    font-size: 2.2rem;
    padding-left: 50px;
    margin: 0 0 20px;
  }

}

/* よくある質問 */
.faq_box{
  padding: 30px;
  margin-bottom: 20px;
}
.faq_box:nth-child(odd){
  background: rgba(2,91,172,0.1);
}
.faq_box:nth-child(even){
  background: rgba(0,176,237,0.1);
}

.faq_box dl{
  width: 100%;
  padding: 10px 10px 10px 50px;
}
.faq_box dt,
.faq_box dd {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
}
.faq_box dt {
  font-weight: 500;
  margin-bottom: 10px;
}
.faq_box dd {
  position: relative;
}
.faq_box dt::before{
  content: "Q";
  background-color: var(--bg-b);
}
.faq_box dd::before{
  content: "A";
  background-color: var(--bg-c);
}

.faq_box dt::before,
.faq_box dd::before{
  position: absolute;
  left: -40px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--font-wht);
  text-align: center;
  line-height: 34px;
  font-family: var(--ff-en);
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .faq_box{padding: 10px 0;}
}

/* ==============================
    footer
=============================== */
footer .wrapper{
  position: relative;
  max-width: 980px;
}
footer .item_container.footArea{
  align-items: center;
}
footer .footArea .itembox02 img{
  display: block;
}
footer .footArea .itembox02 p{
  font-size: 1.4rem;
  line-height: 1.5;
}
.title_footer{
  font-size: 2.0rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

/* 会社概要 */
.company_profile {
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
}

.company_profile div {
  display: flex;
  margin-bottom: 10px;
}

.company_profile dt {
  width: 130px;
  background: var(--bg-b);
  color: var(--font-wht);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.company_profile dt span {
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  display: inline-block;
}

.company_profile dd {
  flex: 1;
  font-size: 1.8rem;
  margin: 0;
  padding: 5px 20px;
}

dd div.com_project{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
dd div.com_project .itembox02{
  display: flex;
  flex-direction: column;
}
.company_profile dd a:link,
.company_profile dd a:visited{
  color: var(--font-primary);
}

#foot_cta{
  background: rgba(0,176,237,0.15);
}
.wrap680{
  max-width: 680px;
  width: 92.1875%;
  padding-block: 30px;
  margin-inline: auto;
}
.title_foot_cta{
  text-align: center;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
a.foot_cta,
a.foot_ctaa:visited{
  width: 47%;
  border: 2px solid var(--bg-b);
  background: var(--bg-a);
  color: var(--font-primary);
  text-align: center;
  font-size: 2.0rem;
  line-height: 60px;
}
a.foot_cta:hover{
  background: var(--bg-b);
  color: var(--font-yellow);
}

.copy{
  text-align: center;
  font-size: 1.4rem;
  line-height: 60px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  footer .wrapper{
    padding: 40px 10px 0;
  }
  footer .footArea .itembox02 img{
    width: 320px;
    margin: 0 auto 20px 0;
  }
  .title_footer{
    margin-bottom: 10px;
  }
  .company_profile{
    margin: 40px 0;
  }
  .company_profile dt{
    width: 100px;
    font-size: 1.6rem;
  }
  .company_profile dd{
    font-size: 1.6rem;
  }
  a.foot_cta, a.foot_ctaa:visited{
    width: 49%;
    font-size: 1.7rem;
  }
  .copy{
    line-height: 40px;
    padding-bottom: 110px;
  }
}
