@charset "utf-8";

/****************************************
 * Base
 ****************************************/
:root{
  --scrolbar-width: 16px;
  --100vw: calc(100vw - var(--scrolbar-width));
  --vw: calc(var(--100vw) / 100);
  --main-inner: min(128rem, var(--100vw) - (var(--side-padding) * 2));
  --side-margin: min( (var(--100vw) - var(--main-inner)) / 2);
  --side-padding: min(4rem);
  --color-text: #3B2213;
  --color-background: #FFFDFB;
  --color-white: #FFF;
  --color-orange: #F7931D;
  --color-red: #D24351;
  --font-family-ja: "M PLUS 1", sans-serif;
  --font-family-en: "Raleway", sans-serif;
  --font-family-number: "Host Grotesk", sans-serif;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --font-style-roman: normal;
  --font-style-italic: italic;
  --scroll-margin: 100px;
}
html{
    font-size: 62.5%;
}
body{
  color: var(--color-text);
  font-size: 1.6em;
  font-family: var(--font-family-ja);
  font-weight: var(--font-weight-regular);
  background: var(--color-background);
}
#container{
  width: 100%;
  overflow: hidden;
}
main,
div{
  margin: 0;
}
button{
  cursor: pointer;
  margin: 0;
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: none;
}
:root :where(.is-layout-flow) > :first-child{
  margin-block-start: initial;
}
:root :where(.is-layout-flow) > * {
  margin-block-start: initial;
}
ul[class],
ol[class]{
  list-style-type: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5{
  margin: 0;
}

/****************************************
 * Layout
 ****************************************/
.l-header{
  position: absolute;
  top: 4.7rem;
  left: max(var(--side-margin), var(--side-padding));
  z-index: 250;
}
.l-header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--main-inner);
}
.l-header__logo{
  flex-shrink: 0;
  width: 10rem;
}
.l-header__nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 4rem;
}
.l-header__nav-list{
  display: flex;
  column-gap: 3rem;
}
.l-header__nav-item a{
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.15em;
}
.l-header__order{
  display: inline-block;
  width: 13rem;
  position: relative;
  margin-left: 2.6rem;
}
.l-header__order-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 13rem;
  padding-bottom: 0.4rem;
  position: absolute;
  top: -6.4rem;
  left: 0;
  z-index: 5;
  font-size: 2rem;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 50%;
}
.l-header__order-link::before,
.l-header__order-link::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  border-radius: 50%;
}
.l-header__order-link::before{
  background-color: transparent;
  border: 0.2rem solid var(--color-white);
  transition: all 300ms linear 0s ;
}
.l-header__order-link::after{
  scale: 0;
}
@media (hover: hover){
  .l-header__nav-item a::after{
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 0;
    background-color: var(--color-white);
    opacity: 0;
    scale: 0 1;
    transform-origin: left;
    transition: all 300ms linear 0s;
  }
  .l-header__nav-item a:hover::after{
    opacity: 1;
    scale: 1 1;
  }
  .l-header__order-link:hover::before{
    background-color: var(--color-orange);
    border-color: var(--color-orange);
  }
}

.l-main{
  padding-bottom: 13rem;
}

.l-contact{
  background-color: var(--color-background);
}
.l-contact__heading{
  margin-bottom: 6.4rem;
  font-size: 10rem;
  text-align: center;
  color: var(--color-orange);
  font-family: var(--font-family-en);
  font-style: var(--font-style-italic);
  font-weight: var(--font-weight-extralight);
}
.l-contact .l-contact__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: stretch;
  column-gap: 12rem;
  width: min(var(--main-inner) - (var(--side-padding) * 2), 103.2rem);
  margin: 0 auto;
}
.l-contact__phone{
  padding: 3rem 0;
}
.l-contact__phone-item + .l-contact__phone-item{
  margin-top: 6rem;
}
.l-contact .l-contact__phone-item--fax{
  width: min(100%, 50.4rem);
}
.l-contact__phone-title{
  font-size: 2.8rem;
  text-align: center;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.06em;
}
.l-contact__phone-title > span{
  padding: 0 0.3rem;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
.l-contact__phone-number{
  margin-top: 2rem;
  font-size: 5rem;
  color: var(--color-red);
  font-family: var(--font-family-number);
  font-style: var(--font-style-roman);
  text-align: center;
  font-weight: var(--font-weight-light);
  line-height: 1;
}
.l-contact__phone-recept{
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  line-height: 1.5625;
}
.l-contact .l-contact__phone-fax{
  margin: 4rem auto 0;
}

.l-contact__web{
  padding: 3rem 0;
  position: relative;
}
.l-contact__web::before{
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(100% + 6rem);
  border-left: 0.1rem solid #D1C8C3;
}
.l-contact__web-heading{
  margin-bottom: 3.5rem;
  font-size: 2.8rem;
  text-align: center;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.03em;
}
.l-contact__web-heading > span{
  padding: 0 0.3rem;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
.l-contact__web-link-container{
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  row-gap: 2rem;
  margin: 0 auto;
}
.l-contact__web .l-contact__web-item{
  margin-top: 0;
}
.l-contact__web .l-contact__web-item .c-link-more,
.l-contact__web .l-contact__web-item .c-link-more__text{
  color: var(--color-red);
}

.l-footer{
  margin-top: 0;
  padding-top: 12rem;
  padding-bottom: 5.6rem;
  background-color: var(--color-background);
  border-bottom: 0.5rem solid var(--color-orange);
}
.l-footer__sns-copy{
  margin-top: 0;
  font-size: 1.6rem;
  text-align: center;
  font-weight: var(--font-weight-regular);
}
.l-footer__sns-container{
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 4.5rem;
}
.l-footer .l-footer__sns-item--x{
  margin-right: 0.5rem;
}
.l-footer__copyright{
  margin-top: 8.5rem;
  font-size: 1.2rem;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-regular);
  text-align: center;
}
.l-footer__copyright > span{
  font-family: var(--font-family-number);
  font-weight: var(--font-weight-light);
}

/****************************************
 * Component
 ****************************************/
.c-link-more__container{
  margin-top: 6rem;
  position: relative;
}
.c-link-more{
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2.5rem;
  padding: 1.2rem 1.2rem 1.2rem 4.8rem;
  position: relative;
  color: var(--color-orange);
  font-size: 1.8rem;
  text-align: left;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  background-color: var(--color-white);
  border: 2px solid currentColor;
  overflow: hidden;
  border-radius: 4rem;
}
.c-link-more--pdf{
  grid-template-columns: max-content 1fr auto;
  position: relative;
  padding: 1.2rem 2rem;
  color: var(--color-red);
}
.c-link-more--red{
  color: var(--color-red);
}
.c-link-more::before,
.c-link-more::after{
  content: "";
  display: block;
  width: 4.9rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
.c-link-more::before{
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 0;
  background-color: currentColor;
  will-change: scale;
  scale: 1;
  transition: scale 300ms ease-in-out 0s;
}
.c-link-more::after{
  background: url(../images/common/chevron_w.png) no-repeat top 50% right 2rem / 0.5rem 1.1rem;
  z-index: 5;
}
.c-link-more--pdf::after{
  position: relative;
  right: -0.8rem;
  background-image: url(../images/common/icon-pdf.png);
  background-position: top 50% right 1.3rem;
  background-size: 2.1rem 2.5rem;
}
.c-link-more__pdf{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  height: 3.7rem;
  position: relative;
  z-index: 5;
  font-size: 1.6rem;
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  background-color: var(--color-red);
  border-radius: 3rem;
}
.c-link-more__tasting{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.9rem;
  height: 9.9rem;
  position: absolute;
  top: -5rem;
  right: -5rem;
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: var(--font-weight-bold);
  background-color: var(--color-white);
  border: 2px solid #DFDFDF;
  border-radius: 50%;
}
.c-link-more__text{
  position: relative;
  z-index: 5;
  color: var(--color-orange);
  transition: color 300ms ease-in-out 0s;
}
.c-link-more--red .c-link-more__text,
.c-link-more--pdf .c-link-more__text{
  color: var(--color-red);
}
@media (hover : hover){
  .c-link-more:hover:before{
    scale: 25;
  }
  .c-link-more:hover .c-link-more__text{
    color: var(--color-white);
  }
}

.js-video{
  position: relative;
}
.js-video::before,
.js-video::after{
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.js-video::before{
  width: 20rem;
  height: 20rem;
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  background: url(../images/common/play-movie-text.png) no-repeat center / contain;
  animation: playMovieRotate 12s linear 0s infinite normal forwards;
}
.js-video::after{
  width: 4rem;
  height: 4rem;
  top: calc(50% - 2rem);
  left: calc(50% - 1.5rem);
  z-index: 0;
  background: url(../images/common/play-movie-triangle.png) no-repeat center / contain;
}
.js-video.is-play::before,
.js-video.is-play::after{
  display: none;
}
.js-video > video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
@keyframes playMovieRotate {
  0%{
    rotate: 0deg;
  }
  100%{
    rotate: 360deg;
  }
}