*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
/*  font-weight: normal;*/
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
a:hover{
  transition-duration: 0.5s;
  opacity: 0.5;
}
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea{
  padding: 15px 20px;
  width: 100%;
  border: #ddd 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  border:0;
}
body {
  color: #3D3D3D;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: 'NotoSansJP R', sans-serif;
  font-style: normal;
}
h1{
  font-size: 40px;
  font-size:4rem;
  margin-bottom: 20px;
  font-weight: bold;
}
h3{
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
}
p{
  margin: 2% 0;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

.pc-only, .pc-top{
  display: block;
}
.sp-only ,.sp-top{
  display: none;
}
@media screen and (max-width: 1024px){
  .pc-top{
    display: none!important;
  }
  .sp-top{
    display: block;
  }  
}

@media screen and (max-width: 768px){
  input,
  textarea{
    padding: 10px;
  }
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block;
  }  
}

.common {
  max-width: 1000px;
  margin:0px auto;
  padding: 50px 0;
  width: 100%;
  word-break: break-all;
}
@media (max-width: 768px) {
  .common {
    padding: 0 0 50px 0;
  }
}
.common-top{
  margin-top: -50px;
  padding-top: 50px;
}
main{
  transition: all 1s;
  overflow: hidden;
}

/* カラー */
.fb{
  font-weight: bold!important;
}
.tac{
  text-align: center!important;
}
.marker{
  background:linear-gradient(transparent 60%, #ff6 60%);
}
@media screen and (max-width: 768px){
}

iframe{
  width: 100%;
}


/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}


/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  .common{
    width:90%;
  }
  h1{
    font-size: 28px;
    font-size:2.8rem;
  }
  h2{
    font-size:20px;
    font-size:2rem;
  }
}

@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  h1{
    font-size:35px;
    font-size:3.5rem;
  }
  h2{
    font-size:28px;
    font-size:2.8rem;
  }
  /* 共通 */
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
  .common{
    margin: 0 auto;
    width: 90%;
  }
}

/* ヘッダー */
header{
  width:100%;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  background:rgba(255,255,255,1);
  color:#666666;
  transition: all 0.3s ease;
}
header.is-anime{
  background: #fff;
  transition: all 0.3s ease;
}
header a{
  color:#666666;
  font-size: 20px;
  font-size: 2rem;
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}
.header-nav ul{
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.header-nav ul li{
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/*
.header-nav ul li:hover{
  background:rgba(164,212,188,0.3);
}*/
.header-nav ul li:last-child:after{
  content: unset;
}
.header-nav ul li img{
  width: 25px;
  height: 25px;
}
.header-nav ul li:last-of-type{
  margin-right: 0;
}
.header-nav ul li a{
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'NotoSansJP R', sans-serif;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  position: relative;
  padding: 0 5px;
}
.header-nav ul li a::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  background: rgb(67 123 229)!important;
}
.header-nav ul li:hover a::after{
  transform: scale(1, 1);
}
.header-nav ul li span{
  display: block;
  font-size:10px;
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}

.dropdown-btn{
  position: relative;
}
.dropdown-btn:hover{
  background-color: rgba(255,255,255,0.8);
}
.dropdown-btn:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
ul.dropdown-wrap {
  display: none;/*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}
.dropdown-btn:hover .dropdown-wrap {
  display: block;/*Gナビメニューにホバーしたら表示*/
}
ul.dropdown-wrap li.dropdown-list {
  background:#fff;
  height: 60px;
  transition: all .3s;
  position: relative;
  margin-right: 0;
  height: auto;
  width: auto;
  padding-right: 0;
  margin-right: 0;
}
header.is-anime ul.dropdown-wrap li.dropdown-list{
  background: #fff;
}
header.is-anime ul.dropdown-wrap li.dropdown-list:hover{
  background:rgba(164,212,188,0.3);
}
li.dropdown-list:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b1c9b1;
  position: absolute;
  top: 0;
  left: 0;
}
ul.dropdown-wrap li.dropdown-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  text-decoration: none;
  position: relative;
  padding: 10px;
  height: auto;
  line-height: normal;
  width: 100%;
}
ul.dropdown-wrap li.dropdown-list a:hover{
  background:rgba(164,212,188,1);
  color:#666;
}
.dropdown-wrap li.dropdown-list::after{
  content: unset;
}

a.header-web{
  background: rgb(106,199,165);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  margin: 10px 0 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 10%;
}
a.header-web span{
  display: block;
  font-size: 10px;
}
@media screen and (max-width: 1024px){
  a.header-web{
    width: 130px;
  }
}
@media screen and (max-width: 768px){
  header{
    background: #b1c9b1;
  }
  header.is-anime{
    background:rgba(177,201,177,0.3);
  }
  .header-logo img{
    width: 88px;
  }
  a.header-web{
    height: 45px;
    line-height: 1;
    background: #fff;
    color: #b1c9b1;
    width: 130px;
    margin: 0 10px;
  }
  ul.dropdown-wrap{
    display: block;
    position: unset;
  }
  .header-nav ul ul.dropdown-wrap{
    width: 100%;
  }
  .dropdown-btn:hover{
    background: none;
  }
  ul.dropdown-wrap li.dropdown-list{
    background: #b1c9b1;
  }
  ul.dropdown-wrap li.dropdown-list a{
    width: 100%;
    justify-content: flex-start;
    color: #fff;
    padding: 5px 10px;
  }
  ul.dropdown-wrap li.dropdown-list a:hover{
    background:none;
    color: #fff;
  }
  ul.dropdown-wrap li.dropdown-list a::before{
    content: "-";
    margin-right: 10px;
  }
  a.header-web{
    width: 120px;
  }
  header.is-anime ul.dropdown-wrap li.dropdown-list{
    background: transparent;
  }
  .header-nav ul li:hover a::after{
    transform: scale(0, 0);
  }
}

/* ハンバーガーメニュー */

@media screen and (max-width: 1024px){
  .header{
    height:90px;
  }
  .header-logo{
    width: calc(100% - 300px);
  }
  .header-nav{
    position: fixed;
    top:60px;
    left:0;
    width:100%;
    background: #b1c9b1;
    display: none;
  }
  .header-nav.is-open{
    display: block;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100vh;
  }
  .header-nav ul{
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .header-nav ul li{
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .header-nav ul li a{
    color:#fff;
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 1px solid #fff;
    height: 40px;
    line-height: 40px;
    text-align: left;
  }
  .header-nav ul li a.header-nav-btn{
    background-color: #f2c3d5;
  }
  .header-nav ul li a.nav-btn-color{
    background-color: #f2c3d5;
    margin-left: 0;
  }
  .header-sp button,
  .header-sp button span{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  }
  .header-sp button{
    width:45px;
    height:45px;
    border:1px solid #fff;
    position:relative;
    background: #b1c9b1;
  }
  .header-sp button span{
    position: absolute;
    right: 10px;
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
  }
  .header-sp button span:nth-of-type(1){
    top: 50%;
  }
  .header-sp button span:nth-of-type(2){
    top: 65%;
  }
  .header-sp button span:nth-of-type(3){
    top:80%;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 46%;
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .header-sp button.is-open span:nth-of-type(2){
    opacity: 0;
  }
  .header-sp button.is-open span:nth-of-type(3){
    top: 90%;
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header-nav ul li a::after{
    content: unset;
  }
  .header-sp-font{
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px){
  .header{
    height:60px;
  }
  .header-logo{
    width: 100px;
  }
}

/* 下層Mv */
.common-sub{
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.common-sub .wrap{
  width: 75%;
}
.mv-sub {
  width: 100%;
  position: relative;
  height: 200px;
}
.sub-ttl{
  width: 1000px;
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.sub-ttl-inner{
  display: flex;
  align-items: center;
  font-size: 30px;
  text-shadow: 1px 1px 4px rgb(106,199,165);
  color: #fff;
  font-family: 'Alegreya';
  width: fit-content;
}
.sub-ttl span{
  font-size: 15px;
  margin-left: 10px;
}
.mv-sub img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 100% 30%;
}
@media screen and (max-width: 1080px){
  .common-sub .wrap{
    width: 100%;
  }
}
@media screen and (max-width: 1000px){
  .sub-ttl{
    width: 90%;
  }
  .sub-ttl-inner{
    font-size: 20px;
  }
  .sub-ttl span{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .mv-sub,
  .mv-sub img{
    height: 100px;
  }
}

/* スライダー slick */
.slide-items{
  position: relative;
}
.slick-slide img{
  margin: 0 auto;
}
button.slick-prev,
button.slick-next{
  position: absolute;
  top: 40%;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: block;
  border: none;
  background: rgba(255,148,158,0.8);
  color: #fff;
  z-index: 2;
}
button.slick-prev{
  left: 0;
}
button.slick-next{
  right: 0;
}

/* 上に戻るボタン */
.pagetop {
  position: fixed;
  bottom: 7vh;
  text-align: center;
  right: 2vw;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
}
.pagetop span{
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.pagetop:before {
  content: "";
  position: absolute;
  top: 11px;
  right: 19px;
  width: 2px;
  height: 20px;
  background: #56534c;
  transform: skewX(30deg);
}
.pagetop:after{
  content: "";
  position: absolute;
  bottom: 30px;
  right: 25px;
  width: 2px;
  height: 60px;
  background: #56534c;
}

@media screen and (max-width: 768px){
  .pagetop{
    width: 80px;
  }
  .pagetop:after{
    height: 50px;
    bottom: 40px;
  }
}

/* パンくず */
.bread{
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
}
.bread li{
  word-break: break-all;
  padding: 0!important;
  margin-bottom: 0!important;
  display: flex;
  align-items: center;
}
.bread li::after{
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/side_arrow.svg) no-repeat;
  display: block;
  margin: 0 5px;
}
.bread li:last-child:after{
  content: none;
}
@media screen and (max-width: 768px){
  .bread{
    width: 90%;
  }
}

/* ボタン */
a.btn-normal{
  font-family: 'Alegreya';
  width: 250px;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
}

a.btn-normal {
  background-color: transparent;
  color: #b1bec8 !important;
  border: 1px solid #b1bec8;
  transition: .6s all;
  position: relative;
  overflow:hidden;
}
a.btn-normal::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition: .3s all;
  transform-origin: 50% 50%;
  z-index:-1;
}
a.btn-normal::after {
  content: '';
  display: block;
  width: 200%;
  height: 500%;
  background-color: #b1bec8;
  position: absolute;
  left: -200%;
  top: 70%;
  transition: 1s all;
  transform: rotate(-8deg);
  transform-origin: 0 50%;
  opacity: .8;
  z-index: -1;
}
a.btn-normal:hover {
  background: transparent;
  color: #fff !important;
  opacity: 1;
}
a.btn-normal:hover::after {
  opacity: 1;
  left: -10%;
  top: -120%;
}

a.btn-normal.btn-white{
  background-color: #fff;
  color: #b1c9b1;
  border: 1px solid #b1c9b1;  
}
a.btn-normal.btn-white::after{
  z-index: 0;
}
a.btn-normal.btn-white span{
  z-index: 1;
  position: relative;
  display: inline-block;
  transition: .6s all;
}
a.btn-normal.btn-white span:hover{
  color: #fff;
  opacity: 1;
}



@media screen and (max-width: 768px){
  .btn{
    width: 100%;
  }
}

/* SNS 固定 */
.sns-wrap{
  height: auto;
  position: absolute;
  left: 1%;
}
.sns-box{
  display: grid;
  margin: 0 auto;
  background: #fff;
  padding: 10px 10px;
  display: grid;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 5px #ccc;
  transition-duration: 1.6s;
}
.sns-box a{
  text-align: center;
  padding: 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}
.sns-box a:last-child{
  margin-bottom: 0;
}
.sns-box img{
  object-fit: contain;
}
.sns-box.fixed {
  position: fixed;
  top: 100px;
  left: auto;
  z-index: +1;
  animation-duration: 5s;
}
@media screen and (max-width: 768px){
  .sns-wrap{
    left: 0;
    top: 4%;
  }
  .sns-box{
    padding: 5px 5px;
  }
  .sns-box a{
    margin-bottom: 0;
    padding: 5px 10px;
  }
  .sns-box.fixed{
    top:auto;
    bottom:100px;
  }
  .sns-wrap-others .sns-box{
    top: auto;
    bottom: 100px;
    position: fixed;
  }
}

/* フッター */
footer {
  text-align: center;
}
footer a{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
}
footer a span{
  font-size: 10px;
  font-size: 1rem;
  display: block;
}
.f-menu li{
  text-align: left;
  margin-right: 10px;
}
.f-menu li:last-child:after{
  content: unset;
}
.f-menu li:last-of-type {
  margin-right: 0;
}
.f-menu li a{
  font-size: 14px;
}
.footer-add{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}
.footer-add-name{
  font-family: YuMincho, 'Yu Mincho';
  font-size: 25px;
}
.footer-add img{
  width: 180px;
  object-fit: contain;
}
.footer-add-place{
  font-size: 11px;
}
.footer-add-tel {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
.footer-add-tel span {
  font-weight: normal;
  display: block;
  border: 1px solid #fff;
  font-size: 10px;
  padding: 5px 10px;
}
.footer-add-tel a{
  font-size: 25px;
}
.reserve-wrap{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
/*  background: rgba(255,242,159,0.7);*/
padding: 10px;
z-index: 10;
}
.reserve-link{
  background: rgb(106,199,165);
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
  margin-right: 20px;
  font-size: 16px;
}
.reserve-link:last-child{
  margin-right: 0;
}
.reserve-link span{
  padding-bottom: 5px;
}

#copyright {
  padding: 5px 0;
  color: #fff;
}
p#copyright{
  margin:0;
  margin-bottom: 100px;
}
#copyright small{
  font-size: 10px;
  font-size: 1rem;
  color: #CC5574;
}

@media screen and (max-width: 768px){
  
  footer a{
    font-size: 12px;
    font-size: 1.2rem;
  }
  .reserve-wrap{
    flex-wrap: wrap;
  }
  .reserve-link{
    margin-right: 10px;
    padding: 5px 10px;
  }
  .footer-add{
    justify-content: center;
    margin-top: 20px;
  }
  .footer-add img{
    margin: 20px auto;
  }
  .footer-add-tel span{
    margin: 10px auto;
  }
  .f-menu li a{
    font-size: 13px;
  }
  .f-menu li{
    margin-right: 15px;
  }
  .footer-add-name{
    font-size: 20px;
  }
}

/* header footer css */


*, *::after, *::before {
  margin: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;
  font: inherit;*/
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 10px;
}

.container {
  width: min(100% - var(--gap-x, 4rem), var(--max-w, 1210px));
  margin: 0 auto;
}

a {
  text-decoration: unset;
  color: inherit;
}

@media (max-width: 1240px) {
  html {
    font-size: 0.79vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

[role=button],
a {
  transition: all 0.3s;
}
[role=button]:hover,
a:hover {
  opacity: 0.6;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
}

.btn-hamburger {
  display: none;
  width: 7rem;
  align-self: stretch;
  align-items: center;
  justify-content: end;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .btn-hamburger {
    display: grid;
  }
}
.btn-hamburger p {
  margin: 0 auto;
  color: #084ea6;
  line-height: 1.3;
  opacity: 1;
  transition: all 0.5s;
}
.btn-hamburger .wrap {
  width: 4rem !important;
  height: 2.6rem;
  position: relative;
}
.btn-hamburger span {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #084ea6;
  top: 50%;
  left: 0;
  transition: all 0.3s;
}
.btn-hamburger span:nth-child(1) {
  transform: translateY(-50%);
}
.btn-hamburger span:nth-child(2) {
  top: 0;
  transform-origin: top right;
}
.btn-hamburger span:nth-child(3) {
  top: auto;
  bottom: 0;
  transform-origin: bottom right;
}

.header {
  padding: 2rem 0;
  position: sticky;
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s;
  height: -moz-fit-content;
  height: fit-content;
}
.header.active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.header .container {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header .container {
    align-items: center;
  }
}
.header .logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .logo a .logo-img {
  align-self: stretch;
  width: clamp(20rem, calc(345 / 768 * 100 * 1vw), 34.5rem);
  aspect-ratio: 34.5/8.5;
}
.header .logo a .logo-img img {
  height: 100%;
  width: 100%;
  border-radius: 1.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .logo a .logo-txt {
  color: #084ea6;
  display: grid;
  gap: 0.5rem;
  font-size: clamp(3.5rem, 6.2vw, 6.4rem);
}
.header .logo a .logo-txt .txt-sm {
  font-weight: 500;
  font-size: max(1.2rem, 0.3125em);
}
.header .logo a .logo-txt .txt-lg {
  font-family: "Coral Reef", sans-serif;
  font-weight: bold;
  line-height: 0.8;
}
.header .header-nav {
  flex: 1;
}
.header .header-nav .nav-btn {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}
.header .header-nav .nav-btn__sp {
  display: none;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-btn__sp {
    display: grid;
  }
}
.header .header-nav .nav-btn a {
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.header .header-nav .nav-btn a.instagram {
  margin-right: 2.5rem;
  display: flex;
}
.header .header-nav .nav-btn a:not(.instagram) {
  width: 20rem;
  height: 4.6rem;
  background-color: #b1bec8;
  font-size: 2.2rem;
  color: white;
  font-weight: 500;
  border-radius: 1.2rem;
  display: grid;
  place-content: center;
}
.header .header-nav .nav-btn a img {
  width: 4.7rem;
  aspect-ratio: 47/46;
}
.header .header-nav .nav-menu .list {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.header .header-nav .nav-menu .item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  background: unset;
  border: unset;
  line-height: unset;
  margin: unset;
  padding: unset;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .item::after {
    content: "";
    position: absolute;
    background-color: #084ea6;
    inset: 0;
  }
}
.header .header-nav .nav-menu .item a {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 0;
  color: #000;
  height: unset;
  border: unset;
  text-align: center;
  line-height: unset;
}
@media (max-width: 1024px) {
  .header .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(100%, 768px);
    background-color: #084ea6;
    padding: 4rem 2rem;
    z-index: 2;
    color: white;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s;
    --gap-item: 4rem;
    display: block;
    left: unset;
  }
}
@media (max-width: 1024px) and (max-width: 425px) {
  .header .header-nav {
    --gap-item: 3rem;
  }
}
@media (max-width: 1024px) {
  .header .header-nav__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 6rem;
  }
  .header .header-nav .nav-btn {
    order: 2;
    flex-direction: column;
    justify-content: start;
    row-gap: var(--gap-item);
  }
  .header .header-nav .nav-btn a.instagram {
    margin-right: 0;
    width: 80%;
    display: flex;
    justify-content: center;
  }
  .header .header-nav .nav-btn a:not(.instagram) {
    width: 80%;
  }
  .header .header-nav .nav-menu {
    display: flex;
    justify-content: center;
  }
  .header .header-nav .nav-menu .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--gap-item);
  }
  .header .header-nav .nav-menu .list a {
    font-size: 2.5rem;
    color: #fff;
  }
}

.footer {
  padding: 3rem 0;
  padding-bottom: 22rem;
  background-color: #efefef;
}
.footer .list.pc {
  display: flex;
}
.footer .list.sp {
  display: none;
}
.footer .list {
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer .list .item {
  width: unset;
  background: unset;
  padding: unset;
  margin: unset;
  line-height: unset;
  border: unset;
}
.footer .list a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000;
}
.footer-btn {
  position: fixed;
  bottom: 3rem;
  width: 100%;
  left: 0;
  z-index: 2;
}
.footer-btn .list {
  width: min(100% - 4rem, 1090px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.5rem), 18.5rem));
  gap: clamp(1.5rem, calc(30 / 768 * 100 * 1vw), 3rem);
  grid-template-rows: 1fr;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer  .footer-btn .list {
    grid-template-columns: repeat(3, minmax(33%, 1fr));
    gap: 1rem;
  }
}
.footer-btn a {
  color: white !important;
  text-align: center;
  background-color: #b1bec8;
  padding: 1.5rem 1rem;
  font-size: clamp(1.8rem, calc(24 / 768 * 100 * 1vw), 2.4rem) !important;
}
.footer-btn a .txt-en {
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-size: 0.6em;
  text-transform: uppercase;
}
.footer-btn a .txt-jp {
  font-weight: 900;
  line-height: 1.2;
}

.hero {
  height: calc(100dvh - var(--h-header, 0px));
  max-height: 73rem;
}
@media screen and (max-width: 1024px) {
  .hero {
    max-height: 32rem;
  }
}
.hero .swiper-wrapper {
  transition-timing-function: linear;
  margin: 0 auto;
}
.hero .swiper {
  height: 100%;
}
.hero .swiper-slide {
  animation: fadeIn 2s;
  opacity: 1;
  animation-play-state: paused;
}
.hero .swiper-slide-active {
  animation-play-state: running;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero .hero-bg {
  height: 100%;
  width: 100%;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero .hero-bg {
    background-position: 60%;
  }
}


.open-menu .btn-hamburger {
  position: fixed;
  z-index: 3;
  right: 4rem;
  top: 4rem;
}
.open-menu .btn-hamburger > p {
  opacity: 0;
}
.open-menu .btn-hamburger span {
  background-color: white !important;
}
.open-menu .btn-hamburger span:nth-child(1) {
  transform: translateX(-100%) translateY(-50%);
  opacity: 0;
}
.open-menu .btn-hamburger span:nth-child(2) {
  transform: rotate(-45deg);
  top: -6px;
}
.open-menu .btn-hamburger span:nth-child(3) {
  transform: rotate(45deg);
}
.open-menu .header-nav {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
@media (max-width: 768px) {
  .open-menu .header-nav {
    overflow: auto;
  }
}
.open-menu .header-nav .nav-menu .item {
  transition: all 0.3s;
}
.open-menu .header-nav .nav-menu .item .sub-list.active {
  display: grid;
}
.open-menu .header-nav .nav-menu .item:nth-child(1) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(1)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(2) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(2)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(3) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(3)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(4) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(4)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(5) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(5)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(6) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(6)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(7) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(7)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(8) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(8)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(9) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(9)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
.open-menu .header-nav .nav-menu .item:nth-child(10) {
  opacity: 1;
}
.open-menu .header-nav .nav-menu .item:nth-child(10)::after {
  animation: typewriter 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes typewriter {
  to {
    left: 100%;
  }
}

/* fix css */

.header {
  padding: 0 !important;
}
.header.active .container {
  padding: 1rem 0;
}
.header.active .sub-list {
  top: calc(100% + 1rem) !important;
}
.header .container {
  padding: 2rem 0;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 1024px) {
  .header .btn-hamburger {
    display: grid;
  }
}
.header .logo a .logo-img {
  width: clamp(20rem, calc((240 / 768) * 100 * 1vw), 24rem);
  align-items: center;
  display: flex;
}
@media (max-width: 1024px) {
  .header .header-nav {
    --gap-item: 1rem;
  }
}
.header .header-nav .nav-menu .list {
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: end;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list {
    row-gap: var(--gap-item);
  }
}
.header .header-nav .nav-menu .list .item a {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .item a {
    font-size: 2.2rem;
  }
}
.header .header-nav .nav-menu .list .item:hover:is(.item):not(.sub-item) a::after {
  transform: scale(1, 1);
}
.header .header-nav .nav-menu .list .item:hover .sub-item a::after {
  transform: scale(0, 1) !important;
}
.header .header-nav .nav-menu .list .item:has(.sub-list) > a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .item:has(.sub-list) > a {
    justify-content: center;
  }
  .header .header-nav .nav-menu .list .item.active:has(.sub-list) a::before {
    transform: rotate(-45deg);
  }
}
.header .header-nav .nav-menu .list .item:has(.sub-list) > a::before {
  border-style: solid;
  border-width: 0.18em 0.18em 0 0;
  border-color: #242222;
  content: "";
  display: inline-block;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(135deg);
  transform-origin: center;
  vertical-align: middle;
  margin-top: -0.5em;
  width: 0.6em;
  aspect-ratio: 1;
  order: 2;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .item:has(.sub-list) > a::before {
    border-color: white;
  }
}
@media (min-width: 1045px) {
  .header .header-nav .nav-menu .list .item:has(.sub-list):hover > a::before {
    transform: rotate(-45deg);
    margin-top: 0.3em;
  }
  .header .header-nav .nav-menu .list .item:has(.sub-list):hover .sub-list {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateY(0rem) translateX(-50%);
    filter: blur(0rem);
    min-width: 220px;
  }
  .header .header-nav .nav-menu .list .item:has(.sub-list):hover .sub-list::before {
    content: "";
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    height: 10%;
    background-color: red;
    left: 0;
    width: 100%;
    background-color: transparent;
  }
}
.header .header-nav .nav-menu .list .sub-list {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  left: 50%;
  background-color: white;
  top: calc(100% + 2rem);
  transform: translateX(-50%);
  width: 20rem;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  display: grid;
  padding: 2rem;
  justify-content: stretch;
  background-color: white;
  row-gap: 1rem;
  transform: translateY(2rem);
  transition: all 0.5s;
  filter: blur(4rem);
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .sub-list {
    padding: 0;
    width: 100%;
    position: unset;
    background-color: transparent;
    color: white;
    box-shadow: unset;
    opacity: 1;
    filter: unset !important;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0rem);
    display: none;
  }
}
.header .header-nav .nav-menu .list .sub-list .sub-item {
  border: unset !important;
  padding: 0;
  line-height: 1.5;
  margin-bottom: 0;
  width: auto;
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .sub-list .sub-item {
    background: transparent;
  }
  .header .header-nav .nav-menu .list .sub-list .sub-item:first-child {
    margin-top: 2rem;
  }
  .header .header-nav .nav-menu .list .sub-list .sub-item:last-child {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .header .header-nav .nav-menu .list .sub-list .sub-item a {
    font-size: 1.6rem;
  }
}
.header .header-nav .nav-menu .list .sub-list .sub-item a:hover::after {
  transform: scale(1, 1) !important;
}


.total-count {
  text-align: center;
  margin-top: 4.8rem;
  margin-bottom: -3.2rem;
}
.total-count p {
  font-size: 1.4rem;
}

.card {
  padding: 1rem;
}
.card-content__txt a {
  display: flex;
}

@media (max-width: 1024px) {
  .sec-v3.worries h2 .ttl-jp span img  {
    width: 8rem;
  }
  .card.news-card {
    background-color: transparent;
    border: unset;
  }
  .card-content__txt a {
    flex-direction: column;
  }
  .sec-v3.worries {
    padding: clamp(4rem, calc(60 / 1024 * 100 * 1vw), 6rem) 0;
  }
  .sec-v3.worries .block-v1 {
    margin-top: clamp(0rem, calc(60 / 1024 * 100 * 1vw), 6rem);
  }
  .sec-v3.worries .block-v1 ul li .item-ttl .ttl-txt {
    font-size: clamp(1.6rem, calc(40 / 1024 * 100 * 1vw), 2.4rem);
  }
  .sec-v4.support .container .block-v1,
  .sec-v5.commitment .block-v1,
  .sec-v7 .block-v1,
  .sec-v7 .block-v1 .btn {
    margin-top: clamp(4rem, calc(60 / 1024 * 100 * 1vw), 6rem);
  }
  .sec-v4.support .container .block-v1 .list {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  }
  .sec-v4.support .container .block-v1 .list .item-ttl {
    font-size: clamp(1.2rem, calc(60 / 1024 * 100 * 1vw), 2rem);
  }
  .sec-v4.support .container .block-v1 .list .item-content {
    font-size: clamp(1.6rem, calc(60 / 1024 * 100 * 1vw), 2rem);
    margin-top: 2rem;
  }
  .sec-v5.commitment .block-v1 .list .item .item-content__subttl {
    margin-top: clamp(2rem, calc(60 / 1024 * 100 * 1vw), 6rem);
  }
  .sec-v5.commitment .block-v1 .list .item-content__txt {
    margin-top: clamp(2rem, calc(60 / 1024 * 100 * 1vw), 6rem);
  }
  .sec-v5.commitment {
    padding: 4rem 0;
  }
  .sec-v6 .list {
    margin-top:  clamp(4rem, calc(60 / 1024 * 100 * 1vw), 10rem);
    gap: 4rem;
  }
  .sec-v7, .sec-v8, .sec-v6 {
    padding: clamp(4rem, calc(60 / 1024 * 100 * 1vw), 6rem) 0;
  }
  .sec-v6 .list .item-content__wrap .wrap__txt {
    padding: clamp(1rem, calc(60 / 1024 * 100 * 1vw), 4rem);
  }
  .footer-btn {
    bottom: 1rem;
  }
  .sec-v5.commitment .block-v1 .list .item:nth-child(2) {
    margin-top: 6rem;
  }
  .sec-v6 .list .item-content__txt {
    max-width: 100%;
  }
  .sec-v6__content {
    background: url(../img/menu.jpg) repeat center center/ 100%;
  }
} 

@media screen and (max-width: 768px) {
  .sec-v5.commitment .block-v1 .list .item:nth-child(3) .item-ttl__img {
    margin-left: unset;
  }
  .sec-v5.commitment .block-v1 .list .item .item-content__subttl {
    margin-top: 0;
    font-size: clamp(2rem, calc(46 / 768 * 100 * 1vw), 4.6rem);
  }
  .sec-v5.commitment .block-v1 .list .item:nth-child(2) .item-content__ttl {
    margin-top: 0;
  }
  .sec-v6 .list .item-content__ttl p {
    font-size: 1.6rem;
  }
  .footer-btn a .txt-en {
    font-size: 1rem;
  }
  .footer-btn a {
    padding: 1rem 0.4rem;
  }
  .footer {
    padding-bottom: 12rem;
  }
  .footer .list.pc {
    display: none;
  }
  .footer .list.sp {
    display: grid;
    grid-template-columns: repeat(2, minmax(min(100%, 10rem), 1fr));
  }
  .sec-v3.worries h2 .ttl-jp span img {
    width: 6rem;
    transform: rotateY(180deg);
  }
  .sec-v3 h2 .ttl-jp {
    flex-direction: row-reverse;
  }
  .sec-v5.commitment .block-v1 .list .item-wrap {
    display: block;
  }
}

@media screen and (max-width: 540px) {

}