@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap");
/*******************************************
*** Custom prop
********************************************/
:root {
  --main-color: #0047d4;
  --sub-color01: #dbe4f7;
  --sub-color02: #6e6e6e;
  --sub-color03: #f8f8f8;
  --sub-color04: #003333;
  --point-color: #e64e51;
  --bg-color: #ebf1fc;
}

/*******************************************
*** Utillity Setting
********************************************/
.center {
  text-align: center;
}
.sp_only {
  display: none;
}
.sp_fluid {
  width: 100%;
  max-width: 768px;
}
.img-fluid {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}
/*******************************************
*** Font Style
***(*****************************************/
#newzealand_lp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #313131;
}
#newzealand_lp h1,
#newzealand_lp h2 {
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.6;
  position: relative;
  margin: 0 auto;
}
#newzealand_lp h3 {
  font-weight: 700;
  font-style: normal;
  font-family: "Yu Gothic", sans-serif;
  position: relative;
  line-height: 1.6;
  margin: 0 auto;
}
.sans-serif {
  font-family: "sans-serif";
}
.italic {
  font-style: italic;
}
.size-2 {
  font-size: 120%;
}
p {
  font-family: "Noto Sans JP", sans-serif;
  color: #313131;
  margin: 0;
}
p.lead {
  text-align: center;
  font-weight: 700;
}
.scale-down {
  font-size: 80%;
}
.highlight {
  background: linear-gradient(transparent 40%, #f9e165 40%);
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}
.point-color {
  color: var(--point-color);
}
#newzealand_lp h2.section_ttl {
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 60px;
  padding-top: 60px;
}
.sub_ttl {
  font-family: "canto", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
}
.underline {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 540px) {
  .br_540 {
    display: none;
  }
}
/*******************************************
*** Layout Style
********************************************/
#newzealand_lp img {
  width: 100%;
}
.inner_wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.contents_wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.flex_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.reverse_row_wrap {
  flex-direction: row-reverse;
}
.reverse_col_wrap {
  flex-direction: column-reverse;
}
.align_start {
  align-items: flex-start;
}
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.onethird,
.twothird {
  flex-wrap: wrap;
}
.col2 > * {
  width: calc((100% / 2) - (12px / 1));
}
.col3 > * {
  width: calc((100% / 3) - (24px / 2));
}
.col4 > * {
  width: calc((100% / 4) - (36px / 3));
}
.col5 > * {
  width: calc((100% / 5) - (48px / 4));
}
.col6 > * {
  width: calc((100% / 6) - (60px / 5));
}
.col7 > * {
  width: calc((100% / 7) - (72px / 6));
}
.onethird > *:first-child {
  width: calc((100% / 3) - (12px / 2));
}
.onethird > *:last-child {
  width: calc((100% * (2 / 3)) - (12px / 2));
}
.twothird > *:first-child {
  width: calc((100% * (2 / 3)) - (12px / 2));
}
.twothird > *:last-child {
  width: calc((100% / 3) - (12px / 2));
}

@media screen and (max-width: 1200px) {
  .inner_wrap {
    padding: 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .col2 > *,
  .col3 > * {
    width: 100%;
  }
  .col4 > * {
    width: calc(100% / 2);
  }
  .onethird > *:first-child,
  .onethird > *:last-child,
  .twothird > *:first-child,
  .twothird > *:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
  .col5 {
    width: calc(100% / 2);
  }
}

/*******************************************
*** Animation Settings
********************************************/
@keyframes delighter-top_in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

.animate-top_in.delighter {
  transform: translateY(-100%);
  opacity: 0;
  will-change: transform, opacity;
}
.animate-top_in.delighter.started {
  animation: delighter-top_in 1.2s ease-out both;
}

@keyframes delighter-bottom_in {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

.animate-bottom_in.delighter {
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}

.animate-bottom_in.delighter.started {
  animation: delighter-bottom_in 1.2s ease-out both;
}

@keyframes delighter-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/*******************************************
*** Contents Style
********************************************/
section:is(#intro, #compare, #product, #faq) {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  section:is(#intro, #compare, #product, #faq) {
    padding: 0 10px 60px;
  }
}
section:is(#firstview) {
  position: relative;
  z-index: 2;
}
.qna h2:after {
  background-color: var(--sub-color02);
  position: absolute;
  transform: translateX(-50%);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 50%;
  width: 60px;
}

#firstview > .fv_main {
  background: center left / cover no-repeat url(../images/bg_hero.webp);
  width: 100%;
  line-height: 0;
  height: auto;
  aspect-ratio: 16 / 7;
}
#firstview h1 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#firstview h1 img {
  max-width: 820px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #firstview > .fv_main {
    aspect-ratio: auto;
  }
}
#intro {
  position: relative;
  background: top center / cover no-repeat url(../images/bg_intro.webp);
}
#intro .recommand {
  padding: 40px 0;
}
#intro .recommand h2 {
  text-align: center;
  margin-bottom: 20px;
}
#intro .recommand h2 > img {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.recommand_box {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  text-align: left;
  text-decoration: none;
  color: #000;
  will-change: transform;
  transition: transform 0.2s;
}
.recommand_inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recommand_box .btn_wrap span {
  display: block;
  border-radius: 8px;
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin: 20px auto 0;
}
.recommand_box:hover {
  transform: translateY(-4px);
}
.recommand_box_img {
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recommand_inner {
    flex-wrap: wrap;
  }
  .recommand .tour_price {
    max-width: inherit;
    width: 100%;
  }
  .recommand .btn_wrap {
    width: 80%;
    margin: 10px auto;
  }
  .recommand_box_img {
    margin: 0 auto;
  }
}
.tour_price_label {
  display: block;
  color: #a40000;
  background: #ffaaa1;
  font-size: 12px;
  font-weight: 700;
  padding: 2.5px 0;
  text-align: center;
  border-radius: 100vh;
  margin-bottom: 0.5px;
}
.tour_price {
  max-width: 250px;
  min-width: 200px;
  text-align: left;
  padding: 0 15px;
  color: #535353;
  font-weight: 700;
}
.tour_price_sub {
  font-size: 14px;
  color: #535353;
}
.tour_price_amount {
  font-family: "Oswald";
  color: #a40000;
  font-weight: bold;
  font-size: 22.5px;
  font-weight: 700;
  text-align: center;
}
.tour_price_amount .number {
  font-weight: 800;
  letter-spacing: -1px;
}
.tour_price_amount .yen {
  font-size: 10px;
  font-weight: 800;
}
.tour_price_remark {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  background: #a40000;
  padding: 2.5px 0;
  margin-bottom: 2.5px;
}
.tour_price_caution {
  font-size: 14px;
  color: #535353;
}
.merit ul {
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 20px auto 40px;
}
@media screen and (max-width: 768px) {
  .merit ul {
    justify-content: center;
  }
}
#newzealand_lp .merit h2 {
  margin-bottom: 10px;
}
#newzealand_lp .merit h3 {
  font-size: 18px;
  color: #6a3906;
  margin: 10px auto 5px;
}
.merit ul li {
  max-width: 328px;
}
#compare {
  background: #fff6e9;
}
.tour_selector {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  gap: 10px;
}
.tour_selector li {
  width: calc((100% - 10px) / 3);
  font-size: 15px;
  padding: 24px 0;
  text-align: center;
  font-weight: 800;
  border-radius: 8px 8px 0 0;
  filter: grayscale(10);
  margin: 0 auto;
}
.tour_selector li.selected {
  filter: none;
}
.tour_selector li:hover {
  cursor: pointer;
  transition: background 0.3s ease;
  opacity: 0.8;
}
.tour_selector li:nth-child(1),
.tour_label_01 {
  background-image: -webkit-linear-gradient(45deg, rgb(106, 57, 6) 0%, rgb(231, 147, 74) 100%);
  background-image: linear-gradient(45deg, rgb(106, 57, 6) 0%, rgb(231, 147, 74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6a3906, endColorstr=#e7934a, GradientType=1);
  color: #fff;
}

.tour_selector li:nth-child(2),
.tour_label_02 {
  background-image: -webkit-linear-gradient(45deg, rgb(0, 28, 88) 0%, rgb(6, 88, 162) 100%);
  background-image: linear-gradient(45deg, rgb(0, 28, 88) 0%, rgb(6, 88, 162) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#001c58, endColorstr=#0658a2, GradientType=1);
  color: #fff;
}

.tour_selector li:nth-child(3),
.tour_label_03 {
  background-image: -webkit-linear-gradient(45deg, rgb(0, 87, 82) 0%, rgb(30, 139, 45) 100%);
  background-image: linear-gradient(45deg, rgb(0, 87, 82) 0%, rgb(30, 139, 45) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#005752, endColorstr=#1e8b2d, GradientType=1);
  color: #fff;
}
.tour_label {
  border-radius: 100vh;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
}
.compare_box,
.area_wrap {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: none;
}
.comapre01 {
  border: 1px solid rgb(231, 147, 74);
}
.comapre02 {
  border: 1px solid rgb(6, 88, 162);
}
.comapre03 {
  border: 1px solid rgb(30, 139, 45);
}
.compare_box.active,
.area_wrap.active {
  display: block;
}
.compare_box_img {
  margin-bottom: 16px;
}
.label {
  background: #000;
  color: #fff;
  font-weight: 800;
  padding: 5px;
}
#newzealand_lp .compare_box_txt h3 {
  font-size: 32px;
  margin: 5px auto 10px;
  border-bottom: 1px solid #000;
}
.compare_box_txt > p {
  margin-bottom: 30px;
}
.gold_gradation {
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare_box_txt h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px auto 10px;
}
.tour_plan {
  padding: 15px;
  background: #f2f2f2;
  margin: 30px auto;
  border-radius: 8px;
}
.tour_plan .ttl {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  font-weight: 700;
}
#product {
  background: top center / cover no-repeat url(../images/bg_product.webp);
}
.area_wrap {
  padding: 20px 30px;
  background: #f2f2f2;
  border-radius: 0 0 8px 8px;
}
.area_wrap h4 {
  margin-bottom: 10px;
  font-weight: 700;
}
.area_selector {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  gap: 5px;
}
.area_selector li {
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: calc(100% / 5);
  background: #ddd;
  cursor: pointer;
  padding: 20px 0;
  border-radius: 8px 8px 0 0;
}
.area_selector li.selected {
  background: #f2f2f2;
  color: #000;
}
.product_box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}
.product_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.img_wrap {
  width: 30%;
}
.txt_wrap {
  width: 40%;
  padding: 20px;
}
.txt_wrap p {
  margin-top: 10px;
}
#newzealand_lp .txt_wrap h3 {
  font-size: 18px;
  font-weight: 800;
}
.itinerary_selector {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .product_header {
    flex-wrap: wrap;
  }
  .img_wrap {
    width: 100%;
  }
  .txt_wrap {
    width: 100%;
  }
  .itinerary_selector {
    width: 100%;
  }
}
.day_selector {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.day_selector li {
  width: calc(50% - 5px);
  padding: 10px 0;
  text-align: center;
  transition: all 0.3s ease;
  background: #d2d2d2;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}
.day_selector li:hover {
  opacity: 0.7;
}
.day_selector li.active {
  background: #00877e;
}
.tour_information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
}
.tour_information .tour_price_amount {
  font-size: 27px;
  letter-spacing: 0;
}
.tour_itinerary {
  width: calc(100% - 10px);
  display: flex;
  flex-wrap: wrap;
}
.tour_information .tour_price {
  width: calc(40% - 10px);
}
.tour_itinerary table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  background-color: #bfbfbf;
}
.tour_itinerary th {
  background: #f2f2f2;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
.tour_itinerary td {
  background: #fff;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tour_itinerary th,
  .tour_itinerary td {
    display: block;
    width: 100%;
  }
  .tour_itinerary td:nth-of-type(1) {
    border-bottom: 1px solid #bfbfbf;
  }
  .tour_price {
    margin: 0 auto;
  }
}
.tour_code {
  color: #a40000;
}
.h4_icon {
  max-width: 25px;
  margin-right: 5px;
}
.class {
  display: inline-block;
  background: #7ecef4;
  font-size: 10px;
  padding: 2.5px 10px;
  border-radius: 100vh;
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .tour_information {
    flex-wrap: wrap;
  }
  .tour_information .tour_itinerary {
    width: 100%;
  }
  .tour_information .tour_price {
    width: 100%;
  }
}
.btn_wrap a {
  display: block;
  border-radius: 8px;
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.btn_wrap a:hover {
  opacity: 0.8;
}
.btn-accent {
  background-image: linear-gradient(180deg, rgb(243, 152, 0) 0%, rgb(248, 54, 0) 100%);
  border: 1px solid #eb6100;
}
.btn-accent .icon {
  position: relative;
  margin-right: 10px;
  max-width: 45px;
}
a.btn-sub {
  background: #fff;
  border: 1px solid #7d7d7d;
  color: #7d7d7d;
  margin-top: 16px;
}
/*******************************************
*** FAQ
********************************************/
#faq {
  background: bottom center / cover no-repeat url(../images/bg_faq.webp);
}
#faq h2 {
  margin-bottom: 60px;
}
#faq h3 {
  padding-left: 54px;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#faq h3:before {
  content: url(../images/question_icon.webp);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  line-height: 0;
}
#faq .answer {
  background: var(--sub-color03);
  padding: 20px 15px;
}
#faq .answer > ul {
  font-size: 12px;
  margin: 15px 0;
}
#faq .answer a {
  color: var(--main-color);
  font-weight: 700;
  border-bottom: 1px solid;
}
.faq_contents {
  padding: 20px 0;
}
#faq .answer table {
  margin: 20px auto 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000;
}
#faq .answer table th,
#faq .answer table td {
  padding: 10px;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
#faq .answer table th {
  background: #f2f2f2;
  width: 20%;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #faq .answer table th,
  #faq .answer table td {
    font-size: 10px;
  }
}
.tour_detail {
  display: none;
}
