@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

input[type=text],
input[type=email],
input[type=tel],
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio],
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  opacity: 0;
  transition: 0.1s;
}

html.wf-yu-mincho-pr6n-n4-active {
  opacity: 1;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "yu-mincho-pr6n", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "明朝体" ,serif;
  font-weight: 400;
  color: #fff;
  background-color: #1a1a1a;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

p, h1, h2, h3, h4, h5, h6, li {
  font-weight: 400;
}

.fixed {
  overflow: hidden;
}

main {
  width: 100%;
  overflow: hidden;
}

.white-text {
  color: #fff;
}

.gold-text {
  color: #c29f50;
}

.inner {
  width: 100%;
  max-width: 111rem;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1.5rem;
    max-width: 60rem;
  }
}

.header {
  position: fixed;
  top: 3.4rem;
  left: 5rem;
  z-index: 100;
  width: 5.4rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    top: 0;
    left: 0;
    width: 100%;
    height: initial;
    display: flex;
    justify-content: space-between;
    padding: 1.6rem 1.2rem;
  }
}

.header-logo {
  width: 5.3rem;
  position: relative;
}

.header-logo img {
  transition: 0.3s;
}

.header.open .logo-white {
  opacity: 0;
}

.header .logo-gold {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.header.open .logo-gold {
  opacity: 1;
}

.header-logo:hover .logo-gold {
  opacity: 1;
}

.footer {
  position: relative;
  padding: 9.2rem 2.5rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.2rem 1.5rem;
  }
}

.footer-logo {
  margin: 0 auto;
  width: 100%;
  max-width: 20.3rem;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 6rem;
  }
}

.footer-sns {
  margin: 8rem auto 0;
  width: 100%;
  max-width: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer-sns {
    max-width: 7rem;
    margin-top: 1.2rem;
  }
}

.footer-sns .line {
  width: 3.9rem;
}
@media screen and (max-width: 767px) {
  .footer-sns .line {
    width: 1.7rem;
  }
}

.footer-sns .insta {
  width: 3.8rem;
}
@media screen and (max-width: 767px) {
  .footer-sns .insta {
    width: 1.8rem;
  }
}

.copyright {
  margin-top: 5rem;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin-top: 1.6rem;
    font-size: 1rem;
  }
}

.footer-icon {
  position: absolute;
  bottom: 2.4rem;
  right: 4.2rem;
  width: 10.5rem;
}
@media screen and (max-width: 767px) {
  .footer-icon {
    display: none;
  }
}

.header-hamberger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-hamberger {
    display: block;
  }
}

.hamberger {
  position: relative;
  width: 2.1rem;
  height: 1.4rem;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  margin-left: auto;
  z-index: 500;
}
.hamberger-bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.1rem;
  background: #fff;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.hamberger-bar:nth-of-type(1) {
  top: 0%;
}

.hamberger-bar:nth-of-type(2) {
  top: 50%;
}

.hamberger-bar:nth-of-type(3) {
  top: 100%;
}

/* オープン時の動き */
.open .hamberger-bar {
  width: 3rem;
  transition: 0.3s;
}

.open .hamberger-bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.open .hamberger-bar:nth-of-type(2) {
  transform: translate(-50%, -50%);
  opacity: 0;
}

.open .hamberger-bar:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.header-nav {
  width: 100%;
  z-index: 100;
  font-size: 2rem;
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav__items {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-nav__item {
  font-size: 1.6rem;
  line-height: 1.75;
}
.header-nav__item:nth-child(n+2) {
  margin-top: 5rem;
}

.header-nav__item a:hover {
  opacity: 1;
  color: #c29f50;
}

.drawer-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    font-size: 1.5rem;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #1a1a1a;
  }
}

.drawer-nav__inner {
  width: 100%;
  position: relative;
  padding: 0 3.6rem;
}

.drawer-nav__inner--bg {
  position: absolute;
  top: 6rem;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  width: 33rem;
}

.drawer-main {
  position: relative;
  z-index: 2;
  padding-top: 14.5rem;
}

.drawer-main__rinc {
  display: flex;
  justify-content: center;
}

.drawer-main__rinc--items .rinc-item {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.drawer-main__rinc--items .rinc-item:nth-child(n+2) {
  margin-top: 4.2rem;
}

.drawer-main__sns {
  margin-top: 3.4rem;
}

.drawer-main__sns .sns-block {
  text-align: right;
}

.drawer-main__sns .sns-block:nth-child(n+2) {
  margin-top: 4.8rem;
}

.drawer-main__sns .sns-block .label {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

.sns-block__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 7rem;
  margin-left: auto;
  margin-top: 0.8rem;
}

.sns-block .rinc {
  display: block;
  width: 1.7rem;
}

.sns-block .tel {
  margin-top: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.drawer-nav__btm {
  margin-top: 3rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-d_flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-d_flex {
    display: flex;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: flex;
}
@media screen and (max-width: 767px) {
  .u-disp-flex-dt {
    display: block;
  }
}

.u-disp-flex-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-disp-flex-sp {
    display: flex;
  }
}

.u-disp-flex__cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-posi-rela {
  position: relative;
}

.u-posi-abso {
  position: absolute;
}

.u-posi-fixed {
  position: fixed;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.3);
}

.u-writing_vertical {
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.section-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  position: relative;
  max-width: 170rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section-title {
    display: block;
    max-width: 60rem;
  }
}

.section-title__left {
  width: 100%;
  max-width: 74rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title__left {
    max-width: initial;
    padding-bottom: 8.6rem;
  }
}

.section-title__left .animation-boder {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-title__left .animation-boder {
    display: block;
    top: -5rem;
    right: 5.6rem;
    height: 15rem;
  }
}

.section-title__accsent {
  width: 100%;
  overflow: hidden;
}
.section-title__accsent img {
  transform: translateX(-6rem);
}
@media screen and (max-width: 767px) {
  .section-title__accsent img {
    transform: translateX(-4rem);
    width: 85%;
    max-width: 40rem;
  }
}

.section-title__left .main-title {
  font-size: 5.5rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: 49%;
  left: 49.5%;
}
@media screen and (max-width: 767px) {
  .section-title__left .main-title {
    letter-spacing: 0.12em;
    font-size: 3.6rem;
    top: 15.6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-title__right {
  margin-top: 53rem;
  width: 100%;
  max-width: 85rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title__right {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}

.section-title__right .animation-boder {
  top: -92rem;
  right: 48%;
}
@media screen and (max-width: 767px) {
  .section-title__right .animation-boder {
    top: 15.5rem;
    right: 11%;
    height: 10rem;
  }
}

.section-title__right--message {
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 2.25;
  font-size: 2rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .section-title__right--message {
    text-align: right;
    margin-right: 3.6rem;
    line-height: 2;
    font-size: 1.5rem;
    margin-top: 6.6rem;
  }
}

.section-title__right.custum {
  margin-top: 35rem;
}
@media screen and (max-width: 767px) {
  .section-title__right.custum {
    margin-top: 0;
  }
}

.section-title__right.custum .section-title__right--message {
  font-size: 2rem;
  text-align: left;
  max-width: 71rem;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .section-title__right.custum .section-title__right--message {
    max-width: initial;
    padding: 0 3.4rem;
    font-size: 1.4rem;
  }
}

.section-title__right.custum .section-title__right--message span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .section-title__right.custum .section-title__right--message span {
    font-size: 1.6rem;
    display: block;
    padding-bottom: 1.8rem;
  }
}

.section-title__right--btm {
  margin-top: 9rem;
  margin-right: 7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title__right--btm {
    margin-top: 0;
    margin-right: 1.5rem;
  }
}

.section-title__right--btm .red-circle {
  margin-left: auto;
}

.section-title .subtitle {
  opacity: 0.1;
  line-height: 1;
  letter-spacing: 0.15em;
  font-size: 11rem;
  position: absolute;
  top: 27%;
  left: -19rem;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .section-title .subtitle {
    line-height: 1.3333333333;
    font-size: 3.6rem;
    top: 49%;
    transform: translateY(-50%);
    left: 3.6rem;
  }
}

.red-circle {
  background-color: #a82a00;
  border-radius: 50%;
  width: 100%;
  max-width: 37.3rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .red-circle {
    max-width: 20rem;
  }
}

.p-food .section-title__left {
  max-width: 70rem;
}
@media screen and (max-width: 767px) {
  .p-food .section-title__left {
    max-width: initial;
    padding-bottom: 0;
  }
}

.p-food .section-title__left .animation-boder {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-food .section-title__left .animation-boder {
    display: block;
    position: absolute;
    top: 20.4rem;
    right: 9rem;
    height: 47.5rem;
  }
}

.p-food .section-title__left .main-title {
  top: 35.5%;
  left: 52.5%;
}
@media screen and (max-width: 767px) {
  .p-food .section-title__left .main-title {
    top: 9.2rem;
    left: 50%;
  }
}

.p-food .section-title__accsent {
  overflow: visible;
}
.p-food .section-title__accsent img {
  transform: translateX(4.5rem);
}
@media screen and (max-width: 767px) {
  .p-food .section-title__accsent img {
    transform: translateX(-0.5rem);
    width: 87%;
    max-width: 34.5rem;
    margin: 0 auto;
  }
}

.p-food .section-title__right.custum {
  margin-top: 0rem;
}
.p-food .section-title .animation-boder {
  top: -50rem;
  right: 27%;
  height: 47.5rem;
}
@media screen and (max-width: 767px) {
  .p-food .section-title .animation-boder {
    top: 20.5rem;
    right: 24%;
    height: 20rem;
  }
}

.p-food .section-title .subtitle {
  top: 40%;
  left: -14.5rem;
}
@media screen and (max-width: 767px) {
  .p-food .section-title .subtitle {
    top: 51%;
    left: 4.4rem;
    transform: translateY(-50%);
    font-size: 3.6rem;
  }
}

.p-food .section-title .sub-message {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.2em;
  opacity: 1;
  position: absolute;
  top: 31%;
  left: -13.5rem;
}
@media screen and (max-width: 767px) {
  .p-food .section-title .sub-message {
    font-size: 1.6rem;
    line-height: 1.75;
    top: initial;
    bottom: -0.7rem;
    left: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  .medical-title .subtitle {
    top: 11.2rem;
  }
}

.animation-boder {
  display: block;
  height: 75rem;
  width: 0.1rem;
  background-color: #c29f50;
  position: absolute;
  z-index: 5;
  transform: scale(0);
}
@media screen and (max-width: 767px) {
  .animation-boder {
    height: 20rem;
  }
}

.section-title__right.custum .animation-boder {
  height: 60rem;
  top: -65rem;
}
@media screen and (max-width: 767px) {
  .section-title__right.custum .animation-boder {
    top: initial;
    height: 10rem;
    bottom: 24rem;
  }
}

.animation-boder.scaleOn {
  animation-name: lineScaleanime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform-origin: top;
}

@keyframes lineScaleanime {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.fadeUpTrigger {
  opacity: 0;
  transform: scale(1.4) translateY(10rem);
}

.fadeUpTrigger.fadeUp {
  animation-name: fadeUpanime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpanime {
  0% {
    opacity: 0;
    transform: scale(1.4) translateY(10rem);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.top-page {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.top-page.ready {
  opacity: 1;
  visibility: visible;
}

.loaded.logo {
  opacity: 0;
  animation-name: fadeInanime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeInanime {
  0% {
    opacity: 0;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
  }
}
.btn {
  border: 1px solid;
  border-image: linear-gradient(to right, #f7e8ae 32%, #c29f50 72%, #efd363 95%) 1;
  width: 100%;
  max-width: 42rem;
  height: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 22.2rem;
    height: 5.2rem;
    transform: translateX(-2rem);
  }
}

.btn::after {
  content: "";
  display: block;
  background: -moz-linear-gradient(left, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  background: -webkit-linear-gradient(left, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  background: linear-gradient(to right, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  width: 100%;
  max-width: 15rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn::after {
    max-width: 8rem;
  }
}

.btn:hover:after {
  right: -1rem;
}

.btn a,
.btn button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.7272727273;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn a,
  .btn button {
    line-height: 1.75;
    font-size: 1.4rem;
  }
}

.btn:hover a,
.btn:hover button {
  color: #c29f50;
}

.cta {
  padding: 8.2rem 0 9rem;
  text-align: center;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 1.6rem 0;
  }
}

.cta-top {
  letter-spacing: 0.2em;
}

.cta-top .eng-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cta-top .eng-text {
    font-size: 1.2rem;
  }
}

.cta-top .jp-text {
  line-height: 1.7272727273;
  font-size: 2.2rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cta-top .jp-text {
    line-height: 1.75;
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
}

.cta-top .jp-text:hover {
  color: #c29f50;
}

.cta-top::after {
  content: "";
  display: block;
  background: -moz-linear-gradient(top, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  background: -webkit-linear-gradient(top, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  background: linear-gradient(to bottom, #f7e8ae 32%, #c29f50 72%, #efd363 95%);
  width: 0.1rem;
  height: 6rem;
  margin: 1.6rem auto 0;
}
@media screen and (max-width: 767px) {
  .cta-top::after {
    height: 2rem;
    margin-top: 2rem;
  }
}

.cta-btm {
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .cta-btm {
    line-height: 1.8333333333;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
