@charset "UTF-8";
* {
  min-width: 0;
  min-height: 0;
  color: #202223;
  line-height: 1;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul,
li {
  list-style: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

div img {
  vertical-align: top;
}

:target {
  /* ヘッダーの高さ分だけパディングを追加し、内容が隠れないようにする */
  padding-top: 120px;
  /* パディングで内容が下に押し出されるのを避けるために、同じ大きさのマイナスマージンを設定 */
  margin-top: -120px;
  /* ブラウザが要素を表示する際の挙動を補助する */
  display: block;
}
@media (max-width: 800px) {
  :target {
    padding-top: 65px;
    margin-top: -65px;
  }
}

body {
  position: relative;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(/wp-content/uploads/2025/04/header-top.png);
  background-size: contain;
  background-repeat: repeat-x;
}
@media (max-width: 600px) {
  body::before {
    background-image: url(/wp-content/uploads/2025/04/sp-line.png);
  }
}

header {
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  position: sticky;
  z-index: 100;
  background-color: #fff;
}
header .container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  header .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .container .logo {
  height: 60px;
}
@media (max-width: 1100px) {
  header .container .logo {
    height: 35px;
  }
}
header .container .logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1100px) {
  header .container .menu {
    display: none;
  }
}
header .container .menu .infobtn {
  width: 150px;
  margin-right: 5px;
}
header .container .menu .infobtn a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(66, 211, 255)), to(rgb(79, 232, 133)));
  background: linear-gradient(to right, rgb(66, 211, 255) 0%, rgb(79, 232, 133) 100%);
  border-radius: 30px;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 13px;
  position: relative;
}
header .container .menu .infobtn a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fae314;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .container .menu .top-cont {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
header .container .menu .top-cont #language-pc {
  margin-right: 5px;
}
header .container .menu .top-cont .instagram {
  width: 30px;
  height: 30px;
}
header .container .menu .top-cont .instagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .container .menu .list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .container .menu .list .btn {
  width: 170px;
  border-left: 1px solid #e4e8ea;
  text-align: center;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .container .menu .list .btn:last-child {
  border-right: 1px solid #e4e8ea;
}
header .container .menu .list .btn a {
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
}
header .container .menu .list .btn a span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #1cc8dd;
  margin-top: 5px;
}
header .container .menu .list .btn:nth-child(2) a span {
  color: #ffb82b;
}
header .container .menu .list .btn:nth-child(3) a span {
  color: #f44527;
}
header .container .menu .list .btn:nth-child(4) a span {
  color: #be7ee0;
}
header .container .menu .list .btn:nth-child(5) a span {
  color: #b8d852;
}
header .container .toggle_btn {
  display: none;
  width: 36px;
  height: 36px;
  background: linear-gradient(45deg, rgb(7, 86, 176) 0%, rgb(56, 191, 224) 100%);
  border-radius: 50% 50% 50% 0;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1100px) {
  header .container .toggle_btn {
    display: block;
  }
}
header .container .toggle_btn .toggle_line {
  width: 14px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header .container .toggle_btn .toggle_line span {
  height: 2px;
  width: 100%;
  background: #fff;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  position: absolute;
}
header .container .toggle_btn .toggle_line span:nth-child(1) {
  top: 0;
}
header .container .toggle_btn .toggle_line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
header .container .toggle_btn .toggle_line span:nth-child(3) {
  top: 100%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
header .container .toggle_btn.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .container .toggle_btn.open span:nth-child(2) {
  opacity: 0;
}
header .container .toggle_btn.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header #navArea {
  display: none;
  width: 100%;
  height: calc(100vh - 65px);
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  z-index: 100;
  top: 65px;
}
header #navArea.open {
  display: block;
}
header #navArea .list {
  margin-bottom: 30px;
}
header #navArea .list .btn {
  border-bottom: 1px solid #e4e8ea;
  text-align: center;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header #navArea .list .btn a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
}
header #navArea .list .btn a span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #1cc8dd;
  margin-top: 5px;
}
header #navArea .list .btn:nth-child(2) a span {
  color: #ffb82b;
}
header #navArea .list .btn:nth-child(3) a span {
  color: #f44527;
}
header #navArea .list .btn:nth-child(4) a span {
  color: #be7ee0;
}
header #navArea .list .btn:nth-child(5) a span {
  color: #b8d852;
}
header #navArea .infobtn {
  width: 150px;
  margin: 0 auto 20px auto;
}
header #navArea .infobtn a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(66, 211, 255)), to(rgb(79, 232, 133)));
  background: linear-gradient(to right, rgb(66, 211, 255) 0%, rgb(79, 232, 133) 100%);
  border-radius: 30px;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 13px;
  position: relative;
}
header #navArea .infobtn a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fae314;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header #navArea #language-sp {
  text-align: center;
  margin-bottom: 20px;
}
header #navArea .instagram {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
header #navArea .instagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header #language .gtranslate_wrapper select.gt_selector {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(/wp-content/uploads/2025/04/lang-icon.png) no-repeat left 10px center/16px 16px, #fff;
  border: 1px solid #eef1f1 !important;
  border-radius: 30px !important;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  padding: 5px 0 !important;
  line-height: 1.4;
  cursor: pointer;
}

footer {
  border-top: 1px solid #c3dee2;
  padding: 40px 0 20px 0;
}
footer .container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  footer .container {
    width: 90%;
  }
}
footer .container .logo {
  width: calc(100% / 4 - 60px / 4);
  margin-right: 20px;
  height: 70px;
  margin-bottom: 25px;
}
footer .container .logo:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 600px) {
  footer .container .logo {
    width: calc(100% / 2 - 10px / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  footer .container .logo:nth-child(2n) {
    margin-right: 0;
  }
}
footer .container .logo:nth-last-child(-n+4) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  footer .container .logo:nth-last-child(-n+4) {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  footer .container .logo:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
footer .container .logo a {
  height: 100%;
  width: 100%;
  display: block;
}
footer .container .logo a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer #copyright {
  text-align: center;
  color: #73b5c9;
}

.access-content .back {
  min-height: 1100px;
}
@media (max-width: 900px) {
  .access-content .back {
    min-height: 1000px;
  }
}
@media (max-width: 600px) {
  .access-content .back {
    min-height: 730px;
  }
}
.access-content .back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.access-content .container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.access-content .container .headline {
  text-align: center;
  margin-bottom: 40px;
}
.access-content .container .headline::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(/wp-content/uploads/2025/03/senimg09.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 30px auto;
}
@media (max-width: 900px) {
  .access-content .container .headline::before {
    width: 50px;
    height: 50px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translatex(-50%);
            transform: translatex(-50%);
    z-index: -1;
  }
}
.access-content .container .headline::after {
  content: "ACCESS";
  display: block;
  font-family: "Futura-Medium", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #1cc8dd;
  font-size: 120px;
  letter-spacing: 0.02em;
  opacity: 0.15;
  z-index: -1;
}
@media (max-width: 900px) {
  .access-content .container .headline::after {
    font-size: 60px;
    z-index: -2;
  }
}
.access-content .container .headline h2 {
  font-size: 36px;
  letter-spacing: 0.07em;
  font-weight: 900;
  color: #fff;
  margin: 0;
}
@media (max-width: 800px) {
  .access-content .container .headline h2 {
    font-size: 20px;
    letter-spacing: 0.11em;
    font-size: bold;
    color: #0bbcdb;
  }
}
.access-content .container .headline span {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #0bbcdb;
  margin-top: 15px;
  display: block;
}
@media (max-width: 800px) {
  .access-content .container .headline span {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-top: 10px;
    color: #0bbcdb;
  }
}
.access-content .container .map {
  width: 80%;
  height: 600px;
  margin: 0 auto 30px auto;
}
@media (max-width: 800px) {
  .access-content .container .map {
    height: 380px;
  }
}
.access-content .container .map iframe {
  width: 100%;
  height: 100%;
}
.access-content .container .map img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.access-content .container .text {
  text-align: center;
  margin-bottom: 30px;
}
.access-content .container .morebtn {
  width: 240px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .access-content .container .morebtn {
    width: 140px;
  }
}
.access-content .container .morebtn a {
  display: block;
  color: #fff;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(45deg, #42d3ff 0%, #4fe885 100%);
}
@media (max-width: 800px) {
  .access-content .container .morebtn a {
    font-size: 13px;
    padding: 15px 0;
  }
}
.access-content .container .morebtn a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fae314;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.soon .soon-text {
  margin: 100px 0;
}
.soon .soon-text * {
  text-align: center;
  font-size: 100px;
  display: block;
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .soon .soon-text * {
    font-size: 60px;
  }
}
@media (max-width: 800px) {
  .soon .soon-text * {
    font-size: 30px;
  }
}

.sp-cont-btn {
  display: none;
  padding: 60px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(80%, rgb(240, 249, 250)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(240, 249, 250) 80%);
}
@media (max-width: 800px) {
  .sp-cont-btn {
    display: block;
  }
}
.sp-cont-btn .btn {
  width: 100%;
  margin-bottom: 20px;
}
.sp-cont-btn .btn:last-child {
  margin-bottom: 0;
}
.sp-cont-btn .btn a {
  display: block;
  font-size: 18px;
  border-radius: 30px;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.sp-cont-btn .btn a::after {
  content: "";
  display: block;
  width: 11px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sp-cont-btn .btn:nth-child(1) a {
  color: #ffb82b;
  border: 1px solid #ffb82b;
}
.sp-cont-btn .btn:nth-child(1) a::after {
  background-image: url(/wp-content/uploads/2025/04/arrow-hta.png);
}
.sp-cont-btn .btn:nth-child(2) a {
  color: #f44527;
  border: 1px solid #f44527;
}
.sp-cont-btn .btn:nth-child(2) a::after {
  background-image: url(/wp-content/uploads/2025/04/arrow-htg.png);
}
.sp-cont-btn .btn:nth-child(3) a {
  color: #be7ee0;
  border: 1px solid #be7ee0;
}
.sp-cont-btn .btn:nth-child(3) a::after {
  background-image: url(/wp-content/uploads/2025/04/arrow-hte.png);
}

.kv-sections {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
@media (max-width: 800px) {
  .kv-sections {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    overflow-x: hidden;
    margin-bottom: 30px;
  }
}
.kv-sections .image {
  width: 65%;
  height: 500px;
}
@media (max-width: 800px) {
  .kv-sections .image.pc {
    display: none;
  }
}
.kv-sections .image.sp {
  display: none;
}
@media (max-width: 800px) {
  .kv-sections .image.sp {
    display: block;
    height: 250px;
    border-bottom-right-radius: 2000px 300px;
    border-bottom-left-radius: 2000px 300px;
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
}
.kv-sections .image.sp::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1;
}
@media (max-width: 800px) {
  .kv-sections .image {
    width: 100%;
    height: 400px;
  }
}
.kv-sections .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 0 0 0;
}
.kv-sections .content {
  width: 35%;
}
@media (max-width: 800px) {
  .kv-sections .content {
    width: 100%;
  }
}
.kv-sections .content .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .kv-sections .content .headline {
    display: block;
    text-align: center;
    margin-top: -30px;
    z-index: 2;
  }
}
.kv-sections .content .headline h2 {
  font-size: 50px;
  letter-spacing: 0.07em;
  font-weight: 900;
  margin: 0 0 15px 0;
}
@media (max-width: 800px) {
  .kv-sections .content .headline h2 {
    font-size: 32px;
  }
}
.kv-sections .content .headline span {
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 900;
}
@media (max-width: 800px) {
  .kv-sections .content .headline span {
    font-size: 12px;
  }
}
.kv-sections .content .headline::before {
  content: "";
  display: block;
  width: 110px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .kv-sections .content .headline::before {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px auto;
  }
}
.kv-sections.activities .content .headline span {
  color: #ffb82b;
}
.kv-sections.activities .content .headline::before {
  background-image: url(/wp-content/uploads/2025/03/senimg03.png);
}
@media (max-width: 800px) {
  .kv-sections.activities .image {
    background-image: url(/wp-content/uploads/2025/04/img005.jpg);
    background-position: 50%;
  }
}
.kv-sections.gourmet .content .headline span {
  color: #f44527;
}
.kv-sections.gourmet .content .headline::before {
  background-image: url(/wp-content/uploads/2025/03/senimg02.png);
}
@media (max-width: 800px) {
  .kv-sections.gourmet .image {
    background-image: url(/wp-content/uploads/2025/04/img006-sp.jpg);
  }
}
.kv-sections.explore .content .headline span {
  color: #be7ee0;
}
.kv-sections.explore .content .headline::before {
  background-image: url(/wp-content/uploads/2025/03/senimg01.png);
}
@media (max-width: 800px) {
  .kv-sections.explore .image {
    background-image: url(/wp-content/uploads/2025/04/img007.jpg);
  }
}

.bot-section {
  max-width: 1100px;
  margin: 0 auto 70px auto;
  width: 100%;
}
@media (max-width: 1100px) {
  .bot-section {
    width: 95%;
  }
}
@media (max-width: 800px) {
  .bot-section {
    width: 100%;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto 40px auto;
  }
}
.bot-section .box {
  width: calc(100% / 2 - 30px / 2);
  margin-right: 30px;
}
.bot-section .box:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 800px) {
  .bot-section .box {
    width: calc(100% / 1 - 0px / 1);
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .bot-section .box:nth-child(1n) {
    margin-right: 0;
  }
  .bot-section .box:last-child {
    margin-bottom: 0;
  }
}
.bot-section .box a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 800px) {
  .bot-section .box a {
    border-radius: 30px;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.bot-section .box a .image {
  height: 220px;
  margin-bottom: 20px;
}
.bot-section .box a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .bot-section .box a .image {
    display: none;
  }
}
.bot-section .box a .title {
  font-size: 24px;
  letter-spacing: 0.07em;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.bot-section .box a .title::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 800px) {
  .bot-section .box a .title {
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .bot-section .box a .title::after {
    position: absolute;
    width: 12px;
    height: 14px;
    top: 50%;
    right: 10%;
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
  }
}
@media (max-width: 800px) {
  .bot-section .box.activities a {
    border: 2px solid #ffb82b;
  }
}
.bot-section .box.activities a .title {
  color: #ffb82b;
}
.bot-section .box.activities a .title::after {
  background-image: url(/wp-content/uploads/2025/04/btn-ac.png);
}
@media (max-width: 800px) {
  .bot-section .box.activities a .title::after {
    background-image: url(/wp-content/uploads/2025/04/arrow-hta.png);
  }
}
@media (max-width: 800px) {
  .bot-section .box.gourmet a {
    border: 2px solid #f44527;
    position: relative;
  }
}
.bot-section .box.gourmet a .title {
  color: #f44527;
}
.bot-section .box.gourmet a .title::after {
  background-image: url(/wp-content/uploads/2025/04/btn-gm.png);
}
@media (max-width: 800px) {
  .bot-section .box.gourmet a .title::after {
    background-image: url(/wp-content/uploads/2025/04/arrow-htg.png);
  }
}
@media (max-width: 800px) {
  .bot-section .box.explore a {
    border: 2px solid #be7ee0;
    position: relative;
  }
}
.bot-section .box.explore a .title {
  color: #be7ee0;
}
.bot-section .box.explore a .title::after {
  background-image: url(/wp-content/uploads/2025/04/btn-ep.png);
}
@media (max-width: 800px) {
  .bot-section .box.explore a .title::after {
    background-image: url(/wp-content/uploads/2025/04/arrow-hte.png);
  }
}

.single-wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 800px) {
  .single-wrap {
    padding: 60px 3%;
  }
}
.single-wrap .inner {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .single-wrap .inner {
    width: 100%;
  }
}
.single-wrap .inner .date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .single-wrap .inner .date {
    font-size: 12px;
  }
}
.single-wrap .inner .date::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(/wp-content/uploads/2025/03/senimg04.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.single-wrap .inner .title {
  font-size: 32px;
  letter-spacing: 0.09em;
  line-height: 46px;
  margin-bottom: 40px;
  padding-bottom: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px dotted #e4e8ea;
}
@media (max-width: 800px) {
  .single-wrap .inner .title {
    font-size: 20px;
    font-weight: bold;
  }
}
.single-wrap .inner .image {
  width: 100%;
  margin-bottom: 40px;
}
.single-wrap .inner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.single-wrap .inner .content p * {
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .single-wrap .inner .content p * {
    font-size: 14px;
  }
}
.single-wrap .inner .content h1,
.single-wrap .inner .content h2 {
  margin: 40px 0 20px 0;
}
.single-wrap .inner .content h1 {
  padding-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #1cc8dd;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 800px) {
  .single-wrap .inner .content h1 {
    font-size: 18px;
  }
}
.single-wrap .inner .content h1::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/uploads/2025/03/senimg04.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.single-wrap .inner .content h2 {
  color: #1cc8dd;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .single-wrap .inner .content h2 {
    font-size: 16px;
  }
}
.single-wrap .inner .content a span {
  text-decoration: underline;
  word-break: break-all;
}
.single-wrap .inner .back-btn {
  display: none;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .single-wrap .inner .back-btn {
    display: block;
  }
}
.single-wrap .inner .back-btn a {
  display: block;
  color: #1cc8dd;
  text-align: center;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e4e8ea;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.single-wrap .inner .back-btn a .arrow {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 7.2px;
  height: 12.6px;
}
.single-wrap .inner .back-btn a .arrow::before, .single-wrap .inner .back-btn a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 9.4px;
  height: 2px;
  border-radius: 9999px;
  background-color: #1cc8dd;
  -webkit-transform-origin: 1px 50%;
          transform-origin: 1px 50%;
}
.single-wrap .inner .back-btn a .arrow::before {
  -webkit-transform: rotate(53.35deg);
          transform: rotate(53.35deg);
}
.single-wrap .inner .back-btn a .arrow::after {
  -webkit-transform: rotate(-53.35deg);
          transform: rotate(-53.35deg);
}
.single-wrap .bot-section {
  display: none;
}
@media (max-width: 800px) {
  .single-wrap .bot-section {
    display: block;
    padding: 50px 3% 60px 3%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(80%, rgb(240, 249, 250)));
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(240, 249, 250) 80%);
  }
}