@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: #8a6e0fff;
    --linkhover-color: #b89314ff;
    --back-color: #FFFFF6;
    --color-a:#F1D77E;
    --color-b:#FFF9B9;
    --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); */
    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: 10px 20px;
    border: 1px solid var(--link-color);
    border-radius: 99px;
    background-color: var(--link-color);
    color: #fff;
    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;
    font-weight: 600;
}
h1,h2 {
    font-size: 2.5em;
}
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;
}
@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: 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: #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-color: var(--back-color);
    max-width: var(--contents_width);
    margin: 100px auto 50px;
    display: flex;
    flex-direction: row;
  }

  .fv_inner{
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    width:55% ;
    justify-content: space-around;
    
}
.fv_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    
}
  .right_img0{
    background-image: url(../img/fv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    width: 45%;
    padding-top: 50vh;
    border-radius:0 1.25em 1.25em 0;
}
@media only screen and (max-width: 768px) {
    .fv{
        flex-direction: column;
    }
    .fv_inner{
        width: 100%;
        padding: 50px 16px;
    }
    
    .right_img0{
        width: 100%;
        padding-top: 50vh;
        clip-path: none;
        border-radius:0 0 1.25em 1.25em;
    }
}

/*--------------------------------------------------------- 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-child(1)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about01.png);
  background-size: contain;
  }
  .aboutus_inner .cont:nth-child(2)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about02.png);
  background-size: contain;
  }
  .aboutus_inner .cont:nth-child(3)> .cont_text:before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about03.png);
  background-size: contain;
  }
.aboutus_inner .cont .cont_text{
    text-align: left;
    position: relative;
        padding-left: 50px;
}
@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%;
    }
}

/*--------------------------------------------------------- thoughts */
.thoughts{
    background-color: var(--color-a);
    display: flex;
    flex-direction: row;
  }

  .thoughts_inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 50px ;
    margin: 0 auto;
    position: relative;
    max-width: var(--contents_width);
    width:70% ;
}
.thoughts_inner .illust1,.thoughts_inner .illust2{
        position: absolute;
        
    }
    .thoughts_inner .illust2{
        top: 50px;
        right: 0px;
        width: 20%;
    }
/* .thoughts_inner h2{
    color: #222;
    font-weight: 400;
} */
/* .thoughts_inner .left{
    color: #222;
} */
.thoughts_inner .pyramid_cont {
    width: 100%;
    background-image: url(../img/thoughts.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 500px;
    margin-bottom: 30px;
}
.thoughts_inner .pyramid_cont .text {
    text-align: left;
    padding: 32px 0 22px 5%;
    /* color: #222; */
}
.thoughts_inner .pyramid_cont .text h4{
    /* color: #222; */
    font-weight: 400;
}
.thoughts_inner .pyramid_cont .text:nth-child(1) {
    margin-left: 33%;
    border-bottom: 2px solid #e6e6e7;
}
.thoughts_inner .pyramid_cont .text:nth-child(2) {
    margin-left:  39.5%;
    border-bottom: 2px solid #e6e6e7;
}
.thoughts_inner .pyramid_cont .text:nth-child(3) {
    margin-left:  46%;
    border-bottom: 2px solid #e6e6e7;
}
.thoughts_inner .pyramid_cont .text:nth-child(4) {
    border-bottom: none;
    margin-left:  52%;
}

@media only screen and (max-width: 768px) {
    .thoughts_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .thoughts_inner .illust1,.thoughts_inner .illust2{
        position: absolute;
        
    }
    .thoughts_inner .illust1{
        top:100px;
        left: 36px;
        width: 20%;
    }
    .thoughts_inner .illust2{
        top:50px;
        right: 16px;
        width: 30%;
    }
    .thoughts_inner .pyramid_cont {
        /* background-image: none; */
       padding-top: 210px;
       height: auto;
       background-image: url(../img/thoughts_sp.png);
    }
    .thoughts_inner .pyramid_cont .text {
    padding: 32px 0 22px 50px;
    position: relative;
}
.thoughts_inner .pyramid_cont .text:nth-child(1):before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about01.png);
  background-size: contain;
  margin-top: 32px;
  }
  .thoughts_inner .pyramid_cont .text:nth-child(2):before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about02.png);
  background-size: contain;
  margin-top: 32px;
  }
  .thoughts_inner .pyramid_cont .text:nth-child(3):before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about03.png);
  background-size: contain;
  margin-top: 32px;
  }
  .thoughts_inner .pyramid_cont .text:nth-child(4):before {
    content: "";
    width: 34px;
  height:34px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/about03.png);
  background-size: contain;
  margin-top: 32px;
  }
    .thoughts_inner .pyramid_cont .text:nth-child(1) {
        margin-left:  0%;
    }
    .thoughts_inner .pyramid_cont .text:nth-child(2) {
        margin-left:  0%;
    }
    .thoughts_inner .pyramid_cont .text:nth-child(3) {
        margin-left:  0%;
    }
    .thoughts_inner .pyramid_cont .text:nth-child(4) {
        margin-left:  0%;
    }
}
/*--------------------------------------------------------- what */
.what{
    background-color: var(--back-color);
    display: flex;
    flex-direction: row;
  }

  .what_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);
    
}
.what_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    width:55% ;
    height: 50vh;
    justify-content: space-evenly;
    padding-left: 30px;
    
}
.what_inner .cont_wrap .cont_text{
    flex-direction: column;
    padding: 20px;
    
}
.what_inner .roundbox{
    border: 0.125em solid #d9d9caff;
    box-shadow: 0.5em 0.5em #d9d9caff;
    background-color: #f3f3e4ff;
}
  .left_img0{
    background-image: url(../img/what01.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) {
    .what{
        flex-direction: column;
    }
    .what_inner{
        width: 100%;
        /* padding: 50px 0px; */
        flex-direction: column;
        margin: 0;
    }
    .what_inner .cont_wrap {
    width:100% ;
    height: auto;
    padding-left: 0;
    gap: 30px;
    padding: 50px 16px 50px;
    
}
    .left_img0{
        width: 100%;
        padding-top: 50vh;
        border-radius: 0;
    }
}
/*--------------------------------------------------------- calendar */
.calendar{
    background-color: var(--back-color);
    display: flex;
    flex-direction: row;
  }

  .calendar_inner{
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* padding: 50px ; */
    margin: 50px auto;
    position: relative;
    gap: 20px;
    justify-content: space-around;
    max-width: var(--contents_width);
    
}

@media only screen and (max-width: 768px) {
    .calendar{
        flex-direction: column;
    }
    .calendar_inner{
        width: 100%;
        /* padding: 50px 0px; */
        flex-direction: column;
        /* margin: 0; */
        padding: 0 16px;
    }
    
}
/*--------------------------------------------------------- open */
.open{
    background-color: var(--color-b);
    display: flex;
    flex-direction: column;
  }

  .open_inner{
    max-width: var(--contents_width);
    background-color: var(--back-color);
    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;
    
}
.open_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.open_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 100%;
}
.open_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.open_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/open01.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
 .open_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/open02.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
  .open_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/open03.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
  .open_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/open04.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
@media only screen and (max-width: 768px) {
    .open{
        flex-direction: column;
    }
    .open_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .open_inner .cont_wrap{
        flex-direction: column;
    }
    .open_inner .cont {
        width: 100%;
    }
    
}

/*--------------------------------------------------------- join */
.join{
    background-color: var(--color-b);
    display: flex;
    flex-direction: column;
  }

  .join_inner{
    max-width: var(--contents_width);
    background-color: var(--back-color);
    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;
    
}
.join_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.join_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 100%;
}
.join_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.join_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/join01.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
 .join_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/join02.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
  .join_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/join03.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
 
@media only screen and (max-width: 768px) {
    .join{
        flex-direction: column;
    }
    .join_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .join_inner .cont_wrap{
        flex-direction: column;
    }
    .join_inner .cont {
        width: 100%;
    }
    
}
/*--------------------------------------------------------- event */
.event{
    background-color: var(--back-color);
  }

  .event_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;
}
.event_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: center;
}
/* .event_inner .cont:first-of-type>.cont_text{
    text-align: right;
} */
 .event_inner #content{
    width: 100%;
    text-align: left;
 }
.event_inner .cont {
    padding: 5px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 500px;
}
.event_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.event_inner .cont:nth-child(1) .cont_text:last-child{
   margin-top: 50px; 
}
.event_inner .cont:nth-child(2) .cont_text{
    width: 183px;
}
.event_inner .cont:nth-child(2) img{
    height: 500px;
    width: 163px;
     margin: 0 auto;
}
.event_inner .cont:nth-child(3) {
   justify-content: flex-end;
}
.event_inner .cont:nth-child(3) .cont_text:last-child{
   margin-top: 30px; 
}
@media only screen and (max-width: 768px) {
    .event_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .event_inner .cont_wrap {
        flex-direction: column;
        padding: 30px 0;
    }
    .event_inner .cont {
        width: 100%;
        height: auto;
        padding: ;
    }
    .event_inner .cont:nth-child(2){
    display: none;
}
.event_inner .cont:nth-child(3) {
    justify-content: flex-start;
}
    .event_inner .cont .cont_text{
        text-align: center;
            padding: 20px 10px;
    }
    .event_inner .cont:first-of-type>.cont_text {
        text-align: center;
    }
    .event_inner .cont:nth-child(1) .cont_text:last-child{
   margin-top: 0px; 
}
.event_inner .cont:nth-child(3) .cont_text:last-child{
   margin-top: 0px; 
}
}
/*--------------------------------------------------------- join */
.volunteer{
    background-color: var(--color-b);
    display: flex;
    flex-direction: column;
  }

  .volunteer_inner{
    max-width: var(--contents_width);
    background-color: var(--back-color);
    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;
    
}
.volunteer_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.volunteer_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 100%;
}
.volunteer_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.volunteer_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/volunteer01.png);
  background-size: contain;
   background-repeat: no-repeat;
  }
 .volunteer_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/volunteer02.png);
  background-size: contain;
   background-repeat: no-repeat;
  }

@media only screen and (max-width: 768px) {
    .volunteer{
        flex-direction: column;
    }
    .volunteer_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .volunteer_inner .cont_wrap{
        flex-direction: column;
    }
    .volunteer_inner .cont {
        width: 100%;
    }
    
}
/*--------------------------------------------------------- voice */
.voice{
    background-color: var(--back-color);
  }

  .voice_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;
}
.voice_inner .cont_wrap{
    padding-top: 45px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.voice_inner .cont {
    padding: 5px;
    width: calc(100% / 3 – 5px);
}
.voice_inner .cont img{
    border-radius: 1.25em;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.voice_inner .cont .cont_text{
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .voice_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .voice_inner .cont_wrap {
        flex-direction: column;
    }
    .voice_inner .cont {
        width: 100%;
    }
}
/*--------------------------------------------------------- open */
.safety{
    background-color: transparent;
    display: flex;
    flex-direction: column;
  }

  .safety_inner{
    max-width: var(--contents_width);
    background-color: var(--back-color);
    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;
    
}
.safety_inner .cont_wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.safety_inner .cont {
    flex-direction: column;
    padding: 5px;
    /* width: calc(100% / 3 – 5px); */
    width: 100%;
}
.safety_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 55px 10px 10px 10px;
    position: relative;
}
.safety_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;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/safety01.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
 .safety_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;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/safety02.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
  .safety_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;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/safety03.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
  .safety_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;
  text-align: center;
  line-height: 34px;
  font-size: 26px;
  background-image: url(../img/safety04.png);
  background-size: contain;
  background-repeat: no-repeat;
  }
@media only screen and (max-width: 768px) {
    .safety{
        flex-direction: column;
    }
    .safety_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .safety_inner .cont_wrap{
        flex-direction: column;
    }
    .safety_inner .cont {
        width: 100%;
    }
    
}

/*--------------------------------------------------------- support */
.support{
    background-color:var(--back-color);
  }
  .support_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;
}
.support_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}
.support_inner .cont_wrap.images{
    flex-wrap: wrap;
    justify-content: space-between;
}
.support_inner .cont_wrap.images a{
    width: calc(24% - 10px);
    overflow: hidden;
}
.support_inner .cont_wrap.images a img{
    width: 100%;
    height: 206px;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .support_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .support_inner .cont_wrap.images a{
        width: calc(49% - 10px);
        overflow: hidden;
    }
    .support_inner .cont_wrap.images a img{
        width: 100%;
        height: 158px;
        object-fit: cover;
    }
}
/*--------------------------------------------------------- plan */
.faq{
    background-color: var(--back-color);
    display: flex;
    flex-direction: row;
  }

  .faq_inner{
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin: 50px auto;
    position: relative;
    
    justify-content: space-around;
    max-width: var(--contents_width);
    width: 100%;
}
.faq_inner h2{
    margin-bottom: 30px;
}
.faq_inner .cont_wrap {
    flex-direction: column;
    align-items: flex-start;
    
}
.faq_cont {
    width: 55%;
    padding-left: 30px;
}
.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_img1{
    background-image: url(../img/faq01.png);
  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) {
    .faq{
        flex-direction: column;
    }
    .faq_inner{
        width: 100%;
        /* padding: 50px 0px; */
        flex-direction: column;
        margin: 0;
    }
    .faq_inner .cont_wrap {
    width:100% ;
    height: auto;
    padding-left: 0;
    gap: 30px;
    padding: 50px 16px 50px;
    
}
.faq_cont {
    width: 100%;
    padding: 50px 16px;
}
    .faq_cont .cont_text {
        width: 100%;
        }
    .left_img1{
        width: 100%;
        padding-top: 50vh;
        border-radius: 0;
    }
}

.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{
    background-color: var(--back-color);
}
.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 */
.contactus{
    background-image: url(../img/contactus01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contactus_back{
    background-color: var(--back-color);
    opacity: .8;
}
.contactus_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; */
}
.contactus_inner .cont_wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
}
.contactus_inner .cont{
    padding-top:50px;
}
.contactus_inner .cont h2{
    font-size: 4em;
    font-family: "Prata", serif;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .contactus_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .contactus_inner .cont_wrap {
        flex-direction: column;
    }
    .contactus_inner .cont{
    width: 100%;
}
    
}

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

  .access_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;
}
.access_inner .cont_wrap{
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.access_inner .cont {
    padding: 5px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 500px;
}
.access_inner .cont .cont_text{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.access_inner .cont:nth-child(1) .cont_text {
    width: 140px;
}
.access_inner .cont:nth-child(1) img{
    height: 500px;
    width: 120px;
     margin: 0 auto;
}
.access_inner .cont:nth-child(2) {
   width: 34%;
}
.access_inner .cont:nth-child(2) .cont_text{
   margin-bottom: 80px; 
}
.access_inner .cont:nth-child(3) {
   width: calc(100% - 34% - 150px);
}
.access_inner .cont:nth-child(3) img{
    height: auto;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .access_inner{
        width: 100%;
        padding: 50px 16px;
    }
    .access_inner .cont_wrap {
        align-items: flex-start;
    }
    .access_inner .cont {
        width: 100%;
        height: auto;
    }
    /* .access_inner .cont:nth-child(1){
    display: none;
} */
 .access_inner .cont:nth-child(1) {
    width: 121px;
}
 .access_inner .cont:nth-child(1) .cont_text {
    width: 101px;
}
.access_inner .cont:nth-child(1) img{
    height: 511px;
    width: 81px;
}
.access_inner .cont:nth-child(2) {
   width: 100%;
}
.access_inner .cont:nth-child(2) .cont_text{
   margin: 0px 0px 30px;
}
.access_inner .cont:nth-child(3){
    display: none;
}
    .access_inner .cont .cont_text{
        text-align: center;
    }
    .access_inner .cont:first-of-type>.cont_text {
        text-align: center;
    }
}

/*--------------------------------------------------------- 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%;
    }
}
/*--------------------------------------------------------- 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: #FFD1A7;
    color: #222;
}
.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;
  width: 50%;
}

.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);
}
#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;
     display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}
#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_cont h2{
    text-align: left;
    margin-top: 30px;
    width: 100%;
}
.footer_info{
display: flex;
flex-direction: row;
padding-bottom: 30px;
border-bottom: solid 2px #222;
gap: 20px;
padding: 20px;
width: 100%;
}
.footer_info a{
    display: inline-block;
}
.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: #FFD1A7;
    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 h1 a{
    flex-direction: column;
}
    .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;
    }
} */