@charset "UTF-8";

/*-------------
header
--------------*/
html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

pre {
  white-space: pre-wrap;
}

body {
  background: #fd95ac;
  font-family: "Noto Sans JP", sans-serif;
}

input[type="checkbox"],
input[type="radio"],
label,
select {
  cursor: pointer;
}

.entry-button {
  display: none;
}

.interview-text {
  font-size: 10px;
  color: #333333;
  padding-bottom: 3px;
}


/*Entry!ボタン*/
.sp-entry-button {
  width: 126px;
  background: #FFB7DA;
  background: -moz-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
  background: -webkit-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
  background: -o-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
  background: linear-gradient(to bottom right, #FFE76D 0%, #FFB7DA 75%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50px;
  animation: bggradient 7s ease infinite;
  background-size: 150% 150%;
  border-radius: 30px;
}


@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.sp-entry-button__link {
  color: #fff;
  text-decoration: none;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
}

.sp-entry-button__text--jp {
  font-size: 10px;
  font-weight: 200;
  line-height: 1.4;
}

.sp-entry-button__text--en {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
}

.container .item:first-child {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.header {
  background: #fd95ac;
  border-bottom: 1px solid #ebdf77;
  position: fixed;
  top: 30px;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  height: 52px;
  transition: all .2s;
}

.header.is-fixed {
  position: fixed;
  top: 0;
}

.header__title {
  font-size: 10px;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 200;
  letter-spacing: 2px;
  padding: 10px 0;
  background: #EC4377;
}

.header__title--jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: lighter;
}

.header__logo {
  width: 120px;
  padding-left: 10px;
}

.menu__line {
  width: 27px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}

.menu__line:first-of-type {
  top: -10px;
}

.menu__line:last-of-type {
  top: 10px;
}

.menu.active {
  top: 10px;
}

.p-page-404__content {
  border-radius: 10px;
  padding: 10px;
  margin: 100px 16px;
}

.p-page-404__content p {
  color: #fff;
  font-size: 14px;
}

.p-page-404-link {
  text-align: center;
  margin: auto;
}

.p-page-404-link a {
  background: #EC4377;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  margin: 40px 0;
  display: inline-block;
  width: 200px;
}

@media screen and (min-width: 768px) {
  .p-page-404__content {
    max-width: 600px;
    margin: 100px auto;
  }
}

/*追加*/
.menu {
  position: fixed;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  right: 0;
}

.menu.active .menu__line:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
  background: #F65889;
}

.menu.active .menu__line:nth-of-type(2) {
  opacity: 0;
}

.menu.active .menu__line:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
  top: 28px;
  background: #F65889;
}

.global-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #fff;
  color: #F65889;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 40px;
  border-left: 10px solid #F65889;
}

.global-nav a {
  text-decoration: none;
  font-weight: bold;
}

.global-nav.active {
  right: 0;
}

.global-nav__list {
  display: grid;
  gap: 20px;
}

/*-------------
nav
--------------*/

.navigation {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 0.2s;
}

.navigation__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.navigation__logo {
  width: 200px;
  display: none;
}

.navigation__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navigation__item {
  position: relative;
}

.navigation__item::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 20px;
  border-right: 1px solid #eb4376;
  top: 2px;
  right: -15px;
  transform: rotate(25deg);
}

.navigation__item:last-of-type::after {
  display: none;
}

.navigation__link {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #eb4376;
  font-weight: 600;
  text-decoration: none;
}

/*-------------
counter
--------------*/
.counter {
  /*padding: 0 30px;*/
  max-width: 310px;
  box-sizing: border-box;
  margin: 0 auto 40px;
}

.main-counter {
  width: 100%;
}

.main-counter__text {
  color: #fff;
  font-size: 16px;
  display: block;
}

.main-counter__text:first-of-type {
  margin-bottom: 5px;
}

.main-counter__text:last-of-type {
  margin-top: 5px;
  text-align: right;
}

.main-counter__number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #f65889;
  position: relative;
}

.main-counter__number--digit {
  font-size: 55px;
  line-height: normal;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
  position: relative;
  width: calc(600px / 6);
  max-width: 48px;
  text-align: center;
}

.main-counter__number--digit::after {
  position: absolute;
  background: #fff;
  border-radius: 5px;
  content: "";
  width: 100%;
  height: 65px;
  bottom: 50%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.sub-counter {
  text-align: center;
  margin-top: 20px;
}

.sub-counter__item {
  color: #fff;
  letter-spacing: 1.3px;
}

.start-date {
  font-size: 12px;
  color: #ffdbe3;
  letter-spacing: 1.3px;
  margin-top: 20px;
}

/*-------------
breadcrumb
--------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 5px 16px 0;
  gap: 0 10px;
  flex-wrap: wrap;
}

.bred__item span {
  color: #fff;
  font-size: 12px;
}

.bred__item::after {
  content: "＞";
  font-size: 10px;
  padding-left: 10px;
  color: #fff;
}

.bred__item:last-of-type::after {
  display: none;
}

.bred__item a {
  text-decoration: none;
}

.bred__item a:not([class]) {
  color: transparent;
}

/*-------------
about
--------------*/
.about {
  background: #ffb4c4;
  padding: 30px 0 40px;
  overflow: hidden;
}

.about__number {
  position: relative;
  z-index: 1;
}

.about__number1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  top: 100px;
  right: -150px;
  z-index: -1;
  max-width: 556px;
  max-height: 163px;
}

.about__number1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 150px;
  right: -100px;
  z-index: -1;
  background-image: radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  max-width: 556px;
  max-height: 163px;
}

.about__number3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  bottom: 52px;
  left: -150px;
  z-index: -1;
  max-width: 556px;
  max-height: 163px;
}

.about__number3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -15px;
  left: -100px;
  z-index: -1;
  background-image: radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  max-width: 556px;
  max-height: 163px;
}

.about__number5::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  bottom: 27px;
  right: -150px;
  z-index: -1;
  max-width: 556px;
  max-height: 163px;
}

.about__number5::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -40px;
  right: -100px;
  z-index: -1;
  background-image: radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  max-width: 556px;
  max-height: 163px;
}

.about__number {
  text-align: center;
  margin: 0 16px 20px;
  max-width: 588px;
}

.about__number-title {
  color: #fff;
  font-weight: 500;
  padding: 5px;
  font-size: 14px;
}

.about__number-title--sub {
  font-weight: normal;
  font-size: 12px;
}

.about__number1-title {
  background: #F65889;
}

.about__number2-title {
  background: #5FC2EE;
}

.about__number3-title {
  background: #2DCB57;
}

.about__number4-title {
  background: #FFA32A;
}

.about__number5-title {
  background: #FD95AC;
}

.about__number-content {
  background: #fff;
}

.about__number1--big-num {
  color: #F65889;
  font-size: 60px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
  position: relative;
  z-index: 0;
}

.about__number1--big-num::after {
  content: "";
  position: absolute;
  background: #FFFFBF;
  bottom: 16px;
  width: 200px;
  height: 10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.about__number1--small {
  font-size: 40px;
}

.about__item {
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: space-around;
}

.about__list2 {
  color: #5FC2EE;
  font-weight: 500;
  width: 160px;
  margin: auto;
  padding: 10px 0;
}

.about__item-first,
.about__item-thrid {
  display: flex;
  align-items: flex-end;
}

.about__item--small {
  font-size: 18px;
  line-height: 2.4;
}

.about__item--large {
  font-size: 34px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
}

.about__item-second {
  font-size: 18px;
}

.about__list3 {
  color: #2DCB57;
  font-weight: 500;
  width: 160px;
  margin: auto;
}

.about__item-space {
  margin-left: 3px;
}

.about__baloons {
  padding: 20px;
}

.about__baloon-list {
  display: grid;
  gap: 10px;
  justify-content: center;
}

.about__baloon-item {
  color: #FFA32A;
  background: #FFF5E8;
  font-size: 14px;
  position: relative;
  padding: 10px;
  border-radius: 20px;
  max-width: 300px;
  font-weight: 500;
}

.about__baloon-item:nth-of-type(odd) {
  margin-left: 30px;
}

.about__baloon-item:nth-of-type(even) {
  margin-right: 30px;
}

.about__baloon-item:nth-of-type(odd)::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 0;
  top: 10px;
  border-right: 12px solid #FFF5E8;
  border-top: 22px solid transparent;
  border-bottom: 18px solid transparent;
  transform: rotate(105deg);
}

.about__baloon-item:nth-of-type(even)::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  top: 8px;
  border-right: 12px solid #FFF5E8;
  border-top: 26px solid transparent;
  border-bottom: 18px solid transparent;
  transform: rotate(225deg);
}

.about__holiday {
  padding: 20px 16px;
}

.about__holiday-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.about__holiday-item {
  width: calc((100% - 5px) / 2);
  background: #FFF8FA;
  border: 1px solid #FD95AC;
  padding: 0 10px;
  height: 130px;
  display: grid;
  align-items: center;
  border-radius: 10px;
}

.about__holiday-image {
  text-align: center;
  margin: auto;
}

.about__holiday-image img {
  object-fit: contain;
  height: 60px;
  width: 80px;
}

.about__holiday-title {
  font-size: 12px;
  color: #FD95AC;
  background: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.about__holiday-text {
  color: #FD95AC;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.8;
}

/*-------------
main
--------------*/


/*-------------
mainvisual slider
--------------*/
.main-visual {
  position: relative;
  padding-bottom: 20px;
}

.main-visual__inner {
  margin-top: 40px;
}

.main-visual .swiper-pagination {
  position: static;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.main-visual .swiper-pagination-bullet-active {
  background: linear-gradient(45deg, #f9f990, #ffffd6, #f9f990);
  width: 10px;
  height: 10px;
  opacity: 1;
}

/*-------------
title
--------------*/
.c-title {
  width: 260px;
  margin: 20px auto;
  display: block;
  z-index: 2;
  position: relative;
}

.c-title--en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  position: relative;
  text-align: center;
  display: block;
}

.c-title--jp {
  display: block;
  color: #ffebef;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.c-title--en::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 240px;
  height: 5px;
  background: #ebdf77;
  background: -moz-linear-gradient(left, #ebdf77 0%, #fbf2b1 48%, #ebdf77 100%);
  background: -webkit-linear-gradient(left, #ebdf77 0%, #fbf2b1 48%, #ebdf77 100%);
  background: -o-linear-gradient(left, #ebdf77 0%, #fbf2b1 48%, #ebdf77 100%);
  background: linear-gradient(to right, #ebdf77 0%, #fbf2b1 48%, #ebdf77 100%);
}

/*-------------
footer
--------------*/
.button-to-top {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
  border: 1px solid #FD95AC;
  cursor: pointer;
}

.button-to-top::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-left: 3px solid #EC4377;
  border-top: 3px solid #EC4377;
  transform: rotate(45deg);
  top: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.button-to-top.show {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: #f65889;
  text-align: center;
  display: grid;
  gap: 60px;
  padding: 80px 0 20px;
  border-top: 2px solid #f9f990;
}

.footer__logo {
  width: 240px;
  margin: auto;
}

.footer__notion {
  color: #fff;
  font-weight: 100;
  font-size: 12px;
  padding: 0 10px;
  line-height: 1.8;
}

.footer__copyright {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  color: #ffb7cd;
  font-weight: 100;
  letter-spacing: 1px;
}

/*-------------
modal
--------------*/
.modal {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(159, 182, 241, 0.9),
      rgba(255, 169, 211, 0.9));
  justify-content: center;
  align-items: center;
}

/*.modal__inner {
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}*/

.modal__button--close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*-------------
local
--------------*/
.local {
  padding: 20px 0 0;
  overflow: hidden;
}

.local__contact {
  margin-top: 60px;
  background: #fdffef;
  padding: 40px 16px;
  text-align: center;
}

.local__contact__title {
  color: #fd95ac;
  font-weight: 500;
}

.local__contact__subtitle {
  color: #727272;
  font-size: 14px;
  margin-top: 10px;
}

.c-button--more {
  background: #f65889;
  border: 1px solid #f65889;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  display: block;
  text-decoration: none;
  margin-top: 10px;
  position: relative;
  text-align: center;
  padding-right: 40px;
  transition: all .2s;
}

.c-button--more:hover {
  background: #fff;
  color: #f65889;
}

.c-button--more:hover .c-button--more-text::after,
.c-button--more:hover .c-button--more-text::before {
  background: #f65889;
}

.c-button--more-text {
  position: relative;
}

.c-button--more-text--en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.c-button--more-text::after {
  position: absolute;
  content: "";
  top: 6px;
  bottom: 0;
  right: -40px;
  margin: auto;
  width: 30px;
  height: 1px;
  background: #fff;
  animation: moveLine 2s infinite ease-in-out;
}

.c-button--more-text::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
  animation: moveArrow 2s infinite ease-in-out;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0) rotate(45deg);
  }

  50% {
    transform: translateX(5px) rotate(45deg);
  }

  100% {
    transform: translateX(0) rotate(45deg);
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

/*-------------
section c-introduction
--------------*/
.c-introduction__title {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.c-introduction__text {
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  line-height: 1.8;
  padding: 0 0 20px 0;
}

/*local__check-list*/
.local__check-list {
  background: #fff;
  border-left: 10px solid #f65889;
  margin: 40px 16px 0;
  position: relative;
}

.local__check-list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 84%;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  top: -18px;
  right: -54px;
  z-index: -1;
}

.local__check-list::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -20px;
  left: -100px;
  z-index: -1;
  background-image: radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
}

.local__check-list__inner {
  padding: 12px 20px 20px 10px;
}

.local__check-list__item {
  color: #fd95ac;
  font-size: 14px;
  border-bottom: 1px solid #ffe0e7;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  letter-spacing: -1px;
}

.local__check-list__item::before {
  position: absolute;
  content: "";
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f65889;
}

.local__check-list__item::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  left: 7px;
  top: 12px;
}

/*local__point-list*/
.local__point-list {
  margin: 50px 16px 0;
  position: relative;
}

.local__point-list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 110px;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  bottom: -20px;
  left: -100px;
  z-index: -1;
}

.local__point-list__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.local__point-list__item {
  width: calc((100% - 10px) / 2);
  background: #fff;
  padding: 10px;
  height: 220px;
  display: grid;
  align-items: center;
}

.local__point-list__image {
  text-align: center;
  margin: auto;
}

.local__point-list__image img {
  object-fit: contain;
  height: 80px;
  width: 100px;
}

.local__point-list__text {
  font-size: 14px;
  color: #727272;
  text-align: center;
}

/*-------------
traveling
--------------*/
.traveling {
  background: #ffb4c4;
  padding: 20px 0 40px;
}

.traveling__point-list {
  padding: 0 11px 0 16px;
}

.traveling__point-list__inner {
  display: grid;
  place-items: center;
  gap: 16px;
}

.traveling__point-list__bg {
  background: linear-gradient(200deg, #d5e1ff, #ffd8eb);
  width: calc(100% - 5px);
}

.traveling__point-list__item {
  background: #fff;
  border-left: 10px solid #f65889;
  padding: 20px 20px 20px 10px;
  position: relative;
  z-index: 2;
  top: -5px;
  right: 5px;
}

.traveling__point-list__bg .traveling__point-list__item::before {
  position: absolute;
  content: "01";
  font-family: "Barlow Condensed", sans-serif;
  color: #fff0f3;
  font-weight: bold;
  font-style: italic;
  font-size: 86px;
  bottom: 2px;
  right: 20px;
  line-height: 0.8;
  z-index: -1;
}

.traveling__point-list__bg:nth-of-type(2) .traveling__point-list__item::before {
  content: "02";
}

.traveling__point-list__bg:nth-of-type(3) .traveling__point-list__item::before {
  content: "03";
}

.traveling__point-list__bg:nth-of-type(4) .traveling__point-list__item::before {
  content: "04";
}

.traveling__point-list__bg:nth-of-type(5) .traveling__point-list__item::before {
  content: "05";
}

.traveling__point-list__bg:nth-of-type(6) .traveling__point-list__item::before {
  content: "06";
}

.traveling__point-list__bg:nth-of-type(7) .traveling__point-list__item::before {
  content: "07";
}

.traveling__point-list__title {
  color: #fd95ac;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #fd95ac;
}

.traveling__point-list__text {
  color: #727272;
  font-size: 14px;
  padding-top: 10px;
  line-height: 26px;
}

.traveling-staff {
  background: #fdffef;
  margin: 25px 16px 0;
  border-radius: 5px;
  padding: 25px 10px;
}

.traveling-staff__title {
  color: #fd95ac;
  font-weight: bold;
  text-align: center;
}

.traveling-staff__text {
  color: #727272;
  text-align: center;
  font-size: 14px;
  padding: 10px;
}

.traveling-staff__list {
  display: grid;
  gap: 5px;
}

.traveling-staff__point {
  background: #fd95ac;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.point-text {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}

.point-number {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
  margin-right: 14px;
}

.traveling-staff__decoration {
  color: #fd95ac;
  font-size: 14px;
  text-align: center;
  padding-bottom: 5px;
}

.traveling-introduction__text {
  padding: 10px 0 30px;
}

/*-------------
interview
--------------*/
.interview {
  padding: 30px 0 50px;
  overflow-x: hidden;
}

.interview__content {
  padding: 20px 0;
  position: relative;
}

.interview__content::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #FDB5C5;
  bottom: 0;
  width: calc(100% - 32px);
  left: 0;
  right: 0;
  margin: auto;
}

.interview__content:last-of-type::after {
  display: none;
}

.interview__image {
  position: relative;
  width: 254px;
  height: 190px;
}

.interview2__image {
  width: 100%;
  text-align: right;
  padding-right: 5px;
}

.interview2__image img {
  width: 254px;
  height: 190px;
  display: inline;
}

.interview__image img {
  object-fit: cover;
}

.interview__image::before {
  position: absolute;
  content: "";
  width: 254px;
  height: 190px;
  z-index: -1;
  right: -4px;
  bottom: -6px;
}

.interview__information {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -120px;
  /*width: 100%;*/
  width: 240px;
}
.interview1__information{
  content: "";
  position: absolute;
  width: 226px;
  right: -154px;
  bottom: unset;
  top: 0;
}

.interview2__information {
  right: 190px;
  bottom: 10px;
}
.interview3__information{
  bottom: 5px;
  right: -160px;
}
.interview__name {
  font-size: 10px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.interview__name--odd {
  padding-left: 80px;
}
.interview1__name{
  padding-left: 0;
}
.interview3__name{
  padding-left: 0;
}

.interview__name span {
  font-size: 14px;
  font-weight: 400;
}

.interview__number {
  position: absolute;
  content: "";
  color: #ffffff26;
  font-size: 103px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 500;
  right: -106px;
  top: 0;
  line-height: 0.8;
  z-index: -2;
}

.interview2__number {
  left: 0;
  right: 250px;
}
.interview2__name{
  padding-left: 10px;
}

.interview__text span {
  background: #fff;
  padding: 5px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 10px;
}
.interview2__text span{
  padding: 5px 10px;
}

.interview1__image::before {
  background: #5fc2ee;
}

.interview1__text {
  color: #5fc2ee;
}

.interview2__image::before {
  background: #f65889;
}

.interview2__text {
  color: #f65889;
}

.interview3__image::before {
  background: #2dcb57;
}

.interview3__text {
  color: #2dcb57;
}

.interview__number span {
  font-size: 67px;
}

.interview__faq {
  background: #fff;
  margin: 20px 16px 0;
  padding: 10px 12px 20px;
  border-radius: 10px;
}

.interview__faq-question {
  color: #fd95ac;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  padding-bottom: 5px;
}

.interview__faq-list {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}

.interview__faq-list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
}

.interview__faq-question span {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: bold;
  margin-right: 8px;
}

.interview__faq-answer {
  color: #727272;
  font-size: 12px;
  padding-left: 20px;
}

.interview__faq-item {
  border-bottom: 1px solid #c6c6c6;
  padding: 10px;
}

.interview__faq-button {
  background: #f65889;
  color: #fff;
  font-size: 14px;
  width: fit-content;
  text-align: center;
  padding: 10px 45px 10px 25px;
  border-radius: 5px;
  margin: 20px auto 0;
  position: relative;
}

.interview__faq-button::after {
  position: absolute;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  height: 10px;
  right: 20px;
  top: 0;
  bottom: 4px;
  margin: auto;
  transform: rotate(45deg);
}

.interview__faq.is-open .interview__faq-list::after {
  display: none;
}

.interview__faq.is-open .interview__faq-button::after {
  transform: rotate(225deg);
  bottom: -6px;
}

.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(1em);
  transition: all 0.5s ease;
}

.char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*-------------
Blog
--------------*/
.blog {
  background: #ffb4c4;
  padding: 30px 16px 50px;
}

.blog__list {
  position: relative;
  margin: 40px 0 30px;
  z-index: 1;
  min-height: 200px;
}

.blog__list::before {
  position: absolute;
  content: "";
  width: calc(100% - 16px);
  height: 130px;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  top: -20px;
  right: -16px;
  z-index: -1;
}

.blog__list::after {
  position: absolute;
  content: "";
  width: calc(100% - 16px);
  height: 130px;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  bottom: -20px;
  left: -16px;
  z-index: -1;
}

.blog__item {
  margin-bottom: 10px;
}

.blog__item:last-of-type {
  margin-bottom: 0;
}

.blog__item-link {
  text-decoration: none;
}

.blog__item-image img {
  border-radius: 20px 20px 0 0;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.blog__item-article {
  background: #fff;
  padding: 8px 16px 16px;
  border-radius: 0 0 20px 20px;
}

.blog__item-title {
  color: #fd95ac;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.blog__item-date {
  color: #ffd4dd;
  font-size: 12px;
  padding: 3px 0;
  margin-bottom: 10px;
}

.blog__item-text {
  color: #727272;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 64px;
  max-height: 64px;
}

.blog__item-text,
.blog__item-text * {
  font-size: 14px !important;
  color: #727272 !important;
}

.blog__item-text img {
  display: none;
}

/*-------------
Movie
--------------*/
.movie__inner {
  /*max-width: 720px;*/
  overflow: hidden;
  position: relative;
}

.movie__video {
  width: 100%;
  height: 100%;
  max-height: 488px;
  display: block;
  border: none;
  outline: none;
  object-fit: cover;
}

.movie__button {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  color: #fd95ac;
  font-size: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-align: center;
  padding-left: 10px;
}

.movie__button::before {
  content: "Movie";
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  text-align: center;
  display: block;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
}

.movie__button span {
  position: absolute;
  content: "";
  background: #FD95AC;
  height: calc(tan(60deg) * 28px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 0;
  bottom: 0;
  right: -6px;
  left: 0;
  margin: auto;
}

.movie__button::after {
  content: "求人動画";
  position: absolute;
  font-size: 14px;
  color: #ffebef;
  text-align: center;
  display: block;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: 300;
}

.movie__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.movie__inner.is-active::before {
  display: none;
}

/*-------------
Contact
--------------*/
.contact {
  padding: 30px 0 70px;
}

.contact__list {
  display: grid;
  gap: 10px;
  position: relative;
  padding: 0 16px;
}

.contact__list::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 40px;
  background: linear-gradient(160deg, #d5e1ff, #ffd8eb);
  bottom: -20px;
  left: 0;
  z-index: -1;
}

.contact__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #fff;
}

.contact__icon {
  width: 48px;
  height: 48px;
  padding: 5px;
}

.contact__text {
  position: relative;
  display: block;
  font-size: 14px;
  padding-left: 12px;
}

.contact__text::after {
  position: absolute;
  content: "";
}

.contact__tel .contact__icon {
  background: #5fc2ee;
}

.contact__tel .contact__text {
  color: #5fc2ee;
}

.contact__mail .contact__icon {
  background: #f65889;
}

.contact__mail .contact__text {
  color: #f65889;
}

.contact__line .contact__icon {
  background: #2dcb57;
}

.contact__line .contact__text {
  color: #2dcb57;
}

.contact__item {
  position: relative;
}

.contact__item::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 18px;
}

.contact__tel::after {
  border-color: #5fc2ee;
}

.contact__mail::after {
  border-color: #f65889;
}

.contact__line::after {
  border-color: #2dcb57;
}

/*-------------
Entry
--------------*/
.wpcf7-form p {
  display: inline-block;
}

.wpcf7-form br {
  display: none;
}

.entry {
  background: #fff;
  padding: 30px 16px 50px;
  margin-bottom: 100px;
}

.title-entry--en::after {
  background: #ffb7da;
  background: -moz-linear-gradient(left, #ffb7da 0%, #ffe76d 100%);
  background: -webkit-linear-gradient(left, #ffb7da 0%, #ffe76d 100%);
  background: -o-linear-gradient(left, #ffb7da 0%, #ffe76d 100%);
  background: linear-gradient(to right, #ffb7da 0%, #ffe76d 100%);
}

.title-entry--en {
  color: #FD95AC;
}

.title-entry--jp {
  color: #FFBFCC;
}

.form__label {
  font-size: 12px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.form__required {
  background: #FFA32A;
  border-radius: 5px;
  font-size: 10px;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  display: inline-block;
  line-height: 1.2;
}

.form__optional {
  background: #CCBBC1;
  border-radius: 5px;
  font-size: 10px;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  display: inline-block;
}

.form__item {
  margin-bottom: 26px;
}

.form__item input[type="text"],
.form__item input[type="email"],
.form__item input[type="tel"] {
  border: 1px solid #D7D7D7;
  background: #FFFDF1;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.form__select select {
  width: 100%;
  min-width: 180px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  background-color: #F3F3F3;
  color: #171717;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.form__select--time select {
  max-width: 130px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  background-color: #F3F3F3;
  color: #171717;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.form__select {
  position: relative;
  max-width: 180px;
}

.form__select--time {
  position: relative;
  width: 130px;
  margin-left: 3px;
}

.form__select::after,
.form__select--time::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  top: -6px;
  bottom: 0;
  right: 12px;
  margin: auto;
}

.form__button-submit {
  background: #F65889;
  border: 1px solid #F65889;
  color: #fff;
  border: none;
  font-size: 14px;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  transition: all .2s;
}

.form__button-submit:hover {
  color: #F65889;
  background: #fff;
  border: 1px solid #F65889;
}

::placeholder {
  font-size: 14px;
  color: #C2C2C2;
  font-weight: 300;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

:focus {
  outline: none;
}

.radio__list {
  display: flex;
  gap: 5px 7px;
  flex-wrap: wrap;
}

.radio__item {
  position: relative;
  cursor: pointer;
  display: block;
  width: calc(50% - 3.5px);
}

.check__item {
  position: relative;
  cursor: pointer;
  display: block;
  width: 212px;
}

.radio__item input[type="radio"],
.check__item input[type="checkbox"] {
  display: none;
}


.radio__button:hover,
.check__button:hover {
  border: 1px solid #FD95AC;
  transition: all .2s;
}

.radio__button {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 16px 0px 14px 47px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  background: #fff;
  color: #171717;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.radio__check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1px solid #f48ca4;
  position: relative;
  margin-right: 6px;
}

.radio__check::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  top: 0;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}

.radio__check::after {
  content: "";
  position: absolute;
  font-size: 14px;
  color: #fff;
  display: none;
}

.check-button__check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1px solid #f48ca4;
  position: relative;
  margin-right: 6px;
}

.check-button__check::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  top: 0;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}

.check-button__check::after {
  content: "";
  position: absolute;
  font-size: 14px;
  color: #fff;
  display: none;
}

input[type="radio"]:checked+.radio__button {
  background-color: #f48ca4;
  color: #fff;
  border-color: #f48ca4;
}

input[type="radio"]:checked+.radio__button .radio__check {
  border: 2px solid #fff;
}

input[type="radio"]:checked+.radio__button .radio__check::after {
  display: block;
  color: #f48ca4;
}

.radio__text {
  padding-top: 3px;
  font-size: 12px;
}

.check-button__text {
  padding-top: 3px;
  font-size: 12px;
}

.trial__text {
  padding: 3px 0;
  margin-top: 18px;
}

.trial__text {
  font-size: 12px;
  color: #333;
  display: block;
}

.work-type {
  margin-bottom: 0;
}

.identification__input {
  margin-top: 22px;
}

.form__select__wrapper {
  display: flex;
  align-items: center;
}

.time__text {
  font-size: 14px;
  margin-left: 3px;
}

.form__button-reset {
  border: none;
  background: none;
  font-size: 12px;
  padding: 0;
  color: #FD95AC;
  border-bottom: 1px solid #FD95AC;
}

.form__button-submit__wrapper {
  text-align: right;
  width: 100%;
  margin-top: -4px;
}

.form__item--interview {
  margin-bottom: 5px;
}

input[type="checkbox"]:checked+.check__button {
  background-color: #f48ca4;
  color: #fff;
  border-color: #f48ca4;
}

input[type="checkbox"]:checked+.check__button .check-button__check {
  border: 2px solid #fff;
}

input[type="checkbox"]:checked+.check__button .check-button__check::before {
  display: block;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  background: #FFFDF1;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  height: 220px;
  padding: 18px 10px;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.md-block {
  display: none;
}

.mm-block {
  display: none;
}

.mx-block {
  display: none;
}

.ms-block {
  display: none;
}

.submit__wrapper {
  text-align: center;
  margin-top: 20px;
}

/*type="date"の見た目変更*/
.datepicker {
  padding: 11px 16px;
  font-size: 12px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  background: #fff;
  transition: all 0.2s ease;
}

.datepicker:focus {
  outline: none;
}

.flatpickr-calendar {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day:hover {
  background: #f48ca4;
  color: white;
  border-color: #f48ca4;
}

.flatpickr-months {
  background: #f48ca4;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.flatpickr-weekday {
  color: #f48ca4;
}

/* Chrome, Safari, Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Firefox */
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
}

input[type="date"] {
  background: none;
}

.flatpickr-current-month {
  display: flex;
  justify-content: center;
  font-size: 100%;
  align-items: center;
  padding: 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
span.flatpickr-weekday {
  background: none;
}

.flatpickr-day.today {
  border: none;
  background: #FD95AC;
  color: #fff;
  font-weight: bold;
}

.flatpickr-day:hover {
  background: #FFD6DF;
  color: #F65889;
  font-weight: bold;
}

.flatpickr-day {
  font-weight: 200;
}

.flatpickr-months {
  border-radius: 5px 5px 0 0;
}

.flatpickr-innerContainer {
  border-left: 1px solid #FD95AC;
  border-right: 1px solid #FD95AC;
  border-bottom: 1px solid #FD95AC;
  border-radius: 0 0 5px 5px;
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays {
  background: none;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  top: -3px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day:hover {
  border: none;
}

.g-recaptcha {
  display: inline-block;
}

.recaptcha__wrapper {
  cursor: pointer;
}

.submit__wrapper {
  text-align: center;
}

.wpcf7-form-control-wrap {
  /*display: contents;*/
  width: calc(100% - 270px);
}

.form__select .datepicker {
  width: 100% !important;
  background: #F3F3F3 !important;
}

.form__select .datepicker::placeholder {
  color: #171717;
}

.flatpickr-calendar.arrowBottom:after {
  display: none;
}

.recaptcha__wrapper {
  margin-top: 40px;
}

.border-none {
  border-bottom: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: 14px;
  margin-top: 60px;
  border: 2px solid #ffb4c4;
  padding: 10px;
}

.wpcf7-not-valid-tip {
  color: #FF0000;
  font-size: 12px;
  position: absolute;
  margin-top: 2px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #eb4376;
  border-color: #eb4376;
  padding: 10px 20px;
}

input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
.form__select select.wpcf7-not-valid{
  border-color: #FF7171;
  outline: none;
  background: #FFF5F5;
}

/*----------------------
blog 一覧ページ
----------------------*/
.blog-list {
  padding-top: 50px;
  background: #FFB4C4;
}

.blog-list__wrapper {
  margin: 50px 16px 0;
  padding-bottom: 60px;
}

.blog-list__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.blog-list__inner {
  position: relative;
  z-index: 0;
}


.blog-list__inner .blog-list__item:nth-of-type(7) {
  position: relative;
}


.blog-list__inner::after {
  position: absolute;
  content: "";
  width: 556px;
  height: 163px;
  background: linear-gradient(90deg, #d5e1ff, #ffd8eb);
  top: -20px;
  right: -250px;
  z-index: -2;
}

.blog-list__inner .blog-list__item:nth-of-type(7)::after {
  position: absolute;
  content: "";
  width: 556px;
  height: 163px;
  background: linear-gradient(90deg, #d5e1ff, #ffd8eb);
  bottom: -100px;
  left: -250px;
  z-index: -2;
}

.archive-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #FD95AC;
  padding: 50px 0 100px;
}

.page-numbers {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  text-decoration: none;
  color: #EC4377;
  border: 1px solid #EC4377;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers.current {
  color: #fff;
  background: #EC4377;
}

.page-numbers.next,
.page-numbers.prev {
  position: relative;
}

.page-numbers.next::after {
  position: absolute;
  content: "";
  border-right: 2px solid #EC4377;
  border-top: 2px solid #EC4377;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  left: -2px;
  right: 0;
  margin: auto;
}

.page-numbers.prev::after {
  position: absolute;
  content: "";
  border-right: 2px solid #EC4377;
  border-top: 2px solid #EC4377;
  transform: rotate(225deg);
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  left: 2px;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 500px) {
  .blog-list__inner {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }

  .blog-list__item {
    width: calc((100% - 10px) / 2);
  }
}

@media screen and (min-width: 768px) {
  .blog-list__item {
    width: calc((100% - 20px) / 3);
  }

  .breadcrumb__wrapper {
    background: #FD95AC;
    padding: 10px 16px;
  }

  .breadcrumb {
    padding: 0;
  }

  .blog-list {
    padding-top: 40px;
  }

  .article__title {
    font-size: 22px;
  }
}

@media screen and (min-width: 1000px) {
  .blog-list {
    padding-top: 66px;
  }

  .blog-list__wrapper {
    margin-top: 100px;
  }

  .breadcrumb__wrapper {
    padding: 20px 0;
  }
}

@media screen and (min-width: 1040px) {
  .blog-list__item {
    width: calc((100% - 40px) / 3);
  }

  .blog-list__inner {
    max-width: 1000px;
    gap: 20px;
    margin: auto;
  }

  .breadcrumb {
    max-width: 1000px;
    margin: auto;
  }

}

@media screen and (min-width: 1100px) {
  .blog-list {
    padding-top: 90px;
  }
}

@media screen and (min-width: 1400px) {
  .blog-list {
    padding-top: 100px;
  }
}

/*----------------------
blog 個別記事ページ
----------------------*/
.blog-article {
  background: #fff;
  border-radius: 10px;
  padding: 35px 16px;
}

.blog-article__text {
  color: #727272;
  font-size: 14px;
}

.blog-article__image {
  /*text-align: center;
  margin: 20px auto;*/
}

.blog-article__image img {
  display: inline-block;
}

.blog__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: #FD95AC;
  padding: 50px 0 100px;
}

.blog__buttons a {
  text-decoration: none;
  font-size: 12px;
  color: #F65889;
  background: #fff;
  padding: 12px 14px;
  border-radius: 5px;
}

.blog__buttons a:first-of-type {
  position: relative;
  padding-left: 24px;
}

.blog__buttons a:first-of-type::before {
  position: absolute;
  content: "";
  border-right: 1px solid #EC4377;
  border-top: 1px solid #EC4377;
  transform: rotate(225deg);
  width: 8px;
  height: 8px;
  top: 2px;
  bottom: 0;
  left: 12px;
  margin: auto;
}

.blog__buttons a:last-of-type {
  position: relative;
  padding-right: 24px;
}

.blog__buttons a:last-of-type::before {
  position: absolute;
  content: "";
  border-right: 1px solid #EC4377;
  border-top: 1px solid #EC4377;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  top: 2px;
  bottom: 0;
  right: 12px;
  margin: auto;
}

.blog__buttons .blog__button--list {
  background: #F65889;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .blog-article {
    padding: 40px;
    margin: auto;
  }
}

@media screen and (min-width: 1040px) {
  .blog-article {
    max-width: 1000px;
    padding: 80px;
  }
}


/*レスポンシブ*/
@media screen and (min-width: 400px) {
  .interview__number {
    top: 0;
  }

  .form__item--interview {
    max-width: 400px;
  }
}

@media screen and (min-width: 460px) {
  .interview__number {
    top: 0;
  }

  .interview__information {
    width: 280px;
    right: -200px;
  }

  .interview2__information {
    right: 200px;
  }

  .interview__text span {
    font-size: 12px;
  }

  .interview__name--odd {
    padding-left: 10px;
  }

  .interview__name span {
    font-size: 12px;
  }

  .interview2__name {
    padding-left: 70px;
  }
}

@media screen and (min-width: 500px) {
  .about__holiday-title {
    font-size: 14px;
  }

  .about__holiday-list {
    gap: 10px;
  }

  .about__holiday-item {
    width: calc((100% - 10px) / 2);
    max-width: 225px;
  }

  .local__point-list {
    max-width: 400px;
    margin: 50px auto 0;
  }

  .traveling-staff__list {
    max-width: 400px;
    margin: auto;
    gap: 10px;
  }

  .button--view-more {
    max-width: 400px;
    margin: auto;
  }

  .blog__list {
    display: flex;
    gap: 10px;
  }

  .blog__item {
    margin-bottom: 0;
    width: calc((100% - 10px) / 3);
  }

}

@media screen and (min-width: 600px) {
  .about__number1--big-num {
    font-size: 80px;
  }

  .about__number1--small {
    font-size: 50px;
  }

  .about__number1--big-num::after {
    bottom: 22px;
  }

  .about__number {
    margin: 0 auto 20px;
  }

  .about__item--large {
    font-size: 44px;
  }

  .about__item--small {
    font-size: 24px;
  }

  .about__item-second {
    font-size: 24px;
  }

  .about__list2 {
    width: 230px;
  }

  .about__list3 {
    width: 220px;
  }

  .about__list {
    padding: 20px 0;
  }

  .about__baloon-item {
    padding: 15px 20px;
    border-radius: 30px;
  }

  .about__baloon-item:nth-of-type(odd)::after,
  .about__baloon-item:nth-of-type(even)::after {
    top: 16px;
  }

  .about__baloon-item:nth-of-type(odd) {
    margin-left: 50px;
  }

  .about__holiday-image img {
    height: 60px;
    width: 100px;
  }

  .about__holiday {
    padding: 20px 16px 30px;
  }

  .about__number-title {
    font-size: 16px;
  }

  .local__check-list {
    max-width: 587px;
  }

  .local__check-list {
    margin: 40px auto 0;
  }

  .local__check-list__item {
    border-bottom: none;
  }

  .local__check-list__inner {
    padding: 44px 66px;
  }

  .local__check-list {
    border-left: 20px solid #f65889;
  }

  .local__contact {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact--more {
    width: 260px;
    margin-left: 50px;
    margin-top: 0;
  }

  .local__contact__title {
    font-size: 22px;
  }

  .local__contact__subtitle {
    margin-top: 5px;
    font-size: 16px;
  }

  .interview__image {
    width: 300px;
    height: 220px;
  }

  .interview__image::before {
    width: 300px;
    height: 220px;
    right: -8px;
    bottom: -16px;
  }

  .interview2__image {
    width: 100%;
    padding-right: 9px;
  }

  .interview2__image img {
    width: 300px;
    height: 220px;
  }

  .interview2__image::before {
    bottom: -9px;
  }

  .interview__number {
    font-size: 200px;
    top: unset;
    bottom: 0;
    right: -220px;
  }

  .interview2__number {
    right: 350px;
  }

  .interview__number span {
    font-size: 120px;
  }

  .interview__information {
    top: 40px;
    bottom: unset;
    right: -260px;
    width: 320px;
  }

  .interview2__information {
    right: 280px;
  }

  .interview__name--odd {
    text-align: left;
    padding-left: 80px;
    padding-top: 5px;
  }

  .interview2__name {
    padding: 0;
  }

  .interview__text span {
    font-size: 14px;
  }

  .md-hidden {
    display: none;
  }

  .md-block {
    display: block;
  }

  .interview__name span {
    font-size: 14px;
  }

  .interview2__name {
    text-align: right;
    padding-right: 40px;
  }

  .interview__faq {
    margin: 30px 16px 0;
  }

  .start-date {
    font-size: 14px;
  }

  .ms-hidden {
    display: none;
  }

  .ms-block {
    display: block;
    padding: 0 16px;
    position: relative;
  }

  .ms-contact__list {
    display: flex;
    gap: 20px;
    width: calc(100% - 12px);
  }

  .ms-block::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, #d5e1ff, #ffd8eb);
    bottom: -40px;
    left: 0;
    z-index: -2;
  }

  .ms-contact__item {
    width: calc((100% - 40px) / 3);
    background: #fff;
    text-align: center;
    /*padding: 20px 0;*/
    position: relative;
  }


  .ms-contact__text {
    font-size: 12px;
  }

  .ms-contact__link {
    text-decoration: none;
    display: block;
    height: 100%;
    padding: 20px 0;
  }

  .ms-contact__tel .ms-contact__text {
    color: #5fc2ee;
  }

  .ms-contact__mail .ms-contact__text {
    color: #f65889;
  }

  .ms-contact__line .ms-contact__text {
    color: #2dcb57;
  }

  .ms-contact__icon {
    width: 40px;
    margin: auto;
  }

  .ms-contact__tel {
    border-left: 13px solid #5fc2ee;
  }

  .ms-contact__mail {
    border-left: 13px solid #f65889;
  }

  .ms-contact__line {
    border-left: 13px solid #2dcb57;
  }

  .ms-contact__item::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    margin: auto;
    right: 14px;
  }

  .ms-contact__tel::after {
    border-color: #5fc2ee;
  }

  .ms-contact__mail::after {
    border-color: #f65889;
  }

  .ms-contact__line::after {
    border-color: #2dcb57;
  }

  .ms-contact__item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 12px;
    right: -12px;
    z-index: -1;
    background-image: radial-gradient(#fff 10%, transparent 10%),
      radial-gradient(#fff 10%, transparent 10%);
    background-size: 9px 9px;
    background-position: 0 0, 5px 5px;
  }

  .entry {
    margin-top: 40px;
  }

  @keyframes scale {
    0% {
      transform: scale(1);
    }

    30% {
      transform: scale(1.08);
    }

    60% {
      transform: scale(0.96);
    }

    100% {
      transform: scale(1);
    }
  }

  .scale:hover img {
    animation: scale 0.6s ease-in-out;
  }

  .form__button-submit {
    max-width: 300px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 768px) {
  .mm-hidden {
    display: none;
  }

  .mm-block {
    display: block;
  }

  .header {
    top: 40px;
    display: none;
  }

  .header__logo {
    display: none;
  }

  .header__title {
    font-size: 12px;
    height: 40px;
    padding: 12px 0;
  }

  .counter {
    margin: 0 auto 80px;
  }

  .local__check-list__item {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 40px;
    font-weight: 500;
  }

  .local__check-list__item::before {
    width: 24px;
    height: 24px;
  }

  .local__check-list__item::after {
    left: 9px;
    top: 16px;
  }

  .local__check-list::after {
    width: 470px;
    height: 318px;
    top: -38px;
    right: -38px;
    left: unset;
  }

  .local__check-list::before {
    width: 410px;
    height: 250px;
    left: -60px;
    bottom: -38px;
    top: unset;
  }

  .local__point-list {
    margin: 100px auto 0;
  }

  /*スクロール時*/
  .navigation {
    display: block;
    background: #fff;
  }

  .navigation.is-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #f9f990;
    top: 0;
  }

  /*.navigation.is-fixed .navigation__logo {
    width: 160px;
  }*/

  .navigation__logo {
    display: block;
    width: 120px;
    padding: 5px;
  }

  .navigation__link {
    font-size: 12px;
  }

  .main-counter__number--digit {
    font-size: 144px;
  }

  .main-counter {
    width: 600px;
    margin: auto;
  }

  .main-counter__number--digit::before {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    content: "";
    width: 100%;
    height: 84px;
    top: 54%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
  }

  .main-counter__number--digit::after {
    border-radius: 10px;
    width: 100%;
    height: 84px;
    bottom: 42%;
    left: 0;
    right: 0;
  }

  .main-counter__number--digit {
    max-width: 100%;
  }

  .main-counter__text:first-of-type {
    margin-bottom: 10px;
  }

  .main-counter__text:last-of-type {
    margin-top: 10px;
    text-align: right;
  }

  .main-counter__number::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #fd95ac;
    top: 12px;
    bottom: 0;
    margin: auto;
    z-index: 1;
  }

  .counter {
    max-width: 720px;
  }

  .main-visual .swiper-pagination {
    margin: 30px auto 0;
  }

  .main-visual .swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
  }

  .c-title {
    width: 300px;
    margin: 80px auto 40px;
  }

  .traveling-title {
    width: 340px;
  }

  .c-title--en {
    font-size: 48px;
  }

  .c-title--en::after {
    bottom: -10px;
    width: 300px;
    height: 8px;
  }

  .c-title--jp {
    font-size: 16px;
    margin-top: 20px;
  }

  .menu {
    display: none;
  }

  .main-visual {
    padding-bottom: 0;
  }

  .footer__logo {
    width: 340px;
    text-align: center;
    margin: auto;
  }

  .footer__notion {
    font-size: 14px;
  }

  .traveling__point-list__bg {
    width: calc((100% - 25px) / 2);
  }

  .traveling__point-list__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }

  .traveling__point-list__item {
    height: 130px;
    border-left: 20px solid #f65889;
    top: -10px;
    right: 10px;
  }

  .traveling__point-list {
    padding: 0 15px 0 25px;
    max-width: 1000px;
    margin: 40px auto;
  }

  .interview__image {
    width: 400px;
    height: 300px;
  }

  .interview__image::before {
    width: 400px;
    height: 300px;
    bottom: -10px;
  }

  .interview2__image {
    width: 100%;
  }

  .interview2__image img {
    width: 400px;
    height: 300px;
  }

  .interview__number {
    right: -280px;
  }

  .interview2__number {
    right: 460px;
  }

  .interview__text span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .interview__name span {
    font-size: 16px;
  }

  .interview__information {
    width: 400px;
    right: -360px;
  }

  .interview2__information {
    right: 380px;
  }

  .interview__name--odd {
    padding-top: 0;
    padding-left: 60px;
  }

  .interview__faq-question {
    font-size: 16px;
  }

  .interview__faq-answer {
    font-size: 14px;
  }

  .interview__faq {
    padding: 20px;
  }

  .entry__form {
    max-width: 600px;
    margin: auto;
  }

  .interview__faq-question span {
    font-size: 24px;
  }

  .interview__faq-answer {
    padding-left: 25px;
  }

  .interview__faq-item {
    padding: 10px 10px 20px;
  }

  .interview__faq-button {
    margin: 40px auto 0;
    cursor: pointer;
  }

  .blog-title {
    margin: 0;
    margin-left: 20px;
  }

  .blog-title--en {
    padding-bottom: 9px;
    text-align: left;
  }

  .blog-title--jp {
    text-align: left;
  }

  .blog__item {
    margin-bottom: 0;
    width: calc((100% - 30px) / 3);
  }

  .blog__item:nth-of-type(2) {
    margin-top: 40px;
  }

  .blog__item:nth-of-type(3) {
    margin-top: -40px;
  }

  .blog__list::before {
    width: 340px;
    height: 310px;
    top: -130px;
    background: linear-gradient(60deg, #d5e1ff, #ffd8eb);
  }

  .blog__list::after {
    position: absolute;
    content: "";
    width: 340px;
    height: 318px;
    top: -60px;
    right: 60px;
    left: unset;
    z-index: -1;
    background-image: radial-gradient(#fff 20%, transparent 20%),
      radial-gradient(#fff 20%, transparent 20%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
  }

  .blog__item-article {
    padding: 17px 20px 30px;
  }

  .blog__item-date {
    padding: 8px 0;
  }

  .blog__item-text {
    -webkit-line-clamp: 4;
    min-height: 84px;
    max-height: 84px;
  }

  .movie__button {
    width: 125px;
    height: 125px;
    top: 60px;
    font-size: 42px;
  }

  .movie__button::before {
    font-size: 48px;
    top: -125px;
  }

  .movie__button::after {
    font-size: 19px;
    top: -60px;
  }

  .movie__button span {
    height: calc(tan(60deg) * 50px / 2);
    width: 32px;
  }

  .ms-contact__item {
    /*padding: 30px 0;*/
  }

  .ms-contact__link {
    padding: 30px 0;
  }

  .form__required,
  .form__optional {
    font-size: 12px;
    margin-right: 10px;
  }

  .form__label {
    font-size: 14px;
  }

  .radio__text {
    font-size: 14px;
  }

  .radio__check {
    margin-right: 10px;
  }

  .interview__content {
    padding: 40px 0;
  }

  .blog {
    padding: 60px 16px;
  }

  .contact {
    padding: 20px 0 70px;
  }

  .about__number1::before {
    right: -350px;
  }

  .about__number1::after {
    right: -300px;
  }

  .about__number3::before {
    left: -350px;
  }

  .about__number3::after {
    left: -300px;
  }

  .about__number5::before {
    right: -350px;
  }

  .about__number5::after {
    right: -300px;
  }

}

@media screen and (min-width: 840px) {
  .local__point-list {
    max-width: 840px;
  }

  .local__point-list__item {
    width: calc((100% - 10px) / 4);
    max-width: 198px;
  }

  .local__point-list__inner {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .local__point-list::before {
    width: 390px;
    height: 58px;
    right: -40px;
    bottom: -30px;
    left: unset;
  }

  .traveling-staff {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .traveling-staff__title {
    font-size: 22px;
    font-weight: 500;
  }

  .traveling-staff__decoration {
    font-size: 16px;
  }

  .point-text {
    font-size: 20px;
  }

  .point-number {
    font-size: 27px;
    margin-right: 46px;
  }

  .traveling-staff__point {
    font-size: 16px;
    padding: 4px 50px 4px 28px;
  }

  .traveling-staff__list {
    gap: 10px;
  }

  .traveling-staff__decoration {
    padding-bottom: 10px;
  }

  .traveling-staff__list {
    max-width: 100%;
  }

  .traveling-staff__text {
    font-size: 16px;
    line-height: 2;
  }

  .ms-contact__text {
    font-size: 14px;
    font-weight: 500;
  }

  .button-to-top {
    width: 60px;
    height: 60px;
    bottom: 5%;
    right: 5%;
  }

  .button-to-top::before {
    width: 16px;
    height: 16px;
  }

}

@media screen and (min-width: 1000px) {
  .c-introduction__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .c-introduction__text {
    font-size: 16px;
  }

  .traveling__point-list__title {
    font-size: 22px;
    font-weight: 500;
    padding-left: 5px;
  }

  .traveling__point-list__item {
    padding: 32px 45px 32px 18px;
    height: 178px;
    top: -12px;
    right: 12px;
  }

  .traveling__point-list__text {
    font-size: 16px;
  }

  .traveling__point-list__bg .traveling__point-list__item::before {
    font-size: 94px;
  }

  .traveling-staff--right {
    border-left: 1px solid #FD95AC;
    padding: 10px 0 10px 60px;
  }

  .interview__image {
    width: 516px;
    height: 390px;
  }

  .interview__image::before {
    width: 516px;
    height: 390px;
  }

  .interview2__image {
    width: 100%;
  }

  .interview2__image img {
    width: 516px;
    height: 390px;
  }

  .interview__number {
    font-size: 319px;
  }

  .interview__number span {
    font-size: 209px;
  }

  .interview__number {
    right: -440px;
  }

  .interview2__number {
    right: 600px;
  }

  .interview__text span {
    font-size: 22px;
    margin-bottom: 17px;
  }

  .interview__information {
    width: 500px;
    right: -408px;
    top: 50px;
  }

  .interview__name--odd {
    padding-left: 120px;
  }

  .interview2__information {
    right: 490px;
  }

  .interview__name span {
    font-size: 20px;
  }

  .interview2__name {
    padding-right: 50px;
  }

  .interview2__image::before {
    right: 0;
  }

  .interview2__image {
    padding-right: 8px;
  }

  .interview__image::before {
    bottom: -8px;
  }

  .interview__faq-item {
    padding: 20px 0 25px;
  }

  .interview__faq {
    padding: 30px 40px 40px;
  }

  .blog__list {
    gap: 24px;
  }

  .blog__item {
    width: calc((100% - 48px) / 3);
  }

  .ms-contact__list {
    max-width: 1000px;
    margin: auto;
  }

  .ms-block::after {
    height: 180px;
    bottom: -80px;
  }

  .entry {
    margin: 120px auto 200px;
    padding: 20px 0 50px;
    max-width: 1000px;
  }

  .entry__form {
    max-width: 100%;
    padding: 20px 157px 0;
  }

  .form__item {
    border-bottom: 0.5px solid #D7D7D7;
    padding-bottom: 26px;
  }

  .form-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .align-center {
    align-items: center;
  }

  .form__label {
    width: 270px;
  }

  /*.form__item input[type="text"],
  .form__item input[type="email"],
  .form__item input[type="tel"] {
    width: calc(100% - 270px);
  }*/

  .work-type {
    display: flex;
    width: 100%;
  }

  .radio__list {
    width: calc(100% - 270px);
  }

  .trial {
    margin-left: 270px;
  }

  .identification__input {
    margin-left: 270px;
    width: calc(100% - 270px);
    margin-top: 23px;
  }

  /*textarea {
    width: calc(100% - 270px);
  }*/

  .form__required,
  .form__optional {
    margin-right: 13px;
  }

  .label-adjust {
    padding-top: 10px;
  }

  .trial__text {
    padding: 20px 0 5px;
    margin-top: 0;
  }

  .trial__text p {
    font-size: 14px;
  }

  .check__button {
    width: 240px;
  }

  .check-button__text {
    font-size: 14px;
  }

  .form__button-submit {
    font-size: 16px;
  }

  .form__item:last-of-type {
    border-bottom: none;
  }

  .footer {
    padding-top: 140px;
    gap: 80px;
  }

  .navigation__logo {
    width: 160px;
    padding: 10px 0;
    margin: 0 20px;
  }

  .navigation__inner {
    justify-content: flex-start;
  }

  .header__title {
    position: relative;
  }

  /*Entry!ボタン*/
  .entry-button {
    width: 120px;
    height: 120px;
    background: #FFB7DA;
    background: -moz-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
    background: -webkit-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
    background: -o-linear-gradient(top left, #FFE76D 0%, #FFB7DA 75%);
    background: linear-gradient(to bottom right, #FFE76D 0%, #FFB7DA 75%);
    border-radius: 50%;
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 22px;
    right: 6%;
    animation: bggradient 7s ease infinite;
    background-size: 150% 150%;
  }

  .entry-button:hover {
    background: #FFD6E6;
    background: -moz-linear-gradient(top left, #FFF080 0%, #FFD6E6 75%);
    background: -webkit-linear-gradient(top left, #FFF080 0%, #FFD6E6 75%);
    background: -o-linear-gradient(top left, #FFF080 0%, #FFD6E6 75%);
    background: linear-gradient(to bottom right, #FFF080 0%, #FFD6E6 75%);
  }


  @keyframes bggradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }


  .entry-button__link {
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-top: 30px;
  }

  .entry-button__text--jp {
    font-size: 10px;
    font-weight: 200;
    line-height: 1.4;
  }

  .entry-button__text--en {
    font-family: "Barlow Condensed", sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
  }

  .sp-entry-button {
    display: none;
  }

  .main-counter__text {
    font-size: 22px;
  }

  .c-introduction__text {
    padding: 0 0 40px;
    line-height: 2.2;
  }

  .about__number-title {
    font-size: 22px;
    padding: 6px;
  }

  .about__number1--big-num {
    font-size: 112px;
  }

  .about__number1--small {
    font-size: 59px;
  }

  .about__number1--big-num::after {
    height: 15px;
    bottom: 32px;
  }

  .about__number-title--sub {
    font-size: 16px;
  }

  .about__item--large {
    font-size: 67px;
  }

  .about__item--small,
  .about__item-second {
    font-size: 35px;
  }

  .about__item-second {
    line-height: 1.8;
  }

  .about__list2 {
    width: 324px;
  }

  .about__item-space {
    margin-left: 7px;
  }

  .about__list3 {
    width: 327px;
  }

  .about__number {
    margin: 0 auto 30px;
  }

  .about__baloon-item {
    font-size: 16px;
    padding: 18px 36px;
    box-sizing: border-box;
  }

  .about__baloons {
    padding: 36px;
  }

  .about__baloon-item {
    max-width: 100%;
  }

  .about__baloon-item:nth-of-type(odd)::after,
  .about__baloon-item:nth-of-type(even)::after {
    top: 28px;
  }

  .about__holiday {
    padding: 27px 0 40px;
  }

  .about__holiday-title {
    font-size: 16px;
    margin-top: 0;
  }

  .about__holiday-item {
    padding: 15px 14px 22px;
    height: 187px;
  }

  .about__holiday-image img {
    height: 80px;
  }

  .about__holiday-text {
    font-size: 16px;
  }

  .about {
    padding: 30px 0 70px;
  }

  .local__point-list__text {
    font-size: 16px;
    height: 98px;
  }

  .local__point-list__item {
    height: 252px;
    padding: 14px 0;
  }

  .local__point-list__image {
    margin: 16px auto 0;
  }

  .local__point-list__image img {
    height: 100px;
    width: 120px;
  }

  .local__contact {
    margin-top: 80px;
    padding: 44px 0;
  }

  .contact--more {
    width: 298px;
    padding: 18px;
  }

  .contact--more .c-button--more-text::after {
    right: -64px;
    width: 33px;
  }

  .contact--more .c-button--more-text::before {
    right: -65px;
  }

  .contact--more .c-button--more-text {
    margin-left: -15px;
  }

  .traveling__point-list__inner {
    gap: 36px;
  }

  .traveling__point-list__bg {
    width: calc((100% - 36px) / 2);
  }

  .traveling__point-list {
    margin: 20px auto 40px;
  }

  .traveling {
    padding: 20px 0 100px;
  }

  .interview {
    padding: 20px 0 40px;
  }

  .traveling-staff__title {
    margin-bottom: 10px;
  }

  .interview__text span {
    padding: 10px 16px;
  }

  .interview__content {
    padding: 60px 0;
  }

  .blog-list__inner::before {
    position: absolute;
    content: "";
    width: 556px;
    height: 163px;
    top: 20px;
    right: -200px;
    background-image: radial-gradient(#fff 20%, transparent 20%),
      radial-gradient(#fff 20%, transparent 20%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    z-index: -1;
  }

  .blog-list__inner .blog-list__item:nth-of-type(7)::before {
    position: absolute;
    content: "";
    width: 556px;
    height: 163px;
    bottom: -150px;
    left: -200px;
    background-image: radial-gradient(#fff 20%, transparent 20%),
      radial-gradient(#fff 20%, transparent 20%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    z-index: -1;
  }

  .blog-list__inner::after {
    position: absolute;
    content: "";
    width: 556px;
    height: 163px;
    background: linear-gradient(90deg, #d5e1ff, #ffd8eb);
    top: -50px;
    right: -250px;
    z-index: -2;
  }

  .blog-list__inner .blog-list__item:nth-of-type(7)::after {
    position: absolute;
    content: "";
    width: 556px;
    height: 163px;
    background: linear-gradient(90deg, #d5e1ff, #ffd8eb);
    bottom: -100px;
    left: -250px;
    z-index: -2;
  }
}

@media screen and (min-width: 1040px) {
  .traveling-staff {
    max-width: 1000px;
    margin: auto;
  }

  .traveling__point-list {
    padding: 0 0 0 10px;
  }

  .interview__content {
    max-width: 1000px;
    margin: auto;
  }

  .interview__content::after {
    width: 100%;
  }

  .interview__faq {
    margin: 37px 0 0;
  }

  .blog__inner {
    max-width: 1000px;
    margin: auto;
    position: relative;
  }

  .mx-block {
    display: block;
  }

  .mx-hidden {
    display: none;
  }

  .interview-text {
    font-size: 14px;
    padding-right: 15px;
  }

  .button--view-more {
    margin-top: 24px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-left: 60px;
    width: 298px;
    z-index: 5;
  }

  .blog-title {
    margin-left: 0;
  }

  .blog__list::before {
    width: 456px;
    right: 0;
  }

  .blog__list::after {
    width: 473px;
    height: 318px;
    right: 100px;
  }

  .blog__item {
    width: 298px;
  }

  .blog {
    padding: 100px 0 70px;
  }

  .ms-contact__icon {
    width: 58px;
  }

  .ms-contact__text {
    font-size: 16px;
  }

  .entry {
    border-radius: 10px;
  }

}

@media screen and (min-width: 1100px) {
  .entry-button {
    width: 155px;
    height: 155px;
  }

  .entry-button__text--jp {
    font-size: 14px;
  }

  .entry-button__text--en {
    font-size: 46px;
  }

  .navigation__link {
    font-size: 14px;
  }

  .navigation__logo {
    padding: 22px 0;
    margin-right: 60px;
  }

  .sub-counter__item {
    font-size: 20px;
    letter-spacing: 3px;
  }

}

@media screen and (min-width: 1400px) {
  .navigation__logo {
    width: 200px;
    padding: 22px 0;
  }

  .navigation__link {
    font-size: 16px;
  }

  .header__title {
    font-size: 16px;
  }

  .entry-button {
    right: 4%;
  }

}

@media screen and (min-width: 1400px) {
  .navigation__logo {
    margin-right: 100px;
  }
}


/*ラジオボタンとチェックボックスの部分はこちらに変更*/

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.wpcf7-radio label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #171717;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.wpcf7-radio input[type="radio"] {
  display: none;
}
.wpcf7-radio label span{
  border: 1px solid #D7D7D7;
  display: block;
  width: 100%;
  padding: 16px 0px 14px 40px;
  border-radius: 5px;
  position: relative;
  font-size: 12px;
}
.wpcf7-radio label span:hover{
  border: 1px solid #f48ca4;
}
.wpcf7-radio input[type="radio"]:checked+span {
  background-color: #f48ca4;
  color: #fff;
  border-color: #f48ca4;
  position: relative;
  display: block;
}

.wpcf7-radio input[type="radio"]:checked+span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  top: -4px;
  bottom: 0;
  left: 18px;
  margin: auto;
}
.wpcf7-list-item-label::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 8px;
  margin: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #f48ca4;
}
.wpcf7-radio input[type="radio"]:checked+span::after,
.wpcf7-radio input[type="checkbox"]:checked+span::after {
  border: 2px solid #fff;
}
.wpcf7-list-item{
  margin: 0;
}

.form__item--optional .wpcf7-list-item.first{
  display: none;
}

.wpcf7-checkbox {
  width: 240px;
}

.wpcf7-checkbox input[type="checkbox"] {
  display: none;
}

.wpcf7-checkbox label {
  display: block;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  position: relative;
  cursor: pointer;
}
.wpcf7-checkbox .wpcf7-list-item{
  display: block;
  width: 240px;
}
.wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  width: 100%;
  padding: 16px 0px 16px 47px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  color: #171717;
  transition: all 0.2s;
}

.wpcf7-checkbox label:hover .wpcf7-list-item-label {
  border-color: #f48ca4;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background-color: #f48ca4;
  color: #fff;
  border-color: #f48ca4;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  top: -4px;
  bottom: 0;
  left: 20px;
  margin: auto;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 10px;
  margin: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #f48ca4;
}
.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
  border: 2px solid #fff;
}


@media screen and (min-width: 768px) {
  .wpcf7-radio label span{
    font-size: 14px;
  }
}