/*====================================================================
全ページ共通CSS
====================================================================*/
/* 
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-family: "tk-takumi-yururi-font-norm", sans-serif;
} 
  
TK-takumiYururiFont-Normal L
font-family: "tk-takumi-yururi-font-norm", sans-serif;
font-weight: 100;
font-style: normal;
TK-takumiYururiFont-Normal B
font-family: "tk-takumi-yururi-font-norm", sans-serif;
font-weight: 700;
font-style: normal;
TK-takumiYururiFont-Normal LP
font-family: "tk-takumi-yururi-font-normp", sans-serif;
font-weight: 100;
font-style: normal;
TK-takumiYururiFont-Normal BP
font-family: "tk-takumi-yururi-font-normp", sans-serif;
font-weight: 700;
font-style: normal;*/

/*====================================================================
共通
====================================================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #333;
  font-size: 16px;
  font-feature-settings: "palt";
  background-color: #eee;
  letter-spacing: .05em;
}

.cta_btn {
  width: fit-content;
  height: 66px;
  border-radius: 9999px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8px;
  z-index: 1;
}

.cta_btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(270deg, #e99a28, #e99a28, #e99a28);
  background-size: 200% 200%;
  animation: Grad 5s ease infinite;
  z-index: -2;
  opacity: 1;
  animation: btn_scale 2.5s infinite ease-out;
}

@keyframes btn_scale {
  0%{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0px);
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1, 1.4);
    filter: blur(4px);
  }

}

.cta_btn:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(270deg, #e99a28, #e99a28, #e99a28);
  background-size: 200% 200%;
  animation: Grad 5s ease infinite;
  z-index: -1;
}

@keyframes Grad {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.cta_btn a {
  width: 100%;
  height: 100%;
}
.cta_btn a .btn {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding: 0 0 0 16px;
}

.cta_btn a .btn .price_circle {
  /* position: absolute; */
  height: 80%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: translateY(-50%); */
}

/* .cta_btn .price_circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: 600;
} */

.cta_btn a .btn p {
    /* position: absolute; */
    top: 50%;
    left: calc(50% + 48px);
    /* transform: translate(-50%, -50%); */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .075em;
    width: fit-content;
}

.cta_btn a .btn p span {
  display: block;
  text-shadow: 1.5px 1.5px 0 #ba9031;
}

.cta_btn a .btn i {
  display: inline;
  color: #e99a28;
  font-size: 1.2em;
  animation: arrow_animation 4s linear infinite;
}

@keyframes arrow_animation {
  0% {
    transform: translateY(0%);
  }
  
  25% {
    transform: translateY(-5%);
  }


  75% {
    transform: translateY(20%);
  }

  100% {
    transform: translateY(0%);
  }
}


.grad_bg {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: rgba(150, 167, 241, 1);
  background: linear-gradient(180deg, rgba(121, 188, 215, 1) 0%, rgba(104, 177, 244, 1) 50%, rgba(181, 210, 224, 1) 100%);
  background-size: 200% 200%;
  animation: Grad2 10s ease infinite;
  margin: 40px 0;
  padding: 33% 0;
}


@keyframes Grad2 {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}



/*====================================================================
header-nav
====================================================================*/

header .hero_fv {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: -999;
}

header .hero_fv video {
  object-fit: cover;
  width: 100%;
	height: 100%;
}

header .header-logo_area {
  position: fixed;
  left: 8dvw;
  top: 16px;
  z-index: 9999;
}

@media (max-width: 768px) {
  header .header-logo_area img {
    width: 150px;
  }
}


/*====================================================================
nav
====================================================================*/
.gnav {
  position: fixed;
  z-index: 1;
  width: 33dvw;
  min-width: 350px;
  height: 100dvh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #ffffff99;
  padding-top: 30dvh;
  border-radius: 0 50px 50px 0;
  right: 99%;
  transition: .6s;
  transform: translateX(0);
}

.gnav.drawer {
  transform: translateX(100%);
}

.gnav .burger_btn {
  position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.burger_btn span {
  position: absolute;
  margin: auto;
  inset: 0;
  background-color: #333;
  width: 60%;
  height: 3px;
  transition: .3s;
  transform: translateX(-50%);
  left: 50%;
}

.burger_btn span:nth-child(1) {
  top: 25%;
  left: 50%;
}

.burger_btn span:nth-child(2) {
  top: -25%;
  left: 50%;
}


.burger_btn.active span:nth-child(1) {
  left: 45%;
  top: 20%;
}

.burger_btn.active span:nth-child(2) {
  left: 55%;
  top: -20%;
}

.gnav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 8dvw;
  padding-right: 50px;
  gap: 16px;
}

.gnav ul li {
  width: 100%;
}

.gnav ul li a {
  display: block;
  position: relative;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
}

.gnav ul li a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: none;
  display: none;
  transition: .5s;
}

.gnav ul li a:hover:before {
  display: block;
}

.gnav ul li a:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #333;
  transition: .5s;
}

.gnav ul li a:hover:after {
  width: 8px;
  height: 8px;
}

.gnav .tour_news {
  background-color: #fff;
  padding-bottom: 8dvh;
  padding-top: 8dvh;
  border-radius: 0 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.gnav .tour_news p.tour_news-txt {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}



/*====================================================================
main_container
====================================================================*/

.main_container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  top: 0;
  z-index: 0;
  background-color: #fff;
  overflow-x: hidden;
}

/*====================================================================
wave-bg
====================================================================*/

.wave_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 1;
}

#waveCanvas {
  width: 100%;
  height: 100%;
    position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave_bg svg {
  height: auto;
  width: 100%;
  display: none;
}

.wave_bg svg .line {
  transform-origin: 50%;
}

.wave_bg svg .line1 {
  animation: wave 10s linear infinite;
}

.wave_bg svg .line2 {
  animation: wave 10s 2s linear infinite;
}

.wave_bg svg .line0 {
  animation: wave 10s 3s linear infinite;
}

@keyframes wave {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/*====================================================================
main_container-fv
====================================================================*/
.main_container-fv {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.main_container-fv .main_container-fv_img {
  width: 100%;
  height: 100%;
}

.main_container-fv .main_container-fv_img:after {
  background: linear-gradient(#00000000, #000000cc);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: "";
}

.main_container-fv .main_container-fv_img video {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  object-fit: cover;
}

.main_container-fv h2.main_coppy {
  position: absolute;
  /* top: 50%; */
  /* left: 24px; */
  top: 50%;
  left: 50%;
  color: #fff;
  line-height: 1.6;
  font-weight: 900;
  font-family: serif;
  font-size: 24px;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}

.main_container-fv h2.main_coppy span {
  font-size: 32px;
  letter-spacing: .075em;
}


/*====================================================================
main_content bg
====================================================================*/
.contents_area {
  width: calc(100% - 32px);
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  z-index: 1;
  padding: 24px 0 0;
}

/*====================================================================
main_content coppy
====================================================================*/
.contents_area .coppy_area {
  margin: 32px auto;
}

.contents_area .coppy_area h3.contents-coppy {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.contents_area .coppy_area h3.contents-coppy span {
  font-family: serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .075em;
}


/*====================================================================
main_content overview
====================================================================*/
section.overview {
  background-color: #fff;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5), 0 -10px 10px -10px rgba(0, 0, 0, 0.5); /* 上の影 */
  width: 100%;
  margin: 32px auto;
  overflow-x: hidden;
  padding: 24px 0;
}

h5.overview_title {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  position: relative;
  width: fit-content;
  margin: 16px auto;
  padding-bottom: 4px;
} 

h5.overview_title:after {
  width: 80%;
  position: absolute;
  height: 2px;
  content: "";
  background-color: #005bac;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.event-table {
  width: calc(100% - 16px);
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 16px;
}

.event-table tbody {
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.event-table th, .event-table td {
  padding: 12px 6px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}
.event-table th {
  background-color: #f2f2f2;
  font-weight: bold;
  width: 20%;
  text-align: center;
}

.event-table td {
  line-height: 1.2;
}

/* ▼▼▼ 追加したspanのスタイル ▼▼▼ */
/* ()で囲まれた補足説明の文字を少し小さく、グレーにする */
.event-table td span {
  color: #555;
  font-size: 0.7em;
}

.map_slider,
.map_iframe iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.map_slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map_slider_wrapper {
  margin-bottom: 8px !important;
}

.map_slider_wrapper .slide_title {
  padding-left: 16px;
  font-size: 1.2em;
  font-weight: 600;
}

.map_slider ul.map_slide li {
  width: 100%;
  height: 100%;
  margin: 0 8px;
  padding: 0 8px;
}

.map_slider ul.map_slide li img {
  object-fit: contain;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

.map_slider {
  position: relative;
}

.map_slider .slick-arrow {
  /* デフォルトの文字を消す */
  font-size: 0;
  line-height: 0;
  
  /* ボタンを絶対位置で配置する */
  position: absolute;
  top: 50%; /* 上下中央に配置 */
  transform: translateY(-50%); /* 高さが可変でも中央になるように調整 */
  
  /* ボタンの見た目を整える */
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #ccc;
  background: #333;
  border-radius: 50%; /* 円形にする */
  cursor: pointer;
  z-index: 10; /* 他の要素の上に表示 */
  transition: background-color 0.3s, border-color 0.3s;
}

/* 「前へ」ボタンの位置とアイコン */
.map_slider .slick-prev {
  left: 0; /* スライダーの左外側に配置 (値は調整してください) */
}

/* 「次へ」ボタンの位置とアイコン */
.map_slider .slick-next {
  right: 0; /* スライダーの右外側に配置 (値は調整してください) */
}


/* ::before疑似要素を使ってアイコンフォントを挿入 */
.map_slider .slick-arrow::before {
  /* Font Awesomeのフォントファミリーを指定 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Solidスタイルのアイコンの場合 */
  font-size: 16px; /* アイコンのサイズ */
  line-height: 1;
  color: #fefefe;
  
  /* スムージング */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Font Awesomeの具体的なアイコンを指定 */
.map_slider .slick-prev::before {
  content: "\f053"; /* 左矢印のUnicode */
}

.map_slider .slick-next::before {
  content: "\f054"; /* 右矢印のUnicode */
}

.slide_exp {
  padding-left: 16px;
  font-size: 0.9em;
  margin-bottom: 16px;
}

.map_iframe p {
  text-align: center;
}

.map_iframe p small {
  font-size: 12px;
  text-align: center;
}

/*====================================================================
main_content worries
====================================================================*/
section.worries {
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section.worries h4.section_heading {
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: .05em;
}

section.worries h4.section_heading span {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

.slime-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    z-index: 1;
    margin-bottom: 40px;
}


.slime-blob {
    position: absolute;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
}

.slime-blob01 {
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 70%, transparent 100%);
    animation: slime-morph-1 20s infinite ease-in-out;
    will-change: transform, border-radius;
    transform: translateZ(0);
}

.slime-blob02 {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
    bottom: 0;
    left: 4%;
    animation: slime-morph-2 20s infinite ease-in-out;
    will-change: transform, border-radius;
    transform: translateZ(0);
}

  @keyframes slime-morph-1 {
      0% {
          border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
          transform: scale(1);
      }
      25% {
          border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
          transform: scale(1.02);
      }
      50% {
          border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
          transform: scale(0.95);
      }
      75% {
          border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%;
          transform: scale(1.02);
      }
      100% {
          border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
          transform: scale(1);
      }
  }

  @keyframes slime-morph-2 {
      0% {
          border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
          transform: scale(1);
      }
      20% {
          border-radius: 70% 30% 50% 50% / 30% 50% 70% 50%;
          transform: scale(1.08);
      }
      40% {
          border-radius: 30% 70% 50% 50% / 70% 30% 50% 70%;
          transform: scale(0.92);
      }
      60% {
          border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
          transform: scale(1.04);
      }
      80% {
          border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%;
          transform: scale(0.98);
      }
      100% {
          border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
          transform: scale(1);
      }
  }

  /* パルス効果 - アンドロイド対応で簡略化 */
.slime-blob::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%) translateZ(0);
    animation: pulse-simple 6s infinite ease-in-out;
    opacity: 0.7;
    z-index: 2;
    will-change: transform;
}

@keyframes pulse-simple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) translateZ(0);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) translateZ(0);
        opacity: 0.5;
    }
}

.slime-content {
  position: relative;
  z-index: 3;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slime-content02 {
  bottom: 0;
}

.slime-content img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.slime-content_txt {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.slime-content_txt img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  z-index: 4;
}

section.worries .fadein {
  opacity: 0;
  transform: translateY(50px) translateZ(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

section.worries .fadein.is-visible {
   opacity: 1;
  transform: translateY(0px) translateZ(0); 
}

/* アンドロイドデバイス向け最適化 */
@media screen and (max-width: 768px) {
    .slime-blob01,
    .slime-blob02 {
        animation-duration: 30s; /* アニメーション速度を遅くして負荷軽減 */
    }
    
    .slime-blob::before {
        animation-duration: 8s; /* パルス効果も遅くする */
    }
    
    /* 低スペックデバイス向けの設定 */
    @media (prefers-reduced-motion: reduce) {
        .slime-blob01,
        .slime-blob02 {
            animation: none;
        }
        
        .slime-blob::before {
            animation: none;
            opacity: 0.6;
        }
        
        section.worries .fadein {
            opacity: 1;
            transform: translateY(0) translateZ(0);
            transition: none;
        }
    }
}

/* 古いアンドロイドブラウザ向け */
@supports not (will-change: transform) {
    .slime-blob01,
    .slime-blob02 {
        animation-duration: 40s;
        animation-timing-function: linear;
    }
    
    .slime-blob::before {
        display: none; /* パルス効果を無効化 */
    }
}

/*====================================================================
main_content solution
====================================================================*/
section.solution {
  padding: 40px 0;
  position: relative;
}

section.solution h4.section_heading {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  letter-spacing: .075em;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
}

section.solution h4.section_heading:after {
  content: "電気は使わずに!";
  position: absolute;
  top: 48px;
  left: -12px;
  width: 150px;
  aspect-ratio: 460 / 65;
  rotate: -20deg;
  font-family: "tk-takumi-yururi-font-norm", sans-serif;
  font-size: 14px;
  font-weight: 100;
  animation: sub_heading-rotate 4s infinite linear;
  display: none;
}

@keyframes sub_heading-rotate {
  0% {
    rotate: -22deg;
  }
  50% {
    rotate: -18deg;
  }
  100% {
    rotate: -22deg;
  }
}

section.solution h4.section_heading small {
  font-size: 0.8em;
}

section.solution h4.section_heading span:nth-child(1) {
  display: block;
  box-shadow: 0px 0px 15px -5px #51599a;
  border-radius: 9999px;
  width: fit-content;
  padding: 8px 16px;
  font-size: 18px;
  margin: 0 auto 16px;
}

section.solution .soluton_txt {
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: .05em;
}

section.solution .soluton_txt span {
  font-size: 1.2em;
}

.table_img {
  margin-bottom: 40px;
}

.solution_heading.fadein {
  opacity: 0;
  transform: translateY(50px) scale(.8);
  transition: .6s;
}

.solution_heading.fadein.is-visible {
  opacity: 1;
  transform: translateY(0px) scale(1);
  animation: solutionbox 20s linear infinite;
} 

@keyframes solutionbox {
  0%{
    transform: translateY(0px) scale(1);
  }
  33%{
    transform: translateY(0px) scale(.9);
  }
  66%{
    transform: translateY(0px) scale(1.1);
  }
  100%{
    transform: translateY(0px) scale(1);
  }
}

.solution_cards .card {
  margin-bottom: 40px;
  width: calc(100% - 16px);
  margin: 0 auto 40px;
  background-color: #fefefe;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.solution_cards .card .solution_thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
}

.solution_cards .card .solution_thumbnail img {
  object-fit: cover;
  width: 100%;
}

.solution_cards .card .solution-card-txt_area {
  width: 100%;
  padding: 16px 8px 32px;
}

.solution_cards .card .solution-card-txt_area .card-title {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  padding: 0.25em 1.5em;
  background-color: #6BB3EF;
  border-radius: 999px 999px;
  margin: 0 auto 16px;
  color: #fff;
}

.solution_cards .card .solution-card-txt_area p.card-txt span {
  display: block;
  line-height: 1.6;
  font-size: 18px;
}

.solution_cards .card .solution-card-txt_area p.card-txt span.card-txt-subheading {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.solution_cards .card .solution-card-txt_area p.card-txt span.card-txt-maintxt {
  padding: 8px 16px;
  margin: 0 auto;
}

.solution_cards .card1.fadein {
  transform: translateX(50%) rotate(0deg) scale(.5);
  position: relative;
  transition: .6s;
}

.solution_cards .card3.fadein {
  transform: translateX(50%) rotate(0deg) scale(.5);
  position: relative;
  transition: .6s;
}

.solution_cards .card2.fadein {
  transform: translateX(-50%) rotate(0deg) scale(.5);
  position: relative;
  transition: .6s;
}

.solution_cards .card1.fadein.is-visible {
  left: 0;
  transform: translateX(0) rotate(1.5deg) scale(1.05);
}

.solution_cards .card3.fadein.is-visible {
  left: 0;
  transform: translateX(0) rotate(1.5deg) scale(1.05);
}

.solution_cards .card2.fadein.is-visible {
  right: 0;
  transform: translateX(0) rotate(-1.5deg) scale(1.05);
}


/*====================================================================
main_content voc
====================================================================*/

section.voc {
  /* background-color: rgba(104, 177, 244, .8); */
  background-color: #ffffffdd;
  padding: 32px 0;
}

section.voc h4.section_heading {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  letter-spacing: .075em;
}


/*====================================================================
main_content dfo
====================================================================*/
section.dfo {
  padding: 32px 0;
}

section.dfo h4.section_heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

section.dfo .arrow {
  display: block;
  width: 73.5px;
  height: 40px;
  margin: 24px auto;
  background: url(../img/wb-arrow.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: relative;
  top: 0;
  left: 0;
  animation: arrow 3s infinite ease-out;
}

@keyframes arrow {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(-10%);
  }
}

section.dfo h3.wb_method_title {
  width: 80%;
  margin: 0 auto;
}

section.dfo .txt_area {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0;
}

section.dfo .txt_area span {
  display: block;
  margin: 0 auto;
  width: 60%;
}

section.dfo .txt_area span img {
  box-shadow: 0 0 16px #ddd;
}

section.dfo .txt_area span.exp {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  margin-top: 16px;
}


/*====================================================================
main_content tour_news
====================================================================*/

section.tour_news {
  padding: 32px 0;
}

section.tour_news h4.section_heading {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 48px;
}


/*====================================================================
form
====================================================================*/
#form h4.section_heading,
#form > p {
  text-align: center;
}

#form h4.section_heading {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 16px;
}

#form > p {
  font-size: 14px;
}

.form_area {
  /* background-color: #fff; */
  padding: 1rem 1rem;
}

.form_area .form {
  width: 100%;
  margin: 40px auto;
  /* background-color: #fff; */
  border: #005bac 4px solid;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* 上下左右に均等にぼかしの影 */
  border-radius: 40px;
  padding: 32px 16px 24px;
}

.form_area .form form p {
  margin-bottom: 24px;
}

.form_area .form form p.exp {
	line-height: 1.2;
}

.form_area .form form p label {
  display: block;
  line-height: 1.6;
}

.form_area .form button,
.form_area .form input,
.form_area .form optgroup,
.form_area .form select,
.form_area .form textarea {
  width: 100%;
  border: 2px solid #333;
  background-color: #eeeeeedd;
  height: 2em;
  padding: .25em .5em;
}

.form_area .form .required-field {
  background-color: #005bac;
  color: #fff;
  padding: 0.25rem .5rem;
  border-radius: 999px 999px;
  font-size: 0.8em;
}

.form_area .form .any-field {
  padding: 0.25rem .5rem;
  border-radius: 999px 999px;
  font-size: 0.8em;
  background-color: #eee;
}

.wpcf7-form-control.wpcf7-submit.has-spinne {
  height: 100%;
  width: 100%;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 60%;
  height: 56px;
  margin: 0 auto;
  display: block;
  border: none;
  background-color: #005bac;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
}

.wpcf7-spinner {
  display: none !important;
}

p.form-heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.form-completed-message {
  width: 100%;
  height: 100%;
}

.recaptcha-txt {
  font-size: 10px;
}

#venue-thumbnail-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}

#venue-thumbnail-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}


.tel_contact {
  text-align: center;
}

.tel_contact h4 {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.tel_contact .tel_num a {
  font-size: 32px;
  font-weight: 600;
}


.footer_about {
  padding: 32px 0;
  background-color: #005bac;
  margin: 80px auto 0;
}

.footer_about h4 {
  font-size: 18px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 8px;
}

.footer_about p {
  font-size: 16px;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}

.footer_about .adress:first-line {
  font-size: 14px;
}

.wpcf7-form-control-wrap {
	line-height: 1em;
}

.wpcf7-form-control-wrap textarea {
  width: 100% !important;
  height: 240px !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
}

.wpcf7-list-item {
	margin: 0;
}

/* ラジオボタンを非表示 */
.wpcf7-list-item input[type="checkbox"],
.wpcf7-list-item input[type="radio"] {
  display: none !important;
}

/* ラベル全体をボタン風に */
.wpcf7-list-item-label {
  display: inline-block !important;
  padding: 10px 16px !important;
  margin: 6px !important;
  border: 2px solid #ccc !important;
  border-radius: 8px !important;
  background: #fff !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-size: 14px !important;
}

/* hover時 */
.wpcf7-list-item-label:hover {
  border-color: #0073aa !important;
  background: #f0f8ff !important;
  color: #0073aa !important;
}

/* 選択されたとき（input:checked + labelの中のspanをターゲット） */
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label,
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label {
  border-color: #0073aa !important;
  background: #0073aa !important;
  color: #fff !important;
}
