@charset "UTF-8";
/*---------------------------------------------------------
	HTMLサンプル
---------------------------------------------------------*/
label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*---------------------------------------------------------
	select
---------------------------------------------------------*/
.form__select {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.form__select .select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.form__select .select::-ms-expand {
  display: none;
}

.form__select {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  background: #ffffff;
}

.form__select::before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #5AA246;
  pointer-events: none;
}

.form__select .select {
  padding: 8px 38px 6px 18px;
  color: #666666;
}

/*---------------------------------------------------------
	text, tel, textarea
---------------------------------------------------------*/
.form__input {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 11px;
  height: 41px;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 0 1em;
}

.form__textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 11px;
  resize: vertical;
  min-height: 160px;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 20px 1em;
}

.form__input,
.form__textarea {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #5AA246;
  background: #fff;
  outline: none;
}

/*---------------------------------------------------------
	checkbox
---------------------------------------------------------*/
.form__checkbox:not(:checked),
.form__checkbox:checked {
  position: absolute;
  left: -9999px;
}

.form__checkbox:not(:checked) + .form__checkLabel,
.form__checkbox:checked + .form__checkLabel {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

.form__checkbox:not(:checked) + .form__checkLabel:before,
.form__checkbox:checked + .form__checkLabel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form__checkbox:not(:checked) + .form__checkLabel:after,
.form__checkbox:checked + .form__checkLabel:after {
  content: "✓ ";
  position: absolute;
  top: 0.15em;
  left: 0.22em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #5AA246;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", Arial;
}

.form__checkbox:not(:checked) + .form__checkLabel:after {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.form__checkbox:checked + .form__checkLabel:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.form__checkbox:disabled:not(:checked) + .form__checkLabel:before,
.form__checkbox:disabled:checked + .form__checkLabel:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

.form__checkbox:disabled:checked + .form__checkLabel:after {
  color: #999;
}

.form__checkbox:disabled + .form__checkLabel {
  color: #aaa;
}

.form__checkLabel + .form__checkbox + .form__checkLabel {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .form__checkLabel + .form__checkbox + .form__checkLabel {
    margin-top: 10px;
  }
}

/*---------------------------------------------------------
	radio
---------------------------------------------------------*/
.form__radioBox + .form__radioBox {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .form__radioBox + .form__radioBox {
    margin-top: 34px;
  }
}

.form__radio {
  display: none;
}

.form__radioLabel {
  position: relative;
  padding: 0 20px 0 26px;
  cursor: pointer;
  display: inline-block;
}
.form__radioLabel a {
  text-decoration: underline;
  color: #5AA246;
}
@media screen and (max-width: 767px) {
  .form__radioLabel {
    padding-right: 10px;
  }
}

.form__radioLabel:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}

.form__radioLabel:after {
  left: 0;
  margin-top: -10px;
  width: 7px;
  height: 7px;
  border: 6px solid #ccc;
  border-radius: 50%;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.form__radio:checked + .form__radioLabel:after {
  border-color: #5AA246;
  -webkit-box-shadow: 0px 0px 4px #d6d6d6;
          box-shadow: 0px 0px 4px #d6d6d6;
}

/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .c-form__group {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.c-form__group:last-child {
  margin-bottom: 0;
}
.c-form__label {
  width: 35%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
  padding-right: 25px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .c-form__label {
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__label {
    padding-right: 0;
    width: 100%;
  }
}
.c-form__label span {
  font-size: 1.2rem;
}
.c-form__input {
  width: 65%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-form__input {
    width: 100%;
    margin-top: 10px;
  }
}
.c-form__input--custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__input--custom label {
  margin: 0 10px;
  line-height: 1;
}
.c-form__input--custom02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 4%;
}
@media screen and (max-width: 767px) {
  .c-form__input--custom02 {
    width: 100%;
  }
}
.c-form__input--custom02 .custom01 {
  position: absolute !important;
  left: 0;
  top: 48px;
}
.c-form__input--custom02 .custom02 {
  left: 27px;
  top: 45px;
  position: absolute;
}
.c-form__input--custom02 .custom03 {
  position: absolute;
  left: 100px;
  top: 42px;
}
@media screen and (max-width: 767px) {
  .c-form__input--custom02 .custom03 {
    left: 93px;
    width: 200px;
  }
}
.c-form__input--custom02 label {
  margin: 10px;
  line-height: 1;
}
.c-form__input--custom02 .input-error {
  border: 1px solid #000 !important;
}
.c-form__input input[type=text], .c-form__input input[type=date], .c-form__input input[type=number], .c-form__input textarea, .c-form__input input[type=email] {
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 15px;
  height: 40px;
  font-size: 1.4rem;
  border: 1px solid #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-form__input input[type=text].input-error, .c-form__input input[type=date].input-error, .c-form__input input[type=number].input-error, .c-form__input textarea.input-error, .c-form__input input[type=email].input-error {
  border: 1px solid red;
}
.c-form__input input[type=text].readonly, .c-form__input input[type=date].readonly, .c-form__input input[type=number].readonly, .c-form__input textarea.readonly, .c-form__input input[type=email].readonly {
  background-color: #ddd;
}
.c-form__input textarea {
  padding: 10px 15px;
  resize: none;
}
.c-form__input input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 27px;
  height: 27px;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.c-form__input input[type=radio]#fcontactemail {
  margin-left: 27px;
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=radio]#fcontactemail {
    margin-left: 20px;
  }
}
.c-form__input input[type=radio]:checked {
  border-color: #007bff;
}
.c-form__input input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #007bff;
  border-radius: 50%;
}
.c-form__input .input-text {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .c-form__input .input-text {
    width: 100%;
  }
}
.c-form__input .input-textarea {
  width: 100%;
  height: 180px;
}
.c-form__input .txt-error {
  color: red;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.c-form__input .txt-error--custom {
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .c-form__input .txt-error--custom {
    bottom: -55px;
  }
}
.c-form__input label {
  font-size: 1.2rem;
}
.c-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__wrap:first-child {
  margin-top: 0;
}
.c-form__wrap > label {
  margin: 0 10px;
}
.c-form__note {
  margin-top: 60px;
}
.c-form__note p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
}
.c-form__note p + p {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .c-form__note p + p {
    margin-top: 20px;
  }
}
.c-form__note a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.c-form .c-btn {
  margin-top: 100px;
  cursor: pointer;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .c-form .c-btn {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .c-form .c-btn {
    margin-top: 40px;
  }
}
.c-form .c-btn:hover {
  background-color: #909090;
}

.c-confirm {
  padding: 0 210px;
}
@media screen and (max-width: 1024px) {
  .c-confirm {
    padding: 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .c-confirm {
    padding: 0;
  }
}
.c-confirm h2 {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.c-confirm p {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .c-confirm p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-confirm p {
    margin-top: 15px;
  }
}
.c-confirm .form-confirm {
  margin-top: 70px;
  width: 100%;
  font-size: 1.4rem;
  border-collapse: collapse;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .c-confirm .form-confirm {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-confirm .form-confirm {
    margin-top: 35px;
  }
}
.c-confirm .form-confirm tr {
  border-bottom: 1px solid #ddd;
}
.c-confirm .form-confirm tr:first-child {
  border-top: 1px solid #ddd;
}
.c-confirm .form-confirm td {
  padding: 20px 0;
  word-break: break-word;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .c-confirm .form-confirm td {
    padding: 15px 0;
  }
}
.c-confirm .form-confirm td.namearea {
  width: 30%;
  padding-right: 3%;
  font-weight: 500;
}
.c-confirm .form-confirm td.inputarea {
  width: 67%;
}
.c-confirm__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
}
@media screen and (max-width: 1024px) {
  .c-confirm__btns {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .c-confirm__btns {
    margin: 35px auto 0;
  }
}
.c-confirm__btns .c-btn {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .c-confirm__btns .c-btn {
    margin: 0 10px;
  }
}
.c-confirm__btns .c-btn#submit {
  background-color: #808080;
  border: 1px solid #808080;
}
.c-confirm__btns .c-btn#submit span {
  color: #fff;
}
.c-confirm__btns .c-btn#submit:hover {
  background-color: #fff;
}
.c-confirm__btns .c-btn#submit:hover span {
  color: #808080;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.3rem;
}
@media screen and (max-width: 767px) {
  .main {
    display: block;
  }
}

.mainv_inner {
  width: calc(76% - 2.3rem);
  padding: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .mainv_inner {
    width: 100%;
    padding: 6rem 0 0;
  }
}

.mainv_box {
  position: relative;
  padding: 0;
  overflow: hidden;
  top: 0;
  left: 0;
}

.mainv_image {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  -webkit-animation-name: Move;
          animation-name: Move;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.mainv_slide::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 59%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(178, 178, 178, 0.8)), color-stop(59%, rgba(76, 76, 76, 0)));
  background: linear-gradient(0deg, rgba(178, 178, 178, 0.8) 0%, rgba(76, 76, 76, 0) 59%);
  z-index: 1;
  mix-blend-mode: multiply;
}

@-webkit-keyframes Move {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes Move {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.mainv_imageBox {
  width: 100%;
  height: 100%;
  padding-bottom: 3.5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .mainv_imageBox {
    padding-right: 0;
    padding-bottom: 3rem;
  }
}

.mainv_slide:hover .mainv_arrow::before {
  opacity: 2;
  z-index: 2;
}

.swiper-container.mainv_container {
  width: 100%;
  aspect-ratio: 966/550;
}
@media screen and (max-width: 767px) {
  .swiper-container.mainv_container {
    aspect-ratio: 390/443;
  }
}

.swiper-container .mainv_slide {
  text-align: right;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper-container .mainv_slide {
    width: 100%;
    min-height: 0;
  }
}

@media screen and (max-width: 767px) {
  .mainv_imageBox--notTopPage {
    height: 660px;
    max-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
  }
  .mainv_imageBox--notTopPage img {
    max-width: inherit;
    height: 100%;
    width: auto;
  }
}

.mainv_textBox {
  width: calc(100% - 8rem);
  position: absolute;
  left: 4rem;
  bottom: 1.8rem;
  font-size: 2rem;
  z-index: 10;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .mainv_textBox {
    left: 2.5rem;
    bottom: 2.4rem;
  }
}

.mainv_subtitle {
  font-size: 2.5rem;
  line-height: 1.68;
  letter-spacing: 0.03em;
  margin-bottom: -2.7rem;
}
@media screen and (max-width: 767px) {
  .mainv_subtitle {
    font-size: 2rem;
    margin-bottom: -2.6rem;
    line-height: 1.58;
  }
}

.mainv_subtitle--top {
  font-size: 2rem;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mainv_subtitle--top {
    font-size: 1.6rem;
  }
}

.mainv_place {
  font-size: 8rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mainv_place {
    font-size: 6rem;
    line-height: 1.6;
  }
}

.mainv_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mainv_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .mainv_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.mainv_info {
  color: #1A1A1A;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 67%;
}
@media screen and (max-width: 767px) {
  .mainv_info {
    line-height: 1.6;
    max-width: 26.7rem;
  }
}

.mainv_infoText {
  background-color: #fff;
  margin: 0;
  padding: 0.6rem;
  line-height: 1.86;
}
@media screen and (max-width: 767px) {
  .mainv_infoText {
    padding: 0.2rem 0.5rem;
    line-height: 1.36;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.mainv_arrow {
  width: 4.2rem;
  height: 4.2rem;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .mainv_arrow {
    -ms-flex-item-align: end;
        align-self: flex-end;
    right: -3.2rem;
    bottom: -0.1rem;
  }
}

.mainv_arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/top/icon-arrExp.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.mainv_arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/top/icon-hover-arrExp.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
}

.mainv_arrow:hover {
  opacity: 1;
}

.mainv_arrow:hover::before {
  z-index: 2;
  opacity: 2;
}

.mainv_logoBox {
  width: 23.6rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mainv_logoBox {
    width: 13.3rem;
    top: 48.1%;
    right: 0.8rem;
  }
}

.swiper-container {
  height: 100%;
}

.swiper-pagination.swiper-pagination1 {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .swiper-pagination.swiper-pagination1 {
    left: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container.slider2 {
    position: unset;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container .swiper-pagination.swiper-pagination2 {
    position: unset;
    margin: 2rem auto 0;
    -webkit-transform: translateX(-2.4rem);
            transform: translateX(-2.4rem);
  }
}

.mainv_imageBox .swiper-pagination1 .swiper-pagination-bullet {
  background: #c9c9c9;
  opacity: 1;
  width: 4rem;
  height: 0.3rem;
  border-radius: 0;
}

.mainv_imageBox .swiper-pagination1 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1A1A1A;
  position: relative;
}

.swiper-pagination-bullet {
  margin: 0 1rem 0 0;
}

.pickup {
  margin-top: 5.1rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .pickup {
    margin-top: 4.5rem;
    padding: 0 0 0 2.5rem;
  }
}

.pickup_wrapper {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .pickup_wrapper {
    margin-top: 1.8rem;
    padding-left: 1.8rem;
  }
}

.pickup .swiper-container .swiper-pagination2 .swiper-pagination-bullet {
  width: 4rem;
  height: 0.3rem;
  border-radius: 0;
  background-color: #c9c9c9;
  opacity: 1;
}

.pickup .swiper-container .swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #1A1A1A;
  opacity: 1;
}

.intro {
  padding-right: 5rem;
  padding-top: 8.7rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 8.6rem 2.5rem 0;
  }
}

.intro_imgBox {
  width: 42%;
  aspect-ratio: 405/295;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro_imgBox {
    width: 100%;
    aspect-ratio: 342/249;
  }
}

.intro_imgBox::before {
  content: "";
  position: absolute;
  right: -1%;
  bottom: -1%;
  width: 62.9%;
  aspect-ratio: 255/221;
  background-image: url(../img/top/start-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .intro_imgBox::before {
    content: unset;
  }
}

.intro_title {
  margin-left: -2rem;
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.18;
  position: relative;
  letter-spacing: 0.14rem;
  margin-top: -1.8rem;
}
@media screen and (max-width: 767px) {
  .intro_title {
    margin-left: 0;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin-top: 0.1rem;
  }
}

.intro_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.intro_wrapper2::before {
  content: "";
  position: absolute;
  background-image: url(../img/top/vector-right.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 16.1rem;
  height: 8rem;
  top: 55%;
  right: 99%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .intro_wrapper2::before {
    background-image: url(../img/top/vector-rightsp.svg);
    width: 23.5rem;
    height: 12.5rem;
    top: 87.2%;
    right: 44%;
  }
}

.intro_wrapper::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 25.8rem;
  height: 8.1rem;
  top: 0.78rem;
  right: -6.1rem;
  z-index: -10;
  background-image: url(../img/top/vector-top.svg);
}
@media screen and (max-width: 767px) {
  .intro_wrapper::after {
    width: 18rem;
    height: 6.6rem;
    top: -5.52rem;
    right: -3.8rem;
  }
}

.intro_wrapper2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  width: 80.4%;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro_wrapper2 {
    width: 100%;
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.intro_wrapper2 .text {
  margin-top: -0.9rem;
}
@media screen and (max-width: 767px) {
  .intro_wrapper2 .text {
    margin-top: 0;
  }
}

.intro_imgBox2 {
  margin-top: 2rem;
  width: 34.7%;
  aspect-ratio: 269/157;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro_imgBox2 {
    margin-top: -2.8rem;
    width: 67.7%;
    margin-left: auto;
  }
}

.intro_imgBox2::before {
  position: absolute;
  background-image: url(../img/top/vector-right.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 16.1rem;
  height: 8rem;
  top: 50%;
  right: 90%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .intro_imgBox2::before {
    background-image: url(../img/top/vector-rightsp.svg);
    width: 23.5rem;
    height: 12.5rem;
    top: 70%;
    right: 66%;
  }
}

.map {
  padding: 6.6rem 5rem 11.3rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .map {
    padding: 5.7rem 0 5.5rem 0;
  }
}

.map_imgBox {
  display: block;
}

.map_img {
  width: 100%;
}

.map::before {
  content: "";
  position: absolute;
  background-image: url(../img/top/vector-map-top.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 25.8rem;
  height: 8.1rem;
  bottom: 88%;
  right: -2.2rem;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .map::before {
    content: unset;
  }
}

.map::after {
  content: "";
  position: absolute;
  background-image: url(../img/top/vector-map-bottom.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 36.1rem;
  height: 13.5rem;
  top: 80.6%;
  right: -2.4rem;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .map::after {
    content: unset;
  }
}

.journey {
  padding-right: 5rem;
  padding-bottom: 12.3rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .journey {
    padding: 0 2.5rem;
  }
}

.journey::after {
  content: "";
  position: absolute;
  bottom: -1.09rem;
  right: -2.8rem;
  background-image: url(../img/top/vector-journey-bottom.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 31.8rem;
  height: 14.5rem;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .journey::after {
    content: unset;
  }
}

.journey_wrapper {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .journey_wrapper {
    margin-top: 2.7rem;
    gap: 5.8rem;
  }
}

.journey_wrapper .card2:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .journey_wrapper .card2:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.journey_wrapper .card2:nth-child(even) .card2_title {
  margin-top: 0.7rem;
}
@media screen and (max-width: 767px) {
  .journey_wrapper .card2:nth-child(even) .card2_title {
    margin-top: -0.9rem;
  }
}

.journey_wrapper .card2:nth-child(even) .card2_desc {
  margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
  .journey_wrapper .card2:nth-child(even) .card2_desc {
    margin-top: 1.4rem;
  }
}

.explore {
  padding-right: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .explore {
    margin-top: 6.4rem;
    padding: 0 2.5rem;
  }
}

.explore_wrapper {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .explore_wrapper {
    margin-top: 3rem;
    padding: 0;
    gap: 2rem;
  }
}

.tipsSection {
  margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .tipsSection {
    margin-top: 6.1rem;
  }
}

@media screen and (max-width: 767px) {
  .tipsSection .title {
    padding: 0 2.5rem;
  }
}

.tipsBox {
  position: relative;
}

.tips_bg {
  position: absolute;
  background: url(../img/top/bg-tip.png) top left repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .tips_bg {
    background: url(../img/top/bg-tipsp.png) top left repeat;
  }
}

@media screen and (max-width: 767px) {
  .tips .container {
    padding: 0 2.1rem 4.6rem 2.6rem;
  }
}

.tips .container:nth-child(2) {
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tips .container:nth-child(2) {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .tips .title {
    padding: 0 2.5rem;
    letter-spacing: 0;
  }
}

.tips_box {
  margin-top: 3.4rem;
  padding: 5rem 0 0 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tips_box {
    margin-top: 1.9rem;
    padding: 2.5rem 0 0 2.3rem;
  }
}

.tips_wrapper {
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tips_wrapper {
    margin-top: 2rem;
  }
}

.tips_foreignWrapper {
  margin-top: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tips_foreignWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
    gap: 1.7rem;
  }
}

.tips .card2 {
  gap: 5.5rem;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .tips .card2 {
    margin-top: 1.1rem;
    gap: 0.3em;
  }
}

.tips .card2_desc {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .tips .card2_desc {
    margin-top: 1.1rem;
  }
}

.faq_wrapper {
  margin-top: 2.1rem;
}
@media screen and (max-width: 767px) {
  .faq_wrapper {
    margin-top: 1.1rem;
  }
}

.guidebook {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .guidebook {
    padding-bottom: 2.5rem;
  }
}

.guidebook_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  width: 85%;
  margin: 2.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .guidebook_wrapper {
    width: 100%;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .guidebook .title2 {
    padding: 0 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .guidebooksp {
    margin-top: 2.1rem;
    padding: 0 2.5rem;
  }
}

.guidebook .cta--end {
  margin: 3.2rem 0 -1.5rem auto;
}
@media screen and (max-width: 767px) {
  .guidebook .cta--end {
    margin: 2.4rem auto 0;
  }
}

.guidebook .container {
  padding: 0 5rem 5.4rem;
}
@media screen and (max-width: 767px) {
  .guidebook .container {
    padding: 0 0 5.4rem;
  }
}