@charset "UTF-8";
/* ///////////////////////////////////////////////

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.5em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/* ///////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
/*
  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #000;
  --color-wine: #3f0c28;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-mincho: "游明朝","Yu Mincho","游明朝体","YuMincho",serif;
  --font-en: "Baskervville", serif;
}
@media screen and (min-width: 961px) {
  :root {
    --dist-header: 90px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    --dist-header: 58px;
    font-size: 0.875px;
  }
}

body {
  color: var(--color-text-base);
  font-size: 16rem;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

:is(p) {
  line-height: 1.65;
}

:is(li, dt, dd, th, td) {
  line-height: 1.5;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:is(a) {
  color: inherit;
}
:is(a):hover {
  text-decoration: none;
}

.ffM {
  font-family: var(--font-mincho);
}

.ffE {
  font-family: var(--font-en);
}

/*
  LAYOUT
----------------------------------------------- */
@media screen and (max-width: 960px) {
  body.isMenuOpen {
    overflow: hidden;
  }
}

.main-contents {
  padding-top: var(--dist-header);
}
/*
  HEADER
----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  height: var(--dist-header);
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .header {
    align-items: center;
    padding-inline: 15px;
  }
}
.header .logo {
  align-self: center;
}
.header .logo img {
  transform-origin: left top;
}
@media screen and (min-width: 961px) {
  .header .logo {
    padding-left: calc(50% - 780px);
  }
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .header .logo {
    padding-left: 20px;
  }
}
@media screen and (min-width: 961px) {
  .header .logo img {
    width: 150px;
    scale: 2;
  }
}
@media screen and (max-width: 960px) {
  .header .logo img {
    width: 90px;
    scale: 1.5;
  }
}
.header.transform .logo img {
  scale: 1;
}
@media screen and (min-width: 961px) {
  .header.transform .gnav-contact {
    height: 90px;
  }
}

@media screen and (max-width: 960px) {
  .isMenuOpen .header .logo img {
    scale: 1;
  }
}

/*
  MENU
----------------------------------------------- */
.gnav {
  display: flex;
}
@media screen and (max-width: 960px) {
  .gnav {
    position: fixed;
    z-index: 10;
    top: var(--dist-header);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
}
.gnav-menu {
  display: flex;
}
@media screen and (min-width: 961px) {
  .gnav-menu {
    margin-right: 25px;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-menu {
    flex-direction: column;
  }
}
.gnav-menu > li {
  position: relative;
}
@media screen and (min-width: 961px) {
  .gnav-menu > li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gnav-menu > li:hover > .lower {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 960px) {
  .gnav-menu > li {
    border-bottom: 1px solid #e6e6e6;
  }
}
.gnav-menu > li > a {
  font-weight: 800;
}
@media screen and (min-width: 961px) {
  .gnav-menu > li > a {
    padding-inline: 20px;
    font-size: 17rem;
  }
}
@media screen and (max-width: 960px) {
  .gnav-menu > li > a {
    padding-inline: 5px;
    height: 70px;
    font-size: 15px;
  }
}
.gnav-menu a {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.gnav-menu a:hover {
  opacity: 0.7;
}
.gnav-menu .btnOpenMenu {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80%;
  cursor: pointer;
}
.gnav-menu .btnOpenMenu::before, .gnav-menu .btnOpenMenu::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav-menu .btnOpenMenu::before {
  content: "\f078";
}
.gnav-menu .btnOpenMenu.active::before {
  content: "\f077";
}
@media screen and (min-width: 961px) {
  .gnav-menu .btnOpenMenu {
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-menu .btnOpenMenu {
    top: 0;
    right: 0;
    width: 40px;
    height: 70px;
  }
}
.gnav-menu .lower {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gnav-menu .lower a {
  justify-content: space-between;
  gap: 1em;
  line-height: 2;
  font-weight: bold;
}
.gnav-menu .lower .fa-solid {
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50%;
}
@media screen and (min-width: 961px) {
  .gnav-menu .lower {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .gnav-menu .lower a {
    font-size: 17rem;
    white-space: nowrap;
  }
  .gnav-menu .lower .fa-solid {
    width: 20px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-menu .lower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .gnav-menu .lower li:last-child {
    margin-bottom: 20px;
  }
  .gnav-menu .lower.isOpenLower {
    max-height: 500px;
  }
  .gnav-menu .lower a {
    position: relative;
    display: flex;
    align-items: center;
    height: 25px;
    padding-inline: 35px;
    font-size: 13px;
  }
  .gnav-menu .lower .fa-solid {
    position: absolute;
    left: 12px;
    width: 13px;
  }
}
.gnav-menu .debug {
  opacity: 1;
  pointer-events: inherit;
}
.gnav-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  background-color: var(--color-wine);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .gnav-contact {
    width: min(250px, 20vw);
    height: 127px;
    font-size: 18rem;
  }
}
@media screen and (max-width: 960px) {
  .gnav-contact {
    height: 50px;
    font-size: 15px;
  }
  .gnav-contact i {
    width: 22px;
  }
}

.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  position: relative;
  z-index: 101;
  place-items: center;
  width: 36px;
  height: 36px;
  display: none;
  transition: 0.2s;
}
.btnMenu::before, .btnMenu::after, .btnMenu span {
  grid-area: 1/1;
  content: "";
  width: 36px;
  height: 2px;
  background: #d86566;
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -8px;
}
.btnMenu::after {
  translate: 0 8px;
}
@media screen and (max-width: 960px) {
  .btnMenu {
    display: grid;
  }
}

.isMenuOpen .btnMenu::before {
  rotate: 25deg;
  translate: 0;
}
.isMenuOpen .btnMenu::after {
  rotate: -25deg;
  translate: 0;
}
.isMenuOpen .btnMenu span {
  opacity: 0;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  background-color: #f7f3f2;
  display: grid;
  justify-items: center;
}
.footer .pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #3c3c3c;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.footer .pagetop i {
  transition: 0.2s;
}
.footer .pagetop:hover {
  background-color: #4d4d4d;
}
.footer .pagetop:hover i {
  transform: translateY(-5px);
}
@media screen and (min-width: 961px) {
  .footer .pagetop {
    height: 45px;
  }
}
@media screen and (max-width: 960px) {
  .footer .pagetop {
    height: 35px;
  }
}
@media screen and (min-width: 961px) {
  .footer .logo {
    width: 240px;
    margin: 70px auto 50px;
  }
}
@media screen and (max-width: 960px) {
  .footer .logo {
    width: 120px;
    margin: 25px auto;
  }
}
@media screen and (min-width: 961px) {
  .footer .button {
    width: 610px;
    height: 86px;
    font-size: 18rem;
  }
  .footer .button::after {
    right: 140px;
  }
}
@media screen and (max-width: 960px) {
  .footer .button {
    width: 330px;
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}
.footer .menu {
  display: flex;
  gap: 3em;
}
.footer .menu a {
  text-decoration: none;
}
.footer .menu a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 961px) {
  .footer .menu {
    margin-top: 70px;
    font-size: 14rem;
  }
}
@media screen and (max-width: 960px) {
  .footer .menu {
    margin-top: 45px;
    font-size: 10px;
  }
}
@media screen and (min-width: 961px) {
  .footer .copyright {
    padding-block: 50px 40px;
  }
}
@media screen and (max-width: 960px) {
  .footer .copyright {
    padding-block: 30px 75px;
  }
}
@media screen and (min-width: 961px) {
  .footer-contact {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .footer-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8em;
    background-color: var(--color-wine);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    height: 50px;
    font-size: 15px;
  }
  .footer-contact i {
    width: 22px;
  }
}

/* button */
.btn:hover {
  opacity: 0.8;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #d86566;
  border: 1px solid #d86566;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}
.button::before, .button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.button.wine {
  background-color: var(--color-wine);
  border-color: var(--color-wine);
}
@media screen and (min-width: 961px) {
  .button {
    width: 310px;
  }
}
@media screen and (max-width: 960px) {
  .button {
    font-size: 15px;
  }
}
.button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-size: 80%;
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .button::after {
    right: 20px;
  }
}
@media screen and (max-width: 960px) {
  .button::after {
    right: 35px;
  }
}
.button:hover {
  background-color: #fff;
  color: #d86566;
}
.button:hover::after {
  translate: 5px;
}
.button:hover.wine {
  color: var(--color-wine);
}

/* インターセクション */
.splitText span {
  display: inline-block;
  transform: translateX(-0.4em);
  opacity: 0;
  transition: opacity 0.8s, transform 1s;
}
.splitText.view span {
  transform: none;
  opacity: 1;
}