@charset "UTF-8";
@import url("grid.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Prata&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #403C4E;
    --link-color: #cc500c;
    --linkhover-color: #993c00ff;
    --back-color: #fff;
    --color-a:#FFF1E8;
    --color-b:#FFD1CC;
    --color-c:#FFDBC8;
    --color-d:#AEE4BD;
    --color-e:#F9D933;
    --color-f:#FFA44F;
    --border-color: #9090F1;
    --white-color: #fff;
    --contents_width: 1000px;
    --cont-bg:#f2e8e7;
    --gray_800: 136, 136, 136;
    --lineheight_head: 1.6;
    --ease-inout-quad: cubic-bezier(0.455,0.030,0.515,0.955);
    --palebl: #F6F8FF;
    --card-shadow: 0 0.25em 0.375em -0.0625em rgba(0, 0, 0, 0.1),0 0.125em 0.25em -0.0625em rgba(0, 0, 0, 0.06);
}
html { scroll-behavior: smooth;}
body *{
    font-family: "Prata","Noto Sans JP", sans-serif;
  font-style: normal;
  color: var(--base-color);
}
body{  font-weight: 400;
    counter-reset: number 0; 
    background-image: url(../img/bg.png);
}

.font-bold {
    font-weight: 700;
}
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
a.button {
    display: inline-block;
    background: transparent;
    padding: 10px 20px;
    border: 1px solid var(--link-color);
    border-radius: 0.125em;
    color: var(--link-color);
    margin: 0px 10px 0 0;
    transition: .3s ease;
    line-height: 15px;
}
a.button:hover {
    background: var(--linkhover-color);
    color: #fff;
    border: 1px solid var(--linkhover-color);
}
div.button_cont{
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
    line-break: strict;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
h2 {
    font-size: 2.8em;
}
h4 {
    font-size: 1.5em;
}
ul[class], ol[class] {
    list-style: none;
}
.pc{display: block;}
.sp{display: none;}
.left{
    text-align: left;
}
.cont_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cont{
    padding-top:50px;
    width: 50%;
}
/* スクロールすると下からふわっとさせるためのコード */
.inview {
    /* 30px下げる */
    transform: translateY(30px);
    /* 要素を透明にする */
    opacity: 0;
    /* 2秒かけて、変化させる */
    transition: transform 2s, opacity 2s;
  }
  
  .inview.show {
    transform: translateY(0);
    opacity: 1;
  }
/*ヘッダー
-------------------------------------*/
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 3;
    background-color: var(--back-color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
  }
  .header_inner {
    position: relative;
    padding: 15px;
  }
  .logo{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 15px;
    color: #313195;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .title{
    font-size: 3rem;
    font-weight: 700;
    margin-left: 10px;
  }
  
  .nav_item a {
    /*基本設定*/
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: "Raleway", sans-serif;
    color: #333;
    
    /*固有設定*/
    position: relative;
  }
  .nav_item a.button{
    color: var(--link-color);
  }
  .nav_item a.button:hover{
    color: var(--back-color);
  }
    /* .nav_item a::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -8px;
      width: 0;
      height: 1px;
      background-color: #333;
      transition: 0.3s all;
    }
    .nav_item a:hover::after {
      width: 100%;
    } */
/*--------------------------------------------------------- fv */
.fv{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
  }

  .fv_inner{
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--card-shadow);
}
.fv_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.fv_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.fv_inner .cont .cont_text{
    text-align: left;
}
.swiper {
    height: 70vh;
    width: 100%;
    margin: 0px 0 30px;
    position: relative;
    background-color: #222;
  }
  .swiper-slide {
    overflow: hidden;
  }
  .swiper-slide img {
    height: auto;
    width: 100%;
    opacity: .9;
  }
  .swiper-text {
    color: #fff;
    left: 5%;
    position: absolute;
    text-shadow: var(--card-shadow);
    top: 60%;
    width: 60%;
    z-index: 3!important;
  }
  .swiper-title {
    font-family: "Prata", serif;
    color: #fff;
    font-size: clamp(14px, 4vw, 40px);
    font-weight: 700;
  }
  .swiper-desc {
    font-family: "Raleway","Noto Sans JP", sans-serif;
    color: #fff;
    font-size: clamp(10px, 3vw, 20px);
    line-height: 1.5;
    margin-top: 3%;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 2rem!important;
    color: #fff;
  }
@media only screen and (max-width: 768px) {
    .fv_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .fv_inner .cont_wrap{
        flex-direction: column;
    }
    .fv_inner .cont {
        width: 100%;
    }
    .swiper-slide img {
        height: 70vh;
        width: 100%;
        object-fit: cover;
    }
    .swiper-text {
        top: 70%;
        width: 100%;
      }
}
/*--------------------------------------------------------- aboutus */
.aboutus{
    background-color: var(--back-color);
  }

  .aboutus_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.aboutus_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
}
.aboutus_inner .cont {
    padding:1em;
    width: calc(100% / 3 – 5px);
}
.aboutus_inner .cont:nth-of-type(1) {
    background-color: var(--color-a);
}
.aboutus_inner .cont:nth-of-type(2) {
    background-color: var(--color-b);
}
.aboutus_inner .cont:nth-of-type(3) {
    background-color: var(--color-c);
}
.aboutus_inner .cont .cont_text{
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .aboutus_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .aboutus_inner .cont_wrap{
        flex-direction: column;
    }
    .aboutus_inner .cont {
        width: 100%;
    }
}
/*--------------------------------------------------------- service */
.service{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .service_inner{
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    width:70% ;
    
}
.service_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    
}
.service_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 100%;
}
.service_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.service_inner .cont:nth-child(1)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/service_i01.png);
  background-size: contain;
  }
  .service_inner .cont:nth-child(2)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/service_i02.png);
  background-size: contain;
  }
  .service_inner .cont:nth-child(3)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/service_i03.png);
  background-size: contain;
  }
  .service_inner .cont:nth-child(4)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/service_i04.png);
  background-size: contain;
  }
  .right_img01{
    background-image: url(../img/service01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 30%;
    padding-top: 80vh;
    /* mask-image:url(../img/circle-right.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: left;
    display: block; */
    clip-path: ellipse(17vw 55vh at right);
}
@media only screen and (max-width: 768px) {
    .service{
        flex-direction: column;
    }
    .service_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .service_inner .cont_wrap{
        flex-direction: column;
    }
    .service_inner .cont {
        width: 100%;
    }
    .right_img01{
        width: 100%;
        padding-top: 50vh;
        clip-path: none;
    }
}

/*--------------------------------------------------------- charm */
.charm{
    background-color: var(--back-color);
  }

  .charm_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.charm_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.charm_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.charm_inner .cont .cont_text{
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .charm_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .charm_inner .cont_wrap {
        flex-direction: column;
    }
    .charm_inner .cont {
        width: 100%;
    }
}

/*--------------------------------------------------------- plan */
.plan{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .plan_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    width:70% ;
}
.plan_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    
}
.plan_cont .cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}
.plan_cont .cont_text {
    padding: 20px;
    border-radius: 0.125em;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
.plan_cont .cont_text:nth-of-type(1){
    background-color: var(--color-d);
}
.plan_cont .cont_text:nth-of-type(2){
    background-color: var(--color-e);
}
.plan_cont .cont_text:nth-of-type(3){
    background-color: var(--color-f);
}
  .left_img01{
    background-image: url(../img/plan01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 30%;
    padding-top: 80vh;
    clip-path: ellipse(17vw 80vh at left);
}
@media only screen and (max-width: 768px) {
    .plan{
        flex-direction: column;
    }
    .plan_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .plan_cont .cont_text {
        width: 100%;
        }
    .left_img01{
        width: 100%;
        padding-top: 50vh;
        clip-path: none;
    }
}

/*--------------------------------------------------------- option */
.option{
    background-color:var(--back-color);
  }
  .option_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.option_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
}
.option_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.option_inner .cont_wrap.images a{
    width: calc(50% - 10px);
    height: 200px;
    overflow: hidden;
}



@media only screen and (max-width: 768px) {
    .option_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .option_inner .cont_wrap.images a{
        height: 100px;
    }
}
/*--------------------------------------------------------- location */
.location{
    background-image: radial-gradient(circle at 0% 0%, #75d8ff80 0, #75d8ff00 50%), radial-gradient(circle at 24.71014492753625% 12.065217391304373%, #b875ff80 0, #b875ff00 87.35507246376812%), radial-gradient(circle at 39.42028985507247% 34.13043478260868%, #ff75a180 0, #ff75a100 94.71014492753623%), radial-gradient(circle at 44.13043478260871% 16.195652173913054%, #ffef7580 0, #ffef7500 72.06521739130436%), radial-gradient(circle at 38.840579710144944% 8.260869565217426%, #75ff8080 0, #75ff8000 69.42028985507247%), linear-gradient(0deg, #75d8ff80 0%, #75d8ff80 100%);
    padding: 50px 0;
  }

  .location_inner{
    max-width: var(--contents_width);
    margin: 50px auto;
    background-color: var(--back-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    position: relative;
    box-shadow: var(--card-shadow);
}
.location_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
}

.location_inner .cont {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.location_inner .cont.icon {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
}
.location_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 50%;
    gap: 10px;
}
.location_inner .cont .cont_text img{
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 768px) {
    .location_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .location_inner .cont_wrap {
        flex-direction: column;
    }
    .location_inner .cont {
        width: 100%;
        flex-direction: column;
    }
    .location_inner .cont .cont_text{
        width: 100%;
    }
    .location_inner .cont:nth-of-type(1){
        flex-direction: column-reverse;
        padding-top: 30px;
    }
}
/*--------------------------------------------------------- flow */
.flow{
    background-color: var(--back-color);
  }

  .flow_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.flow_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.flow_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.flow_inner .cont .cont_text{
    text-align: left;
}
.flow_design07 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .flow07 {
    padding-left: 0;
  }
  
  .flow07 > li {
    list-style-type: none;
    display: flex;
  }
  
  .flow07 > li:not(:last-child) {
    margin: 0 0 40px;
  }
  
  .flow07 > li .icon07 {
    width: 90px;
    box-sizing: border-box;
    padding: 10px 10px 10px;
    /* font-weight: bold; */
    color: #333;
    text-align: center;
    background: var(--color-a);
    border-radius: 0 0;
    position: relative;
    line-height: 125%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 26px;
  }
  .flow07 > li .icon07::before {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 45px solid var(--color-a);
    border-right: 45px solid var(--color-a);
    border-top: 20px solid transparent;
    position: absolute;
    top: -20px;
    left: 0;
  }
  .flow07 > li .icon07::after {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 20px solid var(--color-a);
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  .flow07 > li:nth-child(2n) .icon07 {
    background: var(--color-b);
  }
  .flow07 > li:nth-child(2n) .icon07::before {
    border-left: 45px solid var(--color-b);
    border-right: 45px solid var(--color-b);
  }
  .flow07 > li:nth-child(2n) .icon07::after {
    border-top: 20px solid var(--color-b);
  }
  .flow07 > li:nth-child(3n) .icon07 {
    background: var(--color-c);
  }
  .flow07 > li:nth-child(3n) .icon07::before {
    border-left: 45px solid var(--color-c);
    border-right: 45px solid var(--color-c);
  }
  .flow07 > li:nth-child(3n) .icon07::after {
    border-top: 20px solid var(--color-c);
  }
  .flow07 > li dl {
    padding: 0 0 0 20px;
    width: calc(100% - 90px);
    text-align: left;
  }
  
  .flow07 > li dl dt {
    padding: 0 0 5px;
    margin: 0 0 15px;
    font-size: 1.2em;
    position: relative;
  }
  
  .flow07 > li dl dd {
    margin: 0;
  }
@media only screen and (max-width: 768px) {
    .flow_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .flow_inner .cont_wrap {
        flex-direction: column;
    }
    .flow_inner .cont {
        width: 100%;
    }
}

/*--------------------------------------------------------- plan */
.faq{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .faq_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    width:70% ;
}
.faq_inner h2{
    margin-bottom: 30px;
}
.faq_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    
}
.faq_cont .cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}
.faq_cont .cont_text {
    padding: 20px;
    border-radius: 0.125em;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
.faq_cont .cont_text:nth-of-type(1){
    background-color: var(--color-d);
}
.faq_cont .cont_text:nth-of-type(2){
    background-color: var(--color-e);
}
.faq_cont .cont_text:nth-of-type(3){
    background-color: var(--color-f);
}
  .left_img02{
    background-image: url(../img/faq01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 30%;
    padding-top: 80vh;
    clip-path: ellipse(17vw 80vh at left);
}
@media only screen and (max-width: 768px) {
    .faq{
        flex-direction: column;
    }
    .faq_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .faq_cont .cont_text {
        width: 100%;
        }
    .left_img02{
        width: 100%;
        padding-top: 50vh;
        clip-path: none;
    }
}

.qa-8 dt {
    text-align: left;
}

.qa-8 dt {
    margin-bottom: 1em;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}

.qa-8 dt::before,
.qa-8 dd::before {
    margin-right: .4em;
}

.qa-8 dt::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #222;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: .3s;    /* アニメーション時間を0.3秒に指定 */
  /* transform: rotate(90deg); */
  
}
.qa-8 dt.open::before {
    transform: rotate(90deg); /* ずらしたのはキープしたまま回転させる */
  }
.qa-8 dd {
    display: none;
    margin: 0 0 2.5em;
    padding: 1em 1.5em;
    color: #222;
    border-left: 1px solid #ccc;
    text-align: left;
}
/*--------------------------------------------------------- cvoice */
.cvoice{
    background-image: url(../img/cvoice01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.cvoice_back{
    background-color: #F9D933;
    opacity: .8;
}
.cvoice_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    /* height: 80vh; */
}
.cvoice_inner .cont_wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
}
.cvoice_inner .cont{
    padding-top:50px;
}
.cvoice_inner .cont h2{
    font-size: 4em;
    font-family: "Prata", serif;
    font-weight: 400;
}
/* .cvoice_inner .cont:nth-last-of-type(1)>h2{
    color: var(--color-c);
}
.cvoice_inner .cont:nth-last-of-type(2)>h2{
    color: var(--color-b);
}
.cvoice_inner .cont:nth-last-of-type(3)>h2{
    color: var(--color-a);
} */
@media only screen and (max-width: 768px) {
    .cvoice_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .cvoice_inner .cont_wrap {
        flex-direction: column;
    }
    
}
/*--------------------------------------------------------- professional */
.professional{
    background-color: var(--back-color);
  }

  .professional_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.professional_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: center;
}
.professional_inner .cont:first-of-type>.cont_text{
    text-align: right;
}
.professional_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.professional_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
@media only screen and (max-width: 768px) {
    .professional_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .professional_inner .cont_wrap {
        flex-direction: column;
    }
    .professional_inner .cont {
        width: 100%;
    }
    .professional_inner .cont .cont_text{
        text-align: center;
    }
    .professional_inner .cont:first-of-type>.cont_text {
        text-align: center;
    }
}
/*--------------------------------------------------------- offer */
.offer{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .offer_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    /* width:70% ; */
}
.offer_inner h2{
    color: #222;
    font-weight: 400;
}
.offer_inner .left{
    color: #222;
}
.offer_inner .pyramid_cont {
    width: 100%;
    background-image: url(../img/offer01.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 350px;
    margin-bottom: 30px;
}
.offer_inner .pyramid_cont .text {
    text-align: left;
    padding: 31px 0 21px 5%;
    color: #222;
}
.offer_inner .pyramid_cont .text h4{
    color: #222;
    font-weight: 400;
}
.offer_inner .pyramid_cont .text:nth-child(1) {
    margin-left: 35%;
    border-bottom: 2px solid var(--color-a);
}
.offer_inner .pyramid_cont .text:nth-child(2) {
    margin-left:  44%;
    border-bottom: 1px solid var(--color-b);
}
.offer_inner .pyramid_cont .text:nth-child(3) {
    border-bottom: none;
    margin-left:  52%;
}

@media only screen and (max-width: 768px) {
    .offer_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .offer_inner .pyramid_cont {
        background-image: none;
       
    }
    .offer_inner .pyramid_cont .text:nth-child(1) {
        margin-left:  0%;
    }
    .offer_inner .pyramid_cont .text:nth-child(2) {
        margin-left:  0%;
    }
    .offer_inner .pyramid_cont .text:nth-child(3) {
        margin-left:  0%;
    }
    .offer_inner .pyramid_cont .text:nth-child(4) {
        margin-left:  0%;
    }
}
/*--------------------------------------------------------- support */
.support{
    background-color: var(--back-color);
  }

  .support_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.support_cont {
    width: 100%;
    margin: 30px 0;
}
.support_cont .text {
    text-align: left;
    padding: 20px 0 15px 5%;
}

.support_cont dl{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	border-bottom: none;
}
.support_cont dl dt{
	background: transparent;
	padding: 40px;
	border-radius: 4px;
    margin-bottom: 6px;
    /* border: 2px solid; */
}
.support_cont dl dd{
	background: transparent;
	padding: 20px;
	border-bottom: 2px solid;
    margin-bottom: 6px;
    text-align: left;
}
.support_cont dl dt:nth-child(1) {
    width: 20%;
    background-color: var(--color-a);
    background-image: url(../img/support01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}
.support_cont dl dd:nth-child(2){
	width: 80%;
    border-color: var(--color-a);
}
.support_cont dl dt:nth-child(3) {
    width: 30%;
    background-color: var(--color-b);
    background-image: url(../img/support02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
}
.support_cont dl dd:nth-child(4){
	width: 70%;
    border-color: var(--color-b);
}
.support_cont dl dt:nth-child(5) {
    width: 40%;
    background-color: var(--color-c);
    background-image: url(../img/support03.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
}
.support_cont dl dd:nth-child(6){
	width: 60%;
    border-color: var(--color-c);
}
@media only screen and (max-width: 768px) {
    .support_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .support_cont dl dt {
        padding: 20px;
    }
}

/*--------------------------------------------------------- after */
.after{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .after_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    width:70% ;
}
.after_inner h1 {
    margin-bottom: 50px;
}
.after .after_cont {
    border: 1px solid #e6e6e7;
    overflow: hidden;
}
.after_inner table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
  }
  .after_inner table tbody{
    border-radius: 20px;
  }
  .after_inner td {
    border: 1px solid transparent;
  }
  .after_inner th,
  .after_inner td {
    padding: 15px;
  }
  .after_inner th {
    /* background-color: ; */
    color: #fff;
    font-weight: 400;
  }
  .after_inner tbody tr:nth-child(odd) td {
    background-color: rgba(0, 0, 0, 0.04);
  }
  .left_img04{
    background-image: url(../img/after01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 30%;
    padding-top: 80vh;
    clip-path: ellipse(17vw 80vh at left);
}
@media only screen and (max-width: 768px) {
    .after{
        flex-direction: column;
    }
    .after_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .after_cont .cont_text {
        width: 100%;
        }
    .left_img04{
        width: 100%;
        padding-top: 50vh;
        clip-path: none;
    }
}


/*--------------------------------------------------------- season */
.season{
    background-color: var(--back-color);
  }
  .season_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.season_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.season_inner .cont_wrap.images a {
    width: calc(50% - 10px);
    /* height: 200px;
    overflow: hidden; */
}
.season_inner .cont_wrap.images a img{
    height: 260px;
    width: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 768px) {
    .season_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .season_inner .cont_wrap.images a img{
        height: 160px;
    }
    
}

/*--------------------------------------------------------- offer */
.event{
    background-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
    box-shadow: var(--card-shadow);
  }

  .event_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    /* width:70% ; */
}
.event_inner h2{
    color: #222;
    font-weight: 400;
}
.event_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: center;
}
/* .benefits_inner .cont:first-of-type>.cont_text{
    text-align: right;
} */
.event_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.event_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.event_inner .cont .cont_text img{
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
    .event_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .event_inner .cont_wrap {
        flex-direction: column;
    }
    .event_inner .cont {
        width: 100%;
    }
    .event_inner .cont .cont_text {
        text-align: center;
}
.event_inner .cont .cont_text img {
    margin: 0 auto 20px;
}
}

 

/*--------------------------------------------------------- csr */
.csr{
    background-image: url(../img/csr01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.csr_back{
    background-color: #ffa44fd9;
    /* opacity: .8; */
}

  .csr_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    /* height: 70vh; */
    justify-content: center;
}
.csr_inner .cont_wrap{
    flex-wrap: nowrap;
    align-items: stretch;
}
.csr_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.csr_inner .cont .cont_text{
    text-align: left;
}
.csr_inner .cont .cont_text h4{
    padding-top: 50px;
}
.csr_inner .cont .cont_text h4::before{
    content: '';
    width: 100%;
    height: 20px;
    border-radius: 3px;
    /* border: 2px solid; */
    display: block;
    margin-bottom: 20px;
}
.csr_inner .cont:nth-child(1)> .cont_text h4::before{
    background-color: var(--color-a);
}
.csr_inner .cont:nth-child(2)> .cont_text h4::before{
    background-color: var(--color-b);
}
.csr_inner .cont:nth-child(3)> .cont_text h4::before{
    background-color: var(--color-c);
}
.csr_inner .cont:nth-child(1) {
    margin-top: 50px;
}
.csr_inner .cont:nth-child(2) {
    margin-top: 30px;
}
.csr_inner .cont:nth-child(3) {
    margin-top: 0;
}
@media only screen and (max-width: 768px) {
    .csr_inner{
        width: 100%;
        padding: 50px 16px;
    }
    
}
/*--------------------------------------------------------- gallery */
.gallery{
    background-color:var(--back-color);
  }
  .gallery_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.gallery_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}
.gallery_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery_inner .cont_wrap.images a{
    width: calc(32% - 10px);
    overflow: hidden;
}
.gallery_inner .cont_wrap.images a img{
    width: 100%;
    height: 278px;
    object-fit: cover;
}
ul.left{
    list-style: disc;
}


@media only screen and (max-width: 768px) {
    .gallery_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .gallery_inner .cont_wrap.images a{
        height: 100px;
    }
}

/*--------------------------------------------------------- blog */
.blog{
    max-width: var(--contents_width);
    background-color: var(--back-color);
    margin: 50px auto;
    box-shadow: var(--card-shadow);
  }

  .blog_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.blog_inner h2{
    margin-bottom: 40px;
}
.blog_inner .cont_wrap{
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
    text-align: left;
    margin-bottom: 1.5rem;
}
.blog_inner .cont {
    padding:1em;
    width: calc(100% / 3 – 5px);
}
.blog_inner .cont:nth-of-type(1) {
    background-color: var(--color-a);
}
.blog_inner .cont:nth-of-type(2) {
    background-color: var(--color-b);
}
.blog_inner .cont:nth-of-type(3) {
    background-color: var(--color-c);
}
.blog_inner .cont .cont_text{
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .blog_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .blog_inner .cont_wrap{
        flex-direction: column;
    }
    .blog_inner .cont {
        width: 100%;
    }
}
/*--------------------------------------------------------- reserve */
.reserve{
    background-color: var(--back-color);
  }

  .reserve_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}

.reserve_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.reserve_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 50%;
}
.reserve_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.reserve_inner .cont:nth-child(1)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/con01.png);
  background-size: contain;
  }
  .reserve_inner .cont:nth-child(2)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/con02.png);
  background-size: contain;
  }
  .reserve_inner .cont:nth-child(3)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/con03.png);
  background-size: contain;
  }
  .reserve_inner .cont:nth-child(4)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/con04.png);
  background-size: contain;
  }

@media only screen and (max-width: 768px) {
    .reserve_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .reserve_inner .cont {
        flex-direction: column;
        padding: 5px;
        width: 100%;
    }
    
}
/*--------------------------------------------------------- gallery */
.moment{
    background-color:var(--back-color);
  }
  .moment_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
}
.moment_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}
.moment_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.moment_inner .cont_wrap.images a{
    width: calc(24% - 10px);
    overflow: hidden;
}
.moment_inner .cont_wrap.images a img{
    width: 100%;
    height: 206px;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .moment_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .moment_inner .cont_wrap.images a{
        width: calc(49% - 10px);
        overflow: hidden;
    }
    .moment_inner .cont_wrap.images a img{
        width: 100%;
        height: 158px;
        object-fit: cover;
    }
}



/*--------------------------------------------------------- contact */
section.contact{
    padding: 50px 0;
    box-shadow: var(--card-shadow);
}
.contact_inner{
    width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px ;
    margin: 0 auto;
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
}

form#mail_form dl.privacy {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-bottom: 0px;
}
form#mail_form dl.privacy dt {
    position: absolute;
    width: 80px;
    right: 20%;
}

@media only screen and (max-width: 768px) {
    section.contact{
        padding: 80px 16px;
        background-image: url(../img/contact_bg.png);
        background-size: cover;
        position: relative;
    }
    .contact_inner{
        width: 100%;
        padding: 40px 10px;
    }
    h2.bg_contact {
        font-size: 35px;
    }
    h2.bg_contact span{
        font-size: 14px;
    }
    
    form#mail_form dl.privacy dt {
        width: auto;
        right: 10px;
        text-align: right;
    }
    form#mail_form dl.privacy dd label {
        padding-top: 20px;
        padding-right: 60px;
        text-align: left;
        text-indent: -2em;
        padding-left: 2em;
    }
}

/*--------------------------------------------------------- footer */
#footer{
    background-color: #F44444;
    color: #222;
}
#footer h1{
    line-height: 50px;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: solid 2px #222;
    letter-spacing: .1rem;
}
#footer h1 a{
    color: #222;
    transition: .3s ease;
}
#footer h1 a:hover{
    opacity: .9;
}
#footer h1 a img{
    display: inline-block;
    margin-right: 50px;
}
#footer a.button {
     border: 1px solid #222;
    color: #222;
}
#footer a.button:hover {
    background: #222;
    color: #fff;
    border: 1px solid #222;
}
.footer_cont{
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: center;
    width: var(--contents_width);
    margin: 0 auto;
    color: #222;
}
.footer_info{
display: flex;
flex-direction: row;
padding-bottom: 30px;
border-bottom: solid 2px #222;
gap: 20px;
padding: 20px;
}
.footer_info div{
    width: calc(32% - 10px);
    }
    .footer_info div h3{
        letter-spacing: .1rem;
        color: #222;
        font-weight: 500;
        }
        .footer_info div p{
            letter-spacing: .1rem;
            color: #222;
            font-size: 1.2rem;
            }
.footer_copy{
    background-color: #F44444;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 12px;
}
.footer_copy p{
    color: #222;
}
.footer_copy p.copyright{
    font-weight: bold;
    font-size: 12px;
}
.footer_copy p.privacy{
    font-size: 12px;
}
.footer_copy p.privacy a{
    color:#fff ;
}
.footer_copy p.privacy a i{
    color:#fff ;
}
@media only screen and (max-width: 768px) {
    
    .footer_cont{
        padding: 20px;
        flex-direction: column;
        width: 100%;
    }
    .footer_info{
        flex-direction: column;
        }
    .footer_info div{
        width: 100%;
        }
        #footer h1{
            font-size: 2rem;
        padding-top: 10px;
        padding-bottom: 20px;
        }
        #footer h1 a img{
            display: inline-block;
            margin-right: 10px;
        }
    
}
/* ナビゲーション */
  @media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-image: url(../img/bg.png);
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 12px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    /* border-bottom: 1px solid var(--border-color); */
    text-decoration: none;
    color: var(--base-color);
    font-weight: 700;
  }
  /* .nav_item a:hover {
    background-color: #eee;
  } */
  .c-social-media.sp{
    display: flex;
    justify-content: center;
  }
  .c-social-media.sp li{
    margin-bottom: 0;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
  .nav_item.contact a .fa-solid{
   display: none;
}
}
/* ↑sp↑ */

@media only screen and (min-width: 769px) {
    .c-social-media.sp{
        display: none;}
  .header_inner{
    /* max-width: 100%; */
    width: 100%;
    padding: 12px 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding: 8px 40px
  }
  .nav_list{
    text-align: center;
    /* padding-left: 300px; */
    margin-bottom: 0;
  }
  .nav_list li{
    display: inline-block;
    text-align: left;
    padding-left: 20px;
  }
  .nav_list li a{
    color: var(--base-color);
    font-weight: 600;
    font-size: 16px;
    transition: .3s ease;
  }
  .nav_list li a:hover{
    color: var(--linkhover-color);
  }

}
/* pc */

.nav_item.shop a {
    background-color: var(--color-b);
    padding: 10px 20px;
    border: 2px solid #333;
    transition: .3s ease;
}

.nav_item.contact a .fa-solid,.nav_item.shop a .fa-solid{
    margin-left: 10px;
}
.nav_item.contact a:hover{
    background-color: #333;
    color: var(--color-a);
}
.nav_item.shop a:hover{
    background-color: #333;
    color: var(--color-b);
}
.nav_item.contact a > .fa-solid{
    transition: .3s ease;
}
.nav_item.shop a > .fa-solid{
    transition: .3s ease;
}
.nav_item.contact a:hover > .fa-solid{
    color: var(--color-a);
}
.nav_item.shop a:hover > .fa-solid{
    color: var(--color-b);
}    
/*メイン画像
-------------------------------------*/

.fv_box {
            width: 100vw;
        height: 80vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: var(--back-color);
        
}
.fvimg{
    object-fit: cover;
    height: 80vh;
    margin: 0 auto;
    width:100% ;
}
.fv_l{
    width:65% ;
    padding: 80px;
    color: #fff;
}
.fv_l h1 {
    line-height: 1.5;
}
.fv_l p {
    line-height: 2;
}

.fv_r{
    height: 80vh;
    width:35% ;
}
/*メインコンテンツ
-------------------------------------*/
.gray-back {
	background-color: var(--back-color);
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a::before {
    display: inline-block;
    width: 23px;
    height: auto;
    vertical-align: middle;
    color: var(--back-color);
    content:'\f062';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: all 0.3s ease;
}
#pagetop a:hover {
    background-color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	.pc{display: none;}
    .sp{display: block;}
    div.button_cont{
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    a.button{
        display: block;
        width: 100%;
    }
/*ヘッダー
-------------------------------------*/
.fv_box {
        /* padding-top: 50px; */
        height: auto;
        flex-direction: column-reverse;
}
.fvimg{
    width: 100%;
    height: 60vh;
    margin: 0 auto;
}
.fv_l{
width:100% ;
padding: 30px 16px;
}
.fv_l h1 {
font-size: 1.8em;
}
/* .fv_l p {
line-height: 2;
} */

.fv_r{
height: 60vh;
width:100% ;
}
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}


/* @media only screen and (min-width: 769px) {
    .fv_box {
        background-image: url('../img/fv_pc.png');
                background-size: cover;
    }
} */