@charset "UTF-8";
/*リセットcss
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* ルートフォント設定(PCファースト)
***************************************************************/
html {
  font-size: clamp(8px, 0.6944444444vw, 10px);
}
@media screen and (max-width: 393px) {
  html {
    font-size: 2.0356234097vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* スクロール設定
***************************************************************/
html {
  scroll-padding-top: 0rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 3rem;
  }
}

/* base（基本）設定
***************************************************************/
body {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #231815;
}
body.is-drawerActive {
  height: 100%;
  overflow: hidden;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
  word-break: break-all;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

picture,
video,
img,
svg {
  width: 100%;
  height: 100%;
}

/* PC時は電話番号リンクを無効化
***************************************************************/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* mainレイアウト
***************************************************************/
.l-main {
  overflow: hidden;
  width: 100%;
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 9rem;
  }
}

/* 共通inner
***************************************************************/
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1230px;
  height: inherit;
  padding: 0 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 660px;
    padding: 0 3rem;
  }
}

/* ヘッダー
***************************************************************/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: transparent;
}

.l-header__inner {
  position: relative;
  padding: 2.2rem 4rem;
  height: 13rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 9rem;
    padding: 1rem 2rem;
    align-items: center;
  }
}

.l-header__logo {
  width: 6rem;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 4rem;
  }
}

.l-header__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__button-wrap {
    align-items: flex-end;
    gap: 0.6rem;
  }
}

/* ドロワーアイコン
***************************************************************/
.l-header__drawer-icon {
  position: relative;
  width: 7rem;
  height: 4rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  background-color: transparent;
  mix-blend-mode: difference;
}
@media (any-hover: hover) {
  .l-header__drawer-icon:hover {
    cursor: pointer;
  }
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(1) {
  transform: rotate(38deg);
  translate: 0 0.6rem;
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(3) {
  transform: rotate(-38deg);
  translate: 0 -0.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon {
    width: 4rem;
    height: 3rem;
    gap: 0.6rem;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(1) {
    transform: rotate(40deg);
    translate: 0 0.5rem;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(2) {
    display: none;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(3) {
    transform: rotate(-40deg);
    translate: 0 -0.35rem;
  }
}

.l-header__drawer-icon-bar {
  width: 100%;
  height: 0.4rem;
  background: #898989;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon-bar {
    height: 0.3rem;
  }
}

/* Translate
***************************************************************/
.l-header__translate--pc {
  font-size: 1.2rem;
  font-family: "Sawarabi Mincho", serif;
  padding: 0.3rem 0.8rem;
  border: 0.1rem solid #231815;
  background: transparent;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 2em 0 #231815, 0 0 0 #231815;
  transition: text-shadow 0.5s;
  display: none;
}
@media (any-hover: hover) {
  .l-header__translate--pc:hover {
    cursor: pointer;
    text-shadow: 0 0 0 #231815, 0 -2em 0 #231815;
  }
}
@media screen and (max-width: 767px) {
  .l-header__translate--pc {
    display: none;
  }
}

.l-header__drawer-icon.is-checked + .l-header__translate--pc {
  display: block;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon.is-checked + .l-header__translate--pc {
    display: none;
  }
}

.l-header__translate--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__translate--sp {
    display: block;
    color: #231815;
    font-size: 1.8rem;
    font-family: "Sawarabi Mincho", serif;
    padding: 0.4rem 1.2rem;
    border: 0.1rem solid #231815;
    background: transparent;
    margin-left: auto;
  }
}

/* ドロワーメニュー出現
***************************************************************/
.l-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-inline: 4rem;
  z-index: 20;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.l-header__drawer.is-checked {
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.8784313725);
}

.l-header__drawer-body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 12rem 6rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-body {
    padding-block: 10rem 4rem;
  }
}

.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 100rem;
  margin-inline: auto;
}
.l-header__drawer-list li > a {
  display: inline-block;
  color: #231815;
  font-size: 2rem;
  line-height: 1;
  padding-block: 0.8rem;
  padding-inline: 2rem;
  display: inline-block;
  position: relative;
  font-family: "Sawarabi Mincho", serif;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 2em 0 #231815, 0 0 0 #231815;
  transition: text-shadow 0.5s;
}
@media (any-hover: hover) {
  .l-header__drawer-list li > a:hover {
    text-shadow: 0 0 0 #231815, 0 -2em 0 #231815;
  }
}

/* フッター
***************************************************************/
.l-footer {
  padding-block: 20.5rem 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 10rem 4rem;
  }
}

.l-footer__inner {
  padding-inline: 6rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
  }
}

.l-footer__logo {
  flex-grow: 1;
  text-align: center;
}
.l-footer__logo img {
  aspect-ratio: 394/79;
  width: 43rem;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  transform: translateX(5rem);
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 30rem;
    transform: translateX(2rem);
  }
}

.l-footer__sns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.l-footer__link {
  width: 3rem;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    width: 2rem;
  }
}

/* 下層ページセクション共通見出し
***************************************************************/
.c-section-head {
  font-size: 2rem;
}

/* 下層ページ（共通アンダーライン付きリスト）
***************************************************************/
.c-underline-item {
  font-size: 2rem;
  padding-block: 1.1rem 3.1rem;
  position: relative;
}
.c-underline-item::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  left: 0;
  top: 0;
}
.c-underline-item:last-child::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  left: 0;
  bottom: 0;
}

/* アコーディオンボタン
***************************************************************/
.c-accordion-btn {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-accordion-btn:hover {
    cursor: pointer;
    opacity: 0.7 !important;
  }
}

.c-accordion-arrow {
  position: relative;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .c-accordion-arrow {
    padding-left: 2rem;
  }
}
.c-accordion-arrow::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid #231815;
  border-bottom: 0.2rem solid #231815;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-accordion-arrow::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 1px solid #231815;
    border-bottom: 1px solid #231815;
  }
}
[aria-expanded=true] .c-accordion-arrow::after {
  transform: translateY(-50%) rotate(-135deg);
  top: 2rem;
}

/* MV
***************************************************************/
.p-mv__swiper-container {
  position: relative;
}

.p-mv__swiper {
  position: relative;
}

.p-mv__swiper-slide {
  position: relative;
}

.p-mv__swiper-img img {
  aspect-ratio: 213/250;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  scale: 1.01;
}

.p-mv__swiper-contents {
  position: absolute;
  left: 4rem;
  top: 3rem;
  color: #FFFFFF;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 500;
}

.p-mv__title {
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.p-mv__title.title--large {
  font-size: 1.5rem;
}
.p-mv__title span {
  text-transform: none;
}

.p-mv__text {
  font-size: 1rem;
  margin-top: 0.6rem;
  letter-spacing: 0.07em;
}

.p-mv__movie {
  overflow: hidden;
  position: relative;
}
.p-mv__movie img,
.p-mv__movie video {
  aspect-ratio: 427/233;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__movie {
    height: 30rem;
  }
}

.p-mv__video_btn {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
}

.p-mv__video_btn a {
  font-size: 12px;
  color: #FFF;
  text-decoration: none;
}

/* TOP introduction
***************************************************************/
.p-intro {
  padding-block: 12rem 15rem;
}

.p-intro__inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 2rem;
}

.p-intro__img {
  width: max(30rem, 240px);
  margin-inline: auto;
}
.p-intro__img img {
  aspect-ratio: 824/975;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-intro__img {
    width: 23rem;
  }
}

.p-intro__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-inline: 14rem;
}
@media screen and (max-width: 767px) {
  .p-intro__brand {
    padding-inline: 5rem;
  }
}

.p-intro__brand-name {
  font-size: 1.5rem;
  letter-spacing: 0.0666666667em;
  text-transform: uppercase;
}

.p-intro__brand-detail {
  font-size: 1.3rem;
  letter-spacing: 0.0333333333em;
}

.p-intro__main {
  margin-top: 12rem;
  transform: translateX(8rem);
}
@media screen and (max-width: 767px) {
  .p-intro__main {
    transform: translateX(0);
  }
}

.p-intro__heading {
  font-size: 2.2rem;
  letter-spacing: 0.0909090909em;
}
.p-intro__heading:not(:first-of-type) {
  margin-top: 7rem;
}

.p-intro__text {
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-intro__text {
    letter-spacing: 0.07em;
  }
}

.p-intro__sign {
  width: 25rem;
  margin-top: 8rem;
}
.p-intro__sign img {
  aspect-ratio: 207/37;
}

/* TOP Profile
***************************************************************/
.p-profile__inner {
  max-width: 144rem;
  margin-inline: auto;
  padding-inline: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-profile__inner {
    padding-inline: 2rem;
  }
}

.p-profile__container {
  padding-block: 3rem;
  position: relative;
}
.p-profile__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 1px;
  background-color: #9fa0a0;
}

.p-profile__title {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-profile__accordion {
  display: none;
}

.p-profile__contents-warp {
  display: flex;
  gap: 8.5rem;
  align-items: flex-start;
  justify-content: center;
  padding-block: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-profile__contents-warp {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-profile__img-wrap {
  width: 29%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__img-wrap {
    width: 100%;
  }
}

.p-profile__img img {
  aspect-ratio: 118/84;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-profile__name {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.0714285714em;
}

.p-profile__contents {
  flex-grow: 1;
}

@media (min-width: 1100px) {
  .p-profile__text-wrap {
    max-width: 81%;
  }
}

.p-profile__text {
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-profile__text.p-profile__text--narrow {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .p-profile__text.p-profile__text--narrow {
    width: 100%;
  }
}

.p-profile__description {
  position: relative;
}

.p-profile__heading {
  margin-top: 3rem;
  font-size: 1.6rem;
  letter-spacing: 0.0625em;
}

.p-profile__lists {
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  margin-top: 0.6rem;
  padding-right: 5rem;
}

.p-profile__details {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.p-profile__sign {
  position: absolute;
  width: 4.5rem;
  top: 2.5rem;
  right: 0;
}
.p-profile__sign img {
  aspect-ratio: 130/125;
  -o-object-fit: cover;
     object-fit: cover;
}

/* TOP Message
***************************************************************/
.p-message {
  margin-bottom: 14rem;
}

.p-message__heading {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 2.2rem;
  border-top: 1px solid #231815;
}
.p-message__heading:last-of-type {
  border-bottom: 1px solid #231815;
}

/* footメニュー
***************************************************************/
.p-foot-menu__brand-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.p-foot-menu__brand {
  border-top: 1px solid #231815;
  display: grid;
  place-content: center;
  position: relative;
  height: 48rem;
  transition: all 0.3s ease;
}
.p-foot-menu__brand:first-of-type {
  border-right: 1px solid #231815;
}
@media (any-hover: hover) {
  .p-foot-menu__brand:hover {
    opacity: 0.6;
  }
}

.p-foot-menu__brand-logo.nikko img {
  width: 18.4rem;
  aspect-ratio: 54/112;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__brand-logo.nikko img {
    width: 10rem;
  }
}
.p-foot-menu__brand-logo.oyama img {
  width: 22rem;
  aspect-ratio: 64/100;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__brand-logo.oyama img {
    width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-foot-menu__brand-logo {
    margin-top: 9rem;
  }
}

.p-foot-menu__brand-info {
  position: absolute;
  top: 3rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__brand-info {
    top: 2rem;
    left: 2rem;
  }
}

.p-foot-menu__brand-name {
  font-size: 1.2rem;
  letter-spacing: 0.0083333333em;
  line-height: 2;
  text-transform: uppercase;
}

.p-foot-menu__brand-detail {
  font-size: 1rem;
  text-transform: uppercase;
}
.p-foot-menu__brand-detail span {
  text-transform: none;
}

.p-foot-menu__nav-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-foot-menu__nav-list li {
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  padding-block: 2rem;
}
.p-foot-menu__nav-list li:nth-child(4n) {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__nav-list li:nth-child(2n) {
    border-right: none;
  }
}
.p-foot-menu__nav-list li a {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 0.6rem;
  padding-inline: 2rem;
  position: relative;
  font-family: "Sawarabi Mincho", serif;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 2em 0 #231815, 0 0 0 #231815;
  transition: text-shadow 0.5s;
}
@media (any-hover: hover) {
  .p-foot-menu__nav-list li a:hover {
    text-shadow: 0 0 0 #231815, 0 -2em 0 #231815;
  }
}
@media screen and (max-width: 767px) {
  .p-foot-menu__nav-list li a {
    font-size: 1.4rem;
    padding-inline: 1rem;
  }
}

/*TOPページのみのメニューの見栄え*/
.p-foot-menu__nav-list.only-top li:first-child {
  grid-column: 1/-1;
}
.p-foot-menu__nav-list.only-top li:nth-child(4n) {
  border-right: 1px solid #231815;
}
.p-foot-menu__nav-list.only-top li:nth-child(4n+1) {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-foot-menu__nav-list.only-top li:nth-child(2n) {
    border-right: 1px solid #231815;
  }
  .p-foot-menu__nav-list.only-top li:nth-child(2n+1) {
    border-right: none;
  }
}

/* 下層ページ（Product Line up）
***************************************************************/
.p-product {
  padding-block: 13rem 19rem;
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-block: 9rem 13rem;
  }
}

.p-product--official-series {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-product--official-series {
    margin-top: 5rem;
  }
}

.p-product--limited-series {
  margin-top: 22rem;
}
@media screen and (max-width: 767px) {
  .p-product--limited-series {
    margin-top: 15rem;
  }
}

.p-product__intro {
  padding-block: 2.1rem 8rem;
  position: relative;
}
.p-product__intro::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-product--new-pot .p-product__intro {
    padding-block: 8rem 4rem;
  }
}

.p-product__intro-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.p-product__intro-title:not(:first-of-type) {
  margin-top: 3rem;
}

.p-product__intro-text {
  margin-top: 2rem;
  line-height: 2;
}
.p-product__intro-text a {
  color: #036eb8;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-product__intro-text a:hover {
    opacity: 0.6;
  }
}

.p-product__item {
  position: relative;
  font-size: 2rem;
  padding-block: 2.1rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-product__item {
    padding-block: 8rem 2.1rem;
  }
}
.p-product__item::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  left: 0;
  top: 0;
}
.p-product__item:last-child::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  left: 0;
  bottom: 0;
}
.p-product--new-pot .p-product__item:last-child::after {
  display: none;
}

.p-product__item-label {
  position: absolute;
  top: 3rem;
  right: 0;
  min-width: 16.5rem;
  padding: 0.6rem 1rem 0.8rem 1rem;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFFFFF;
  background-color: #bd4c43;
}
@media (min-width: 1100px) {
  .p-product__item-label {
    right: auto;
    left: calc(50% + 51rem);
  }
}
.p-product__item-label.label--blue {
  background-color: #036eb8;
}
.p-product__item-label.label--brown {
  background-color: #604c3f;
}

.p-product__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  font-size: 1.7rem;
  line-height: 1.7;
}

.p-product__title {
  width: 14rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.p-product__sub-title {
  flex-grow: 1;
  letter-spacing: 0.1em;
}
.p-product__sub-title span {
  font-size: 1.4rem;
  line-height: 2;
}

.p-product__edition {
  font-size: 1.6rem;
  color: #604c3f;
  margin-top: 4rem;
}

.p-product__accordion {
  display: none;
  padding-block: 2rem 0;
}

.p-product__contents-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-product__contents-wrap {
    flex-direction: column;
  }
}

.p-product__contents-body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-product__contents-body {
    width: 100%;
  }
}
.p-product--limited-series .p-product__contents-body {
  width: 55.5%;
}
@media screen and (max-width: 767px) {
  .p-product--limited-series .p-product__contents-body {
    width: 100%;
  }
}

.p-product__contents-text {
  font-size: 1.6rem;
  line-height: 2;
}
.p-product__contents-text:not(:first-child) {
  margin-top: 2rem;
}
.p-product__contents-text a {
  color: #036eb8;
}
.p-product__contents-text a:hover {
  opacity: 0.8;
}

.p-product__contents-details {
  margin-top: 4rem;
}
.p-product__contents-details > li {
  font-size: 1.4rem;
  padding-block: 0.6rem;
  border-top: 1px solid #9fa0a0;
}
.p-product__contents-details > li:last-child {
  border-bottom: 1px solid #9fa0a0;
}

.p-product__contents-img {
  width: 40%;
  flex-shrink: 0;
}
.p-product__contents-img img {
  aspect-ratio: 548/466;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-product__contents-img {
    width: 100%;
  }
}
.p-product--limited-series .p-product__contents-img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-product--limited-series .p-product__contents-img {
    width: 100%;
  }
}

.p-product__swiper-container,
.p-product__swiper,
.p-product__swiper-wrapper,
.p-product__swiper-slide {
  position: relative;
}

.p-product__swiper-container {
  width: 40%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-product__swiper-container {
    width: 100%;
  }
}

.p-product__swiper-img img {
  aspect-ratio: 548/466;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  top: 57%;
  transform: translateY(-50%);
}
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
  left: 0;
  top: 0;
}

.swiper-button-next {
  top: 57%;
  transform: translateY(-50%);
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  left: 0;
  top: 0;
}

.p-product__detail {
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-product__detail {
    margin-top: 8rem;
  }
}

/* 下層ページ（Product Line up NEW POT）
***************************************************************/
.p-product--new-pot {
  margin-top: 19rem;
}
@media screen and (max-width: 767px) {
  .p-product--new-pot {
    margin-top: 10rem;
  }
}

.p-product__new-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-product__new-container {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}

.p-product__new-contents {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .p-product__new-contents {
    width: 100%;
  }
}

.p-product__new-item {
  padding-block: 2rem 6rem;
  border-top: 1px solid #9fa0a0;
}

.p-product__new-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.p-product__new-text {
  margin-top: 2rem;
  line-height: 2;
}

/* 下層ページ（spec）
***************************************************************/
.p-spec {
  padding-block: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-spec {
    padding-block: 10rem 0;
  }
}

.p-spec__head {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-spec__head {
    margin-top: 5rem;
  }
}

.p-spec__item-title {
  text-align: left;
}

.p-spec__accordion {
  display: none;
  padding-block: 5rem 5rem;
}

.p-spec__text {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-spec__text {
    width: 100%;
  }
}

.p-spec__contents {
  margin-top: 17rem;
}
@media screen and (max-width: 767px) {
  .p-spec__contents {
    margin-top: 12rem;
  }
}

.p-spec__contents-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-spec__contents-wrap {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}

.p-spec__swiper-container,
.p-spec__swiper,
.p-spec__swiper-wrapper,
.p-spec__swiper-slide {
  position: relative;
}

.p-spec__swiper-container {
  margin-top: 2rem;
  width: 45%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-spec__swiper-container {
    margin-top: 0;
    width: 100%;
  }
}

.p-spec__swiper-img img {
  aspect-ratio: 517/440;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  top: 57%;
  transform: translateY(-50%);
}
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
  left: 0;
  top: 0;
}

.swiper-button-next {
  top: 57%;
  transform: translateY(-50%);
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  left: 0;
  top: 0;
}

.p-spec__detail {
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-spec__detail {
    margin-top: 8rem;
  }
}

/* 下層ページ（exploration）
***************************************************************/
.p-exploration {
  padding-block: 18rem 30rem;
}
@media screen and (max-width: 767px) {
  .p-exploration {
    padding-block: 12rem 14rem;
  }
}

.p-exploration__container {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-exploration__container {
    margin-top: 5rem;
  }
}

.p-exploration__item-title {
  text-align: left;
}

.p-exploration__accordion {
  display: none;
  padding-block: 5rem 5rem;
}

.p-exploration__text {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-exploration__text {
    width: 100%;
  }
}

/* 下層ページ（history）
***************************************************************/
.p-history {
  padding-block: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-history {
    padding-block: 10rem 0;
  }
}

.p-history__contents {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-history__contents {
    margin-top: 5rem;
  }
}

.p-history__head {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.p-history__year {
  width: 11rem;
  flex-shrink: 0;
  text-align: left;
}

.p-history__title,
.p-history__text {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

.p-history__accordion {
  padding-block: 3.6rem 1rem;
  padding-left: 14rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-history__accordion {
    padding-left: 0;
  }
}
#p-history .p-history__accordion {
  margin-top: -7rem;
}
@media screen and (max-width: 767px) {
  #p-history .p-history__accordion {
    margin-top: 0rem;
  }
}
.p-history__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-history__gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
  }
}

.p-history__gallery-img img {
  aspect-ratio: 94/62;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-history__profile {
  margin-top: 3rem;
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-history__profile {
    flex-direction: column;
    gap: 3rem;
    padding-block: 3rem;
  }
}
.p-history__profile::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  top: 0;
  left: 0;
}
.p-history__profile::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #9fa0a0;
  bottom: 0;
  left: 0;
}

.p-history__profile-img {
  width: 36rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-history__profile-img {
    width: 100%;
  }
}
.p-history__profile-img img {
  aspect-ratio: 107/77;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-history__profile-body {
  flex-grow: 1;
  padding: 4rem 2rem 2rem 3rem;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-history__profile-body {
    padding: 0rem;
    width: 100%;
    margin-right: 0;
  }
}

.p-history__profile-name {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.p-history__profile-name .name--en {
  font-size: 1.6rem;
  margin-left: 2rem;
  letter-spacing: 0.05em;
}

.p-history__profile-detail {
  margin-top: 2.4rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.p-history__profile-item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-history__profile-item {
    margin-top: 0.8rem;
  }
}

.p-history__profile-year {
  flex-shrink: 0;
  margin-right: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-history__profile-year {
    margin-right: 0.4rem;
  }
}

.p-history__profile-list {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.p-history__profile-list li {
  position: relative;
  padding-left: 1.1rem;
}
.p-history__profile-list li::before {
  content: "・";
  position: absolute;
  left: 0rem;
  top: 0rem;
  font-size: 1.1rem;
}

.p-history__profile-sign {
  position: absolute;
  top: 3.2rem;
  right: 4rem;
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-history__profile-sign {
    top: 0;
    right: 0;
  }
}

.p-history__awards {
  padding-block: 26rem 35rem;
}
@media screen and (max-width: 767px) {
  .p-history__awards {
    padding-block: 12rem 18rem;
  }
}

/* 下層ページ（News＆Essay）
***************************************************************/
.p-news {
  padding-block: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 10rem 0;
  }
}
.p-news.p-news--single {
  padding-block: 0;
}
.p-news.p-news--essay {
  padding-block: 21rem 30rem;
}
@media screen and (max-width: 767px) {
  .p-news.p-news--essay {
    padding-block: 10rem 15rem;
  }
}

.p-news__container {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-news__container {
    margin-top: 5rem;
  }
}

.p-news__head {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news__head {
    gap: 2rem;
  }
}

.p-news__meta {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news__meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

.p-news__date,
.p-news__title,
.p-news__label {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-news__date {
    min-width: 15rem;
  }
}

.p-news__label {
  width: 11rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-news__label {
    width: 9rem;
  }
}

.p-news__accordion {
  padding-block: 5.6rem 7rem;
  padding-left: 14rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-news__accordion {
    padding-block: 3.6rem 4rem;
    padding-left: 0;
  }
}

.p-news__contents {
  text-align: left;
}
.p-news__contents p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 1.75em;
}
.p-news__contents h2 {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-block: 4rem 3rem;
}
.p-news__contents h3 {
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-block: 4rem 3rem;
}
.p-news__contents a {
  transition: all 0.3s ease;
  color: #036eb8;
}
@media (any-hover: hover) {
  .p-news__contents a:hover {
    opacity: 0.7;
  }
}
.p-news__contents blockquote {
  background: #f5f5f5;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 1em;
  margin-inline-end: 1em;
  padding: 1.5em;
  border: 1px solid #d0d0d0;
}
.p-news--single .p-news__contents {
  margin-top: 8rem;
}

.p-news__essay-link {
  font-size: 2rem;
  text-align: right;
  color: #036eb8;
  transition: all 0.3s ease;
  margin-top: 3.5rem;
  transform: translateX(5rem);
}
@media screen and (max-width: 767px) {
  .p-news__essay-link {
    transform: translateX(0rem);
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .p-news__essay-link:hover {
    opacity: 0.7;
  }
}

/* 下層ページ（酒蔵見学＆ジン蒸留体験）
***************************************************************/
.p-tour.p-tour--distillery {
  padding-block: 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-tour.p-tour--distillery {
    padding-block: 10rem 0;
  }
}
.p-tour.p-tour--gin {
  padding-block: 12rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-tour.p-tour--gin {
    padding-block: 10rem 0;
  }
}

.p-tour__intro {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 3rem;
}

.p-tour__container {
  margin-top: 4.2rem;
}

.p-tour__course-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-tour__course-head {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
}

.p-tour__course-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: left;
}

.p-tour__course-link {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  border: 1px solid #036eb8;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-tour__course-link {
    margin-left: auto;
  }
}
@media (min-width: 1300px) {
  .p-tour__course-link {
    transform: translateX(60%);
  }
}
.p-tour__course-link a {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 2.4rem;
  position: relative;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 2em 0 #036eb8, 0 0 0 #036eb8;
  transition: text-shadow 0.5s;
}
@media screen and (max-width: 767px) {
  .p-tour__course-link a {
    padding: 0.6rem 1.6rem;
  }
}
@media (any-hover: hover) {
  .p-tour__course-link a:hover {
    text-shadow: 0 0 0 #036eb8, 0 -2em 0 #036eb8;
  }
}

.p-tour__course-contents {
  margin-top: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  padding-left: 1rem;
  display: none;
}
.p-tour__course-contents ul,
.p-tour__course-contents p {
  padding-bottom: 3rem;
}

.p-tour__course-details > li {
  position: relative;
  padding-left: 1.6rem;
}
.p-tour__course-details > li::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.4rem;
}

/* 下層ページ（会社概要）
***************************************************************/
.p-company {
  padding-block: 14rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 10rem 0;
  }
}

.p-company__table-container {
  margin-top: 4rem;
  padding-block: 6rem 8rem;
  padding-inline: 0 14rem;
  position: relative;
  max-width: 108rem;
}
@media screen and (max-width: 767px) {
  .p-company__table-container {
    padding-inline: 0;
    padding-block: 6rem 18rem;
  }
}
.p-company__table-container::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  left: 0;
  top: 0;
  background: #9fa0a0;
}

.p-company__table {
  width: 100%;
  border-collapse: collapse;
}
.p-company__table th,
.p-company__table td {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.p-company__table th {
  width: 14%;
  padding-inline: 0 1.6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company__table th {
    width: 23%;
  }
}
.p-company__table .square-head {
  position: relative;
  padding-left: 1.6rem;
}
.p-company__table .square-head::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.4rem;
}

.p-company__opening-hours {
  display: flex;
  gap: 0rem 2rem;
  flex-wrap: wrap;
}

.p-company__table-access th,
.p-company__table-access td {
  padding-block: 4rem 7rem;
}

.p-company__table-contact td {
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}
.p-company__table-contact td a {
  display: block;
  padding-block: 1.6rem;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 3em 0 #231815, 0 0 0 #231815;
  transition: text-shadow 0.5s;
}
@media (any-hover: hover) {
  .p-company__table-contact td a:hover {
    text-shadow: 0 0 0 #231815, 0 -3em 0 #231815;
  }
}

.p-company__sign {
  position: absolute;
  width: 9.7222222222vw;
  max-width: 14rem;
  aspect-ratio: 120/168;
  right: 5rem;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company__sign {
    width: 9rem;
    bottom: 3rem;
  }
}

.p-company__map {
  padding-bottom: 16rem;
}
.p-company__map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 428/213;
}

/* ディスプレイ表示切り替え
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/* テキスト装飾
***************************************************************/
.u-text--black {
  color: #231815;
}

.u-text--nowrap {
  white-space: nowrap;
}

/* 余白（margin）
***************************************************************/
.u-mt20 {
  margin-top: 2rem;
}
/*# sourceMappingURL=style.css.map */


.p-contact__container {
  padding: 8rem 0 10rem;
}
.form-input {
  display: grid;
  grid-template-columns: 30% auto;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
.form-input input,
.form-input textarea {
  font-family: "Shippori Mincho", serif;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 1rem;
  border: solid 1px #000;
  background: #FFF;
}
.form-btn input[type="submit"] {
  font-family: "Shippori Mincho", serif;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  padding: 1rem 5rem;
  border: solid 1px #000;
  background: #FFF;
}

.hidden {
  opacity: 0;
  height: 0;
}