*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

ul, li {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

html, body {
  height: 100%;
  min-height: 100dvh;
}

body {
  font-family: "Noto Sans Thai", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

a {
  transition: opacity 0.3s ease;
  color: #333333;
}
a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.75;
}

.thai-header {
  background-color: #28284F;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
}

.thai-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Chonburi", cursive;
}

.thai-header__logo {
  width: 70px;
}

.header__logo {
  width: 100%;
  height: auto;
}

.thai-header__content {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .thai-header__content {
    gap: 16px;
    font-size: 0.875rem;
  }
}

.thai-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .thai-header__actions {
    gap: 16px;
  }
}

.thai-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .thai-nav__list {
    gap: 16px;
  }
}

.thai-nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.thai-lang__select {
  padding: 8px 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.thai-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #fff;
  color: #28284F;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.thai-contact__icon {
  font-size: 16px;
}

.thai-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 12px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .thai-hamburger {
    display: block;
  }
}

.thai-hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 12px;
  transition: transform 0.3s ease;
}

.thai-hamburger__line:nth-child(1) {
  top: 16px;
}

.thai-hamburger__line:nth-child(2) {
  top: 22px;
}

.thai-hamburger__line:nth-child(3) {
  top: 28px;
}

.thai-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 315px;
  height: 100vh;
  background-color: #28284F;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding-top: 64px;
  display: none;
}
@media screen and (max-width: 768px) {
  .thai-drawer {
    display: block;
  }
}

.thai-drawer.is-active {
  transform: translateX(0);
}

.thai-drawer__content {
  padding: 40px 20px 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #F6F6F6;
}

.thai-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.thai-drawer__link {
  color: #333333;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Chonburi", cursive;
}

.thai-drawer__contact {
  font-family: "Chonburi", cursive;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #ffffff;
  color: #333333;
  text-decoration: none;
  border: 2px solid #333333;
  border-radius: 5px;
}

.thai-hamburger.is-active .thai-hamburger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.thai-hamburger.is-active .thai-hamburger__line:nth-child(2) {
  opacity: 0;
}

.thai-hamburger.is-active .thai-hamburger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .thai-nav {
    display: none;
  }
  .thai-contact {
    display: none;
  }
}
.thai-drawer__close,
.thai-drawer__close-line,
.thai-drawer__lang {
  display: none;
}

.thai-drawer__link.is-active {
  color: #F3962E;
}

.footer {
  background-color: #1E1B38;
  color: #fff;
  padding: 40px 0 20px;
}

.footer__info {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    margin-bottom: 24px;
    flex-direction: column;
    gap: 24px;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__logo img {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    flex-direction: column;
    text-align: center;
  }
}

.footer-company__name {
  font-size: 22px;
  font-family: "Chonburi", cursive;
}

.footer__address {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: left;
  }
}

.footer__map {
  width: 470px;
}
.footer__map iframe {
  width: 100%;
  height: 260px;
}
@media screen and (max-width: 768px) {
  .footer__map {
    width: 100%;
  }
  .footer__map iframe {
    width: 100%;
    height: 185px;
  }
}

.footer__menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: "Chonburi", cursive;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    text-align: center;
  }
}
.footer__menu a {
  color: #ffffff;
  text-decoration: none;
}

.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
}

.l-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-section, .l-section--gray {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .l-section, .l-section--gray {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.l-section--gray {
  background-color: #F6F6F6;
}

.subpage {
  padding-top: 90px;
}

.u-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 80px;
  background-color: #201E47;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Chonburi", cursive;
  font-size: 1.25rem;
  position: relative;
}
@media screen and (max-width: 670px) {
  .u-button {
    min-width: 100%;
    font-size: 1.125rem;
    padding: 12px 40px;
  }
}
.u-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #F3962E;
  border-radius: 0 60% 60% 0;
}
.u-button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.u-button:hover::after {
  right: 20px;
}

.u-button--orange {
  background-color: #F3962E;
}

.u-button--navy {
  background-color: #201E47;
}

.contact {
  text-align: center;
}

.u-button__white, .koedoLink__button, .contact__button, .contact__button--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 480px;
  padding: 12px 80px;
  background-color: #ffffff;
  border: 2px solid #333333;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Chonburi", cursive;
  font-size: 1.25rem;
  position: relative;
}
@media screen and (max-width: 670px) {
  .u-button__white, .koedoLink__button, .contact__button, .contact__button--footer {
    min-width: 100%;
  }
}

.contact__button::before, .contact__button--footer::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-size: 1.5rem;
  margin-right: 4px;
}

.contact__button--footer {
  min-width: 363px;
  border: none;
}
@media screen and (max-width: 670px) {
  .contact__button--footer {
    min-width: 100%;
  }
}

.koedoLink__button {
  min-width: 408px;
  padding-left: 50px;
  padding-right: 50px;
}
.koedoLink__button::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.25rem;
  margin-left: 4px;
}
@media screen and (max-width: 670px) {
  .koedoLink__button {
    min-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.125rem;
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade--up {
  transform: translateY(30px);
}
.fade--down {
  transform: translateY(-30px);
}
.fade--left {
  transform: translateX(-30px);
}
.fade--right {
  transform: translateX(30px);
}

@media print {
  .fade {
    opacity: 1;
    transform: none;
  }
}
.page__header {
  position: relative;
  font-family: "Chonburi", cursive;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page__header {
    font-size: 2rem;
    text-align: center;
    flex-direction: column;
    margin-bottom: 64px;
  }
}

.page__header:after {
  content: "";
  display: block;
  margin-left: 12px;
  flex: 1;
  height: 1px;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .page__header:after {
    position: absolute;
    flex: auto;
    bottom: -30px;
    width: 1px;
    height: 40px;
  }
}

.project__header {
  position: relative;
  font-family: "Chonburi", cursive;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .project__header {
    text-align: left;
  }
}

.project__header:after {
  content: "";
  display: block;
  margin-left: 12px;
  flex: 1;
  height: 1px;
  background-color: #333333;
}

.color-orange {
  color: #F3962E;
}

.color-red {
  color: #d00300;
}

.section__title, .section__title--white {
  position: relative;
  font-family: "Chonburi", cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .section__title, .section__title--white {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

.section__title:after, .section__title--white:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: #333333;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.section__title--white {
  color: #ffffff;
}
.section__title--white:after {
  background-color: #ffffff;
}

.subpageHero {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .subpageHero {
    flex-direction: column-reverse;
    padding: 0;
  }
}

.subpageHero__img {
  min-width: 536px;
}
.subpageHero__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subpageHero__img {
    min-width: auto;
    width: 100%;
    padding-bottom: 24px;
  }
}

.breadcrumb {
  margin: 0 auto;
  max-width: 1080px;
  padding: 24px 40px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 16px 20px;
  }
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.table-list {
  background-color: #ffffff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .table-list {
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.table-list__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .table-list__item {
    flex-direction: column;
  }
}

.table-list__item dt {
  width: 200px;
  font-weight: bold;
  color: #F3962E;
  padding: 30px 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #F3962E;
}
@media screen and (max-width: 768px) {
  .table-list__item dt {
    width: 100%;
    padding: 8px 0;
  }
}

.table-list__item dd {
  flex: 1;
  padding: 24px 12px;
  line-height: 1.8;
  border-bottom: 2px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  .table-list__item dd {
    border-bottom: none;
    padding: 8px 0;
  }
}

.u-font-bold {
  font-weight: bold;
}

.thai-top {
  padding-top: 90px;
}

.hero__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.hero__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about {
  padding-bottom: 64px;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    gap: 64px;
  }
}

.about__title-main {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .about__title-main {
    font-size: 26px;
  }
}

.about__title-sub {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about__title-sub {
    font-size: 1.125rem;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .about__text {
    gap: 40px;
  }
}

.about__description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333333;
  font-family: "Noto Sans Thai", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__description {
    font-size: 1rem;
  }
}

.about__image {
  min-width: 348px;
}
@media screen and (max-width: 768px) {
  .about__image {
    width: 100%;
  }
}

.about__img {
  width: 100%;
  height: auto;
}

.project {
  padding-bottom: 64px;
}

.project__inner {
  display: flex;
  flex-direction: column;
}

.project__title {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  font-family: "Chonburi", cursive;
}

.project__content {
  display: flex;
  flex-direction: column;
}

.project__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 0px;
}
@media screen and (max-width: 768px) {
  .project__videos {
    grid-template-columns: 1fr;
  }
}

.project__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.project__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project__text {
  text-align: center;
}

.project__description {
  text-align: left;
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .project__description {
    font-size: 1rem;
  }
}

.project__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background-color: #201E47;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.project__button:hover {
  opacity: 0.8;
}

.shop__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 670px) {
  .shop__content {
    gap: 40px;
  }
}

.shop__item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 670px) {
  .shop__item {
    flex-direction: column;
    gap: 0;
  }
}

.shop__img {
  width: 460px;
  height: 294px;
}
@media screen and (max-width: 768px) {
  .shop__img {
    height: 400px;
  }
}
@media screen and (max-width: 670px) {
  .shop__img {
    width: 100%;
    height: 240px;
  }
}

.shop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop__text {
  padding: 24px 16px 24px 0;
}
@media screen and (max-width: 670px) {
  .shop__text {
    width: 100%;
    padding: 16px;
  }
}

.shop__title {
  font-size: 28px;
  font-family: "Chonburi", cursive;
  margin-bottom: 8px;
}
@media screen and (max-width: 670px) {
  .shop__title {
    font-size: 1.25rem;
  }
}

.shop__address {
  margin-bottom: 24px;
}

/* ABOUT */
.greeting__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  padding-right: 244px;
  position: relative;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .greeting__inner {
    flex-direction: column-reverse;
    padding: 0;
  }
}

.greeting__text {
  width: 716px;
  min-height: 600px;
  padding: 80px 120px 80px 24px;
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .greeting__text {
    width: 100%;
    padding: 80px 20px 20px 20px;
    min-height: auto;
  }
}

.greeting__text-main {
  font-size: 1.25rem;
  font-family: "Chonburi", cursive;
}

@media screen and (max-width: 768px) {
  .greeting.l-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.greeting__image {
  width: 348px;
  height: 464px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.greeting__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .greeting__image {
    position: inherit;
    padding: 0 20px;
    margin-top: -64px;
    top: 64px;
    right: 0;
    transform: none;
    width: 100%;
    height: 100%;
  }
}

/* KIOKE PROJECT PHOTO */
.gallery-main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 20px;
  position: relative;
}
.gallery-main .swiper-slide {
  width: 100%;
  aspect-ratio: 720/450;
}
.gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #F3962E;
  border-radius: 50%;
  z-index: 10;
}
.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
  font-size: 20px;
  color: #fff;
}
.gallery-main .swiper-button-prev {
  left: 20px;
}
.gallery-main .swiper-button-next {
  right: 20px;
}

.gallery-thumbs {
  max-width: 906px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 40px 24px;
  justify-content: space-between;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .gallery-thumbs {
    gap: 16px;
  }
}
.gallery-thumbs .gallery-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.gallery-thumbs .gallery-thumb.is-active {
  opacity: 1;
}
.gallery-thumbs .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .gallery-main .swiper-slide img {
    width: 100%;
    height: 400px;
  }
}
/* PROCESS */
.process {
  background-color: #201E47;
}

.process__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* INFOMATION */
.information {
  background-color: #F6F6F6;
}

.link-google {
  display: inline-block;
  margin-top: 16px;
  text-decoration: underline;
  font-weight: bold;
}

.thai-shopPage {
  background-color: #ffffff;
}

.shopPage {
  background-color: #F6F6F6;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .shopPage {
    padding-top: 64px;
  }
}

.thai-shop .shopPage.has-pb {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .thai-shop .shopPage.has-pb {
    padding-bottom: 64px;
  }
}

.shopPage__container {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.shopPage__img {
  width: 500px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .shopPage__img {
    padding-bottom: 24px;
    width: 100%;
  }
}

.shopPage__img img {
  width: 100%;
}

.shopPage__title {
  font-family: "Chonburi", cursive;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shopPage__title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .shopPage .table-list {
    padding: 24px 16px;
  }
}

.shopPage__map iframe {
  width: 100%;
  height: 300px;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .shopPage__map iframe {
    padding-right: 16px;
    padding-left: 16px;
    height: 253px;
  }
}

.productPage__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .productPage__list {
    gap: 64px;
  }
}

.productPage__item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .productPage__item {
    flex-direction: column;
  }
}

.productPage__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .productPage__item:nth-child(even) {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .productPage__item:nth-child(even) .productPage__text {
    margin-left: 0px;
    margin-right: 16px;
  }
}

.productPage__img {
  width: 325px;
}

.productPage__img img {
  width: 100%;
}

.productPage__text {
  flex: 1;
  max-width: 794px;
  padding: 40px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .productPage__text {
    margin-left: 16px;
    padding: 24px 20px;
  }
}

.productPage__description {
  margin-bottom: 24px;
}

.productPage__sample {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .productPage__sample {
    flex-direction: column;
  }
}

.productPage__sampleImg {
  width: 190px;
}

.productPage__sampleImg img {
  width: 100%;
}

.productPage__sampleTextBadge {
  display: inline-block;
  padding: 4px 16px;
  font-family: "Chonburi", cursive;
  background-color: #201E47;
  color: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
}

.productPage__sampleText {
  flex: 1;
}

.restaurant__slide {
  position: relative;
  margin-bottom: 80px;
}
.restaurant__slide .swiper-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .restaurant__slide .swiper-slide img {
    height: 110px;
  }
}

.restaurant__slideText {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  width: 100%;
  font-family: "Chonburi", cursive;
  font-size: 2rem;
  text-align: center;
  background-color: #F6F6F6;
  height: auto;
}
@media screen and (max-width: 768px) {
  .restaurant__slideText {
    font-size: 1.5rem;
    top: 120px;
  }
}

.restaurant__slideText p {
  top: 180px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 174px 40px 80px 40px;
}
@media screen and (max-width: 768px) {
  .restaurant__slideText p {
    padding: 100px 20px 64px 20px;
  }
}

.specialMenu {
  margin-top: 240px;
}
@media screen and (max-width: 768px) {
  .specialMenu {
    margin-top: 180px;
  }
}
@media screen and (max-width: 670px) {
  .specialMenu {
    margin-top: 200px;
  }
}
@media (max-width: 559px) {
  .specialMenu {
    margin-top: 240px;
  }
}
@media (max-width: 441px) {
  .specialMenu {
    margin-top: 280px;
  }
}
@media (max-width: 392px) {
  .specialMenu {
    margin-top: 320px;
  }
}

.specialMenu__container {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .specialMenu__container {
    flex-direction: column;
  }
}

.specialMenu__item {
  width: 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .specialMenu__item {
    width: 100%;
  }
}

.specialMenu__itemImage {
  max-width: 434px;
  aspect-ratio: 434/285;
}
.specialMenu__itemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .specialMenu__itemImage {
    max-width: 100%;
  }
}

.specialMenu__itemText {
  flex: 1;
}

.specialMenu__itemTitle {
  font-family: "Chonburi", cursive;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.specialMenu__itemPrice {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.specialMenu__itemDescription {
  border-top: 1px solid #333333;
}

.restaurantMenu {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .restaurantMenu {
    gap: 40px;
  }
}

.menuGrid {
  display: grid;
  gap: 20px;
}

.menuGrid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .menuGrid--col3 {
    grid-template-columns: 1fr;
  }
}

.menuGrid--col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .menuGrid--col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menuItem__image img {
  width: 100%;
  line-height: 0;
}

.menuItem__name {
  font-family: "Chonburi", cursive;
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.menuItem__name span {
  font-family: "Noto Sans Thai", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}

.menuItem__price {
  margin-bottom: 16px;
}

.drinkMenu {
  max-width: 640px;
  margin: 0 auto;
}

.drinkMenu__list {
  background: #F8F8F8;
  padding: 24px;
}

.drinkMenu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #888888;
}

.drinkMenu__item:first-child {
  padding-top: 0;
}

.drinkMenu__item:last-child {
  border-bottom: none;
}

.drinkMenu__name {
  font-family: "Chonburi", cursive;
}

.factoryPage__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
}

.factoryPage__videoInnerText {
  max-width: 508px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.factoryPage__videoInnerBtn {
  text-align: center;
}

.aroundArea__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aroundArea__item {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .aroundArea__item {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.aroundArea__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .aroundArea__item:nth-child(even) {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.aroundArea__itemImg {
  width: 50%;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .aroundArea__itemImg {
    width: 100%;
  }
}

.aroundArea__item img {
  width: 100%;
}

.aroundArea__caption {
  text-align: center;
  font-size: 0.875rem;
}

.aroundArea__text {
  flex: 1;
}

.aroundArea__title {
  font-size: 2rem;
  font-family: "Chonburi", cursive;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #333333;
}

.aroundArea__link {
  text-align: center;
}

.aroundArea__linkText {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.u-borderBottomNone {
  border-bottom: none;
}

.u-lineBreak {
  display: block;
}

.u-lineBreak--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-lineBreak--pc {
    display: inline;
  }
}

.u-lineBreak--sp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-lineBreak--sp {
    display: block;
  }
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-pb80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .u-pb80 {
    padding-bottom: 0px;
  }
}/*# sourceMappingURL=style.css.map */