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

  /* フォントカラー */
  --color-blk: #000;
  --color-wht: #fff;
  --color-grn: #008d46;
  --color-darkgrn: #788782;
  --color-blu: #2489ef;
  --color-blu02: #29a9e0;
  --ff: "Noto Sans JP", sans-serif;
  --ff-serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
  --ff-corm-en: "Cormorant Infant", serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 8px;
    }
}
*, *::before, *::after {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
html,body{
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-blk);
}
:lang(en),
.en {
  font-family: "Inter", sans-serif;
}

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.85;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: outside;
  line-height: 1.5;
  padding-left: 1.5em;
}

main{
  width: 100%;
  /* overflow: hidden; */
}
.wrapper,
.wrap_min,
.wrap_768{
  /* max-width: 1080px; */
  max-width: 1280px;
  width: 90%;
  /* width: 92.1875%; */
  margin-inline: auto;
}
.wrap_min{max-width: 980px;}
.wrap_768{max-width: 768px;}

.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: 30%;}
.itembox04{width: 23%;}

.pc_case{display: block;}
.sp_case{display: none;}
.pc_case02{display: inline-block;}
.sp_case02{display: none;}

@media (max-width: 768px) {
  .pc_case{display: none;}
  .sp_case{display: block;}
  .pc_case02{display: none;}
  .sp_case02{display: inline-block;}
  .itembox02,.itembox03{width: 100%;}
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==============================
    共通設定
=============================== */
.sec{padding-block: 100px;}
.font_s{font-size: 1.3rem;}
.text_c{text-align: center;}
.text_r{text-align: right;}
.mb10{margin-bottom: 10px!important;}
.mb20{margin-bottom: 20px!important;}
.mb30{margin-bottom: 30px!important;}
.mb60{margin-bottom: 60px!important;}

@media (max-width: 768px) {
  .sec{padding-block: 60px;}
}

/* =========================
footer
========================= */
footer{padding-bottom: 30px;}
.fot_bg{
  background-image: linear-gradient(90deg, rgba(247, 236, 213, 1), rgba(220, 235, 230, 1));
}
.footer_inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 0 30px;
}

/* 左 */
#footer .footer_logo,
.footer_logo{
  width: 30%;
  color: var(--color-wht);
}
#footer .footer_logo{
  color: var(--color-blk);
}
.footer_logo img{
  display: block;
  width: auto;
  height: 50px;
  margin-bottom: 15px;
}
.fot_logArea{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.fot_logoitem{width: 100%;}

img.fot_privacy{
  display: block;
  width: auto;
  height: 90px;
}

/* 右 */
.footer_nav{
  width: 70%;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}
.footer_nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_nav li{margin-bottom: 10px;}

#footer .footer_nav a,
.footer_nav a{
  color: var(--color-wht);
  text-decoration: none;
  font-size: 1.5rem;
}
#footer .footer_nav a,
#footer .footer_nav a:visited{
  color: var(--color-blk);
}
#footer .footer_nav a:hover{
  color: #38b000;
}
#footer .copy,
.copy{
  color: var(--color-wht);
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
#footer .copy{
  color: var(--color-blk);
}

@media (max-width: 768px) {
  footer .footer_inner{
    padding: 40px 10px;
  }
  .footer_inner,
  .footer_nav{
    flex-direction: column;
  }
  .footer_inner{gap: 30px;}

  #footer .footer_logo,
  .footer_logo,
  .footer_nav{
    width: 100%;
  }
  .footer_nav{gap: 0;}

  .footer_nav ul:first-of-type{
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  #recruit .footer_nav ul:first-of-type{
    border-bottom: 1px solid var(--color-wht);
  }
  .fot_logArea{
    flex-direction: row;
  }
  .fot_logoitem:first-child{width: 80%;}
  .fot_logoitem:last-child{width: 20%;}
  .footer_logo img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .fot_logoitem p{font-size: 1.4rem;}
}


/* ==============================
    タイトル
=============================== */
.visuall_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.tit_tate{
  writing-mode: vertical-rl;
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin-left:40px;
}
.tit_main_c,
.page_title_biz_c{
  text-align: center;
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
.tit_main_c span{
  display: block;
  color: var(--color-darkgrn);
  text-align: center;
  font-family: var(--ff-corm-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page_title .tit_main_c span{
  color: var(--color-wht);
}

.page_title .tit_main_c{
  color: var(--color-wht);
  margin-bottom: 0;
}

.page_title_biz_c{
  margin-bottom: 0;
}
.page_title_biz_c span{
  display: block;
  color: var(--color-blk);
  font-size: clamp(1.7rem, 3.0vw, 2.0rem);
  margin-bottom: 20px;
}

.subtit_main_c,
.subtit_main{
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.subtit_main_c{
  text-align: center;
  margin-bottom: 20px;
}
.tit_border{
  border-bottom: 1px solid var(--color-blk);
  font-size: clamp(2.2rem, 3.0vw, 2.8rem);
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.tit_maru{
  position: relative;
  display: block;
  background: #00cff0;
  border-radius: 48px;
  line-height: 48px;
  color: var(--color-wht);
  font-size: clamp(2.2rem, 3.0vw, 2.8rem);
  font-weight: 500;
  padding-left: 50px;
  margin-bottom: 15px;
}
.tit_maru::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 25px;
  height: 25px;
  background: var(--color-wht);
  border-radius: 50%;
}


@media (max-width: 768px) {
  .tit_main_c{margin-bottom: 40px;}
  .page_title_biz_c span{letter-spacing: 0;}
}


/* ==============================
    HOME_fv
=============================== */
#home_fv{
  position: relative;
  aspect-ratio: 1920 / 1080;
  overflow: hidden;
  line-height: 0;
}
.fv_movie{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp_movie{
  display: none;
}
@media (max-width: 768px) {
  #home_fv{
    aspect-ratio: 375 / 667;
  }
  .pc_movie{
    display: none;
  }
  .sp_movie{
    display: block;
  }
}

/* ==============================
    HOME_message
=============================== */
.bg_gradient{
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );
}

#home_msg{
  position: relative;
  padding: 300px 0;
}
#home_msg::after{
  content:"";
  position:absolute;
  inset:0;

  background-image:linear-gradient(
    90deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );

  -webkit-mask-image:linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 70%,
    rgba(0,0,0,0) 100%
  );

  mask-image:linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 70%,
    rgba(0,0,0,0) 100%
  );

  z-index:-1;
}

#home_msg .wrapper{
  display:flex;
  flex-direction: column;
  writing-mode:vertical-rl;
  gap: 40px;
}
#home_msg p{
  writing-mode: vertical-rl;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  line-height: 2.8;
  letter-spacing: 0.2em;
}

/* 画像サイズ・配置 */
.home_fv_img01{
  display: block;
  position: absolute;
  top: 5%;
  left: 1%;
  width: 25%;
  height: auto;
}
.home_fv_img02{
  display: block;
  position: absolute;
  top: 2%;
  right: 5%;
  width: 23%;
  height: auto;
}
.home_fv_img03{
  display: block;
  position: absolute;
  bottom: 15%;
  left: -2%;
  width: 25%;
  height: auto;
}
.home_fv_img04{
  display: block;
  position: absolute;
  bottom: 10%;
  right: 27%;
  width: 20%;
  height: auto;
}
.home_fv_img05{
  display: block;
  position: absolute;
  bottom: 10%;
  right: 1%;
  width: 25%;
  height: auto;
}

@media (max-width: 768px) {
  #home_msg{padding: 60px 0;}
  #home_msg::after{
    background-image:linear-gradient(
    30deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );
  }
  .home_fv_visual{
    display: none;
  }
  #home_msg .wrapper,
  #home_msg .tit_tate,
  #home_msg p{
    writing-mode: horizontal-tb;
  }
  #home_msg .wrapper{
    gap: 20px;
    margin: 0 auto;
  }
  #home_msg .tit_tate{margin-left:0;}
  #home_msg p{
    font-size: 1.7rem;
    line-height: 2.0;
    letter-spacing: 0.05em;
  }

}

/* home_business  */
#home_business{
  position: relative;
  background: url(../images/home/home_business_bg.webp) no-repeat top -25% center / 100%;
}
#home_business .tit_main_c{
  margin-bottom: 100px;
}

.img_boxArea,
.imgBiz_box{
  position: relative;
}
.imgBiz_box{
  margin-bottom: 140px;
}
.imgBiz_box:last-of-type{
  margin-bottom: 0;
}
.imgBiz_box::before{
  content:"";
  position:absolute;
  top:-10%;
  left:0;
  width:70%;
  height:120%;
  background:#f5f5f5;
  z-index:-1;
}
.imgBiz_box.reverse::before{
  left:auto;
  right:0;
}
.img_boxArea_inner,
.imgBiz_inner{
  max-width: 1480px;
  width: 92.1875%;
  display: flex;
  flex-direction: row;
  align-items:stretch;
  margin: 0 auto 50px;
}
.img_boxArea_inner{
  max-width: 1920px;
}
.img_boxArea.reverse .img_boxArea_inner,
.imgBiz_box.reverse .imgBiz_inner{
  flex-direction:row-reverse;
}

.img_boxArea_content,
.imgBiz_content{
  position: relative;
  display:flex;
  flex-direction:column;
  width: 40%;
  padding: 40px 60px 0;
  z-index: 2;
}
.imgboxArea_img,
.imgBiz_img{
  position:relative;
  width: 60%;
}
.imgboxArea_img img,
.imgBiz_img img{
  display: block;
  border-radius: 6px;
}

.tit_biz{
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  width: max-content;
  padding-bottom: 10px;
  margin-bottom: 20px;
  z-index: 3;
}
.tit_biz::after{
  content: "";
  background: var(--color-blk);
  position: absolute;
  bottom:0;
  left:0;
  width:500px;
  max-width:80vw;
  height: 1px;
}
.imaBiz_box.reverse .tit_biz::after{
  left: -36%;
}
a.btn_more,
.case_more,
.minpaku_more,
.news_more{
  position: relative;
  display: flex;
  align-items: center;
  justify-content:center;
  width: 240px;
  height: 60px;
  background: var(--color-wht);
  border: 1px solid var(--color-blk);
  color: var(--color-blk);
  text-align: center;
  font-size: 2.4rem;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1),
    background .45s ease;
  margin-top:auto;
}
.case_more,
.news_more{
  width: 160px;
  height: 40px;
  font-size: 1.7rem!important;
  margin-left: auto;
}
.minpaku_more{
  justify-content: flex-start;
  /* width: 160px; */
  height: 40px;
  background: none;
  border: 1px solid var(--color-wht);
  color: var(--color-wht);
  font-family: var(--ff-en);
  font-size: 1.7rem!important;
  padding-left: 10px;
}
a.btn_more:visited,
.case_more:visited{
  color: var(--color-blk);
}
.minpaku_more:visited{
  color: var(--color-wht);
}

a.btn_more::after,
.case_more::after,
.minpaku_more::after,
.news_more::after{
  content: "";
  position: absolute;
  top: 50%;
  transform:translateY(calc(-50% + 2px));
  right: 10px;
  background: var(--color-blk);
  height: calc(tan(60deg) * 15px / 2);
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.minpaku_more::after{
  background: var(--color-wht);
}

a.btn_more:hover,
.case_more:hover,
.minpaku_more:hover{
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}
.minpaku_more:hover{
  color: var(--color-blk);
}
.minpaku_more:hover::after{
  background: var(--color-blk);
}

@media (max-width: 768px) {
  #home_business{
  background: url(../images/home/home_business_bg.webp) repeat-y top center / 100%;
}
  #home_business .tit_main_c{
    margin-bottom: 50px;
  }
  .imgBiz_box{margin-bottom: 40px;}
  .img_boxArea_inner,
  .imgBiz_inner,
  .img_boxArea.reverse .img_boxArea_inner,
  .imgBiz_box.reverse .imgBiz_inner{
    flex-direction:column;
  }
  .img_boxArea_content,
  .imgBiz_content,
  .imgboxArea_img,
  .imgBiz_img{
    display: block;
    width:100%;
    padding: 0;
  }
  .img_boxArea_content,
  .imgBiz_content{
    margin-bottom: 20px;
  }
  .imgboxArea_img,
  .imgBiz_img{
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
  }
  .imgBiz_img.no_line{
    border-bottom: none;
    padding-bottom: 0;
  }


  .imgBiz_box::before{display: none;}
  .tit_biz{
    font-size: 2.0rem;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  .tit_biz::after{
    display: none;
  }
  a.btn_more{
    height: 40px;
    font-size: 1.8rem;
    margin-top: 30px;
  }
  a.btn_more.pc_case {display: none;}

}

/* home_com */
#home_com{
  background: url(../images/home/com_bg.jpg) no-repeat top center / cover;
}
.com_img01{
  display: block;
  position: absolute;
  top: -20%;
  left: 0;
  width: 50%;
  border-radius: 50%;
}
.com_img02{
  display: block;
  position: absolute;
  top: -5%;
  right: 15%;
  width: 28%;
  border-radius: 50%;
}
.com_img03{
  display: block;
  position: absolute;
  bottom: 20%;
  right: 3%;
  width: 40%;
  border-radius: 50%;
}
@media (max-width: 768px) {
  #home_com{
    background: url(../images/home/com_bg_sp.jpg) no-repeat top center / cover;
  }
  #home_com .img_boxArea_inner{
    margin: 0 auto;
  }
  .img_boxArea_content{
    display: none;
  }
  #home_com .imgboxArea_img{
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* home 採用情報 */
#home_rec .itembox02{
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #home_rec .subtit_main{
    margin-bottom: 30px;
  }
}


/* home お知らせ */
#home_news .wrapper{
  background: var(--color-wht);
  box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 6px;
  padding: 60px 30px;
}
.news_list{
  list-style:none;
}
.news_list li{
  border-bottom:1px solid #aaa;
}
.news_list a{
  display:flex;
  align-items:center;
  gap:20px;
  color: var(--color-blk);
  text-decoration:none;
  padding: 20px 10px;
}
.news_list a:visited{color: var(--color-blk);}
.news_list a:hover{
  background-image: linear-gradient(90deg, rgba(247, 236, 213, 1), rgba(220, 235, 230, 1));
  color: var(--color-grn);
}

.news_list time{
  flex-shrink:0;
  width:120px;
  font-size: 1.5rem;
}
.news_tit{
  overflow:hidden;
  min-width:0;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size: 1.8rem;
}

@media (max-width:768px){
  #home_news .wrapper{
    padding: 30px 15px;
  }
  #home_news .tit_main_c{
    margin-bottom: 10px;
  }
  ul.news_list{
    padding-left: 0;
  }
  .news_list a{
    display:block;
  }
  .news_list time{
    display:block;
    width:auto;
    margin-bottom:8px;
  }
  .news_tit{
    display:block;
    white-space:normal;
  }

}

/* =========================
下層ページ 共通
========================= */
.page_title,
.page_title_biz,
.page_title_post{
  background: url(../images/page_bg.webp) no-repeat top center / cover;
  display: flex;
  justify-content:center;
  align-items:center;
  width: 100%;
  height: 300px;
  padding-top: 60px;
}
.page_title_biz{
  background: var(--color-wht);
}
.page_title_post{
  flex-direction: column;
  align-items: flex-start;
}
.point_txt{
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.0;
}

@media (max-width:768px){
  .page_title{
    background: url(../images/page_bg_sp.webp) no-repeat top center / cover;
    height: 260px;
    padding-top: 50px;
  }
}

/* =========================
会社について
========================= */
#com_mission h4{
  border-bottom: 1px solid var(--color-blk);
  color: var(--color-darkgrn);
  font-size: clamp(2.0rem, 3vw, 2.4rem);
  font-weight: 500;
  padding-bottom: 10px;
  margin-top: 60px;
  margin-bottom: 10px;
}

/* ボタンメニュー */
#com_menu.wrapper{
  max-width: 1000px;
  margin-top: 80px;
}
.sub_menulist{
  list-style: none;
  display: flex;
  gap: 30px;
  padding-left: 0;
}
.sub_menulist li{
  flex:1;
}
.sub_menulist li a{
  position: relative;
  display: block;
  border: 1px solid var(--color-blk);
  color: var(--color-blk);
  text-align: center;
  padding:15px 20px;
}
.sub_menulist li a:visited{color: var(--color-blk);}
.sub_menulist li a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform:translateY(calc(-50% + 2px));
  background: var(--color-blk);
  height: calc(tan(60deg) * 10px / 2);
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sub_menulist li a:hover{
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}

@media (max-width:768px){
  .sub_menulist{
    gap: 10px;
    flex-direction: column;
  }
}


/* 価値観 */
.value_list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  max-width: 840px;
  width: 100%;
  margin:0 auto;
}
.value_item{
  width:320px;
  aspect-ratio:1;
  border-radius:50%;
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,.4),
    rgba(220,235,230,.4)
  );
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  padding:40px;
  text-align:center;
  transform:translateX(-50px);
}
.value_item:nth-child(2){
  margin-left: -112px;
}
.value_item:nth-child(3){
  margin-top: -110px;
  margin-left: 200px;
}
.value_item:nth-child(4){
  margin-top: -110px;
  margin-left: 100px;
}
.value_item h3{
  color: var(--color-darkgrn);
  font-family: var(--ff-serif);
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
.value_item h3 span{
  display: block;
  font-size: 1.5rem;
}
.value_item p{
  text-align: center;
  color: var(--color-darkgrn);
  font-size: 1.7rem;
  font-weight: 500;
}

@media (max-width:768px){
  .value_list{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  .value_item{
    width:280px;
    padding: 20px;
    transform:none;
  }
  /* 左 */
  .value_item:nth-child(1),
  .value_item:nth-child(3){
    margin-left:-10px;
    margin-right:auto;
  }
  .value_item:nth-child(3){
    margin-top: -35px;
  }
  /* 右 */
  .value_item:nth-child(2),
  .value_item:nth-child(4){
    margin-top: -35px;
    margin-left:auto;
    margin-right:-10px;
  }

  .value_item h3{font-size: 1.8rem;}
  .value_item p{font-size: 1.5rem;}

}

/* メッセージ */
#com_msg .itembox02 p{
  font-size: 1.7rem;
  margin-bottom: 1.5em;
}
#com_msg .itembox02 p.com_president{
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width:768px){
  #com_msg .itembox02 p{
    font-size: 1.6rem;
    margin-bottom: 1.0em;
  }
}


/* 会社概要・沿革 */
.com_aboutlist > div,
.com_historylist > div{
  border-bottom: 1px solid var(--color-blk);
  display:flex;
  align-items:center;
  gap:40px;
  max-width: 1080px;
  width: 90%;
  margin-inline: auto;
}
.com_aboutlist > div:first-child,
.com_historylist > div:first-child{
  border-top: 1px solid var(--color-blk);
}
.com_aboutlist dt,
.com_aboutlist dd,
.com_historylist dt,
.com_historylist dd{
  font-size: 1.7rem;
  padding: 30px 10px;
}
.com_aboutlist dt,
.com_historylist dt{
  width:180px;
  flex-shrink:0;
  text-align:justify;
  text-align-last:justify;
}
.com_historylist dt{
  text-align: left;
  text-align-last:auto;
}
.com_aboutlist dt span{
  display: block;
  font-size: 1.4rem;
}
.com_aboutlist dd,
.com_historylist dd{
  flex:1;
}
.com_aboutlist dd p,
.com_historylist dd p{
  margin-bottom: .5em;
}

.map {
    position: relative;
    max-width: 1080px;
    width: 90%;
    margin: 30px  auto;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:768px){
  .com_aboutlist > div,
  .com_historylist > div{
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  .com_aboutlist dt,
  .com_aboutlist dd,
  .com_historylist dt,
  .com_historylist dd{
    width: 100%;
    font-size: 1.6rem;
  }
  .com_aboutlist dt,
  .com_historylist dt{
    padding: 10px 0;
  }
  .com_aboutlist dd,
  .com_historylist dd{
    padding: 0;
  }

  .com_aboutlist dt{
    text-align: left;
    text-align-last:auto;
    font-weight: 500;
  }

}

/* SDGs */
.sdgs_container{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap: 100px 80px;
}
.sdgs_item{
  width:auto;
  display:flex;
  flex-direction:column;
}

#com_sdgs h4{
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.sdgs_initiatives{
  display: block;
  background: #d2f9fe;
  border-radius: 30px;
  line-height: 30px;
  color: var(--color-blu02);
  text-align: center;
  font-size: 1.8rem;
  width: 230px;
  padding: 2px 0;
  margin-bottom: 15px;
}
#com_sdgs ul{
  margin-bottom: 30px;
}
#com_sdgs li{
  margin-bottom: 0.7em;
}
.icon_sdgs{
  display: flex;
  gap: 4%;
  margin-top: auto;
}
.icon_sdgs img{
  width:30%;
  height:auto;
}

#com_sdgs .item_container_r{
  margin-top: 100px;
}


@media (max-width:768px){
  .sdgs_container{
    grid-template-columns:1fr;
    gap:30px;
  }
  .sdgs_item{
    background: #d2f9fe;
    padding: 20px;
  }
  #com_sdgs h4{font-size: 1.7rem;}
  .sdgs_initiatives{
    background: var(--color-wht);
  }
  #com_sdgs .item_container_r{
    margin-top: 30px;
  }
  #com_sdgs .itembox02:first-child{
    margin-bottom: 30px;
  }

}

/* =========================
事業案内 共通
========================= */
#furusato_prologue,
#office_prologue,
#estateprologue{
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
}
#furusato_prologue{
  background: url(../images/business/furusato/furusato_bg.webp) no-repeat top center /cover;
}
#office_prologue{
  background: url(../images/business/office/office_bg.webp) no-repeat top center /cover;
}
#estateprologue{
  background: url(../images/business/estate/estate_bg.webp) no-repeat top center /cover;
}
#furusato_prologue .wrapper,
#office_prologue .wrapper,
#estateprologue .wrapper{
  max-height: 100%;
  width: auto;
  /* writing-mode: vertical-rl; */
  text-orientation: mixed;
}

.tit_biz_tate{
  color: var(--color-darkgrn);
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.0vw, 2.8rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .08em;
}
.tit_biz_tate span{
  display: inline-block;
  background: var(--color-wht);
  padding: 0 5px;
  margin-bottom: 10px;
}
#furusato_prologue p,
#office_prologue p,
#estateprologue p{
  color: var(--color-wht);
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  letter-spacing: .08em;
  line-height: 2.5;
  margin-bottom: 2em;
}

.rotate_txt{
  display: inline-block;
  transform: rotate(-90deg);
  margin: 2px 0;
}


@media (max-width:768px){
  #furusato_prologue .wrapper,
  #office_prologue .wrapper,
  #estateprologue .wrapper{
    width: 84%;
  }

  #furusato_prologue .wrapper,
  #office_prologue .wrapper,
  #estateprologue .wrapper,
  #furusato_prologue p,
  #office_prologue p,
  #estateprologue p{
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
  .tit_biz_tate{
    letter-spacing: 0;
  }

  .tit_biz_tate span{
    padding: 5px;
    margin-left: 0;
    margin-bottom: 15px;
  }
  #furusato_prologue p,
  #office_prologue p,
  #estateprologue p{
    line-height: 2.0;
    letter-spacing: 0;
    margin-right: 0;
    margin-top: 1.5em;
  }
  .rotate_txt{
    transform: none;
    margin: 0;
  }
}

/* FAQ */
#faq{
  background: #efefef;
}
.faqbox{
  background: var(--color-wht);
  padding: 40px;
  margin-bottom: 20px;
}
.faqbox dt,
.faqbox dd{
  margin: 0;
  text-align: justify;
}
.faqbox dt{margin-bottom: 20px;}

.faqbox + .faqbox {
  margin-top: 3rem;
}

.faq_q,
.faq_a{
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.faq_icon_q,
.faq_icon_a{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--color-wht);
  font-family: var(--ff-en);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_icon_q{background: #788782;}
.faq_icon_a{background: #938871;}

.q_title{
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: 600;
}
.faq_text{
  flex: 1;
}
@media (max-width: 768px) {
  .faqbox{padding: 20px 15px;}
}



/* =========================
事業案内 ふるさと納税
========================= */
#service{
  background: url(../images/business/furusato/bg_service.webp) repeat-y top center / cover;
  padding: 100px 0;
}

#service .item_container{
  margin-bottom: 80px;
}
.item_service:first-child{
  width: 40%;
}
.item_service:last-child{
  width: 56%;
}
#service .tit_border{
  font-size: clamp(2.0rem, 3.0vw, 2.4rem);
  margin-bottom: 20px;
}
#service ul{
  background-image: linear-gradient(
    90deg,
    rgba(247, 236, 213, .5),
    rgba(220, 235, 230, .5)
  );
  padding: 10px;
  margin: 20px 0;
}
#service ul li{
  list-style: square;
  margin-left: 1.5em;
  margin-bottom: 5px;
}
#service a.btn_more{
  width: 300px;
  font-size: 1.8rem;
}
#service a.btn_more:first-of-type{
  margin: 30px 0 10px;
}


@media (max-width:768px){
  #service{padding: 60px 0 0;}
  #service .item_container{
    margin-bottom: 50px;
  }
  .item_service:first-child,
  .item_service:last-child{
    width: 100%;
  }
  .item_service:first-child{
    margin-bottom: 20px;
  }
}

/* PROMISE */
/* .bg_gradient{
  background: linear-gradient(
    90deg,
    rgba(247,236,213,.5),
    rgba(220,235,230,.5)
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
} */
.bg_gradient{
  position: relative;
}

.bg_gradient::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0) 20%,
      rgba(255,255,255,0) 80%,
      rgba(255,255,255,1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(247,236,213,.5),
      rgba(220,235,230,.5)
    );
}

.bg_gradient > *{
  position: relative;
  z-index: 1;
}

#promise,
#office_promise,
#minpaku_promise{
  padding: 100px 0 150px;
}

#office_promise .wrapper{
  position: relative;
  z-index: 5;
}

.promise_text{
  width: fit-content;
  margin-inline: auto;
}
#office_promise .promise_text{margin-bottom: 60px;}

.promise_text p{
  font-size: clamp(2.0rem, 3.0vw, 2.4rem);
  margin-bottom: 20px;
}
#office_promise .promise_text p{
  font-size: clamp(1.7rem, 1.6vw, 2.0rem);
}

@media (max-width:768px){
  #promise,
  #office_promise,
  #minpaku_promise {
      padding: 60px 0;
  }
}

/* =========================
支援事例 共通
========================= */
#case{
  position: relative;
  margin-top: -100px;
  z-index: 5;
}
.item_case{
  width: 47%;
  margin-bottom: 50px;
}
.case_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  transition: transform .4s ease;
}
a.case_box,
a.case_box:visited{
  color: var(--color-blk);
}
.case_meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.case_box h3 {
  font-size: 1.8rem;
  margin:0;
}
.case_box .case_day{
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.6;
}
.case_box img {
  display: block;
  width: 100%;
  margin: 10px 0;
}
.case_box .case_cate,
.caselist_cate{
  margin-bottom: 20px;
}
.case_box .case_cate span,
.caselist_cate li{
  display: inline-block;
  border: 1px solid var(--color-blk);
  border-radius: 30px;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 4px 10px!important;
  margin-right: 5px;
  margin-bottom: 5px;
}
.caselist_cate li{
  list-style: none;
  font-size: 1.6rem;
  padding: 6px 20px;
}
.caselist_cate li a,
.caselist_cate li a:visited{
  color: var(--color-blk);
}
.case_box p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* hover */
.case_box:hover,
.news_list:hover{
  background: rgba(255,255,255,0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}
.case_box:hover .case_more,
.caselist_cate li:hover,
.news_list:hover .news_more{
  background-image: linear-gradient(
    90deg,
    rgba(247, 236, 213, 1),
    rgba(220, 235, 230, 1)
  );
}
#case .btn_more{
  margin: auto;
}

@media (max-width:768px){
  #case{
    margin-top: -100px;
  }
  #case .item_case{
    width: 100%;
    margin-bottom: 10px;
  }
}

/* =========================
事業案内 オフィス支援
========================= */
#office_service .wrapper{
  background: var(--color-wht);
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, .3);
  padding: 60px;
}
.item_officebox{
  width: 44%;
  margin-bottom: 40px;
}
#office_service h3{
  border-bottom: 1px solid var(--color-blk);
  color: var(--color-darkgrn);
  font-size: clamp(2.0rem, 3.0vw, 2.4rem);
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tit_office_pro{
  position: relative;
  text-align: center;
  font-size: clamp(2.0rem, 3.0vw, 2.4rem);
  margin-bottom: 24px;
}
.tit_office_pro::before{
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 400px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-blk);
}

@media (max-width:768px){
  #office_service .wrapper{
    padding: 30px;
  }
  .item_officebox{width: 100%;}
  .tit_office_pro::before{width: 100px;}
}


/* =========================
事業案内 民泊
========================= */
#minpaku{
  background: url(../images/business/estate/minpaku_bg.webp) no-repeat top center /cover;
}
#minpaku .itembox02{
  margin-bottom: 80px;
}
#minpaku .tit_main_c{
  color: var(--color-wht);
}
#minpaku p{
  color: var(--color-wht);
  font-size: 1.8rem;
  margin-bottom: 2em;
}

.subtit_minpaku{
  color: var(--color-wht);
  font-family: var(--ff-serif);
  font-size: 2.0rem!important;
  border-bottom: 1px solid var(--color-wht);
  padding-bottom: 10px;
}

/* swiper */
.slideGallery{
  width: 100%;
}
.slideGallery .swiper-slide{
  overflow: hidden;
}
.slideGallery img{
  width: 100%;
  display: block;
}
.slideGallery .swiper-wrapper{
  transition-timing-function: linear;
}
/* .swiper-button-prev,
.swiper-button-next{
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
} */

@media (max-width: 768px) {
  #minpaku .itembox02{margin-bottom: 50px;}
  #minpaku .itembox02:first-child{margin-bottom: 0;}
  #minpaku p{
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
  #minpaku .minpaku_more{margin-bottom: 25px;}
}

/* =========================
お知らせ 一覧
========================= */
.news_list{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  transition: transform .4s ease;
  /* margin-bottom: 50px; */
}
a.news_list,
a.news_list:visited{color: var(--color-blk);}

.news_cate{
  margin-bottom: 10px;
}
.news_cate span{
  display: inline-block;
  background: var(--color-blk);
  color: var(--color-wht);
  font-family: var(--ff-en);
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 4px 10px;
  margin-right: 5px;
}

.item_news:first-child{
  width: 40%;
}
.item_news:last-child{
  width: 58%;
}
.item_news h3{
  font-size: clamp(1.8rem, 2.4vw, 2.0rem);
  border-bottom: 1px solid var(--color-blk);
  line-height: 1.4;
  padding-bottom: 5px;
  margin:0 0 5px;
}
.item_news .case_day{
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.item_news img{
  display: block;
  width: 100%;
}
.item_news p{
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
}

/* =========================
投稿・実績・お知らせ
========================= */
#case_detail p,
#case_detail ul,
#case_detail ol,
#news_detail p,
#news_detail ul,
#news_detail ol{
  margin-bottom: 1.5em;
}
#case_detail .post,
#news_detail .page{
  margin: 0 0 1.5em;;
}

.page_cate span{
  position: relative;
  display: inline-block;
  color: var(--color-wht);
  font-size: 1.6rem;
  padding: 6px 0;
}
.page_cate span::after{
  content: "／";
  color: var(--color-wht);
  margin: 0 3px;
}
.page_cate span:last-child::after{
  content: none;
}

/* 投稿タイトル */
.tit_page_h1{
  position: relative;
  display: block;
  color: var(--color-wht);
  font-size: clamp(2.2rem, 3.0vw, 2.8rem);
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.tit_page_h1::before{
  content: "";
  position: absolute;
  bottom: 0;
  background: var(--color-wht);
  width: 400px;
  height: 1px;
}
.tit_page_h2{
  position: relative;
  font-size: clamp(2.0rem, 3vw, 2.4rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-blk);
  padding-bottom: 5px;
  padding-left: 25px;
  margin-bottom: 15px;
}
.tit_page_h2::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform:translateY(-50%);
  width: 10px;
  height: 24px;
  background-image: linear-gradient(
    45deg,
    rgba(247,236,213,1),
    rgba(220,235,230,1)
  );
}
.tit_page_h3{
  display: block;
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,.7),
    rgba(220,235,230,.7)
  );
  border-radius: 40px;
  font-size: clamp(1.7rem, 3.0vw, 2.0rem);
  font-weight: 500;
  padding: 5px 20px;
  margin-bottom: 15px;
}
.bg_post_grad{
  background-image: linear-gradient(
    90deg,
    rgba(247,236,213,.7),
    rgba(220,235,230,.7)
  );
  padding: 20px;
  margin-bottom: 30px;
}

/* 吹き出し */
.balloon,
.balloon_right{
	display:flex!important;
	align-items:flex-start!important;
	gap:20px;
	margin:30px 0;
}
.balloon_right{
  flex-direction:row-reverse;
}
.balloon_icon{
	width:80px;
	flex:0 0 100px !important;
	margin:0;
}
.balloon_icon img{
  display:block;
	width:100%;
	border-radius:50%;
}
.balloon_text,
.balloon_text_right{
	position:relative;
	flex:1 1 auto !important;
	flex-basis:auto !important;
	width:auto !important;
	background:#fff;
	padding:15px 20px;
	margin:0;
	border-radius:10px;
	box-shadow:0 3px 7px rgba(0,0,0,.2);
}
.balloon_text::after{
	content:"";
	position:absolute;
	top:20px;
	left:-15px;
	background: #fff;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  box-shadow:0 3px 7px rgba(0,0,0,.2);
}
.balloon_text_right::after{
  content:"";
	position:absolute;
	top:20px;
	right:-15px;
	background: #fff;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  box-shadow:0 3px 7px rgba(0,0,0,.2);
}

@media (max-width: 768px) {
  .balloon_icon{width: 50px;}
}

/* WordPressハック */
@media (max-width:781px){
.wp-block-columns.balloon{
	flex-wrap: nowrap !important;
}
.wp-block-columns.balloon > .wp-block-column:first-child{
	flex-basis: 80px !important;
}
.wp-block-columns.balloon > .wp-block-column:last-child{
	flex-basis: auto !important;
}

}


/* ==============================
    お問い合わせ
=============================== */
.contact_form {
  max-width: 700px;
  margin: 0 auto;
}

.form_list {
  margin: 0;
  padding: 0;
}

.form_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.form_item dt {
  width: 26%;
  font-weight: bold;
  padding-top: 5px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form_item dd {
  width: 70%;
  margin: 0;
}
/* p 無効化 */
.form_item dt p,
.form_item dd p {
  display: contents;
  margin: 0;
}

input[type="text"] ,
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="select"],
input[type="select"],
textarea{
  width: 100%;
  font-size: 1.6rem;
  padding: 10px;
  border: 1px solid #ccc;
  background: #efefef!important;
}
/* 入力されたら */
input:not(:placeholder-shown),
textarea:not(:placeholder-shown){
  background: #fff!important;
}

/* 必須ラベル */
.required,
.nini{
  border-radius: 3px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 2px 10px;
}
.required {
  background: #ed1c24;
}
/* 任意ラベル */
.nini{
  background: #788782;
}

/* 名前横並び／苗字と氏名 */
.name_wrap {
  display: flex !important;
  gap: 10px;
}
.name_wrap .wpcf7-form-control-wrap {
  flex: 1;
}
.name_wrap input {
  width: 100%;
}

/* ラジオボタン */
.radio_group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}
.radio_group label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
/* ラジオ縦並び */
/* 元のラジオボタンを完全に非表示 */
.radio_group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* ラジオ全体 */
.radio_group .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
/* input非表示 */
.radio_group input[type="radio"] {
  position: absolute;
  opacity: 0;
}
/* label */
.radio_group label {
  position: relative;
  display: block;
  line-height: 1.8;
  cursor: pointer;
}
/* 文字部分（CF7が出す span） */
.radio_group label span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

/* 外側の円 */
.radio_group label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
}
/* 内側の点 */
.radio_group label span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #004a9d;
  opacity: 0;
}
/* checked時 */
.radio_group input[type="radio"]:checked + span::after {
  opacity: 1;
}
.radio_group input[type="radio"]:checked + span {
  font-weight: 500;
  color: var(--color-blue);
}

/* ボタン */
.form_btn p{
  text-align: center;
  margin-top: 30px;
}
.form_btn input[type="submit"]  {
  background: #788782!important;
  border-radius: 40px;
  color: #fff!important;
  text-align: center;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  padding: 12px 40px!important;
  display: block;
  margin: auto;
}
.form_btn input[type="submit"]:hover {
  opacity: 0.8;
}

/* thanks */
.tit_thanks{
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.thanks_box{
  background-image: linear-gradient(
    45deg,
    rgba(247,236,213,.6),
    rgba(220,235,230,.6)
  );
  border-radius: 12px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.0;
  padding: 100px 30px;
}

@media (max-width: 768px) {
  .form_item{
    flex-direction: column;
  }
  .form_item dt,
  .form_item dd{
    width: 100%;
  }
  .form_item dt{
    margin-bottom: 5px;
  }
}

/* =========================
個人情報保護方針
========================= */
.privacy_box{
  margin-bottom: 100px;
}
.privacy_mark{
  display:flex;
	align-items:center;
	gap:20px;
}
.privacy_mark dt{
  width:80px;
	margin:0;
	flex-shrink:0;
}
.privacy_mark dd{
  flex:1;
}
.privacy_right p{
  text-align: right;
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.privacy_list{
  display:grid;
  grid-template-columns: 9em 1fr;
  gap:10px 10px;
}
.privacy_list dt,
.privacy_list dd{
  margin:0;
}

.table01{
  width:50%;
  border-collapse:collapse;
  border:1px solid #666;
}
.table01 th,
.table01 td{
  border:1px solid #666;
  text-align:center;
  vertical-align: middle;
  padding:10px;
}
.table01 th{
  width:120px;
  font-weight:400;
}

.table02{
  width: 100%;
  border-collapse:collapse;
  border:1px solid #666;
  margin-bottom: 10px;
}
.table02 th,
.table02 td{
  border:1px solid #666;
  text-align:left;
  vertical-align: middle;
  padding:10px;
}
.table02 th{
  width:30%;
  font-weight:400;
}
.table02 tr:nth-child(odd){
  background: #eee;
}


.privacy_contact > div{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.privacy_contact dt{
  width: 100px;
  text-align:justify;
  text-align-last:justify;
}
.privacy_contact dd{
  position: relative;
  width: calc(100% - 120px);
  text-align: left;
}
.privacy_contact dd::before{
  content: "：";
  margin-right: 5px;
}


@media (max-width: 768px) {
  .table01{
    width: 100%;
  }
  .table01 th,
  .table01 td{
    font-size: 1.5rem;
  }
  .table01 th{width: 30%;}

  .privacy_contact > div{
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  .privacy_contact > div:last-of-type{
    border-bottom: none;
  }
  .privacy_contact dt{
    width: 100%;
    text-align: left;
    text-align-last: left;
  }
  .privacy_contact dd{
    width: 100%;
  }

  .privacy_contact dd::before{
    content: none;
  }
}


/* =========================
採用ページ
========================= */
main#recruit{overflow: hidden;}
#recruit .sec{padding-block: 200px;}
.bg_rec{
  background: var(--color-blu);
  width: 100%;
  height: 100%;
}
.bg_slide,
.bg_slide02{
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.bg_slide::before,
.bg_slide02::before{
  content: "";
  position: absolute;
  top: -30%;
  width: 380px;
  height: 200%;
  background: rgba(255,255,255,.08);
  transform: rotate(20deg);
  z-index: -1;
}

.bg_slide::before{
  right: 65%;
  clip-path: polygon(
    0 0,
    100% 0,
    70% 100%,
    30% 100%
  );
}
.bg_slide02::before{
  right: 40%;
  clip-path: polygon(
    25% 0,
    75% 0,
    100% 100%,
    0 100%
  );
}

.bg_rec_fuji{
  background: url(../images/recruit/bg_fv.webp) no-repeat center 20% /100%;
}
@media (max-width: 768px) {
  #recruit .sec{padding-block: 100px;}
  .bg_slide::before,
  .bg_slide02::before{
    width: 240px;
  }
  .bg_slide::before{
    right: 150%;
  }
}

/* =========================
FV
========================= */
.fvArea_rec{
  position: relative;
  height: auto;
  min-height: 80vh;
}

/* =========================
left nav
========================= */
.rec_fv_nav{
  position: fixed;
  top: 20%;
  left: 3%;
  width: 17%;
  transition: top .3s ease;
  z-index: 10;
}
.rec_fv_nav.is-fixed{
  top: 130px;
  left: 1%;
}
.rec_fv_nav ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.rec_fv_nav a{
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--ff-en);
  text-decoration: none;
}

/* entryボタン */
.entry_btn a{
  display:flex;
  justify-content:center;
  align-items:center;
  background:var(--color-wht);
  width:120px;
  height:34px;
  color:var(--color-blu02);
  text-decoration:none;
  transform:skewX(-30deg);
}
.entry_btn a span{
  display:block;
  transform:
    skewX(30deg)
    translateX(40px);
}


/* 線 */
.rec_fv_nav a::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
  margin-left: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
/* 丸 */
.rec_fv_nav a::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-left: -4px; /* ← 線の上に重ねる */
  opacity: 0;
  transition: opacity .3s ease;
  order: 2;
}
/* hover時 */
.rec_fv_nav a:hover::after{
  transform: scaleX(1);
}
.rec_fv_nav a:hover::before{
  opacity: 1;
}

@media (max-width: 768px) {
.rec_fv_nav{
  position: static;
  width: 90%;
  margin-top: 10px;
  }
}


/* =========================
visual
========================= */
.rec_fv_visual{
  position: relative;
  width: calc(100% - 20%);
  min-height: 80vh;
  padding-top: 10%;
  margin-left: auto;
}

.rec_fv_img01{
  display: block;
  position: absolute;
  top: 28%;
  left: 10%;
  width: 20%;
}
.rec_fv_img02{
  display: block;
  position: absolute;
  bottom: 13%;
  left: 0;
  width: 27%;
}
.rec_fv_img03{
  display: block;
  position: absolute;
  top: 21%;
  left: 40%;
  width: 24%;
}
.rec_fv_img04{
  display: block;
  position: absolute;
  bottom: 7%;
  left: 32%;
  width: 34%;
}
.rec_fv_img05{
  display: block;
  position: absolute;
  bottom: -2%;
  right: 0;
  width: 30%;
}

@media (max-width: 768px) {
  .fvArea_rec{
    min-height: 100vh;
    padding-top: 70px;
    transform: none !important;
    opacity: 1 !important;
  }
  .rec_fv_visual{
    order: 1;
    width: 100%;
  }
  .rec_fv_img01{
    top: 7%;
    left: auto;
    right: 32%;
    width: 34%;
  }
  .rec_fv_img02{display: none;}
  .rec_fv_img03{
    top: auto;
    bottom: 2%;
    left: 5%;
    width: 64%;
  }
  .rec_fv_img04{
    bottom: auto;
    top: 26%;
    left: 0;
    width: 50%;
  }
  .rec_fv_img05{
    bottom: 36%;
    right: 30%;
    width: 35%;
  }

}



/* =========================
縦タイトル
========================= */
.rec_fv_copy,
.tit_mission_copy{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  color: var(--color-wht);
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .08em;
}
.rec_fv_copy{
  position: absolute;
  top: 20%;
  right: 18%;
  text-align: left;
  font-size: clamp(3rem, 5vw, 6rem);
}
.tit_mission_copy{
  position: absolute;
  top: 10%;
  right: 20%;
  font-size: clamp(2rem, 3vw, 3rem);
  z-index: 5;
}

/* 縦線 */
.rec_fv_copy::after,
.tit_mission_copy::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background: var(--color-wht);
  transform: translateX(-50%);
}
.rec_fv_copy::after{
  bottom: -75px;
  left: 25%;
}
.tit_mission_copy::after{
  bottom: -100px;
  right: 50%;
}

.rec_fv_copy::before,
.tit_mission_copy::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-wht);
}
.rec_fv_copy::before{
  bottom: -75px;
  left: 22%;
}
.tit_mission_copy::before{
  bottom: -100px;
  right: calc(50% - 4px);
}

@media (max-width: 768px) {
  .rec_fv{
    flex-direction: column;
  }

  /* スマホ縦タイトル */
  .rec_fv_copy{
    top: 20px;
    right: 20px;
    font-size: 3.4rem;
  }

  .rec_fv_copy::before{
    bottom: -320px;
    left: 20%;
  }
  .rec_fv_copy::after {
    bottom: -320px;
    height: 320px;
  }
  .tit_mission_copy{
    right: 12%;
  }
}

/* タイトル */
.sub_tit_rec{
  color: #dceae4;
  font-family: var(--ff-corm-en);
  font-style: italic;
  font-size: 2.0rem;
  line-height: 1.5;
}
.title_rec{
  color: var(--color-wht);
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .title_rec{
    margin-bottom: 30px;
  }
}


/* =========================
ミッション
========================= */
#mission{position: relative;}

/* circleエリア */
.mission_circle_wrap{
  position: relative;
  width: 700px;
  height: 900px;
}
.mission_circle{
  position: absolute;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-wht);
  padding: 40px;
}
.mission_circle p{
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.mission_circle h4{
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}

/* 丸の位置 */
.circle01{
  top: 0;
  left: 22%;
}
.circle02{
  top: 30%;
  left: 0;
}
.circle03{
  top: 60%;
  left: 25%;
}
@media (max-width: 768px) {
  #mission{margin-top: 0;}
  .mission_circle_wrap{
    height: 700px;
  }
  .mission_circle{
    width: 240px;
    padding: 20px;
  }
  .mission_circle p{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .mission_circle h4{
    font-size: 2.0rem;
  }
  .circle01{
    left: 0;
  }
  .circle02 {
    left: 7%;
  }
  .circle03 {
    left: 17%;
  }
}

/* =========================
PERSONAL こんな人と働きたい
========================= */
#personal{
  position: relative;
  background: url(../images/recruit/personal_bg.webp) no-repeat bottom center / 100%;
  padding: 60px 0 500px;
}

.personal_box,
.member_box{
  position: relative;
}
/* inner */
.personal_inner,
.member_inner{
  max-width: 1480px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
}
.member_inner{
  align-items: stretch;
}

.personal_content{
  position: relative;
  width: 40%;
  color: var(--color-wht);
  padding: 40px 60px;
  z-index: 2;
}
.personal_img{
  width: 60%;
}
.personal_img img{
  display: block;
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}
/* 1個目 */
.personal_box:first-child .personal_img{
  margin-right: calc(50% - 50vw);
}
/* 2個目（逆配置） */
.personal_box.reverse{
  margin-top: -30px;
  z-index: 3;
}
.personal_box.reverse .personal_inner{
  flex-direction: row-reverse;
}
/* 左側へ画面端まで伸ばす */
.personal_box.reverse .personal_img{
  margin-left: calc(50% - 50vw);
}

.tit_personal,
.tit_member{
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  width: max-content;
  padding-bottom: 10px;
  margin-bottom: 20px;
  z-index: 3;
}
.tit_member{
  display: block;
  width: 100%;
  font-size: 2.6rem;
}
.tit_member span{
  display: block;
  font-size: 2.0rem;
  font-weight: 400;
}
.tit_personal::after,
.tit_member::after{
  content: "";
  background: var(--color-wht);
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(480px, 50vw, 580px);
  height: 1px;
}
.tit_member::after{
  width: 100%;
}

/* 2個目 */
.personal_box.reverse .tit_personal::after{
  left: -60%;
}

.list_square{
  list-style: square;
}
.list_square li{
  line-height: 1.8;
  margin-bottom: 3px;
}

@media screen and (max-width: 768px){
  .personal_inner{
    flex-direction: column;
  }
  .personal_box.reverse .personal_inner{
    flex-direction: column;
  }
  .personal_content,
  .personal_img{
    width: 100%;
  }
  .personal_box.reverse{
    margin-top: 40px;
  }
  .personal_box .personal_img,
  .personal_box.reverse .personal_img{
    margin-right: 0;
    margin-left: 0;
  }
  .personal_content{
    order: 1;
    padding: 0 20px 30px;
  }
  .personal_img{
    order: 2;
  }

  #personal{
    background: url(../images/recruit/personal_bg.webp) no-repeat center bottom 100px / 100%;
    padding: 60px 0 400px;
  }
  .tit_personal,
  .tit_member{
    font-size: 2.0rem;
  }
}

/* =========================
MENBER スタッフ紹介
========================= */
#member{
  margin-top: -100px;
}
.bg_blubox01{background: #0095ed;}
.bg_blubox02{background: #0096d7;}
.bg_blubox03{background: #00a5ef;}

.member_content{
  position: relative;
  width: 50%;
  color: var(--color-wht);
  padding: 40px 60px;
  z-index: 2;
}
.subtit_content{
  color: var(--color-wht);
}

.member_img{
  width: 50%;
}
.member_img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 1個目 */
.member_box:first-child .member_img{
  margin-right: calc(50% - 50vw);
}

/* 2個目（逆配置） */
.member_box.reverse .member_inner{
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px){
  #member{
    margin-top: -40px;
  }
  .member_inner{
    flex-direction: column;
  }
  .member_box.reverse .member_inner{
    flex-direction: column;
  }
  .member_content,
  .member_img{
    width: 100%;
  }
  .member_box .member_img,
  .member_box.reverse .member_img{
    margin-right: 0;
    margin-left: 0;
  }
  .member_content{
    order: 1;
    padding: 30px 20px;
  }
  .member_img{
    order: 2;
  }
}


/* =========================
want こんな経験がある方歓迎
========================= */
#want{
  background: url(../images/recruit/want_bg.webp) no-repeat top center /100%;
  padding: 120px 0 200px;
}

.title_wrap{
  text-align: center;
}
.tit_rec_c,
.tit_rec_border_c{
  position: relative;
  display: inline-block;
  color: var(--color-wht);
  font-size: 3.0rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
.tit_rec_c{
  display: block;
  text-align: center;
}
.tit_rec_border_c::before{
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background-color: var(--color-wht);
  border-radius: 2px;
}

#want .list_square{
  width: fit-content;
  margin: 0 auto;
}
#want .list_square li{
  color: var(--color-wht);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px){
  #want{padding: 60px 0 60px;}
  .tit_rec_c,
  .tit_rec_border_c{
    font-size: 2.4rem;
  }
  #want .list_square li{
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

/* =========================
guideline 募集要項
========================= */
#guideline{
  background: url(../images/recruit/guideline_bg.webp) no-repeat bottom center / 100%;
}
/* dl.guideline_box{
  width: fit-content;
  margin: 0 auto;
} */
dl.guideline_box > div{
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-wht);
  padding: 15px 0;
}
dl.guideline_box dt{
  width: 20%;
  color: var(--color-wht);
  font-size: 2.0rem;
  font-weight: 400;
}
dl.guideline_box dd{
  width: 72%;
  color: var(--color-wht);
  font-size: 2.0rem;
  margin: 0;
}
.guideline_box .reclist_box > div{
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.guideline_box .reclist_box dt{
  width: 30%;
}
.guideline_box .reclist_box dd{
  width: 70%;
}
a.btn_entry{
  display: block;
  background: var(--color-wht);
  border-radius: 80px;
  width: 350px;
  height: 80px;
  color: var(--color-blu02);
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 80px;
  box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 1);
  margin: 0 auto;
  text-decoration: none!important;
}
a.btn_entry:hover{
  background: var(--color-blu02);
  color: var(--color-wht);
}


@media screen and (max-width: 768px){
  dl.guideline_box > div{
    flex-direction: column;
    align-items: flex-start;
  }
  dl.guideline_box dt,
  dl.guideline_box dd{
    width: 100%;
    font-size: 1.8rem;
  }
  .guideline_box .reclist_box dt{
    width: 35%;
  }
  .guideline_box .reclist_box dd{
    width: 65%;
  }
}

/* =========================
404
========================= */
/* 404 */
.title_404{
  text-align: center;
  color: var(--color-blu);
  font-family: var(--ff-en);
  font-size: clamp(5.0rem, 20vw, 50rem);
  font-weight: 700;
  line-height: 1;
}
.suvtit_404{
  text-align: center;
  color: #ccc;
  font-family: var(--ff-en);
  font-size: clamp(3.0rem, 8vw, 24rem);
  font-weight: 600;
  line-height: 1.2;
}

/* ページのmargin */
.post, .page{margin: 0;}