@charset "UTF-8";
/* aタグ設定
------------------------------------- */
a:hover,
.alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  animation-timing-function: ease;
  scroll-padding-top: 6.9444444444vw !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 20vw !important;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem;
  /* =14px */
  font-family: "Yu Mincho", "YuMincho", serif;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.fade_anime {
  transform: translateY(2.7777777778vw);
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  .fade_anime {
    transform: translateY(5.3333333333vw);
  }
}
.fade_anime.on {
  transform: translateY(0);
  opacity: 1;
}

#header {
  display: none;
}
@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 2.6666666667vw;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #header .logo {
    width: 16vw;
    height: 13.3333333333vw;
  }
  #header .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #header button {
    position: relative;
    width: 14.6666666667vw;
    height: 13.3333333333vw;
    background: initial;
  }
  #header button::before {
    position: absolute;
    top: calc(50% - 1.6vw);
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    content: "";
    display: block;
    width: 6.6666666667vw;
    height: 0.2666666667vw;
    background-color: #0d341b;
    transition: 0.5s;
  }
  #header button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 6.6666666667vw;
    height: 0.2666666667vw;
    background-color: #0d341b;
    opacity: 1;
    transition: 0.5s;
  }
  #header button::after {
    position: absolute;
    top: calc(50% + 1.6vw);
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    content: "";
    display: block;
    width: 6.6666666667vw;
    height: 0.2666666667vw;
    background-color: #0d341b;
    transition: 0.5s;
  }
  #header button.on::before {
    top: calc(50% - 0vw);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #header button.on span {
    opacity: 0;
  }
  #header button.on::after {
    top: calc(50% + 0vw);
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

.menu_content {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu_content {
    display: none;
    position: fixed;
    top: 13.3333333333vw;
    left: 0;
    width: 100%;
    padding: 8vw 4vw;
    background-color: rgba(13, 52, 27, 0.9);
    z-index: 99;
  }
  .menu_content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
  }
  .menu_content ul li a {
    font-size: 3.7333333333vw;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
  }
}

.bottom_nav_content {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom_nav_content {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
  }
  .bottom_nav_content ul {
    display: flex;
    width: 100%;
  }
  .bottom_nav_content ul li {
    width: 25%;
    height: 100%;
    border-right: 0.2666666667vw solid #fff;
  }
  .bottom_nav_content ul li:last-child {
    border: none;
  }
  .bottom_nav_content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 3.2vw;
    line-height: 1.1;
    font-weight: 400;
    color: #fff;
    background-color: rgba(51, 51, 51, 0.768627451);
    padding: 5.8666666667vw 0 4.8vw;
    line-height: 1;
  }
}

#top_main {
  overflow: hidden;
}
#top_main .fv {
  position: relative;
  height: auto;
}
#top_main .fv .fv-main {
  width: 81.25vw;
  height: auto;
  margin: 0 0 0 auto;
  padding-top: 5.2083333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .fv .fv-main {
    padding-top: 3.4722222222vw;
    width: 88%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#top_main .fv .fv_logo {
  width: 31.5277777778vw;
  position: absolute;
  top: 20.8333333333vw;
  left: 4.8611111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .fv .fv_logo {
    top: 56vw;
    left: 2.6666666667vw;
    width: 48vw;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#top_main .fv::after {
  content: "";
  width: 65.2777777778vw;
  height: 43.0555555556vw;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #fffaf5, #fff6ed);
}
@media screen and (max-width: 768px) {
  #top_main .fv::after {
    width: 83.4666666667vw;
    height: 144vw;
  }
}
#top_main .read_content {
  width: 100%;
  margin-top: 10.4166666667vw;
  padding-bottom: 25.8333333333vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_main .read_content {
    flex-direction: column;
    padding: 8vw 8vw 53.3333333333vw;
  }
}
#top_main .read_content .logo {
  width: 15.1388888889vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .logo {
    width: 41.0666666667vw;
    margin-bottom: 16vw;
  }
}
#top_main .read_content .logo img {
  width: 100%;
  height: auto;
}
#top_main .read_content .text {
  margin: 0 auto;
  width: 25vw;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .text {
    width: 100%;
  }
}
#top_main .read_content .text h2 {
  font-size: 1.9444444444vw;
  letter-spacing: 0.12em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .text h2 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
}
#top_main .read_content .text p {
  font-size: 1.1111111111vw;
  letter-spacing: 0.12em;
  line-height: 2;
  font-weight: 400;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .text p {
    font-size: 3.2vw;
  }
}
#top_main .read_content .img01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.9166666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .img01 {
    display: none;
    top: 0;
    width: 26.6666666667vw;
  }
  #top_main .read_content .img01 img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 26.6666666667vw;
  }
}
#top_main .read_content .img02 {
  position: absolute;
  top: 5.1388888889vw;
  left: 0;
  width: 25.5555555556vw;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .img02 {
    top: unset;
    bottom: 0;
    width: 32vw;
  }
}
#top_main .read_content .img03 {
  position: absolute;
  bottom: 0;
  right: 12.5vw;
  width: 33.3333333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .read_content .img03 {
    right: 5.3333333333vw;
    bottom: 0;
    width: 40vw;
  }
}
#top_main .banner_img {
  width: 100%;
  height: auto;
}
#top_main .banner_img img {
  width: 100%;
  height: auto;
}
#top_main .explanation_sec {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20.8333333333vw;
  margin-top: 20.8333333333vw;
  margin-bottom: 1.7361111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec {
    gap: 32vw;
    margin-bottom: 0;
    padding: 26.6666666667vw 0vw 20vw;
  }
}
#top_main .explanation_sec .box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5.2083333333vw;
  flex-direction: row-reverse;
  background-image: linear-gradient(#fff8f5, #ffffff 50%, #fffafa);
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box {
    flex-direction: column-reverse;
    gap: 10.6666666667vw;
    background: unset;
  }
}
#top_main .explanation_sec .box.mid {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box.mid {
    flex-direction: column-reverse;
  }
}
#top_main .explanation_sec .box .text {
  width: 33.3333333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .text {
    width: 100%;
    padding: 0 20px;
  }
}
#top_main .explanation_sec .box .text h3 {
  position: relative;
  padding-left: 5.5555555556vw;
  font-size: 1.9444444444vw;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2.25;
  text-align: left;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .text h3 {
    font-size: 4.8vw;
  }
}
#top_main .explanation_sec .box .text h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.3333333333vw;
  height: 0.0694444444vw;
  border-bottom: 0.0694444444vw solid #000;
}
#top_main .explanation_sec .box .text p {
  margin-top: 1.3888888889vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.25;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .text p {
    font-size: 3.2vw;
    text-align: justify;
    line-height: 1.75;
  }
}
#top_main .explanation_sec .box .img {
  position: relative;
  width: 54.1666666667vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img {
    width: 94.6666666667vw;
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img.reverse {
    width: 94.6666666667vw;
    margin: 0 0 0 auto;
  }
}
#top_main .explanation_sec .box .img .explanation_swiper_common {
  aspect-ratio: 1488/992;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img .explanation_swiper_common {
    width: 100%;
    aspect-ratio: 335/223;
  }
}
#top_main .explanation_sec .box .img .explanation_swiper_common .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#top_main .explanation_sec .box .img .explanation_swiper_common .swiper-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img .explanation_swiper_common .swiper-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#top_main .explanation_sec .box .img .explanation_swiper_common .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
#top_main .explanation_sec .box .img .pagination_common {
  position: absolute;
  bottom: -5.3472222222vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 0.6944444444vw;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img .pagination_common {
    width: 100%;
    position: unset;
    left: 0;
    transform: unset;
    margin-top: 2.6666666667vw;
    padding: 0 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}
#top_main .explanation_sec .box .img .pagination_common .swiper-pagination-bullet {
  width: 6.25vw;
  height: 4.1666666667vw;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .img .pagination_common .swiper-pagination-bullet {
    width: 21.3333333333vw;
    height: 12.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#top_main .explanation_sec .box .obj01 {
  position: absolute;
  width: 19.375vw;
  top: -4.375vw;
  left: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .obj01 {
    width: 34.6666666667vw;
    top: 18.9333333333vw;
    left: 5.3333333333vw;
    z-index: 1;
  }
}
#top_main .explanation_sec .box .obj02 {
  position: absolute;
  width: 46.3888888889vw;
  top: -4.375vw;
  right: 6.5277777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .obj02 {
    width: 74.6666666667vw;
    top: -7.4666666667vw;
    left: 5.3333333333vw;
    z-index: 1;
  }
}
#top_main .explanation_sec .box .obj03 {
  position: absolute;
  width: 26.3888888889vw;
  top: -4.375vw;
  left: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .obj03 {
    width: 48vw;
    top: -7.4666666667vw;
    left: 5.3333333333vw;
    z-index: 1;
  }
}
#top_main .explanation_sec .box .bg_obj01 {
  position: absolute;
  width: 14.8611111111vw;
  top: -34.7222222222vw;
  left: 0vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .bg_obj01 {
    width: 20vw;
    top: -26.6666666667vw;
    left: 0vw;
    z-index: 1;
  }
}
#top_main .explanation_sec .box .bg_obj02 {
  position: absolute;
  width: 11.8055555556vw;
  top: -1.4583333333vw;
  right: 0vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .bg_obj02 {
    width: 26.6666666667vw;
    top: 0vw;
    right: 0vw;
    z-index: 1;
  }
}
#top_main .explanation_sec .box .bg_obj03 {
  position: absolute;
  width: 15.4166666667vw;
  top: -2.7777777778vw;
  left: 0vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .bg_obj03 {
    display: none;
  }
}
#top_main .explanation_sec .box .bg_obj04 {
  position: absolute;
  width: 16.0416666667vw;
  top: -2.7777777778vw;
  right: 0vw;
}
@media screen and (max-width: 768px) {
  #top_main .explanation_sec .box .bg_obj04 {
    width: 26.6666666667vw;
    top: unset;
    bottom: 60.2666666667vw;
    right: 0vw;
    z-index: 1;
  }
}
#top_main .small_party_sec {
  margin: 20.8333333333vw auto 0.0694444444vw;
  padding: 10.4166666667vw 0;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec {
    margin: 0 auto 0.2666666667vw;
    padding: 20vw 0 20vw;
  }
}
#top_main .small_party_sec .inner {
  max-width: 71.0416666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner {
    max-width: unset;
    padding: 0 5.3333333333vw;
    margin-bottom: 0vw;
  }
}
#top_main .small_party_sec .inner .ttl_box {
  text-align: center;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .ttl_box {
    margin-bottom: 8vw;
  }
}
#top_main .small_party_sec .inner .ttl_box .title {
  width: 25.625vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .ttl_box .title {
    width: 66.6666666667vw;
  }
}
#top_main .small_party_sec .inner .ttl_box h2 {
  margin-top: 0.6944444444vw;
  font-size: 1.9444444444vw;
  font-weight: 400;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .ttl_box h2 {
    margin-top: 2.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
#top_main .small_party_sec .inner .ttl_explanation_text {
  text-align: center;
  width: 62.5vw;
  margin: 0 auto;
  font-size: 1.1111111111vw;
  letter-spacing: 0.12em;
  line-height: 2.25;
  font-weight: 400;
  color: #5e5e5e;
  margin-bottom: 6.5972222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .ttl_explanation_text {
    width: 100%;
    font-size: 3.2vw;
    margin-bottom: 0vw;
    text-align: justify;
  }
}
#top_main .small_party_sec .inner .small_party_gallery {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#top_main .small_party_sec .inner .small_party_gallery .small_party_gallery_slider {
  position: relative;
  width: 45.1388888889vw;
  height: 45.1388888889vw;
  border: 0.4166666667vw solid #fff;
  box-shadow: 0 0 1.0416666667vw rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .small_party_gallery_slider {
    width: 86.6666666667vw;
    height: 86.6666666667vw;
    border: 1.6vw solid #fff;
    border: 1.6vw solid #fff;
    box-shadow: 0 0 4vw rgba(0, 0, 0, 0.1);
  }
}
#top_main .small_party_sec .inner .small_party_gallery .small_party_gallery_slider .swiper-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}
#top_main .small_party_sec .inner .small_party_gallery .small_party_gallery_slider .swiper-wrapper li {
  height: 100%;
}
#top_main .small_party_sec .inner .small_party_gallery .small_party_gallery_slider .swiper-wrapper li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination {
    margin: 5.3333333333vw auto 13.3333333333vw;
    display: flex;
    gap: 4vw;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    position: unset;
    transform: unset;
  }
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet {
  position: absolute;
  width: 9.0277777778vw;
  height: 9.0277777778vw;
  border-radius: 50%;
  overflow: hidden;
  border: 0.2083333333vw solid #ffe8d5;
  box-shadow: 0 0 0.3472222222vw rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  /* 位置配置 */
  /* 右側（上・中・下） */
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet {
    position: unset;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    border: 0.8vw solid #ffe8d5;
  }
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.5s ease;
  opacity: 1;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet img.fade-out {
  opacity: 0;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet .gallery-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(1) {
  top: -5.9027777778vw;
  left: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(1) {
    top: unset;
    bottom: -29.3333333333vw;
    left: unset;
    right: 8vw;
  }
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(2) {
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(2) {
    transform: unset;
  }
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(3) {
  top: 19.1666666667vw;
  left: 3.125vw;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(4) {
  top: -5.9027777778vw;
  right: 3.3333333333vw;
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(5) {
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(5) {
    transform: unset;
  }
}
#top_main .small_party_sec .inner .small_party_gallery .thumb_list_pagination .swiper-pagination-bullet:nth-child(6) {
  top: 19.1666666667vw;
  right: 3.125vw;
}
#top_main .concerns_sec {
  padding: 17.3611111111vw 0 10.4166666667vw;
  background: linear-gradient(to bottom, #f7fff7, #ffffff);
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec {
    padding: 20vw 0 152vw;
  }
}
#top_main .concerns_sec .inner {
  width: 100%;
  position: relative;
}
#top_main .concerns_sec .inner .main_box {
  margin-top: 6.9444444444vw auto 0;
  text-align: center;
}
#top_main .concerns_sec .inner .main_box h2 {
  text-align: center;
  font-size: 2.2222222222vw;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .main_box h2 {
    font-size: 5.3333333333vw;
    line-height: 1.75;
  }
}
#top_main .concerns_sec .inner .main_box img {
  display: block;
  margin: 1.7361111111vw auto 0;
  width: 18.0555555556vw;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .main_box img {
    margin: 6.6666666667vw auto 0;
    width: 53.3333333333vw;
  }
}
#top_main .concerns_sec .inner .fukidashi {
  top: 0;
  position: absolute;
  display: block;
  padding: 1.5277777778vw 1.3888888889vw;
  background: #fff;
  text-align: center;
  border: 0.0694444444vw solid #ead8c5;
  width: 22.9166666667vw;
  font-size: 1.25vw;
  z-index: 0;
  animation: floatY 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi {
    padding: 4vw 2.6666666667vw;
    background: #fff;
    text-align: center;
    border: 0.2666666667vw solid #ead8c5;
    width: 58.6666666667vw;
    font-size: 3.2vw;
  }
}
#top_main .concerns_sec .inner .fukidashi::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../images/preparation_obj.svg");
  background-size: 4.5833333333vw 4.8611111111vw;
  width: 4.5833333333vw;
  height: 4.8611111111vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi::before {
    background-size: 8.8vw 9.3333333333vw;
    width: 8.8vw;
    height: 9.3333333333vw;
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
#top_main .concerns_sec .inner .fukidashi.con01 {
  top: -6.9444444444vw;
  left: 11.1111111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con01 {
    top: unset;
    bottom: -29.3333333333vw;
    left: unset;
    right: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con01::before {
  bottom: -2.4305555556vw;
  right: -2.7777777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con01::before {
    top: -5.8666666667vw;
    right: 0vw;
    bottom: unset;
    transform: rotate(-153deg);
  }
}
#top_main .concerns_sec .inner .fukidashi.con02 {
  top: 8.3333333333vw;
  left: 4.8611111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con02 {
    top: unset;
    bottom: -50.6666666667vw;
    left: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con02::before {
  transform: rotate(-40deg);
  bottom: 0vw;
  right: -3.0555555556vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con02::before {
    transform: rotate(-72deg);
    bottom: unset;
    right: unset;
    top: -5.8666666667vw;
    left: 2.1333333333vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con03 {
  top: 24.3055555556vw;
  left: 4.8611111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con03 {
    top: unset;
    bottom: -72vw;
    left: unset;
    right: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con03::before {
  transform: rotate(-60deg);
  top: -2.7777777778vw;
  right: -2.7777777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con03::before {
    top: -5.8666666667vw;
    right: 0vw;
    bottom: unset;
    transform: rotate(-153deg);
  }
}
#top_main .concerns_sec .inner .fukidashi.con04 {
  top: -6.9444444444vw;
  right: 10.4166666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con04 {
    top: unset;
    bottom: -93.3333333333vw;
    left: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con04::before {
  transform: rotate(130deg);
  bottom: -2.5694444444vw;
  left: -2.7777777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con04::before {
    transform: rotate(-72deg);
    bottom: unset;
    right: unset;
    top: -5.8666666667vw;
    left: 2.1333333333vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con05 {
  top: 6.9444444444vw;
  right: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con05 {
    top: unset;
    bottom: -114.6666666667vw;
    left: unset;
    right: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con05::before {
  transform: rotate(132deg);
  top: 1.3888888889vw;
  left: -3.2638888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con05::before {
    left: unset;
    top: -5.8666666667vw;
    right: 0vw;
    bottom: unset;
    transform: rotate(-153deg);
  }
}
#top_main .concerns_sec .inner .fukidashi.con06 {
  top: 20.8333333333vw;
  right: 10.4166666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con06 {
    top: unset;
    bottom: -136vw;
    left: 8vw;
  }
}
#top_main .concerns_sec .inner .fukidashi.con06::before {
  transform: rotate(180deg);
  bottom: -1.8055555556vw;
  left: -3.0555555556vw;
}
@media screen and (max-width: 768px) {
  #top_main .concerns_sec .inner .fukidashi.con06::before {
    transform: rotate(-72deg);
    bottom: unset;
    right: unset;
    top: -5.8666666667vw;
    left: 2.1333333333vw;
  }
}
#top_main .styling_sec {
  margin-bottom: 6.5972222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec {
    margin-bottom: 21.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
#top_main .styling_sec .inner {
  width: 75vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner {
    width: 100%;
  }
}
#top_main .styling_sec .inner .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box {
    margin-bottom: 10.6666666667vw;
    flex-direction: column;
  }
}
#top_main .styling_sec .inner .box .ttl_box {
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box .ttl_box {
    margin-bottom: 8vw;
    flex-direction: column;
  }
}
#top_main .styling_sec .inner .box .ttl_box h2 {
  font-size: 5.2083333333vw;
  font-weight: 400;
  line-height: 1;
  font-family: "Mea Culpa", cursive;
  margin-bottom: 1.7361111111vw;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box .ttl_box h2 {
    text-align: center;
    font-size: 12.8vw;
    margin-bottom: 3.4666666667vw;
  }
}
#top_main .styling_sec .inner .box .ttl_box p {
  display: flex;
  align-items: center;
  gap: 0.8333333333vw;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box .ttl_box p {
    gap: 3.2vw;
    font-size: 3.7333333333vw;
  }
}
#top_main .styling_sec .inner .box .ttl_box p::before, #top_main .styling_sec .inner .box .ttl_box p::after {
  content: "";
  display: block;
  width: 2.6041666667vw;
  height: 0.0694444444vw;
  background-color: #a8a8a8;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box .ttl_box p::before, #top_main .styling_sec .inner .box .ttl_box p::after {
    width: 12.6666666667vw;
    height: 0.2666666667vw;
  }
}
#top_main .styling_sec .inner .box .ttl_explanation_text {
  width: 33.3333333333vw;
  font-size: 1.1111111111vw;
  line-height: 2.25;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .box .ttl_explanation_text {
    text-align: center;
    width: 100%;
    font-size: 3.2vw;
  }
}
#top_main .styling_sec .inner .img_list ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .img_list ul {
    gap: 1.3333333333vw;
    flex-wrap: wrap;
  }
}
#top_main .styling_sec .inner .img_list ul li {
  width: calc(20% - 1.1111111111vw);
  height: auto;
}
@media screen and (max-width: 768px) {
  #top_main .styling_sec .inner .img_list ul li {
    width: calc(50% - 0.6666666667vw);
  }
}
#top_main .styling_sec .inner .img_list ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
#top_main .worries_sec {
  margin-bottom: 9.0277777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec {
    margin-bottom: 21.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
#top_main .worries_sec .inner {
  width: 75vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner {
    width: 100%;
  }
}
#top_main .worries_sec .inner .arrow {
  width: 12.5vw;
  margin: 0 auto 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .arrow {
    width: 21.3333333333vw;
    margin: 0vw auto 17.3333333333vw;
  }
}
#top_main .worries_sec .inner h2 {
  text-align: center;
  font-size: 1.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner h2 {
    font-size: 5.3333333333vw;
    margin-bottom: 17.3333333333vw;
  }
}
#top_main .worries_sec .inner .worries_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#top_main .worries_sec .inner .worries_list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 33.33%;
  height: 8.4027777778vw;
  padding: 0 1.3888888889vw;
  border: 0.0694444444vw solid #5e5e5e;
  font-size: 1.25vw;
  line-height: 1.6;
  font-weight: 400;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .worries_list li {
    width: 100%;
    height: 29.8666666667vw;
    padding: 0 5.3333333333vw;
    border: 0.2666666667vw solid #5e5e5e;
    border-bottom: none;
    font-size: 4.2666666667vw;
  }
}
#top_main .worries_sec .inner .worries_list li:nth-child(even) {
  background-color: #d7f3e4;
}
@media screen and (min-width: 769px) {
  #top_main .worries_sec .inner .worries_list li:nth-child(4), #top_main .worries_sec .inner .worries_list li:nth-child(5), #top_main .worries_sec .inner .worries_list li:nth-child(6) {
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  #top_main .worries_sec .inner .worries_list li:nth-child(2), #top_main .worries_sec .inner .worries_list li:nth-child(5) {
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .worries_list li:last-child {
    border: 0.2666666667vw solid #5e5e5e;
  }
}
#top_main .worries_sec .inner .worries_list li::before {
  position: absolute;
  top: -0.5px;
  left: 0;
  content: "";
  display: block;
  width: 1.1458333333vw;
  height: 1.1458333333vw;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .worries_list li::before {
    width: 4.0933333333vw;
    height: 4.0933333333vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list {
  margin-top: 4.8611111111vw;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list {
    margin-top: 17.3333333333vw;
    flex-wrap: wrap;
    gap: 5.3333333333vw 0;
    width: 101%;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .content {
  width: calc(25% - 2.0833333333vw);
  color: #4c4948;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .content {
    width: calc(50% - 3.3333333333vw);
    text-align: left;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .content .img {
  width: 8.8194444444vw;
  height: auto;
  margin: 0 auto 1.5972222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .content .img {
    width: 26.6666666667vw;
    margin-bottom: 6.1333333333vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .content .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
#top_main .worries_sec .inner .peace_of_mind_list .content p {
  text-align: center;
  font-size: 1.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .content p {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .content span {
  display: block;
  font-size: 0.9722222222vw;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .content span {
    white-space: initial;
    font-size: 3.2vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .cross {
  position: relative;
  width: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .cross {
    width: 6.6666666667vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .cross::before, #top_main .worries_sec .inner .peace_of_mind_list .cross::after {
  content: "";
  display: block;
  position: absolute;
  top: 3.8194444444vw;
  left: 50%;
  transform: translateX(-50%);
  width: 1.3888888889vw;
  height: 0.0694444444vw;
  background-color: #4c4948;
}
@media screen and (max-width: 768px) {
  #top_main .worries_sec .inner .peace_of_mind_list .cross::before, #top_main .worries_sec .inner .peace_of_mind_list .cross::after {
    top: 30.6666666667vw;
    width: 4vw;
    height: 0.2666666667vw;
  }
}
#top_main .worries_sec .inner .peace_of_mind_list .cross::after {
  transform: translateX(-50%) rotate(90deg);
}
#top_main .contact_sec {
  background: linear-gradient(to bottom, #fef7f1, #ffffff);
  padding: 6.5972222222vw 0 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec {
    padding: 26.6666666667vw 5.3333333333vw 8vw;
  }
}
#top_main .contact_sec .inner {
  width: 66.6666666667vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner {
    width: 100%;
  }
}
#top_main .contact_sec .inner .ttl_box {
  text-align: center;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .ttl_box {
    margin-bottom: 13.3333333333vw;
  }
}
#top_main .contact_sec .inner .ttl_box img {
  width: 25.2777777778vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .ttl_box img {
    width: 90%;
  }
}
#top_main .contact_sec .inner .ttl_box p {
  margin-top: 1.7361111111vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8333333333vw;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .ttl_box p {
    gap: 3.7333333333vw;
    font-size: 3.7333333333vw;
    margin-top: 6.6666666667vw;
  }
}
#top_main .contact_sec .inner .ttl_box p::before, #top_main .contact_sec .inner .ttl_box p::after {
  content: "";
  display: block;
  width: 2.6041666667vw;
  height: 0.0694444444vw;
  background-color: #2b2b2b;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .ttl_box p::before, #top_main .contact_sec .inner .ttl_box p::after {
    width: 12.6666666667vw;
    height: 0.2666666667vw;
  }
}
#top_main .contact_sec .inner .form_contents {
  background-color: #fff;
  padding: 6.5972222222vw 8.3333333333vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents {
    border-radius: 1.0666666667vw;
    padding: 16vw 5.7333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box {
  display: flex;
  align-items: center;
  gap: 4.1666666667vw;
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8666666667vw;
    margin-top: 5.3333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box:first-child {
  margin-top: 0;
}
#top_main .contact_sec .inner .form_contents .box.ttl_start_box {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box.ttl_start_box .content_ttl {
    padding: 0;
  }
}
#top_main .contact_sec .inner .form_contents .box.ttl_start_box02 {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box.ttl_start_box02 {
    margin-top: 5.3333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box.privacy_policy_box {
  margin: 3.4722222222vw 0 0;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box.privacy_policy_box {
    margin: 8vw 0 0;
  }
}
#top_main .contact_sec .inner .form_contents .box .content_ttl {
  width: 14.5833333333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content_ttl {
    width: initial;
    gap: 1.6vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content_ttl p {
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content_ttl p {
    font-size: 3.7333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content_ttl span {
  font-size: 0.9722222222vw;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  padding: 0.3472222222vw 0.8333333333vw 0.2777777778vw;
  background-color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content_ttl span {
    font-size: 3.2vw;
    padding: 1.0666666667vw 1.8666666667vw 0.8vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content {
  width: calc(100% - 18.75vw);
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content {
    width: 100%;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .radio {
  display: none;
}
#top_main .contact_sec .inner .form_contents .box .content .radio + label {
  position: relative;
  padding-left: 2.0833333333vw;
  cursor: pointer;
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .radio + label {
    padding-left: 9.3333333333vw;
    font-size: 4vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .radio + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7361111111vw;
  height: 1.7361111111vw;
  border: 0.0694444444vw solid #5e5e5e;
  background-color: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .radio + label::before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    border: 0.2666666667vw solid #5e5e5e;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .radio + label::after {
  content: "";
  position: absolute;
  left: 0.3472222222vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .radio + label::after {
    left: 1.3333333333vw;
    width: 4vw;
    height: 4vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .radio:checked + label::after {
  background-color: #5e5e5e;
}
#top_main .contact_sec .inner .form_contents .box .content .common_input {
  width: 100%;
  padding: 0.6944444444vw 1.0416666667vw;
  font-size: 1.1111111111vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 0.0694444444vw solid #e3e3e3;
  border-radius: 0.2083333333vw;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .common_input {
    padding: 2.2666666667vw 4vw;
    font-size: 3.2vw;
    border: 0.2666666667vw solid #e3e3e3;
    border-radius: 0.8vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content.invitation_content {
  position: relative;
}
#top_main .contact_sec .inner .form_contents .box .content.invitation_content::before {
  content: "人";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.0416666667vw;
  transform: translateY(-50%);
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content.invitation_content::before {
    right: 4vw;
    font-size: 3.7333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content.invitation_content .common_input {
  padding-right: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content.invitation_content .common_input {
    padding-right: 10.6666666667vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content #contact_content {
  width: 100%;
  height: auto;
  aspect-ratio: 450/143;
  padding: 0.6944444444vw 1.0416666667vw;
  font-size: 1.1111111111vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 0.0694444444vw solid #e3e3e3;
  border-radius: 0.2083333333vw;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content #contact_content {
    aspect-ratio: 315/183;
    padding: 2.9333333333vw 4vw;
    font-size: 3.2vw;
    border: 0.2666666667vw solid #e3e3e3;
    border-radius: 0.8vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .date {
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .date {
    margin-top: 5.3333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .date:first-child {
  margin-top: 0;
}
#top_main .contact_sec .inner .form_contents .box .content .date .date_input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.4722222222vw;
  padding: 0.6944444444vw 1.0416666667vw;
  font-size: 1.1111111111vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 0.0694444444vw solid #e3e3e3;
  border-radius: 0.2083333333vw;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .date .date_input {
    height: 11.7333333333vw;
    padding: 2.2666666667vw 4vw;
    font-size: 3.2vw;
    border: 0.2666666667vw solid #e3e3e3;
    border-radius: 0.8vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .date .form-note {
  margin-top: 1.0416666667vw;
  font-size: 0.9722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .date .form-note {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .time {
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .time {
    margin-top: 5.3333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .content .time .time_input {
  width: 100%;
  padding: 1.0416666667vw;
  height: 3.4722222222vw;
  font-size: 1.1111111111vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 0.0694444444vw solid #e3e3e3;
  border-radius: 0.2083333333vw;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .content .time .time_input {
    padding: 2.2666666667vw 4vw;
    font-size: 3.2vw;
    height: 11.7333333333vw;
    border: 0.2666666667vw solid #e3e3e3;
    border-radius: 0.8vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent {
  display: none;
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label {
  position: relative;
  padding-left: 2.0833333333vw;
  cursor: pointer;
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label {
    padding-left: 9.3333333333vw;
    font-size: 3.2vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7361111111vw;
  height: 1.7361111111vw;
  border: 0.0694444444vw solid #5e5e5e;
  background-color: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    border: 0.2666666667vw solid #5e5e5e;
  }
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label::after {
  content: "";
  position: absolute;
  left: 0.3472222222vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label::after {
    left: 1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent + label a {
  text-decoration: underline;
  color: #5e5e5e;
}
#top_main .contact_sec .inner .form_contents .box .privacy_policy_check .consent:checked + label::after {
  background-color: #5e5e5e;
}
#top_main .contact_sec .inner .form_contents .caveat {
  padding-left: 18.75vw;
  font-size: 0.9722222222vw;
  margin-top: 0.6944444444vw;
  color: red;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .caveat {
    margin-top: 4vw;
    font-size: 3.4666666667vw;
    padding-left: 0;
  }
}
#top_main .contact_sec .inner .form_contents .note {
  margin-top: 3.4722222222vw;
  font-size: 0.9722222222vw;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .note {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
#top_main .contact_sec .inner .form_contents .btn_list {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
  margin-top: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .btn_list {
    gap: 5.3333333333vw;
    margin-top: 13.3333333333vw;
  }
}
#top_main .contact_sec .inner .form_contents .btn_list .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.1666666667vw;
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  background-color: #333333;
  color: #fff;
  filter: drop-shadow(2px 4px 6px black);
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .btn_list .submit {
    height: 12vw;
    font-size: 4.2666666667vw;
  }
}
#top_main .contact_sec .inner .form_contents .btn_list.confirm_btn a {
  width: calc(50% - 0.6944444444vw);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.1666666667vw;
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  background-color: #333333;
  color: #fff;
  filter: drop-shadow(2px 4px 6px black);
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .btn_list.confirm_btn a {
    height: 12vw;
    font-size: 4.2666666667vw;
    width: calc(50% - 2.6666666667vw);
  }
}
#top_main .contact_sec .inner .form_contents .btn_list.confirm_btn .submit {
  width: calc(50% - 0.6944444444vw);
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents .btn_list.confirm_btn .submit {
    width: calc(50% - 2.6666666667vw);
  }
}
#top_main .contact_sec .inner .form_contents.confirm_form .box {
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents.confirm_form .box {
    align-items: flex-start;
  }
}
#top_main .contact_sec .inner .form_contents.confirm_form .box.ttl_start_box {
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents.confirm_form .box.ttl_start_box {
    align-items: flex-start;
  }
}
#top_main .contact_sec .inner .form_contents.confirm_form .box.ttl_start_box .content_ttl {
  padding-top: 0;
}
#top_main .contact_sec .inner .form_contents.confirm_form .box .content .confirm_text {
  font-size: 1.1111111111vw;
  color: #5e5e5e;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .form_contents.confirm_form .box .content .confirm_text {
    font-size: 3.7333333333vw;
  }
}
#top_main .contact_sec .inner .tel_contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6944444444vw;
  padding: 3.4722222222vw 0;
  text-align: center;
  background-color: #fff;
  margin: 3.4722222222vw 0 4.5138888889vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .tel_contact {
    width: 100%;
    border-radius: 1.0666666667vw;
    gap: 1.3333333333vw;
    padding: 6.6666666667vw 2.6666666667vw;
    margin: 8vw 0 8vw;
  }
}
#top_main .contact_sec .inner .tel_contact p {
  font-size: 1.1111111111vw;
  letter-spacing: 0.2em;
  line-height: 1.6;
  font-weight: 400;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .tel_contact p {
    font-size: 3.7333333333vw;
  }
}
#top_main .contact_sec .inner .tel_contact p a {
  color: #5e5e5e;
}
#top_main .contact_sec .inner .tel_contact p span {
  display: block;
  margin-top: 0.6944444444vw;
  font-size: 0.9722222222vw;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .tel_contact p span {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
#top_main .contact_sec .inner .copyright {
  font-size: 1.1111111111vw;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .copyright {
    font-size: 3.7333333333vw;
  }
}
#top_main .contact_sec .inner .thanks_box {
  text-align: center;
  color: #5e5e5e;
  background-color: #fff;
  padding: 5.5555555556vw 1.3888888889vw 4.5138888889vw;
  border: solid 0.0694444444vw #4c4948;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .thanks_box {
    padding: 10.6666666667vw 5.3333333333vw;
    border: solid 0.2666666667vw #4c4948;
  }
}
#top_main .contact_sec .inner .thanks_box h3 {
  font-size: 1.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .thanks_box h3 {
    font-size: 4.8vw;
  }
}
#top_main .contact_sec .inner .thanks_box p {
  font-size: 1.1111111111vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .thanks_box p {
    text-align: justify;
    font-size: 3.7333333333vw;
    letter-spacing: 0.05em;
    margin-bottom: 6.6666666667vw;
  }
}
#top_main .contact_sec .inner .thanks_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39.2361111111vw;
  height: 3.6111111111vw;
  margin: 0 auto;
  color: #fff;
  font-size: 1.1111111111vw;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-weight: 400;
  background-color: #333333;
  filter: drop-shadow(2px 4px 6px black);
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec .inner .thanks_box a {
    width: 100%;
    height: 10.6666666667vw;
    font-size: 3.2vw;
  }
}
#top_main .contact_sec.thanks_sec .inner {
  width: 80.5555555556vw;
}
@media screen and (max-width: 768px) {
  #top_main .contact_sec.thanks_sec .inner {
    width: 100%;
  }
}

footer {
  padding: 1.3888888889vw 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 5.3333333333vw 0vw 18.6666666667vw;
  }
}
footer .map iframe {
  filter: grayscale(1);
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .map iframe {
    height: 120vw;
  }
}
footer .footer_add {
  margin: 5.2083333333vw auto 0;
  display: flex;
  justify-content: center;
  gap: 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  footer .footer_add {
    margin: 20vw auto 0;
    flex-direction: column;
    align-items: anchor-center;
    gap: 5.3333333333vw;
  }
}
footer .footer_add img {
  width: 19.8611111111vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer_add img {
    width: 53.3333333333vw;
    margin: 0 auto;
  }
}
footer .footer_add p {
  font-size: 1.1111111111vw;
  line-height: 1.65;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer .footer_add p {
    font-size: 3.2vw;
    line-height: 1.65;
    text-align: center;
  }
}
footer .footer_add p a {
  margin-top: 0.6944444444vw;
  display: block;
  text-decoration: underline;
  color: #4c4948;
}
@media screen and (max-width: 768px) {
  footer .footer_add p a {
    margin-top: 2.6666666667vw;
  }
}
footer .note {
  margin-top: 4.1666666667vw;
  text-align: center;
  font-size: 0.8333333333vw;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  footer .note {
    margin: 8vw auto 0;
    padding: 0 8vw;
    text-align: start;
    font-size: 2.6666666667vw;
    text-indent: -1em;
    line-height: 1.65;
  }
}
footer .copyright {
  margin-top: 1.3888888889vw;
  text-align: center;
  font-size: 0.8333333333vw;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #5e5e5e;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin-top: 5.3333333333vw;
    text-align: center;
    font-size: 2.6666666667vw;
  }
}/*# sourceMappingURL=base.css.map */