@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Playfair+Display:wght@400;700&display=swap");

html {
  font-size: clamp(6px, 0.6944vw, 18px);
  width: 100%;
}

@media screen and (max-width: 991px) {
  html {
    font-size: clamp(6px, 1.009vw, 18px);
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: clamp(6px, 2.6666vw, 18px);
  }
}

body {
  color: #262921;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Open Sans", sans-serif;
  /* font-family: 'Playfair Display', serif; */
  font-weight: 400;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  background-color: #f5f5f5;
}

body.is-active {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2.2rem;
}

h5 {
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.8rem;
  }
}

header {
  position: absolute;
  top: 0;
  height: 10rem;
  width: 100%;
  z-index: 99;
}

header::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #ffffff;
  z-index: 2;
}

.home header {
  opacity: 0;
}

.header_logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8rem;
  width: 12rem;
}

.header_logo img {
  width: 100%;
}

.header-menu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 10rem;
}

.header-menu__list {
  display: flex;
  margin-left: auto;
  column-gap: 2.5rem;
  padding-right: 13rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.header-menu__list > li > a {
  position: relative;
  padding: 1.5rem 2.5rem;
  display: inline-block;
  transition: 0.4s ease;
}

.home .header-menu__list > li > a,
.post-type-archive-specializedtour .header-menu__list > li > a,
.post-type-archive-populartour .header-menu__list > li > a,
.tax-specializedtour-cat .header-menu__list > li > a,
.tax-populartour-cat .header-menu__list > li > a {
  color: #fff;
}

.header-megamenu {
}

.header-megamenu > a {
  position: relative;
  z-index: 2;
  padding-right: 4rem;
}

.header-megamenu > a::before,
.header-megamenu > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  display: inline-block;
  width: 1rem;
  height: 0.2rem;
  background-color: #9ed031;
  transition: 0.4s ease-in;
}

.header-megamenu > a::after {
  transform: translateY(-50%) rotate(90deg);
}

.header-megamenu.is-active > a {
  color: #fff;
}

.header-megamenu.is-active > a::before {
  opacity: 0;
}

.header-megamenu.is-active > a::after {
  transform: translateY(-50%) rotate(0);
}

.header-megamenu__list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 10rem;
  background-color: #262921;
  color: #fff;
  z-index: 1;
}

.header-megamenu__list > li {
  margin: 0 auto;
  width: 40rem;
  margin: 2.5rem auto;
}

.header-megamenu__list_link {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  background-color: #fff;
  color: #262921;
  padding: 0;
  padding-left: 2.5rem;
  transition: 0.4s ease;
}

.header-megamenu__list_link p {
  width: calc(55% - 2rem);
}

.header-megamenu__list_link_img {
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  width: 45%;
}

.header-megamenu__list_link_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.hamburger-menu__btn {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-block;
  background-color: #9ed031;
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  z-index: 9999;
}

.hamburger-menu__btn span {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 0.2rem;
  background-color: #fff;
  transition: 0.4s ease-out;
}

.hamburger-menu__btn span:first-of-type {
  top: calc(50% - 0.5rem);
}

.hamburger-menu__btn span:nth-child(2) {
  top: calc(50% + 0.5rem);
}

.hamburger-menu__btn.is-active span:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.hamburger-menu__btn.is-active span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-225deg);
}

.hamburger-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f5f5f5;
  width: 100%;
  height: 100vh;
  z-index: 9998;
}

.hamburger-menu__inner {
  display: flex;
  align-items: center;
  column-gap: 6rem;
  height: 100vh;
}

.hamburger-menu__inner_img {
  height: 100%;
  width: 40%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu__inner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hamburger-menu__inner_link {
  position: relative;
  z-index: 2;
  padding: 8rem;
  width: calc(60% - 6rem);
}

.hamburger-menu__nav {
  display: flex;
  align-items: flex-start;
  column-gap: 12rem;
  margin-bottom: 6rem;
}

.hamburger-menu__nav a {
  transition: 0.4s ease;
}

.hamburger-menu__nav_list > li {
  margin-bottom: 4.5rem;
}

.hamburger-menu__nav_list > li:last-of-type {
  margin-bottom: 0;
}

.hamburger-menu__nav_sub_list {
  margin-top: 1.5rem;
}

.hamburger-menu__nav_sub_list > li {
  position: relative;
  padding-left: 2.5rem;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.hamburger-menu__nav_sub_list > li:last-of-type {
  margin-bottom: 0;
}

.hamburger-menu__nav_sub_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  background-color: #9ed031;
}

.hamburger-menu__sns_list {
  display: flex;
  column-gap: 2.5rem;
}

.hamburger-menu__sns_list li {
  width: 2.5rem;
}

.hamburger-menu__title {
  position: absolute;
  bottom: 2rem;
  right: 0;
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 12rem;
  letter-spacing: 0.1em;
  font-family: "Playfair Display", serif;
}

.hamburger-menu__title > span {
  display: block;
  text-align: left;
  margin-bottom: 1.5rem;
}

.hamburger-menu__title > span:nth-child(2) {
  margin-left: 6rem;
}

.hamburger-menu__title > span:nth-child(3) {
  margin-left: 12rem;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .header_logo {
    left: 2rem;
  }

  .header-menu {
    display: none;
  }

  .hamburger-menu__inner {
    column-gap: 0;
  }

  .hamburger-menu__inner_img {
    width: 30%;
  }

  .hamburger-menu__inner_link {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  header {
    height: 7.5rem;
  }

  .header_logo {
    width: 10rem;
  }

  .hamburger-menu__btn {
    top: 1rem;
    right: 1.5rem;
    width: 5.5rem;
    height: 5.5rem;
  }

  .hamburger-menu__nav {
    column-gap: 5rem;
  }

  .hamburger-menu__inner_img {
    display: none;
  }

  .hamburger-menu__inner_link {
    width: 100%;
    padding: 8rem 4rem;
  }
  .hamburger-menu__title {
    font-size: 8rem;
  }
}

@media (any-hover: hover) {
  .header-menu__list > li > a:hover {
    color: #9ed031;
  }
  .header-megamenu__list_link:hover {
    color: #9ed031;
  }
  .header-megamenu__list_link:hover .header-megamenu__list_link_img img {
    transform: scale(1.1);
  }
  .hamburger-menu__nav a:hover {
    opacity: 0.4;
  }
}

.main-heading {
  margin-bottom: 4.5rem;
}

.main-heading > span {
  position: relative;
  display: inline-block;
  color: #9ed031;
  font-weight: 700;
  padding-left: 4rem;
}

.main-heading > span::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #9ed031;
}

.main-heading h2 {
  font-size: 6rem;
  background: linear-gradient(
    0deg,
    #262921,
    #262921,
    #262921,
    #262921,
    #262921,
    #262921,
    transparent,
    transparent,
    transparent,
    transparent
  );
  background-size: 600% 300%;
  background-position-x: 100%;
  background-position-y: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-stroke: 1px #262921;
  -webkit-text-stroke: 1px #262921;
  /* filter: drop-shadow(1px 1px 1px #262921); */
}

.main-heading.wh h2 {
  background: none;
  text-stroke: 0px;
  -webkit-text-stroke: 0px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .main-heading h2 {
    font-size: 3.4rem;
  }
}

.main-heading__sns {
  text-align: center;
  color: #fff;
  margin-bottom: 4.5rem;
}

.main-heading__sns span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}

.main-heading__sns h2 {
  font-size: 4.2rem;
}

@media screen and (max-width: 480px) {
  .main-heading__sns h2 {
    font-size: 2.8rem;
  }
}

.main-btn {
  position: relative;
  max-width: 30rem;
  border-top: solid 1px #bbbbbb;
  border-bottom: solid 1px #bbbbbb;
  transition: 0.4s ease;
}

.main-btn::before,
.main-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 0;
  transition: 0.4s ease;
}

.main-btn::before {
  top: 0;
  border-top: solid 1px #9ed031;
}

.main-btn::after {
  bottom: 0;
  border-bottom: solid 1px #9ed031;
}

.main-btn a {
  position: relative;
  display: block;
  padding: 3rem 6rem 3rem 3rem;
  font-weight: 700;
  color: #262921;
  text-decoration: none;
}

.main-btn.wh a {
  color: #fff;
}

.main-btn a::before {
  color: #9ed031;
  content: attr(data-hover);
  max-width: 0;
  overflow: hidden;
  position: absolute;
  top: 3rem;
  left: 3rem;
  white-space: nowrap;
  transition: 0.4s ease;
}

.main-btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 2.5rem;
  width: 1rem;
  height: 1rem;
  border-top: solid 1px #262921;
  border-right: solid 1px #262921;
  transition: 0.6s ease;
}

.main-btn.outlink a::after {
  transform: translateY(-50%);
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cstyle%3E.a,.b%7Bfill:none;%7D.b%7Bstroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3E125_arr_24%3C/title%3E%3Crect class='a' width='48' height='48'/%3E%3Cpolyline class='b' points='27 12 36 12 36 21'/%3E%3Cpolyline class='b' points='32 26 32 34 14 34 14 16 22 16'/%3E%3Cline class='b' x1='24' y1='24' x2='35' y2='13'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cstyle%3E.a,.b%7Bfill:none;%7D.b%7Bstroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3E125_arr_24%3C/title%3E%3Crect class='a' width='48' height='48'/%3E%3Cpolyline class='b' points='27 12 36 12 36 21'/%3E%3Cpolyline class='b' points='32 26 32 34 14 34 14 16 22 16'/%3E%3Cline class='b' x1='24' y1='24' x2='35' y2='13'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transition: 0.4s ease;
}

@media (any-hover: hover) {
  .main-btn:hover {
    border-top: solid 1px transparent;
    border-bottom: solid 1px transparent;
  }

  .main-btn:hover::before,
  .main-btn:hover::after {
    width: 100%;
  }

  .main-btn a:hover::before,
  .main-btn a:focus::before {
    max-width: 100%;
  }

  .main-btn:hover a::after {
    border-top: solid 1px #9ed031;
    border-right: solid 1px #9ed031;
  }

  .main-btn.outlink:hover a::after {
    background-color: #9ed031;
  }
}

footer {
  position: relative;
  z-index: 2;
  background-color: #262921;
  padding: 12rem 8rem;
}

.footer-menu {
  position: relative;
  margin-bottom: 6rem;
}

.footer-menu__nav {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 18rem;
  margin-bottom: 6rem;
  z-index: 2;
  font-size: 1.4rem;
}

.footer-menu__nav_list > li {
  margin-bottom: 4.5rem;
}

.footer-menu__nav a {
  color: #fff;
  transition: 0.4s ease;
}

.footer-menu__nav_sub_list {
  margin-top: 1.5rem;
}

.footer-menu__nav_sub_list > li {
  position: relative;
  padding-left: 2.5rem;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-menu__nav_sub_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  background-color: #9ed031;
}

.footer-menu__nav_sub_list > li:last-of-type {
  margin-bottom: 0;
}

.footer-menu__sns_list {
  display: flex;
  column-gap: 2.5rem;
}

.footer-menu__sns_list li {
  width: 2.5rem;
}

.footer-menu__title {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 12rem;
  letter-spacing: 0.1em;
  font-family: "Playfair Display", serif;
  /* mix-blend-mode: overlay; */
  background: linear-gradient(
    0deg,
    #508d9f,
    #df018c,
    #48c021,
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  );
  background-size: 600% 300%;
  background-position-x: 100%;
  background-position-y: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.footer-menu__title > span {
  display: block;
  text-align: left;
  margin-bottom: 1.5rem;
}

.footer-menu__title > span:nth-child(2) {
  margin-left: 6rem;
}

.footer-menu__title > span:nth-child(3) {
  margin-left: 12rem;
  margin-bottom: 0;
}

footer small {
  display: block;
  text-align: right;
  font-size: 1rem;
  color: #fff;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 12rem 2rem;
  }

  .footer-menu__nav {
    column-gap: 8rem;
  }

  .hamburger-menu__inner_img {
    display: none;
  }

  .hamburger-menu__inner_link {
    width: 100%;
    padding: 8rem 4rem;
  }

  .footer-menu__title {
    right: -2rem;
    font-size: 8rem;
  }
}

@media (any-hover: hover) {
  .footer-menu__nav a:hover {
    opacity: 0.4;
  }
}
