@charset "UTF-8";
/* =========================
// variable
// ========================= */
/* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */
:root {
  --font-size-base: 16px;
  --font-family-base: "Zen Antique", serif;
  --font-family-jp: "Zen Kaku Gothic Antique", sans-serif;
  --text-color: #000;
  --text-accent-color: #5d4e31;
  --kitanohana-color: #12493d;
  --hayashi-color: #FFD988;
  --bg-color: #f4f1ee;
}

/*------------------------------------------------------------
 * タグの基本設定
------------------------------------------------------------*/
html {
  font-size: clamp(15px, 1.5vw, var(--font-size-base));
}

/* 全体 */
body {
  font-size: 1rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.8;
  font-weight: 400;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  font-size: clamp(1.25rem, 4vw, 2rem);
  /* 20px〜32px */
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  /* 16px〜24px */
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  /* 16px〜20px */
}

h5 {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  /* 15px〜18px */
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  /* 14px〜16px */
}

/* 段落 */
p {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 781px) {
  p {
    margin-bottom: 2rem;
  }
}
/* リンク */
a {
  color: var(--text-accent-color);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

p a {
  color: var(--text-accent-color);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 781px) {
  a:hover {
    opacity: 1;
  }
}
/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  padding: 0.5em;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  color: var(--text-color);
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}

@media screen and (max-width: 1024px) {
  input,
button,
textarea,
select {
    font-size: 16px;
  }
}
button {
  background-color: var(--text-accent-color);
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: var(--accent-color);
}

@media screen and (max-width: 781px) {
  button:hover {
    background-color: var(--text-accent-color);
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
  /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

.font-gothic {
  font-family: var(--font-family-jp);
}

.section__inner {
  padding: 0 1rem;
  max-width: calc(1080px + 2rem);
}

.fadein {
  opacity: 0;
  position: relative;
}

.fadein.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.group-fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.sp_only {
  display: none;
}
@media screen and (max-width: 781px) {
  .sp_only {
    display: block;
  }
}

.header {
  position: relative;
}
.header__nav-area {
  position: absolute;
  z-index: 1;
  bottom: 7vh;
  left: 56px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15.5vh;
}
.header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header__nav a {
  color: white;
  font-size: 1.125rem;
  line-height: 1.4;
}
.header__nav a .font-en {
  font-size: 1rem;
  display: block;
}
.header .sns__nav-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header .sns__nav-item dl {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header .sns__nav-item dt {
  font-weight: 400;
}
.header .sns__nav-item dd {
  display: flex;
  gap: 1rem;
}
.header .sns__nav-item dd img {
  width: 2.375rem;
  aspect-ratio: 1;
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .hamburger {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: relative;
  }
  .header__nav-area {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-image: url("../img/back.webp");
    transition: all 0.3s ease-in-out;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    gap: 3rem;
  }
  .header__nav-area.active {
    right: 0;
    bottom: auto;
  }
  .header__nav a {
    color: var(--text-color);
  }
  .header .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    aspect-ratio: 1;
    min-width: 48px;
    width: 8vw;
    background-color: var(--kitanohana-color);
  }
  .header .hamburger__line {
    position: relative;
    width: 70%;
    height: 40%;
    margin: 2.25vw auto 2px;
  }
  .header .hamburger__line span {
    position: absolute;
    background-color: white;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease-in-out;
    color: white;
  }
  .header .hamburger__line span:nth-child(1) {
    top: 0;
  }
  .header .hamburger__line span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header .hamburger__line span:nth-child(3) {
    bottom: 0;
  }
  .header .hamburger.active .hamburger__line span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header .hamburger.active .hamburger__line span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active .hamburger__line span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 44%;
  }
  .header .hamburger span {
    text-align: center;
    font-size: clamp(0.65rem, 2vw, 1rem);
    color: white;
    display: block;
  }
}

.front-page .header {
  height: 100vh;
}

.fixed__cta {
  position: fixed;
  right: 0;
  z-index: 98;
  bottom: 6.25vh;
}
@media screen and (max-width: 781px) {
  .fixed__cta {
    bottom: 0;
    left: 0;
    right: auto;
  }
}
.fixed__cta .cta__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: calc(0.8rem + 52.25px);
}
@media screen and (max-width: 781px) {
  .fixed__cta .cta__list {
    flex-direction: row;
    gap: 0.5rem;
    padding-bottom: 0;
    padding-right: calc(0.5rem + 73.25px);
  }
}
.fixed__cta .cta__item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.fixed__cta .cta__item:last-child {
  position: absolute;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 781px) {
  .fixed__cta .cta__item:last-child {
    right: 0;
  }
}
.fixed__cta .cta__item a {
  color: white;
  writing-mode: vertical-rl;
  padding: 0 1.5rem;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 781px) {
  .fixed__cta .cta__item a {
    writing-mode: horizontal-tb;
    height: 50px;
    padding: 0 1.25rem;
  }
}
.fixed__cta .cta__item--top {
  background-image: url(../img/kitanohana_button.webp);
}
.fixed__cta .cta__item--button {
  background-image: url(../img/hayashi_button.webp);
}

.front-page main {
  margin-top: -100vh;
}

.mv {
  height: 100vh;
}
.mv__inner {
  display: flex;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    flex-direction: column;
  }
}
.mv__content {
  width: 50%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .mv__content {
    width: 100%;
    height: 50vh;
  }
}
.mv__content .site__logo {
  position: absolute;
  top: 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 180px;
  width: 25vw;
}
@media screen and (max-width: 1024px) {
  .mv__content .site__logo {
    top: 1.25rem;
  }
}
.mv__content--left {
  background-image: url("../img/kitanohana_fv-img.webp");
}
.mv__content--left .site__logo {
  left: 47px;
}
@media screen and (max-width: 1024px) {
  .mv__content--left .site__logo {
    left: 1.25rem;
  }
}
.mv__content--right {
  background-image: url("../img/hayashi_fv-img.webp");
}
.mv__content--right .site__logo {
  right: 47px;
}
@media screen and (max-width: 1024px) {
  .mv__content--right .site__logo {
    left: 1.25rem;
    right: auto;
  }
}

.front-page {
  background-image: url("../img/back.webp");
  overflow-x: hidden;
}

.news {
  background-image: url(../img/oshirase_bar.webp);
}
.news-title {
  font-size: 1.125rem;
  font-weight: 400;
}
.news__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 781px) {
  .news__inner {
    flex-direction: column;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.news__inner dl {
  display: flex;
  gap: 1.125rem;
}
@media screen and (max-width: 781px) {
  .news__inner dl {
    gap: 0.5rem;
  }
}
.news__inner dl dt,
.news__inner dl dd,
.news__inner dl dd h3 {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-color);
}
@media screen and (max-width: 781px) {
  .news__inner dl dt,
.news__inner dl dd,
.news__inner dl dd h3 {
    font-size: 1rem;
  }
}
.news__inner dl dt {
  flex: none;
}
.news__inner dl dt time {
  display: block;
}
.news__btn {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 781px) {
  .news__btn {
    margin-top: 1.25rem;
  }
}
.news__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hayashi-color);
  opacity: 0.5;
  z-index: -1;
}
.news__btn .btn-link {
  font-size: 1.125rem;
  padding: 0.65rem 2.6rem;
}

.catch {
  position: relative;
}
.catch::before {
  content: "";
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.catch::before {
  background-image: url(../img/oshirase_deco.webp);
  aspect-ratio: 92/29;
  max-width: 65vw;
  z-index: 3;
  max-width: 923px;
  top: -4vh;
}
.catch__inner {
  margin: 0 auto;
}
.catch__content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 9.6rem;
}
@media screen and (max-width: 781px) {
  .catch__content {
    padding-top: 4.5rem;
  }
}
.catch__content::before {
  content: "";
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/catch_back.webp);
  aspect-ratio: 108/48;
  max-width: 1083px;
  top: 3.1875rem;
  background-size: contain;
  left: 95px;
  z-index: -2;
}
@media screen and (max-width: 1400px) {
  .catch__content::before {
    left: 11vw;
    max-width: 85vw;
    width: auto;
    top: 6rem;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .catch__content::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: 55%;
    max-width: 400px;
    width: 70vw;
    height: auto;
  }
}
@media screen and (max-width: 781px) {
  .catch__content::before {
    top: 2.5rem;
  }
}
.catch__content h2 {
  margin-bottom: 1.625rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .catch__content h2 {
    margin-bottom: 2.5rem;
  }
}
.catch__content p {
  letter-spacing: 0.1em;
}

.store {
  position: relative;
  margin-top: 9rem;
}
.store::before {
  content: "";
  background-image: url(../img/store_deco2.webp);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
  width: 45vw;
  aspect-ratio: 1/1.5;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 781px) {
  .store {
    margin-top: 4rem;
  }
}
.store__inner {
  margin: 0 auto;
}
.store__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .store__content {
    flex-direction: column-reverse;
  }
}
.store__text {
  background-image: url(../img/store_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.25rem 2.3rem 2.25rem;
  flex: 1;
  max-width: 680px;
  margin-top: 380px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .store__text {
    margin: -2rem 0 0 auto;
    max-width: 85vw;
  }
}
@media screen and (max-width: 781px) {
  .store__text {
    padding: 2.25rem 1.3rem 1.25rem;
  }
}
.store__title {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.store__title span {
  display: block;
  font-size: 0.5em;
}
.store__img {
  flex: 1;
  aspect-ratio: 1/0.65;
}
@media screen and (max-width: 1024px) {
  .store__img {
    max-width: 85vw;
  }
}
.store__img img {
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
}
.store__btn {
  text-align: center;
}
.store__btn .btn-link {
  background-color: white;
  padding: 1.25rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
}
.store--kitanohana {
  position: relative;
}
.store--kitanohana::before {
  content: "";
  background-image: url(../img/store_deco1.webp);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  max-width: 370px;
  width: 25vw;
  top: 19vw;
  left: 3vw;
  aspect-ratio: 1/0.4;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .store--kitanohana::before {
    top: -10vw;
  }
}
.store--kitanohana .store__text {
  margin-right: -20vw;
}
@media screen and (max-width: 1024px) {
  .store--kitanohana .store__text {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .store--kitanohana .store__img img {
    box-shadow: -5px 5px 6px rgba(0, 0, 0, 0.25);
  }
}
.store--hayashi {
  margin-top: 11.25vh;
  padding-bottom: 42.8vh;
  position: relative;
}
@media screen and (max-width: 781px) {
  .store--hayashi {
    padding-bottom: 15.8vh;
  }
}
.store--hayashi::before {
  content: "";
  background-image: url(../img/store_deco3.webp);
  max-width: 400px;
  position: absolute;
  bottom: 20vh;
  left: 8vw;
  width: 50vh;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .store--hayashi::before {
    bottom: 5vh;
    left: 0;
    width: 35vw;
  }
}
.store--hayashi::after {
  content: "";
  background-image: url(../img/store_deco4.webp);
  position: absolute;
  bottom: -5vh;
  right: 0;
  width: 100%;
  max-height: 451px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: 0;
}
@media screen and (max-width: 781px) {
  .store--hayashi::after {
    bottom: -1.5vh;
  }
}
.store--hayashi .store__content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .store--hayashi .store__content {
    flex-direction: column-reverse;
  }
}
.store--hayashi .store__text {
  margin-left: -20vw;
}
@media screen and (max-width: 1024px) {
  .store--hayashi .store__text {
    margin-left: auto;
  }
}
.store--hayashi .store__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .store--hayashi .store__title {
    margin-left: 0;
    margin-right: auto;
  }
}
.store--hayashi .store__img img {
  box-shadow: -5px 5px 6px rgba(0, 0, 0, 0.25);
}

.company__title {
  line-height: 1.8;
  text-align: center;
  padding: 7.25vh 0 26.5vh;
  position: relative;
}
@media screen and (max-width: 781px) {
  .company__title {
    padding: 3.25vh 0 13.5vh;
  }
}
.company__title span {
  display: block;
  font-size: 0.5em;
}
.company__title::before {
  content: "";
  background-image: url(../img/company-title_back.webp);
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.company__inner {
  margin: 0 auto;
}
.company__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem 5.5rem;
}
@media screen and (max-width: 781px) {
  .company__content {
    flex-direction: column;
  }
}
.company__table {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
}
.company__item {
  display: flex;
  gap: 0.5rem 2.75rem;
}
.company__term {
  font-weight: 500;
  flex: 0 0 5rem;
}
.company__desc a {
  color: var(--text-color);
  text-decoration: underline;
}
.company__img img {
  aspect-ratio: 1;
}
@media screen and (max-width: 781px) {
  .company__img {
    width: 45vw;
  }
}

.pagetop {
  position: fixed;
  z-index: 5;
  bottom: 0;
  right: 80px;
  cursor: pointer;
}
@media screen and (max-width: 781px) {
  .pagetop {
    right: 0;
    max-width: 110px;
    width: 30vw;
  }
}

.footer {
  background-image: url(../img/footer_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  margin-top: 6.25rem;
}
@media screen and (max-width: 781px) {
  .footer {
    background-position: -50vw 0;
  }
}
.footer__inner {
  display: flex;
  gap: 2rem 6rem;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    flex-direction: column-reverse;
  }
}
.footer__content {
  flex: 1;
  padding-top: 4.5rem;
  padding-left: 71px;
}
@media screen and (max-width: 781px) {
  .footer__content {
    padding-top: 0;
    padding-left: 1.25rem;
  }
}
.footer__nav {
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 781px) {
  .footer__nav {
    margin-bottom: 1rem;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__nav-item a {
  display: flex;
  align-items: center;
}
.footer__nav-item a::before {
  content: "";
  width: 1.25em;
  height: 1px;
  background-color: var(--text-accent-color);
  display: inline-block;
  margin-right: 1em;
}
.footer .sns__nav-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 781px) {
  .footer .sns__nav-item {
    padding-right: 1.25rem;
  }
}
.footer .sns__nav-item dl {
  display: flex;
  font-size: 0.95rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-accent-color);
}
.footer .sns__nav-item dt {
  font-weight: 400;
}
.footer .sns__nav-item dd {
  display: flex;
  gap: 1rem;
}
.footer .sns__nav-item dd img {
  width: 1.875rem;
  aspect-ratio: 1;
}
.footer__copy {
  font-size: 0.825rem;
  color: var(--text-accent-color);
  text-align: right;
  margin: 0;
  margin-top: 3rem;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 781px) {
  .footer__copy {
    padding-right: 1.25rem;
    margin-bottom: 4rem;
  }
}
.footer__img {
  flex: none;
  max-width: 46vw;
}
@media screen and (max-width: 1024px) {
  .footer__img {
    max-width: 100%;
  }
}
.footer__img img {
  height: 100%;
}

.page .header,
.archive .header {
  position: relative;
}
.page .header .hamburger,
.archive .header .hamburger {
  display: block;
}
.page .header__nav-area,
.archive .header__nav-area {
  position: fixed;
  top: 0;
  left: auto;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-image: url("../img/back.webp");
  transition: all 0.3s ease-in-out;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  gap: 3rem;
}
.page .header__nav-area.active,
.archive .header__nav-area.active {
  right: 0;
  bottom: auto;
}
.page .header__nav a,
.archive .header__nav a {
  color: var(--text-color);
}
.page .header .hamburger,
.archive .header .hamburger {
  cursor: pointer;
  position: fixed;
  max-width: 77px;
  top: 0;
  right: 0;
  z-index: 99;
  aspect-ratio: 1;
  min-width: 48px;
  width: 8vw;
  background-color: var(--kitanohana-color);
}
.page .header .hamburger__line,
.archive .header .hamburger__line {
  position: relative;
  width: 70%;
  height: 40%;
  margin: 25% auto 2px;
}
.page .header .hamburger__line span,
.archive .header .hamburger__line span {
  position: absolute;
  background-color: white;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease-in-out;
  color: white;
}
.page .header .hamburger__line span:nth-child(1),
.archive .header .hamburger__line span:nth-child(1) {
  top: 0;
}
.page .header .hamburger__line span:nth-child(2),
.archive .header .hamburger__line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.page .header .hamburger__line span:nth-child(3),
.archive .header .hamburger__line span:nth-child(3) {
  bottom: 0;
}
.page .header .hamburger.active .hamburger__line span:nth-child(1),
.archive .header .hamburger.active .hamburger__line span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.page .header .hamburger.active .hamburger__line span:nth-child(2),
.archive .header .hamburger.active .hamburger__line span:nth-child(2) {
  opacity: 0;
}
.page .header .hamburger.active .hamburger__line span:nth-child(3),
.archive .header .hamburger.active .hamburger__line span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 44%;
}
.page .header .hamburger span,
.archive .header .hamburger span {
  text-align: center;
  font-size: clamp(0.65rem, 2vw, 1rem);
  color: white;
  display: block;
  margin-bottom: 2%;
}

.page {
  background-image: url(../img/page-back.webp);
  overflow-x: hidden;
}
.page .mv {
  position: relative;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .page .mv {
    background-position: right;
  }
}
.page .mv__inner {
  display: block;
}
.page .mv__content {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .page .mv__content {
    height: 100%;
  }
}
.page .mv__content .site__logo {
  left: 8vw;
}
.page .mv__title {
  font-size: 3rem;
  color: white;
  position: absolute;
  left: 8vw;
  bottom: 20vh;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .page .mv__title {
    font-size: 2.25rem;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    bottom: auto;
  }
}
.page .mv__title span {
  font-size: 0.42em;
  display: block;
}
.page .catch {
  padding: 7.1875rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 781px) {
  .page .catch {
    padding: 4.1875rem 0;
  }
}
.page .catch::before {
  content: none;
}
.page .catch__content {
  max-width: 874px;
  padding: 3.8125rem 0 2.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 781px) {
  .page .catch__content {
    padding: 2.5rem 1rem;
  }
}
.page .catch__content::before {
  background-color: white;
  opacity: 0.65;
  background-image: none;
  top: 0;
  left: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .page .catch__content::before {
    max-width: none;
    transform: none;
  }
}
.page .catch__content p {
  margin-bottom: 0;
}
.page .plan {
  margin-top: 2.875rem;
  margin-bottom: 8.25rem;
}
@media screen and (max-width: 781px) {
  .page .plan {
    margin-bottom: 4.25rem;
  }
}
.page .plan__inner {
  margin: 0 auto;
}
.page .plan__title {
  text-align: center;
  position: relative;
  padding: 4.25rem 13.0625rem 6rem 15.125rem;
  color: white;
}
@media screen and (max-width: 781px) {
  .page .plan__title {
    padding: 4.5vh 0 8vh;
  }
}
.page .plan__title::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.33;
  top: 0;
  left: 0;
  z-index: -1;
}
.page .plan__content {
  margin-top: -1rem;
}
.page .plan__course-title {
  text-align: center;
}
.page .plan__course-title span {
  font-size: 0.84em;
}
.page .plan__course-desc {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 781px) {
  .page .plan__course-desc {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    margin: 1.25rem auto 2rem;
  }
}
.page .plan__list {
  display: flex;
  gap: 2rem 3.1875rem;
}
@media screen and (max-width: 781px) {
  .page .plan__list {
    flex-direction: column;
  }
}
.page .plan__item {
  padding: 1rem 1.25rem 3.25rem;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.page .plan__item::before {
  content: "";
  background-color: white;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.page .plan__item-img {
  aspect-ratio: 1/0.6;
}
.page .plan__item-title {
  text-align: center;
  margin-top: 2.25rem;
}
@media screen and (max-width: 781px) {
  .page .plan__item-title {
    margin-top: 1rem;
  }
}
.page .plan__item-desc {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 781px) {
  .page .plan__item-desc {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}
.page .plan__item-price {
  font-size: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}
.page .plan__item-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.page .plan__item-actions .btn-link {
  background-color: white;
  display: block;
  max-width: 340px;
  margin: 0 auto;
  padding: 1.25rem;
  width: 100%;
  text-align: center;
}
.page .plan__new-content {
  position: relative;
  max-width: 874px;
  padding: 3.8125rem 2rem 2.75rem;
  margin: 0 auto;
}
.page .plan__new-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  opacity: 0.4;
  z-index: -1;
}
.page .plan__new-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem auto 2.5rem;
}
.page .plan__new-list {
  display: flex;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 580px) {
  .page .plan__new-list {
    flex-direction: column;
  }
}
.page .plan__new-list .plan__course-title {
  line-height: 1.6;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.page .plan__new-list .plan__course-time {
  display: inline-block;
  font-size: 1.1rem;
  color: #6a4b1f;
  margin-bottom: 0.5rem;
}
.page .plan__new-list .plan__course-price {
  display: inline-block;
  font-size: 1rem;
  margin-top: 0.25rem;
}
.page .plan__new-link {
  text-align: right;
  margin-top: 2rem;
  margin-right: 160px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .page .plan__new-link {
    margin-right: 6vw;
  }
}
@media screen and (max-width: 580px) {
  .page .plan__new-link {
    margin-right: 0;
  }
}
.page .company__title::before {
  z-index: 0;
}
.page .company__title::after {
  content: "";
  background-image: url(../img/store_deco4.webp);
  position: absolute;
  top: -40%;
  right: 0;
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
}
.page .company__title h2 {
  position: relative;
  z-index: 1;
  color: white;
}
.page .company__content {
  max-width: 1000px;
  width: 100%;
  display: block;
}
.page .company__table {
  gap: 0;
}
.page .company__item {
  position: relative;
  padding: 1.875rem 5.25vw;
}
.page .company__item::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.page .company__item:last-child::after {
  content: none;
}
@media screen and (max-width: 781px) {
  .page .company__item {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page .company__term {
  font-size: 1.125rem;
  font-weight: 500;
  flex: 0 0 10em;
}
@media screen and (max-width: 781px) {
  .page .company__term {
    flex: auto;
    font-weight: bold;
  }
}
.page .company__desc p {
  margin-bottom: 0;
}
.page .company__desc p span {
  display: block;
  font-size: 0.875em;
  margin-bottom: 1.5rem;
}
.page .company__desc ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.page .company__desc > .company__item {
  padding: 0;
  margin-bottom: 1.25rem;
}
.page .company__desc > .company__item::after {
  content: none;
}
.page .company__desc > .company__item .company__term {
  flex: 0 0 7em;
}
@media screen and (max-width: 781px) {
  .page .company__desc > .company__item .company__term {
    flex: auto;
  }
}
.page .company__desc > .company__item img {
  width: 40px;
  margin-right: 1rem;
}
.page .news {
  background-image: unset;
}
.page .news__inner {
  align-items: unset;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
@media screen and (max-width: 1024px) {
  .page .news__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.page .news__inner dl {
  align-items: center;
}
.page .news-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
@media screen and (max-width: 1024px) {
  .page .news-title {
    text-align: center;
  }
}
.page .news__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page .news__item h3 {
  font-size: 1rem;
}
.page .news__item a {
  color: var(--text-color);
}
.page .news__category {
  font-size: 0.875rem;
  background-color: #323232;
  color: white;
  padding: 0.25em 0.5em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.page .news__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0 0;
}
@media screen and (max-width: 1024px) {
  .page .news__btn {
    margin: 0 auto;
  }
}
.page-kitanohana .mv {
  background-image: url(../img/page-kitanohana_back.webp);
}
.page-kitanohana .catch {
  background-image: url(../img/page-kitanohana_catch.webp);
  color: var(--kitanohana-color);
}
.page-kitanohana .plan__title::before {
  background-image: url(../img/kitanohana-plan_title.webp);
}
.page-kitanohana .plan__new-content {
  margin-top: 2rem;
  padding: 2.5rem 1rem 1.75rem;
}
@media screen and (max-width: 580px) {
  .page-kitanohana .plan__new-content {
    padding: 1.5rem 1rem 0.75rem;
  }
}
@media screen and (max-width: 580px) {
  .page-kitanohana .plan__new-list {
    gap: 0;
  }
}
.page-kitanohana .plan__course-title {
  font-size: clamp(1.15rem, 3vw, 1.25rem);
  margin-bottom: 1em;
  min-width: 225px;
}
.page-kitanohana .plan__item {
  max-width: 600px;
}
.page-kitanohana .company__title::before {
  background-image: url(../img/kitanohana-title_back.webp);
}
.page-hayashi .mv {
  background-image: url(../img/page-hayashi_back.webp);
}
@media screen and (max-width: 580px) {
  .page-hayashi .mv {
    background-position: 60% 0;
  }
}
.page-hayashi .news__inner {
  gap: 2rem 3rem;
}
.page-hayashi .news-title {
  flex: 1;
}
.page-hayashi .news__content {
  flex: 5;
}
.page-hayashi .news__item h3 {
  word-break: break-all;
  font-weight: normal;
  margin-top: 0.15em;
}
.page-hayashi .catch {
  background-image: url(../img/page-hayashi_catch.webp);
  color: white;
  background-position: bottom;
}
@media screen and (max-width: 580px) {
  .page-hayashi .catch {
    background-position: top;
    text-shadow: 0 0 5px #000;
  }
}
.page-hayashi .catch__content::before {
  background-color: var(--hayashi-color);
  opacity: 0.4;
}
.page-hayashi .plan__title::before {
  background-image: url(../img/hayashi-plan_title.webp);
}
.page-hayashi .company__title::before {
  background-image: url(../img/hayashi-title_back.webp);
}

.archive {
  background-image: url(../img/back.webp);
}
.archive .news {
  background-image: none;
}
.archive .news__inner {
  flex-direction: column;
  align-items: baseline;
  padding-top: 10rem;
}
@media screen and (max-width: 781px) {
  .archive .news__inner {
    padding-top: 6rem;
  }
}
.archive .news__inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 5vw;
  letter-spacing: 0.05em;
}
.archive .news__list {
  width: 100%;
}
.archive .news__list article {
  border-top: 1px dotted #b2b2b2;
  padding: 2em 1em;
}
.archive .news__list article:last-child {
  border-bottom: 1px dotted #b2b2b2;
}
.archive .news__list article dl {
  margin-bottom: 0.5rem;
}
.archive .news__list article dl dt time {
  font-size: 1rem;
}
.archive .news__list article h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
.archive .news__category {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.archive .news__category span {
  font-size: 0.875rem;
  background-color: #323232;
  color: white;
  padding: 0.25em 0.5em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.archive .news__category span.hayashi {
  background-color: var(--hayashi-color);
  color: var(--text-color);
}
.archive .news__category span.kitanohana {
  background-color: var(--kitanohana-color);
}
.archive .news__content *:last-child {
  margin-bottom: 0;
}
.archive .news__btn {
  margin: 4rem auto 0;
}

.error404 {
  background-image: url(../img/back.webp);
}
.error404 .section__inner {
  flex-direction: column;
  align-items: baseline;
  padding-top: 10rem;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 781px) {
  .error404 .section__inner {
    padding-top: 6rem;
  }
}
.error404 .section__inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 3vw;
  letter-spacing: 0.05em;
}
.error404 .section__inner .store__btn {
  margin: 4rem auto 0;
}
/*# sourceMappingURL=style.css.map */