@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:root {
  --color-text: #252424;
  --color-bg: #151516;
  --color-contentsbg: #E7E4E2;
  --color-primary: #EE462C;
  --color-secondary: #238AFF;
  --color-white: #FFF;
  --color-black: #000;
  --font-size-large: 25px;
  --font-size-base: 21px;
  --font-size-small: 18px;
}

html {
  scroll-behavior: auto;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  color: var(--color-white);
  background-color: var(--color-bg);
}

body {
  overflow-x: hidden;
  width: 100%;
  margin-inline: auto;
}
body.fixed {
  position: fixed;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

@media (769px <= width) {
  .dp_sp {
    display: none;
  }
}

@media (width <= 768px) {
  .dp_pc {
    display: none;
  }
}

body {
  margin-top: 120px;
}
@media (max-width: 768px) {
  body {
    margin-top: 100px;
  }
}

.header {
  width: 100%;
  background: #fff;
  color: var(--color-text);
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
}
.header__wrap {
  max-width: 1920px;
  width: 90%;
  margin-inline: auto;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__wrap__logo {
  width: 89px;
  height: 91px;
}
.header__wrap__logo img {
  width: 100%;
}
.header__wrap__nav {
  display: flex;
  align-items: center;
}
.header__wrap__nav ul {
  display: flex;
}
.header__wrap__nav ul li a {
  font-size: 18px;
  text-align: center;
  display: block;
  font-weight: 500;
  padding: 0 32px;
  border-right: 1px dashed #666;
  transition: 0.3s ease;
}
.header__wrap__nav ul li a:hover {
  color: #999;
}
.header__wrap__nav ul li a span {
  font-size: 14px;
  display: block;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.header__wrap__nav__tel {
  margin-left: 32px;
}
.header__wrap__nav__tel a {
  color: var(--color-white);
  text-decoration: underline;
}
.header__wrap__nav__tel br {
  display: none;
}
.header__wrap__nav__tel small {
  display: none;
}
.header__wrap__nav__close {
  display: none;
}
.header__wrap__toggle {
  display: none;
}

@media (max-width: 1024px) {
  .header__wrap__nav ul li a {
    font-size: 16px;
    padding: 0 16px;
  }
  .header__wrap__nav ul li a span {
    font-size: 12px;
  }
  .header__wrap__nav__tel br {
    display: block;
  }
}
@media (max-width: 768px) {
  .header__wrap {
    width: 90%;
    height: 100px;
    position: relative;
  }
  .header__wrap__logo {
    width: 80px;
    height: 80px;
  }
  .header__wrap__logo img {
    width: 100%;
  }
  .header__wrap__nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    background: #151516;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow-y: auto;
    gap: 16px;
    transition: 0.5s;
    transform: translateY(-100%);
  }
  .header__wrap__nav.open {
    transform: translateY(0);
  }
  .header__wrap__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-inline: auto;
    margin-top: min(160px, 20.8333333333vw);
  }
  .header__wrap__nav ul li {
    width: 100%;
  }
  .header__wrap__nav ul li a {
    color: var(--color-white);
    border-right: none;
    border-bottom: 1px dashed var(--color-white);
    width: 100%;
    padding: 8vw 0 5vw;
    font-size: 18px;
    padding-right: 0;
    margin-right: 0;
    position: relative;
  }
  .header__wrap__nav ul li a::before {
    content: "";
    position: absolute;
    top: 5vw;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
  }
  .header__wrap__nav ul li a span {
    font-size: 14px;
  }
  .header__wrap__nav__tel {
    color: var(--color-white);
    margin-left: 5%;
    padding: 24px 0;
    text-align: center;
    width: 90%;
    border-top: 1px solid #fff;
  }
  .header__wrap__nav__tel br {
    display: none;
  }
  .header__wrap__nav__tel small {
    display: block;
    color: var(--color-white);
    text-align: center;
    width: 100;
    z-index: 1;
    letter-spacing: 0.1em;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #fff;
  }
  .header__wrap__nav__tel small br {
    display: none;
  }
  .header__wrap__nav__close {
    position: absolute;
    display: block;
    top: 2%;
    right: 3%;
    width: min(92px, 100vw * 92 / 768);
    cursor: pointer;
    z-index: 100;
  }
  .header__wrap__toggle {
    display: block;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: min(60px, 9.1145833333vw);
    height: min(40px, 7.03125vw);
  }
  .header__wrap__toggle span {
    position: absolute;
    height: 1px;
    right: 0;
    transition: 0.3s;
    border-top: 1px solid var(--color-text);
  }
  .header__wrap__toggle span:nth-child(1) {
    width: 100%;
    top: 0;
  }
  .header__wrap__toggle span:nth-child(2) {
    width: 100%;
    top: calc(50% - 1px);
    border-top: 1px dashed var(--color-text);
  }
  .header__wrap__toggle span:nth-child(3) {
    width: 100%;
    bottom: 0;
    border-top: 1px dashed var(--color-text);
  }
}
.top__head {
  background: var(--color-bg) url("/assets/img/top/head_bg_pc.png") bottom center/min(1920px, 160vw) auto no-repeat;
  text-align: center;
  position: relative;
  padding-bottom: min(272px, 14.1666666667vw);
}
.top__head picture {
  max-width: 1920px;
  display: block;
  margin-inline: auto;
}
.top__head h2 {
  font-size: 30px;
  font-weight: 500;
  padding: 0 5%;
  margin-top: min(520px, 27.0833333333vw);
}
.top__head h2 strong {
  display: block;
  font-weight: 600;
  font-size: 70px;
  letter-spacing: 0.2em;
  margin: 80px 0;
}
.top__head p {
  font-size: 25px;
  line-height: 4;
}
.top__head__seekbar {
  position: absolute;
  top: min(1100px, 57.2916666667vw);
  left: calc(50% - 60px);
  transform: translateX(-50%) translateY(-50%);
  width: 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top__head__seekbar__txt {
  transform: rotate(90deg);
  display: block;
  letter-spacing: 0.2em;
  font-size: 18px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__head__seekbar__bar {
  position: relative;
  width: 5px;
  height: min(400px, 100vw * 400 / 1920);
  display: block;
}
.top__head__seekbar__bar::before, .top__head__seekbar__bar::after {
  content: "";
  position: absolute;
  display: block;
  background: var(--color-white);
}
.top__head__seekbar__bar::before {
  left: calc(50% - 3px);
  width: 1px;
  height: min(400px, 100vw * 400 / 1920);
}
.top__head__seekbar__bar::after {
  left: calc(50% - 5px);
  width: 5px;
  height: min(100px, 5.2083333333vw);
  top: 0;
  transition: seekbar 0.1s linear;
  top: calc((100% - 60px) * var(--progress));
}
.top__contents {
  background: var(--color-contentsbg);
  color: var(--color-text);
  overflow: hidden;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
.top__contents h3 {
  font-size: 48px;
  margin-bottom: 80px;
  font-weight: 500;
  display: flex;
  flex-direction: column-reverse;
  letter-spacing: 0.05em;
  line-height: 1;
}
.top__contents h3 span {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.top__contents h3 span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-right: 8px;
}
.top__contents__item {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  padding: min(200px, 12.5vw) 0;
  position: relative;
}
.top__contents__item.pb0 {
  padding-bottom: 0 !important;
}
.top__contents__item__wrap {
  max-width: 1200px;
  margin-inline: auto;
  width: 90%;
  position: relative;
  z-index: 1;
}
.top__contents__item__img_block {
  display: flex;
  align-items: flex-start;
  gap: 4.761%;
}
.top__contents__item__img_block picture {
  width: 42.301%;
}
.top__contents__item__img_block__txt {
  width: 52.938%;
}
.top__contents__item__img_block__txt p + p {
  padding-top: 48px;
}
.top__contents__item__img_block__txt p strong {
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 500;
}
.top__contents__item p {
  font-size: 18px;
  line-height: 2;
}
.top__contents__item .img_picture {
  margin-top: 160px;
  display: block;
  position: relative;
}
.top__contents__item .top_bg_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.top__contents__item .top_bg_01::before, .top__contents__item .top_bg_01::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
}
.top__contents__item .top_bg_01::before {
  background: url("/assets/img/top/statement_bg_01.png") center/contain no-repeat;
  top: 0;
  right: -4%;
  width: min(762px, 47.625vw);
  height: min(751px, 46.9375vw);
}
.top__contents__item .top_bg_01::after {
  background: url("/assets/img/top/statement_bg_02.png") center/contain no-repeat;
  bottom: 0;
  left: -5%;
  width: min(554px, 34.625vw);
  height: min(307px, 19.1875vw);
}
.top__contents__item .top_bg_02 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.top__contents__item .top_bg_02::before, .top__contents__item .top_bg_02::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
}
.top__contents__item .top_bg_02::before {
  background: url("/assets/img/top/cuisine_bg_01.png") center/contain no-repeat;
  top: 2%;
  right: -4%;
  width: min(504px, 31.5vw);
  height: min(503px, 31.4375vw);
}
.top__contents__item .top_bg_02::after {
  background: url("/assets/img/top/cuisine_bg_02.png") center/contain no-repeat;
  bottom: 2%;
  left: 2%;
  width: min(431px, 26.9375vw);
  height: min(436px, 27.25vw);
}
.top__contents__item .top_bg_03 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.top__contents__item .top_bg_03::before, .top__contents__item .top_bg_03::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
}
.top__contents__item .top_bg_03::before {
  background: url("/assets/img/top/design_bg_01.png") center/contain no-repeat;
  top: 2%;
  right: -15%;
  width: min(760px, 47.5vw);
  height: min(613px, 38.3125vw);
}
.top__contents__item .top_bg_03::after {
  background: url("/assets/img/top/design_bg_02.png") center/contain no-repeat;
  bottom: 2%;
  left: -8%;
  width: min(434px, 27.125vw);
  height: min(375px, 23.4375vw);
}
.top__contents__item .top_bg_03 .top__contents__item__wrap::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  background: url("/assets/img/top/design_bg_03.png") center/contain no-repeat;
  top: 80%;
  left: 90%;
  width: min(324px, 20.25vw);
  height: min(280px, 17.5vw);
}
.top__contents .splide {
  margin-top: 120px;
  position: relative;
  max-width: 1920px;
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  padding-bottom: 120px;
  margin-bottom: min(200px, 12.5vw);
}
.top__contents .splide__track {
  overflow: visible;
}
.top__contents .splide__slide {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.top__contents .splide__slide img {
  transition: 0.3s;
  box-sizing: border-box;
  display: block;
  padding: 10%;
}
.top__contents .splide__slide.is-active img {
  width: 100%;
  padding: 0;
  transform: scale(1.1);
}
.top__contents .splide__slide.is-active + li img {
  margin-left: 13%;
}
.top__contents .splide__slide:has(+ .is-active) img {
  margin-right: 13%;
}
.top__contents .splide__arrows {
  position: absolute;
  background: #c00;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 1;
}
.top__contents .splide__arrows button {
  background: url("/assets/img/common/cursor.svg") center/16px auto no-repeat;
  border: 1px solid var(--color-text);
  width: 58px;
  height: 58px;
  transform: rotate(0deg);
  transition: 0.3s ease;
}
.top__contents .splide__arrows button svg {
  display: none;
}
.top__contents .splide__arrows button.splide__arrow--prev {
  transform: rotate(180deg);
}
.top__contents .splide__arrows button:hover {
  background-color: #999;
}
.top__contents hr {
  position: relative;
  border: none;
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  display: block;
  background: url("/assets/img/top/contents_br.png") center left/1260px auto no-repeat;
  height: 10px;
}

@media (max-width: 768px) {
  .top__head {
    background: var(--color-bg) url("/assets/img/top/head_bg_pc.png") bottom center/min(1920px, 250vw) auto no-repeat;
    padding-bottom: min(200px, 26.0416666667vw);
  }
  .top__head h2 {
    font-size: min(30px, 100vw * 30 / 768);
    line-height: 2;
    margin-top: min(340px, 100vw * 340 / 768);
  }
  .top__head h2 strong {
    font-size: min(65px, 100vw * 65 / 768);
    margin: min(50px, 100vw * 50 / 768) 0;
  }
  .top__head p {
    font-size: min(30px, 100vw * 30 / 768);
    width: 80%;
    margin-inline: auto;
  }
  .top__head__seekbar {
    top: min(1450px, 188.8020833333vw);
  }
  .top__head__seekbar__txt {
    font-size: 14px;
  }
  .top__head__seekbar__bar {
    position: relative;
    width: 5px;
    height: min(300px, 39.0625vw);
    display: block;
  }
  .top__head__seekbar__bar::before {
    height: min(300px, 39.0625vw);
  }
  .top__head__seekbar__bar::after {
    left: calc(50% - 5px);
    width: 5px;
    height: min(80px, 10.4166666667vw);
    top: calc((100% - min(80px, 10.4166666667vw)) * var(--progress));
  }
  .top__contents h3 {
    font-size: min(56px, 100vw * 56 / 768);
    margin-bottom: min(80px, 100vw * 80 / 768);
  }
  .top__contents h3 span {
    font-size: min(22px, 100vw * 22 / 768);
  }
  .top__contents h3 span::before {
    margin-bottom: 0.5%;
    content: "";
    width: min(6px, 100vw * 6 / 768);
    height: min(6px, 100vw * 6 / 768);
  }
  .top__contents__item {
    padding: min(200px, 26.0416666667vw) 0;
  }
  .top__contents__item__img_block {
    flex-direction: column-reverse;
    gap: min(64px, 100vw * 64 / 768);
  }
  .top__contents__item__img_block picture {
    width: 100%;
  }
  .top__contents__item__img_block__txt {
    width: 100%;
  }
  .top__contents__item__img_block__txt p + p {
    padding-top: min(48px, 100vw * 48 / 768);
  }
  .top__contents__item__img_block__txt p strong {
    font-size: min(32px, 100vw * 32 / 768);
  }
  .top__contents__item p {
    font-size: min(25px, 100vw * 25 / 768);
    line-height: 2.4;
  }
  .top__contents__item .img_picture {
    margin-top: min(160px, 100vw * 160 / 768);
  }
  .top__contents__item .top_bg_01::before {
    top: -10%;
    right: -40%;
    width: min(762px, 99.21875vw);
    height: min(751px, 97.7864583333vw);
  }
  .top__contents__item .top_bg_01::after {
    left: -40%;
    width: min(554px, 72.1354166667vw);
    height: min(307px, 39.9739583333vw);
  }
  .top__contents__item .top_bg_02::before {
    background: url("/assets/img/top/cuisine_bg_01.png") center/contain no-repeat;
    top: -10%;
    right: -10%;
    width: min(504px, 65.625vw);
    height: min(503px, 65.4947916667vw);
  }
  .top__contents__item .top_bg_02::after {
    bottom: 0;
    left: -30%;
    width: min(431px, 56.1197916667vw);
    height: min(436px, 56.7708333333vw);
  }
  .top__contents__item .top_bg_03::before {
    top: -5%;
    right: -40%;
    width: min(760px, 95vw);
    height: min(613px, 76.625vw);
  }
  .top__contents__item .top_bg_03::after {
    bottom: 2%;
    left: -30%;
    width: min(434px, 56.5104166667vw);
    height: min(375px, 48.828125vw);
  }
  .top__contents__item .top_bg_03 .top__contents__item__wrap::before {
    display: none;
  }
  .top__contents .splide {
    margin-top: min(120px, 100vw * 120 / 768);
    padding-bottom: 0;
  }
  .top__contents .splide__arrows {
    display: none;
  }
}
.footer {
  background: #151516;
  padding-top: 50px;
  position: relative;
}
.footer__wrap {
  max-width: 1200px;
  width: 95%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  margin: 32px 0;
  margin-inline: auto;
}
.footer__wrap__logo a {
  width: 160px;
  height: 160px;
  display: block;
  background: #fff;
  -webkit-mask-image: url("/assets/img/common/logo.svg");
  mask-image: url("/assets/img/common/logo.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer__wrap__info {
  margin-left: 5%;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 5%;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  width: calc(100% - 160px);
  gap: 7%;
}
.footer__wrap__info__access {
  width: 45%;
  font-size: 16px;
  line-height: 1.8;
}
.footer__wrap__info__access strong {
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
}
.footer__wrap__info__access__tel {
  max-width: 422px;
  margin: 16px 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid #fff;
  line-height: 1;
}
.footer__wrap__info__access__tel a {
  color: var(--color-white);
  text-decoration: underline;
}
.footer__wrap__info__nav {
  width: 48%;
}
.footer__wrap__info__nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 5%;
}
.footer__wrap__info__nav ul li {
  width: 47.5%;
}
.footer__wrap__info__nav ul li a {
  display: block;
  color: var(--color-white);
  text-align: center;
  transition: 0.3s ease;
  font-size: 24px;
}
.footer__wrap__info__nav ul li a span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}
.footer__wrap__info__nav ul li a:hover {
  color: #666;
}
.footer::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.footer small {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 24px;
  border-top: 1px solid #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    border-top: 1px solid var(--color-white);
    padding-top: 0;
  }
  .footer__wrap {
    width: 90%;
    margin: 0;
    flex-direction: column;
    padding-top: min(40px, 100vw * 40 / 768);
    margin-inline: auto;
  }
  .footer__wrap__logo a {
    width: min(160px, 100vw * 160 / 768);
    height: min(160px, 100vw * 160 / 768);
    margin-inline: auto;
    margin-bottom: min(40px, 100vw * 40 / 768);
  }
  .footer__wrap__info {
    margin-left: 0;
    border-left: 0;
    width: 100%;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    gap: 0;
  }
  .footer__wrap__info__access {
    width: 100%;
    font-size: 14px;
    margin-top: min(60px, 100vw * 60 / 768);
    padding-top: min(48px, 100vw * 48 / 768);
    padding-bottom: min(48px, 100vw * 48 / 768);
    border-top: 1px solid #fff;
  }
  .footer__wrap__info__access strong {
    display: block;
    margin-bottom: 24px;
  }
  .footer__wrap__info__nav {
    width: 100%;
  }
  .footer__wrap__info__nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 5%;
  }
  .footer__wrap__info__nav ul li {
    width: 100%;
  }
  .footer__wrap__info__nav ul li a {
    font-size: 18px;
    position: relative;
    padding-top: 12px;
    margin-top: 8px;
  }
  .footer__wrap__info__nav ul li a span {
    font-size: 12px;
  }
  .footer__wrap__info__nav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
  }
  .footer::after {
    display: none;
  }
  .footer small {
    width: 90%;
    margin-inline: auto;
  }
}
.sub__contents {
  padding: 200px 0;
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}
.sub__contents h1 {
  font-size: 48px;
  margin-bottom: 80px;
  font-weight: 500;
  display: flex;
  flex-direction: column-reverse;
  letter-spacing: 0.05em;
  line-height: 1;
}
.sub__contents h1 span {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.sub__contents h1 span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  margin-right: 8px;
}
.sub__contents p {
  font-size: 18px;
  line-height: 2;
}
.sub__contents p + p {
  margin-top: 32px;
}

.sub_main {
  overflow: hidden;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .sub__contents {
    padding: min(200px, 100vw * 200 / 768) 0;
  }
  .sub__contents h1 {
    font-size: min(56px, 100vw * 56 / 768);
    margin-bottom: min(80px, 100vw * 80 / 768);
  }
  .sub__contents h1 span {
    font-size: min(22px, 100vw * 22 / 768);
  }
  .sub__contents h1 span::before {
    margin-bottom: 0.5%;
    content: "";
    width: min(6px, 100vw * 6 / 768);
    height: min(6px, 100vw * 6 / 768);
  }
  .sub__contents p {
    font-size: min(25px, 100vw * 25 / 768);
    line-height: 2.4;
  }
  .sub__contents p + p {
    margin-top: min(32px, 100vw * 32 / 768);
  }
}
.toppicks {
  position: relative;
}
.toppicks__bg1, .toppicks__bg2, .toppicks__bg3, .toppicks__bg4 {
  position: absolute;
  display: block;
  background: url("/assets/img/toppicks/icn_bg.svg") center/contain no-repeat;
  z-index: -1;
}
.toppicks__bg1 {
  width: min(769px, 100vw * 769 / 1200);
  height: min(425px, 100vw * 425 / 1200);
  top: 2%;
  right: -20%;
}
.toppicks__bg2 {
  width: min(479px, 100vw * 479 / 1200);
  height: min(265px, 100vw * 265 / 1200);
  top: 45%;
  right: -10%;
}
.toppicks__bg3 {
  width: min(708px, 100vw * 708 / 1200);
  height: min(392px, 100vw * 392 / 1200);
  top: 68%;
  left: -30%;
}
.toppicks__bg4 {
  width: min(479px, 100vw * 479 / 1200);
  height: min(265px, 100vw * 265 / 1200);
  bottom: 7%;
  right: -10%;
}
.toppicks__menu ul {
  display: flex;
  justify-content: space-between;
}
.toppicks__menu ul li {
  width: 32%;
  margin-top: 120px;
}
.toppicks__menu ul li span {
  font-size: 18px;
  display: block;
  text-align: center;
  padding: 16px 0;
}
.toppicks__menu ul li small {
  font-size: 16px;
  display: block;
  text-align: center;
  padding: 16px 0 0;
  border-top: 1px dashed var(--color-white);
}
.toppicks__plan {
  margin-top: 160px;
  text-align: center;
  border-bottom: 1px dashed var(--color-white);
  padding: 0 0 80px;
}
.toppicks__plan h2 {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: block;
}
.toppicks__plan h2::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  border-bottom: 1px dashed var(--color-white);
}
.toppicks__plan h2::after {
  content: "";
  width: 280px;
  height: 10px;
  background: var(--color-white);
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--color-bg);
}
.toppicks__plan__price {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.toppicks__plan__price__frame01 {
  font-size: 18px;
  color: var(--color-secondary);
  padding: 4px 24px;
  background: #D9D9D9;
  border-radius: 120px;
  margin-right: 16px;
}
.toppicks__plan__price__frame02 {
  font-size: 48px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-right: 4px;
}
.toppicks__plan__price__frame03 {
  font-size: 30px;
  font-weight: 500;
  align-self: flex-end;
  margin-right: 4px;
  padding-bottom: 8px;
}
.toppicks__plan__price__frame04 {
  font-size: 18px;
  font-weight: 400;
  align-self: flex-end;
  margin-right: 4px;
  padding-bottom: 8px;
}
.toppicks__plan small {
  display: block;
  font-size: 14px;
  margin-top: 32px;
  color: #999;
}
.toppicks__drink {
  margin-top: 160px;
  padding: 0 0 80px;
  display: flex;
  align-items: center;
  gap: 10%;
}
.toppicks__drink__img {
  width: 45%;
}
.toppicks__drink__txt {
  width: 45%;
}
.toppicks__drink__txt h2 {
  font-size: 40px;
  font-weight: 400;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed var(--color-white);
}
.toppicks__drink__txt small {
  display: block;
  color: #999;
  padding-top: 32px;
}
.toppicks__food {
  margin-top: 80px;
  padding: 0 0 80px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10%;
}
.toppicks__food__img {
  width: 45%;
}
.toppicks__food__txt {
  width: 45%;
}
.toppicks__food__txt h2 {
  font-size: 40px;
  font-weight: 400;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed var(--color-white);
}
.toppicks__food__txt small {
  display: block;
  color: #999;
  padding-top: 32px;
  line-height: 2;
}
.toppicks__course {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.toppicks__course__block {
  width: 47%;
}
.toppicks__course__block h2 {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.toppicks__course__block h2::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  border-bottom: 1px dashed var(--color-white);
}
.toppicks__course__block h2::after {
  content: "";
  max-width: 280px;
  width: 100%;
  height: 10px;
  background: var(--color-white);
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--color-bg);
}
.toppicks__course__block p {
  margin-top: 32px;
}
.toppicks__btn {
  margin-top: 120px;
  margin-inline: auto;
}
.toppicks__btn a {
  width: 500px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 24px;
  border: 1px solid var(--color-white);
  border-radius: 80px;
  margin-inline: auto;
  transition: 0.3s;
}
.toppicks__btn a:hover {
  background: var(--color-white);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .toppicks__bg1 {
    width: min(769px, 100vw * 769 / 1200);
    height: min(425px, 100vw * 425 / 1200);
    top: 2%;
    right: -25%;
  }
  .toppicks__bg2 {
    width: min(479px, 100vw * 479 / 1000);
    height: min(265px, 100vw * 265 / 1000);
    top: 41.5%;
    right: -15%;
  }
  .toppicks__bg3 {
    width: min(479px, 100vw * 479 / 1000);
    height: min(265px, 100vw * 265 / 1000);
    top: 50.2%;
    left: auto;
    right: -20%;
  }
  .toppicks__bg4 {
    width: min(479px, 100vw * 479 / 1000);
    height: min(265px, 100vw * 265 / 1000);
    bottom: 4%;
    right: -15%;
  }
  .toppicks__menu ul {
    flex-wrap: wrap;
  }
  .toppicks__menu ul li {
    width: 100%;
    margin-top: min(120px, 100vw * 120 / 768);
  }
  .toppicks__menu ul li span {
    font-size: min(25px, 100vw * 25 / 768);
    line-height: 2.4;
    padding: min(16px, 100vw * 16 / 768) 0;
  }
  .toppicks__menu ul li small {
    font-size: min(21px, 100vw * 21 / 768);
    padding: min(16px, 100vw * 16 / 768) 0 0;
  }
  .toppicks__plan {
    margin-top: min(160px, 100vw * 160 / 768);
    padding: 0 0 min(80px, 100vw * 80 / 768);
  }
  .toppicks__plan h2 {
    font-size: min(40px, 100vw * 40 / 768);
  }
  .toppicks__plan h2::after {
    width: 50%;
  }
  .toppicks__plan__price {
    padding-top: min(80px, 100vw * 80 / 768);
  }
  .toppicks__plan__price__frame01 {
    font-size: min(25px, 100vw * 25 / 768);
    padding: 4px min(24px, 100vw * 24 / 768);
    margin-right: min(24px, 100vw * 24 / 768);
  }
  .toppicks__plan__price__frame02 {
    font-size: min(48px, 100vw * 48 / 768);
  }
  .toppicks__plan__price__frame03 {
    font-size: min(30px, 100vw * 30 / 768);
    padding-bottom: min(8px, 100vw * 8 / 768);
  }
  .toppicks__plan__price__frame04 {
    font-size: min(25px, 100vw * 25 / 768);
    padding-bottom: min(8px, 100vw * 8 / 768);
  }
  .toppicks__plan small {
    font-size: min(20px, 100vw * 20 / 768);
    margin-top: min(32px, 100vw * 32 / 768);
    line-height: 2;
  }
  .toppicks__drink, .toppicks__food {
    margin-top: min(160px, 100vw * 160 / 768);
    padding: 0 0 min(80px, 100vw * 80 / 768);
    gap: 0;
    flex-direction: column;
  }
  .toppicks__drink__img, .toppicks__food__img {
    width: 100%;
  }
  .toppicks__drink__txt, .toppicks__food__txt {
    width: 100%;
  }
  .toppicks__drink__txt h2, .toppicks__food__txt h2 {
    font-size: min(40px, 100vw * 40 / 768);
    padding-bottom: min(24px, 100vw * 24 / 768);
    margin-bottom: min(24px, 100vw * 24 / 768);
    text-align: center;
  }
  .toppicks__drink__txt p, .toppicks__food__txt p {
    padding-top: min(32px, 100vw * 32 / 768);
  }
  .toppicks__drink__txt small, .toppicks__food__txt small {
    padding-top: min(32px, 100vw * 32 / 768);
  }
  .toppicks__food {
    margin-top: min(80px, 100vw * 80 / 768);
  }
  .toppicks__course {
    margin-top: min(80px, 100vw * 80 / 768);
    flex-direction: column;
    gap: min(120px, 100vw * 120 / 768);
  }
  .toppicks__course__block {
    width: 100%;
  }
  .toppicks__course__block h2 {
    font-size: min(32px, 100vw * 32 / 768);
    margin-bottom: min(32px, 100vw * 32 / 768);
  }
  .toppicks__course__block h2::after {
    max-width: 340px;
    width: 55%;
  }
  .toppicks__course__block p {
    margin-top: min(32px, 100vw * 32 / 768);
  }
  .toppicks__btn {
    margin-top: min(120px, 100vw * 120 / 768);
  }
  .toppicks__btn a {
    width: min(500px, 100vw * 500 / 768);
    height: min(100px, 100vw * 100 / 768);
    text-align: center;
    font-size: min(25px, 100vw * 25 / 768);
  }
}
.news__bg1 {
  position: absolute;
  display: block;
  background: url("/assets/img/news/icn_bg.png") center/contain no-repeat;
  z-index: -1;
  width: min(426px, 100vw * 426 / 1200);
  height: min(428px, 100vw * 428 / 1200);
  top: 16%;
  right: 3%;
}
.news ul {
  border-top: 1px dashed var(--color-white);
}
.news ul li {
  position: relative;
  line-height: 2;
  font-size: 16px;
  border-bottom: 1px dashed var(--color-white);
  padding: 40px 0 40px 100px;
}
.news ul li span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 768px) {
  .news__bg1 {
    width: min(426px, 100vw * 426 / 768);
    height: min(428px, 100vw * 428 / 768);
    top: 15%;
    right: -1%;
  }
  .news ul li {
    font-size: min(25px, 100vw * 25 / 768);
    border-bottom: 1px dashed var(--color-white);
    padding: min(48px, 100vw * 48 / 768) 0 min(40px, 100vw * 40 / 768) 0;
  }
  .news ul li span {
    position: relative;
    display: block;
    top: auto;
    margin-bottom: 4px;
    transform: translateY(0);
    font-size: min(25px, 100vw * 25 / 768);
  }
}
.access__bg1 {
  position: absolute;
  display: block;
  background: url("/assets/img/access/icn_bg.png") center/contain no-repeat;
  z-index: -1;
  width: min(634px, 100vw * 634 / 1200);
  height: min(506px, 100vw * 506 / 1200);
  top: 16%;
  right: -8%;
}
.access h2 {
  font-size: 28px;
  border-bottom: 1px dashed var(--color-white);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.access__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.access__info__map {
  width: 48%;
}
.access__info__map iframe {
  aspect-ratio: 4/3;
  width: 100%;
}
.access__info__txt {
  width: 48%;
}
.access__info__txt ul {
  font-size: 18px;
  line-height: 2;
  margin-top: 40px;
}
.access__info__txt ul li {
  position: relative;
  padding-left: 120px;
}
.access__info__txt ul li::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100px;
  display: block;
  background: var(--color-white);
}
.access__info__txt ul li span {
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.access__info__txt ul li span.tel {
  letter-spacing: 1em;
}
.access__info__txt ul li + li {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .access__bg1 {
    width: min(634px, 100vw * 634 / 768);
    height: min(506px, 100vw * 506 / 768);
    top: 14%;
    right: -28%;
  }
  .access h2 {
    font-size: min(34px, 100vw * 34 / 768);
    padding-bottom: min(16px, 100vw * 16 / 768);
    margin-bottom: min(16px, 100vw * 16 / 768);
  }
  .access__info {
    flex-direction: column-reverse;
    margin-top: min(40px, 100vw * 40 / 768);
  }
  .access__info__map {
    width: 100%;
    margin-top: min(64px, 100vw * 64 / 768);
  }
  .access__info__txt {
    width: 100%;
  }
  .access__info__txt ul {
    font-size: min(25px, 100vw * 25 / 768);
    margin-top: min(40px, 100vw * 40 / 768);
  }
  .access__info__txt ul li {
    padding-left: min(160px, 100vw * 160 / 768);
  }
  .access__info__txt ul li::after {
    left: min(130px, 100vw * 130 / 768);
  }
  .access__info__txt ul li + li {
    margin-top: min(40px, 100vw * 40 / 768);
  }
}