@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: #1B1B27;
    --linkhover-color: #303038;
    --back-color: #fff;
    --card-backcolor:#ffffffbf;
    --color-a:#1b1b27bf;
    --color-b:#1B1B27;
    --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: "Raleway","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); */
    /* background-color: #ffe0c5; */
}

.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: 0px 15px;
    border: 1px solid var(--link-color);
    border-radius: 4px;
    background-color: var(--link-color);
    color: #fff;
    margin: 0px 10px 0 0;
    transition: .3s ease;
    height: 50px;
    line-height: 50px;
}
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;
    font-weight: 400;
}
h1,h2 {
    font-size: 2.5em;

    margin-bottom: 20px;
}
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;
  }
  .roundbox
  {
    border-radius: 1.25em;
    border: 0.125em solid var(--color-a);
    box-shadow: 0.5em 0.5em var(--color-a);
}
a.tel{
    display: inline-block;
}

.wt{color:#fff;}
@media only screen and (max-width: 768px) {
    h1,h2 {
    font-size: 2em;
}

}
/*ヘッダー
-------------------------------------*/
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 9;
    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: #fff;
  }
  .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-image: url(../img/fv.jpg);
    /* margin: 100px auto 50px; */
    /* display: flex;
    flex-direction: row;
    width:100% ; */
    background-size: cover;
    background-position: center center;
    position: relative;
    
  }
.fv::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #4d4d4dbc;
    z-index: 2;
}
  .fv_inner{
        max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 60vh 0 100px;
    margin: 0 auto;
    /* height: 80vh; */
    position: relative;
    z-index: 3;
    
    
}
.fv_inner p,.fv_inner h1 {
    color: #fff;
    
}
.fv_inner a.button {
    border: 1px solid #d2d2e0;
    background-color: #d2d2e0;
    color: var(--link-color);
}
.fv_inner a.button:hover {
    opacity: .9;
    color: var(--linkhover-color);
}
@media only screen and (max-width: 768px) {
    .fv{
        flex-direction: column;
        
    }
    .fv_inner{
        width: 100%;
        padding: 100px 16px 0;
        text-align: left;
        align-items: stretch;
    }
    .fv_inner p{
        padding-top: 40vh;
        text-align: right;
    }
        .fv_inner div.button_cont {
        
        padding-bottom: 1em;
    }
}
/*--------------------------------------------------------- portfolio */
.portfolio{
    background-color:var(--color-a);
  }
  .portfolio_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;
    color: #fff;
}
.portfolio_inner h2{
    color: #fff;
}
.portfolio_inner .cont_wrap{
    padding-top: 20px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}
.portfolio_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.portfolio_inner .cont_wrap.images a{
    flex-grow: 1;
    overflow: hidden;
}
.portfolio_inner .cont_wrap.images a img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .portfolio_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .portfolio_inner .cont_wrap.images a{
        width: calc(49% - 10px);
        overflow: hidden;
    }
    .portfolio_inner .cont_wrap.images a img{
        width: 100%;
        height: 158px;
        object-fit: cover;
    }
}

/*--------------------------------------------------------- profile */
.profile{
    background-color: var(--color-b);
    padding: 80px 0;
  }

  .profile_inner{
    background-color: var(--card-backcolor);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 50px;
    margin: 0px auto;
    position: relative;
    
    justify-content: space-around;
    max-width: var(--contents_width);
    
}
.profile_inner .cont_wrap {
    align-items: normal;
    width: 100%;
    justify-content: normal;
    
}
.profile_inner .cont_wrap .cont_text{
    flex-direction: column;
    padding: 20px;
    width: 55%;
	line-height: 220%;
}
.profile_inner .roundbox{
    border: 0.125em solid #d9d9caff;
    box-shadow: 0.5em 0.5em #d9d9caff;
    background-color: #f3f3e4ff;
}



  .profileimg{
    background-image: url(../img/profile.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 45%;
    padding-top: 50vh;
    border-radius:1.25em;
}
@media only screen and (max-width: 768px) {
    .profile{
        flex-direction: column;
    }
    .profile_inner{
        width: 100%;
        padding: 50px 16px;
        flex-direction: column;
        margin: 0;
    }
    .profile_inner .cont_wrap {
    width:100% ;
    height: auto;
    padding-left: 0;
    gap: 30px;
    padding: 0;
    
}
.profile_inner .cont_wrap .cont_text{
    flex-direction: column;
    padding: 20px;
    width: 100%;
}
    .profileimg{
        width: 100%;
        padding-top: 50vh;
        border-radius: 0;
    }
}

/*--------------------------------------------------------- plan */
.plan{
    background-image: url(../img/planbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.plan_back{
    background-color: var(--back-color);
    opacity: .8;
}
.plan_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; */
}
.plan_inner .cont_wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}
.plan_inner .cont{
    margin-top:50px;
    border-radius: 10px;
    background-color:#e1e1eaff ;
    border: 1px solid #c7c7d0ff;
    padding: 20px 12px 12px;
    text-align: left;
}
.plan_inner .cont h2{
    font-size: 4em;
    font-family: "Prata", serif;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .plan_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .plan_inner .cont_wrap {
        flex-direction: column;
    }
    .plan_inner .cont{
    width: 100%;
    margin-top: 0;
}
    
}
/*--------------------------------------------------------- category */
.category{
    display: flex;
    flex-direction: column;
    background-color: var(--color-b);
  }

  .category_inner{
    max-width: var(--contents_width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* padding: 50px ; */
    margin: 100px auto;
    position: relative;
    width:100% ;
    justify-content: space-around;
    
}
.category_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}
.category_inner .cont {
  flex-direction: column;
  padding: 5px;
  width: calc(100% / 4 - 12px);
  background-color: #fff;
  border-radius: 20px;
  margin: 7px 6px;
}
.category_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 55px 10px 10px 10px;
    position: relative;
}

.category_inner .cont > .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  }
.category_inner .cont:nth-child(1)> .cont_text:before {

  background-image: url(../img/category_i01.png);
  }
 .category_inner .cont:nth-child(2)> .cont_text:before {

  background-image: url(../img/category_i02.png);
  }
  .category_inner .cont:nth-child(3)> .cont_text:before {

  background-image: url(../img/category_i03.png);
  }
  .category_inner .cont:nth-child(4)> .cont_text:before {

  background-image: url(../img/category_i04.png);
  }
  .category_inner .cont:nth-child(5)> .cont_text:before {

  background-image: url(../img/category_i05.png);
  }
 .category_inner .cont:nth-child(6)> .cont_text:before {

  background-image: url(../img/category_i06.png);
  }
  .category_inner .cont:nth-child(7)> .cont_text:before {

  background-image: url(../img/category_i07.png);
  }
  .category_inner .cont:nth-child(8)> .cont_text:before {

  background-image: url(../img/category_i08.png);
  }
  .category_inner .cont:nth-child(9)> .cont_text:before {

  background-image: url(../img/category_i09.png);
  }
 .category_inner .cont:nth-child(10)> .cont_text:before {

  background-image: url(../img/category_i010.png);
  }
  .category_inner .cont:nth-child(11)> .cont_text:before {

  background-image: url(../img/category_i011.png);
  }
  .category_inner .cont:nth-child(12)> .cont_text:before {

  background-image: url(../img/category_i012.png);
  }

@media only screen and (max-width: 768px) {
    .category{
        flex-direction: column;
    }
    .category_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .category_inner .cont_wrap{
        flex-direction: column;
    }
    .category_inner .cont {
        width: 100%;
    }
    .category_inner .cont > .cont_text:after {
    content: "";
    width: 24px;
    height: 2px;
    background: gray;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: 10px auto;
    text-align: center;
}
    
}
/*--------------------------------------------------------- list */
.list{
    background-color: var(--back-color);
  }

  .list_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;
}
.list_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

 .list_inner #content{
    width: 100%;
    text-align: left;
 }
.list_inner .cont {
    padding: 5px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 500px;
}
.list_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.list_inner .cont:nth-child(1) .cont_text:last-child{
   margin-top: 50px; 
}
.list_inner .cont:nth-child(2) .cont_text{
    width: 183px;
}
.list_inner .cont:nth-child(2) img{
    height: 500px;
    width: 163px;
     margin: 0 auto;
}
.list_inner .cont:nth-child(3) {
   justify-content: flex-end;
}
.list_inner .cont:nth-child(3) .cont_text:last-child{
   margin-top: 30px; 
}


.table_box {
    width: 100%;
}
.table__round {
    margin-top: 30px;
  width: 100%;
  border-radius: 1rem;
  border-top: solid 1px rgba(123, 125, 138, 0.117);
  border-left: solid 1px rgba(123, 125, 138, 0.117);
  border-collapse: separate;
  border-spacing: 0;
}
.table__round th,
.table__round td {
  border-bottom: solid 1px rgba(123, 125, 138, 0.117);
  border-right: solid 1px rgba(123, 125, 138, 0.117);
  padding: 1rem 1rem;
}

.table__round thead tr:first-child th:first-child {
  border-top-left-radius: 1rem;
}
.table__round thead tr:first-child th:last-child {
  border-top-right-radius: 1rem;
}
.table__round tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}
.table__round tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}
tbody tr:nth-child(even) td {
  background-color: rgba(123, 125, 138, 0.117);
}


@media only screen and (max-width: 768px) {
    .list_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .list_inner .cont_wrap {
        flex-direction: column;
        padding: 30px 0;
    }
    .list_inner .cont {
        width: 100%;
        height: auto;
        /* padding: ; */
    }
    .list_inner .cont:nth-child(2){
    display: none;
}
.list_inner .cont:nth-child(3) {
    justify-content: flex-start;
}
    .list_inner .cont .cont_text{
        text-align: center;
            padding: 20px 10px;
    }
    .list_inner .cont:first-of-type>.cont_text {
        text-align: center;
    }
    .list_inner .cont:nth-child(1) .cont_text:last-child{
   margin-top: 0px; 
}
.list_inner .cont:nth-child(3) .cont_text:last-child{
   margin-top: 0px; 
}
.table_box {
    overflow-x: auto;
    display: block;
    margin-bottom: 20px;
}

.table_box table th,
.table_box table td {
    white-space: nowrap;
}
/* スクロールバー全体を対象にする */
.table_box::-webkit-scrollbar {
    width: 10px; /* スクロールバーの幅 */
    height: 10px; /* スクロールバーの高さ */
}

/* スクロールバーの背景部分をカスタマイズ */
.table_box::-webkit-scrollbar-track {
    background: #f1f1f1; /* スクロールバーの背景色 */
    border-radius: 5px; /* 角丸にする */
}

/* スクロールバーの操作部分をカスタマイズ */
.table_box::-webkit-scrollbar-thumb {
    background: var(--base-color); /* スクロールバーの操作部分の背景色 */
    border-radius: 5px; /* 角丸にする */
}

}

/*--------------------------------------------------------- kimono */
.kimono{
    background-color: var(--back-color);
}
.kimono_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; */
}
.kimono_inner .cont_wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}
.kimono_inner .cont{
    margin-top:50px;
    border-radius: 10px;
    background-color:#e1e1eaff ;
    border: 1px solid #c7c7d0ff;
    padding: 20px 12px 12px;
    text-align: center;
}
.kimono_inner .cont h2{
    font-size: 4em;
    font-family: "Prata", serif;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .kimono_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .kimono_inner .cont_wrap {
        flex-direction: column;
    }
    .kimono_inner .cont{
    width: 100%;
    margin-top: 0;
}
    
}

/*--------------------------------------------------------- cvoice */
.cvoice{
    background-color: var(--color-a);
  }

  .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;
}
.cvoice_inner h2{
    color: #fff;
}
.cvoice_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.cvoice_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.cvoice_inner .cont img{
    border-radius: 1.25em;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.cvoice_inner .cont .cont_text{
    text-align: left;
}
.cvoice_inner .cont .cont_text h4,.cvoice_inner .cont .cont_text p{
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .cvoice_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .cvoice_inner .cont_wrap {
        flex-direction: column;
    }
    .cvoice_inner .cont {
        width: 100%;
    }
}

/*--------------------------------------------------------- flow */
.flow{
    background-color: var(--back-color);
    display: flex;
    flex-direction: row;
  }

  .flow_inner{
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    /* padding: 50px ; */
    margin: 50px auto;
    position: relative;
    
    justify-content: space-around;
    max-width: var(--contents_width);
    
}
.flow_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    width:55% ;
    justify-content: space-evenly;
    padding-left: 30px;
    
}
.flow_inner .cont_wrap .cont_text{
    flex-direction: column;
    padding: 20px 20px 20px 40px;
    position: relative;
    
}
.flow_inner .cont_wrap .cont_text:nth-of-type(2){
    margin-left:30px;
    
}
.flow_inner .cont_wrap .cont_text:nth-of-type(3){
    margin-left:60px;
    
}
.flow_inner .cont_wrap .cont_text:nth-of-type(4){
    margin-left:90px;
    
}
.flow_inner .cont_wrap .cont_text::before{
    content: "";
    display: block;
    width: 18px;
    height: autopx;
    border-radius: 6px;
    background-color:#e1e1eaff ;
    border: 1px solid #c7c7d0ff;
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
}
  .flowimg{
    background-image: url(../img/flow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 45%;
    height: 100%;
    border-radius:1.25em;
}
@media only screen and (max-width: 768px) {
    .flow{
        flex-direction: column;
    }
    .flow_inner{
        width: 100%;
        /* padding: 50px 0px; */
        flex-direction: column;
        margin: 0;
    }
    .flow_inner .cont_wrap {
    width:100% ;
    height: auto;
    padding-left: 0;
    gap: 30px;
    padding: 50px 16px 50px;
    
}
    .flowimg{
        width: 100%;
        padding-top: 50vh;
        border-radius: 0;
    }
}

/*--------------------------------------------------------- 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 0 ;
    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;
    }
    
    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:var(--color-b);
    padding: 60px 0;
}

.footer_cont{
   background-color: var(--card-backcolor);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;
    padding: 40px 50px;
    margin: 0px auto;
    position: relative;
    max-width: var(--contents_width);
}
.footer_cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 55px;
    position: relative;
}
.footer_cont > .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: 10px auto;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  }
.footer_cont .cont_text:nth-child(1):before {

  background-image: url(../img/footer_i01.png);
  }
 .footer_cont .cont_text:nth-child(2):before {

  background-image: url(../img/footer_i02.png);
  }
  .footer_cont .cont_text:nth-child(3):before {

  background-image: url(../img/footer_i03.png);
  }
  .footer_cont .cont_text:nth-child(4):before {

  background-image: url(../img/footer_i04.png);
  }
@media only screen and (max-width: 768px) {
    
    .footer_cont{
        padding: 20px;
        flex-direction: column;
        width: 100%;
    }
    
}
/* ナビゲーション */
  @media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: var(--card-backcolor);
    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;
}
.nav_item a.button{
    padding: 0;
}
}
/* ↑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:'↑';
    /*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;
    }
} */



.sub_page_title{
	text-align: center;
	margin:5% auto;
}

input[type="checkbox"] {
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 0;
    margin-right: 0px;
  width: 2rem;
  min-width: 1.5rem;
  height: 2rem;
  background: #fff;
    background-color: rgb(255, 255, 255);
  border-radius: 0;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #dcd7ca;
  box-shadow: none;

}
