@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  list-style: none;
  font-family: "Zen Old Mincho", serif;
  color: #050556;
  background-color: #f6f6f6;
}

.clickArrow {
  margin-top: 6px;
}

a:hover {
  opacity: 0.6;
}

.inner {
  padding: 100px 20px 0;
}

.innerBlue {
  padding: 100px 5% 0 5%;
  background-color: #050556;
}

.menu {
  font-size: 14px;
  margin-top: 50px;
  display: flex;
  justify-content: center; /* リスト全体を中央揃え */
  /* 2列目以降のアイテムを自動調整 */
}
.menu__list {
  display: grid; /* グリッドレイアウトを使用 */
  grid-template-columns: repeat(3, 220px); /* 1行目は3列、各幅175px */
  grid-auto-rows: 40px; /* 各行の高さ40px */
  width: fit-content;
}
@media (max-width: 735px) {
  .menu__list {
    grid-template-columns: repeat(2, 220px); /* 1行目は2列、各幅175px */
  }
}
@media (max-width: 490px) {
  .menu__list {
    grid-template-columns: repeat(1, 220px); /* 1行目は2列、各幅175px */
  }
}
@media (max-width: 490px) {
  .menu__listRecipe {
    display: none;
  }
}
.menu__listItem {
  display: flex;
  justify-content: center; /* 子要素の水平方向中央揃え */
  align-items: center; /* 子要素の垂直方向中央揃え */
  background-color: #fff;
  border: 1px solid #050556;
}
.menu__listItem:hover {
  color: #fff;
  background-color: #050556;
}
.menu__listLink {
  display: block; /* リンク要素をブロック化 */
  width: 100%; /* 親要素の幅に合わせる */
  height: 100%; /* 親要素の高さに合わせる */
  text-align: center; /* テキストを中央揃え */
  line-height: 38px; /* テキストを垂直方向に中央揃え */
  text-decoration: none;
  color: inherit;
  opacity: 1 !important;
}
.menu__listItem {
  grid-template-rows: auto; /* 高さは自動調整 */
}

.accordion {
  display: none;
  width: 220px;
  border: 1px solid #050556;
  overflow: hidden;
}
@media (max-width: 490px) {
  .accordion {
    display: block;
  }
}
.accordion .accordion-header {
  width: 100%;
  padding: 10px;
  height: 38px;
  background-color: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .accordion-header:focus {
  outline: none;
}
.accordion .accordion-header .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.accordion .accordion-header.active .arrow {
  transform: rotate(-135deg);
}
.accordion .accordion-content {
  max-height: 0; /* 閉じた状態 */
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}
.accordion .accordion-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-content ul li {
  border-top: 1px solid #ccc;
  text-align: center;
}
.accordion .accordion-content ul li:last-child {
  border-bottom: none;
}

.p-drawerContent {
  background: #f6f6f6;
  width: 85vw;
  height: 100vh;
  right: 0;
  top: 0;
  position: fixed;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}

.p-drawerContent.isActive {
  transform: translateX(0);
}

.p-drawerContent__items {
  width: 200px;
  margin: 15vh auto 0;
}

.p-drawerContent__item a {
  display: block;
  color: #050505;
  padding: 9px 20px;
  text-align: center;
  position: relative;
}

.p-drawerContent__items2 {
  display: flex;
  gap: 10px;
  width: 140px;
  margin: 20px auto 0;
}

.p-drawerBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}

.p-drawerBackground.isActive {
  display: block;
}

.p-drawerIcon {
  z-index: 9999;
  width: 48px;
  height: 60px;
  display: none;
  border-bottom-left-radius: 3px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 896px) {
  .p-drawerIcon {
    display: flex;
  }
}
.p-drawerIcon.isActive .p-drawerIcon__bar1 {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  background: #050556;
}

.p-drawerIcon.isActive .p-drawerIcon__bar2 {
  display: none;
}

.p-drawerIcon.isActive .p-drawerIcon__bar3 {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  background: #050556;
}

.p-drawerIcon__bars {
  width: 48px;
  height: 20px;
  display: block;
  position: relative;
}

.p-drawerIcon__bar1, .p-drawerIcon__bar2, .p-drawerIcon__bar3 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #050556;
  left: 0;
  transition: 0.3s;
}

.p-drawerIcon__bar1 {
  top: 0;
}

.p-drawerIcon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.p-drawerIcon__bar3 {
  bottom: 0;
}

/* ヘッダー */
.header__top {
  position: fixed;
  z-index: 9999;
  display: flex;
  height: 140px;
  align-items: center;
  width: 100vw;
  padding: 0 64px;
  justify-content: space-between;
  background-color: #f6f6f6;
}
@media (max-width: 896px) {
  .header__top {
    height: 80px;
    width: 100vw;
    margin: 0 0 0 0;
    padding: 10px 20px;
  }
}
.header__logoImg {
  width: auto;
  height: 60px;
}
@media (max-width: 896px) {
  .header__logoImg {
    height: 40px;
    width: auto;
  }
}
.header__nav {
  display: flex;
}
@media (max-width: 1323px) {
  .header__nav {
    display: block;
  }
}
@media (max-width: 896px) {
  .header__nav {
    display: none;
  }
}
.header__navList {
  display: flex;
  font-size: 14px;
}
@media (max-width: 1323px) {
  .header__navList {
    margin-bottom: 10px;
  }
  .header__navList:last-child {
    margin-bottom: 0;
  }
}
.header__navItem {
  margin-left: 20px;
  color: #050556; /* ベースとなる文字色（背景が暗い場合） */
  font-weight: bold;
  text-shadow: 0.5px 0.5px 1px #ffffff;
}
.header__bottom {
  display: flex;
  padding-top: 140px;
}
@media (max-width: 896px) {
  .header__bottom {
    padding-top: 80px;
  }
}
.header__bottomLeft {
  width: 64px;
}
@media (max-width: 896px) {
  .header__bottomLeft {
    width: 20px;
  }
}
.header__mainvisual {
  position: relative;
}
.header__mainvisualList {
  width: calc(100vw - 128px);
  height: calc(100vh - 200px);
  margin: 0 auto;
  position: relative; /* コンテナ内でスライド位置を相対的に設定 */
  overflow: hidden; /* スライドがコンテナ外に出ないように非表示 */
}
@media (max-width: 896px) {
  .header__mainvisualList {
    width: calc(100vw - 40px);
    height: calc(100vh - 100px);
  }
}
.header__mainvisualListAbout {
  width: calc(100vw - 128px);
  height: 50vh;
  background: url(../images/mainvisual_about.JPG) no-repeat center 20%;
  background-size: cover;
}
@media (max-width: 896px) {
  .header__mainvisualListAbout {
    width: calc(100vw - 40px);
    height: 60vh;
  }
}
.header__mainvisualListConcept {
  width: calc(100vw - 128px);
  height: 50vh;
  background: url(../images/mainvisual_concept.JPG) no-repeat center 20%;
  background-size: cover;
}
@media (max-width: 896px) {
  .header__mainvisualListConcept {
    width: calc(100vw - 40px);
    height: 60vh;
  }
}
.header__mainvisualListrecipe {
  width: calc(100vw - 128px);
  height: 50vh;
  background: url(../images/mainvisual_recipe.JPG) no-repeat center 60%;
  background-size: cover;
}
@media (max-width: 896px) {
  .header__mainvisualListrecipe {
    width: calc(100vw - 40px);
    height: 60vh;
  }
}
.header__mainvisualListExperience {
  width: calc(100vw - 128px);
  height: 50vh;
  background: url(../images/mainvisual_Experience.JPG) no-repeat center 60%;
  background-size: cover;
}
@media (max-width: 896px) {
  .header__mainvisualListExperience {
    width: calc(100vw - 40px);
    height: 60vh;
  }
}
.header__mainvisualItem {
  position: absolute; /* 位置を絶対指定で重ねて配置 */
  width: 100%; /* スライド画像の幅を100%に */
  height: 100%; /* スライド画像の高さを100%に */
  top: 0; /* 上からの位置を0に */
  left: 0; /* 左からの位置を0に */
  opacity: 0; /* 初期状態で透明に */
  object-fit: cover;
  background-size: cover; /* 画像をスライド全体にカバー */
  animation: slideAnime 25s infinite; /* 15秒で1サイクルのアニメーションを無限ループ */
}
.header__mainvisualText {
  position: absolute; /* 親要素を基準に配置 */
  left: 110px; /* 左から110px */
  bottom: 110px; /* 下から210px */
  color: #ffffff; /* テキスト色を目立たせる */
  font-size: 32px;
  line-height: 1.7;
  font-family: "yuji-syuku", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 0 1px #000000;
}
@media (max-width: 896px) {
  .header__mainvisualText {
    left: 10px;
    bottom: 50px;
    font-size: 28px;
  }
}
.header__bottomRight {
  width: 64px;
}
@media (max-width: 896px) {
  .header__bottomRight {
    width: 20px;
  }
}
.header__icon {
  position: fixed;
  z-index: 9999;
  padding-top: 20vh;
}
.header__iconList {
  height: 150px;
  width: 30px;
  margin-left: 17px;
  display: grid;
  justify-content: space-between;
}
@media (max-width: 896px) {
  .header__iconList {
    display: none;
  }
}

@keyframes slideAnime {
  0%, 30%, 100% {
    opacity: 0;
  } /* 非表示のタイミングを設定 */
  10%, 20% {
    opacity: 1;
  } /* 表示されるタイミングを設定 */
}
/* 各スライドのアニメーションタイミングを均等にずらす */
.header__mainvisualItem:nth-of-type(1) {
  background-image: url("../images/mainvisual_1.jpg"); /* 1枚目の画像を指定 */
  background-position: center 50%;
  background-size: cover;
  animation-delay: 0s; /* アニメーション開始を0秒遅延 */
}

.header__mainvisualItem:nth-of-type(2) {
  background-image: url("../images/mainvisual_2.JPG"); /* 2枚目の画像を指定 */
  background-position: center 20%;
  background-size: cover;
  animation-delay: 5s; /* アニメーション開始を5秒遅延 */
}

.header__mainvisualItem:nth-of-type(3) {
  background-image: url("../images/mainvisual_3.JPG"); /* 3枚目の画像を指定 */
  background-position: center 20%;
  background-size: cover;
  animation-delay: 10s; /* アニメーション開始を10秒遅延 */
}

.header__mainvisualItem:nth-of-type(4) {
  background-image: url("../images/mainvisual_4.JPG"); /* 4枚目の画像を指定 */
  background-position: center 20%;
  background-size: cover;
  animation-delay: 15s; /* アニメーション開始を15秒遅延 */
}

.header__mainvisualItem:nth-of-type(5) {
  background-image: url("../images/mainvisual_5.JPG"); /* 5枚目の画像を指定 */
  background-position: center 20%;
  background-size: cover;
  animation-delay: 20s; /* アニメーション開始を20秒遅延 */
}

.room {
  height: 10px;
}
@media (max-width: 768px) {
  .room {
    height: 0;
  }
}

/*こだわり*/
.concept {
  margin-top: 150px;
  background: linear-gradient(to bottom, transparent 0%, transparent 10%, #050556 10%, #050556 90%, transparent 90%, transparent 100%);
  color: #fff;
  padding: 0 20px;
  display: grid;
}
@media (max-width: 1020px) {
  .concept {
    background-color: #050556;
    padding: 100px 20px;
  }
}
@media (max-width: 768px) {
  .concept {
    margin-top: 100px;
  }
}
.concept__content {
  display: flex;
  max-width: 1228px;
  margin: 0 auto;
}
@media (max-width: 1020px) {
  .concept__content {
    flex-direction: column; /* アイテムを縦並びに */
  }
}
.concept__text {
  width: 100%;
  max-width: 536px;
  height: auto;
  align-self: center;
}
@media (max-width: 1020px) {
  .concept__text {
    width: 100%; /* 幅を全体に広げる */
    height: auto;
    margin-left: 0; /* 余白をリセット */
    position: static; /* 絶対配置を無効化 */
  }
}
.concept__textTitle {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 1020px) {
  .concept__textTitle {
    font-size: 28px;
  }
}
.concept__textContent {
  line-height: 1.5;
}
@media (max-width: 1020px) {
  .concept__textContent {
    font-size: 14px;
  }
}
.concept__click {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}
.concept__clickText {
  font-weight: bold;
}
@media (max-width: 1020px) {
  .concept__clickText {
    font-size: 14px;
  }
}
.concept__clickArrow {
  margin-top: 6px;
}
.concept__img {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 50px;
  width: 100%;
  max-width: 640px;
  height: auto;
}
@media (max-width: 1020px) {
  .concept__img {
    width: 100%; /* 幅を全体に広げる */
    max-width: 642px;
    height: auto;
    margin-left: 0; /* 余白をリセット */
    margin-top: 20px; /* テキストと画像の間に余白を追加 */
  }
}
.concept__img1, .concept__img2 {
  object-fit: cover;
  width: 80%; /* 親要素に応じて調整 */
  max-width: 480px; /* 最大幅を指定 */
  height: auto;
}
@media (max-width: 1020px) {
  .concept__img1, .concept__img2 {
    width: 100%;
  }
}
.concept__img2 {
  margin-left: auto; /* 右端に配置 */
}
@media (max-width: 1020px) {
  .concept__img2 {
    margin-left: 0px;
  }
}

.product {
  max-width: 1140px;
  margin: 50px auto 0;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .product {
    padding: 100px 0;
  }
}
.product__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .product__title {
    font-size: 28px;
  }
}
.product__list {
  margin-top: 50px;
  padding: 0 30px;
  display: grid;
  font-size: 14px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px; /* 1行目と2行目の間を40pxに設定 */
  column-gap: 40px;
}
@media (max-width: 768px) {
  .product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product__list {
    grid-template-columns: 1fr;
  }
}
.product__img {
  max-width: 100%;
}
.product__text {
  position: relative;
  height: 145px;
  padding: 24px 12px 12px 12px;
  line-height: 2;
  background-color: #fff;
}
.product__link {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.recipe {
  background: url(../images/grill.JPG) no-repeat center center;
  margin-top: 100px;
  padding: 150px 0;
  display: flex; /* 子要素をフレックスボックスに */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */
}
@media (max-width: 768px) {
  .recipe {
    padding: 100px 0;
  }
}
.recipe__text {
  background-color: rgba(255, 255, 255, 0.6156862745);
  max-width: 900px;
  padding: 25px 40px;
  border: 1px solid #000;
}
.recipe__textbox {
  padding: 0 20px;
}
.recipe__textTitle {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .recipe__textTitle {
    font-size: 28px;
  }
}
.recipe__textContent {
  margin-top: 35px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recipe__textContent {
    font-size: 14px;
  }
}
.recipe__click {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}
.recipe__clickText {
  font-weight: bold;
}
@media (max-width: 768px) {
  .recipe__clickText {
    font-size: 14px;
  }
}

.experience {
  margin-top: 50px;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .experience {
    padding: 100px 0;
  }
}
.experience__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .experience__title {
    font-size: 28px;
  }
}
.experience__content {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .experience__content {
    flex-direction: column;
    gap: 30px;
  }
}
.experience__material {
  height: auto;
}
@media (max-width: 768px) {
  .experience__material {
    width: 100%;
    max-width: 768px;
    height: auto;
    object-fit: cover;
  }
}
.experience__text {
  max-width: 325px;
  line-height: 1.5;
  height: 265px;
  display: flex; /* Flexboxを使用 */
  flex-direction: column; /* 縦方向に配置 */
  justify-content: space-between; /* 上端と下端に要素を配置 */
}
@media (max-width: 768px) {
  .experience__text {
    max-width: 768px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .experience__textContent {
    font-size: 14px;
  }
}
.experience__click {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}
.experience__clickText {
  font-weight: bold;
}
@media (max-width: 768px) {
  .experience__clickText {
    font-size: 14px;
  }
}

.background {
  margin-top: 150px;
  height: 400px;
  width: 100vw;
  background-image: url(../images/mainvisual_3.JPG);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .background {
    margin: 0;
  }
}

.custom {
  margin-top: 50px;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .custom {
    padding: 100px 0;
  }
}
.custom__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .custom__title {
    font-size: 28px;
  }
}
.custom__banner {
  max-width: 600px;
  margin: 50px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.custom__img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.news {
  margin-top: 50px;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .news {
    padding-top: 100px;
  }
}
.news__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .news__title {
    font-size: 28px;
  }
}

.facebook {
  max-width: 540px; /* レスポンシブ対応 */
  margin: 0 auto;
  padding: 0 20px;
}
.facebook__wrapper {
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin-top: 50px; /* タイトルとの間隔 */
  width: 100%; /* 横幅を親要素に合わせる */
  height: 600px; /* 高さ固定 */
  border: none;
}

.calendar {
  margin-top: 50px;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .calendar {
    padding: 100px 0;
  }
}
.calendar__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .calendar__title {
    font-size: 28px;
  }
}
.calendar__wrapper {
  display: flex; /* フレックスボックスを使用 */
  justify-content: center; /* 水平方向に中央寄せ */
  margin-top: 50px; /* タイトルとの間隔 */
}
@media (max-width: 767px) {
  .calendar__wrapper {
    padding: 0 20px;
  }
}
.calendar__google {
  width: 80%; /* 幅をレスポンシブに調整 */
  max-width: 1000px; /* 最大幅の制限 */
  height: 600px; /* 高さの固定 */
  border: solid 1px #777; /* ボーダーを適用 */
}
@media (max-width: 767px) {
  .calendar__google {
    width: 100%;
    max-width: 727px;
    height: 500px;
  }
}

.about {
  background: url(../images/about.JPG) no-repeat center 25%;
  margin-top: 150px;
  padding: 150px 0;
  display: flex; /* 子要素をフレックスボックスに */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */
}
@media (max-width: 768px) {
  .about {
    padding: 100px 0;
  }
}
.about__text {
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}
.about__textTitle {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .about__textTitle {
    font-size: 28px;
  }
}
.about__textContent {
  margin-top: 35px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about__textContent {
    font-size: 14px;
  }
}
.about__click {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}
.about__clickText {
  font-weight: bold;
}
@media (max-width: 768px) {
  .about__clickText {
    font-size: 14px;
  }
}

.store {
  margin-top: 50px;
  padding: 150px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .store {
    padding: 100px 0;
  }
}
.store__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .store__title {
    font-size: 28px;
  }
}
.store__content {
  display: flex;
  max-width: 970px;
  margin: 50px auto 50px;
  padding: 20px;
}
@media (max-width: 767px) {
  .store__content {
    flex-direction: column;
  }
}
.store__material {
  width: 100%;
  max-width: 475px;
  height: auto;
}
@media (max-width: 767px) {
  .store__material {
    width: 100%;
    max-width: 727px;
    height: auto;
  }
}
.store__list {
  margin-left: 45px;
  height: 276px;
  align-self: center;
}
@media (max-width: 767px) {
  .store__list {
    width: 100%;
    max-width: 727px;
    height: auto;
    margin: 20px 0 0 0;
    font-size: 14px;
  }
}
.store__item {
  display: flex;
  padding: 12px;
  border-bottom: 1px solid #050556;
  width: 100%;
}
.store__item:first-of-type {
  border-top: 1px solid #050556;
}
.store__dt {
  width: 80px;
}
.store__dd {
  width: calc(100% - 80px);
}
.store__map {
  max-width: 1020px;
  padding: 0 20px;
  height: 450px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 930px) {
  .store__map {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
    height: auto;
  }
}
@media (max-width: 930px) {
  .store__mapGoogle iframe {
    width: 100%;
    max-width: 890px;
    height: 500px;
  }
}
.store__mapMovie {
  width: 253px;
}
@media (max-width: 930px) {
  .store__mapMovie {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
}
@media (max-width: 930px) {
  .store__mapMovie iframe {
    width: 100%;
    max-width: 335px;
    height: 586px;
  }
}
.store__mapInfo {
  display: flex; /* Flexboxを有効化 */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え（必要なら追加） */
  height: 100%; /* 要素全体を使用 */
}
.contact {
  max-width: 980px;
  height: auto;
  margin: 50px auto;
  padding: 150px 20px 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .contact {
    margin: 50px auto;
  }
}
.contact__content {
  padding: 40px 20px;
  background-color: #050556;
}
.contact__title {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 28px;
  }
}
.contact__text {
  margin: 60px 0;
}
@media (max-width: 767px) {
  .contact__text {
    margin: 20px auto;
    font-size: 14px;
  }
}
.contact__button {
  width: 257px;
  height: 46px;
  margin: auto;
  background: #ffffff;
  color: #050556;
  border: 1px solid #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
.contact__button:hover {
  background-color: #050556;
  color: #ffffff;
}
.contact__buttonText {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.contact__buttonText:hover {
  opacity: 1;
}

.footer {
  background-color: #050556;
  color: #ffffff;
  padding: 75px 0 20px;
  font-size: 12px;
}
@media (max-width: 814px) {
  .footer {
    flex-direction: column;
  }
}
.footer__content {
  height: 80px;
  max-width: 1000px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 814px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 727px;
    height: auto;
    align-items: center;
  }
}
@media (max-width: 814px) {
  .footer__logoImg {
    width: 100%;
    max-width: 435px;
    height: auto;
  }
}
@media (max-width: 814px) {
  .footer__nav {
    display: flex;
    gap: 50px;
  }
}
.footer__navList {
  display: flex;
  line-height: 1.7;
  margin-bottom: 25px;
}
.footer__navList:last-child {
  margin-bottom: 0;
}
@media (max-width: 814px) {
  .footer__navList {
    margin-bottom: 10px;
    flex-direction: column;
  }
}
.footer__navItem {
  margin-left: 10px;
}
@media (max-width: 814px) {
  .footer__navItem {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.footer__bottom {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 814px) {
  .footer__bottom {
    margin-top: 25px;
  }
}

.aboutpage {
  max-width: 1000px;
  margin: 0 auto;
}
.aboutpage__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .aboutpage__title {
    font-size: 28px;
  }
}
.aboutpage__content {
  margin-top: 50px;
}
.aboutpage__container {
  margin-top: -50px;
  padding: 150px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 860px) {
  .aboutpage__container {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 100px 0 50px;
  }
}
.aboutpage__containerLeft {
  max-width: 500px;
}
@media (max-width: 860px) {
  .aboutpage__containerLeft {
    max-width: 100%;
  }
}
.aboutpage__containerTitle {
  font-size: 32px;
  font-weight: bold;
  padding-left: 16px;
  border-left: 3px solid #050556;
}
@media (max-width: 768px) {
  .aboutpage__containerTitle {
    font-size: 28px;
  }
}
.aboutpage__containerText {
  margin-top: 25px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .aboutpage__containerText {
    font-size: 14px;
  }
}
.aboutpage__containerImage {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1; /* 正方形のアスペクト比を指定（必要に応じて調整） */
  object-fit: cover; /* 画像をトリミングして親要素に合わせる */
  height: auto; /* 高さを自動調整 */
}
@media (max-width: 860px) {
  .aboutpage__containerImage {
    max-width: 100%;
  }
}

.conceptpage {
  max-width: 1000px;
  margin: 0 auto;
}
.conceptpage__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 860px) {
  .conceptpage__title {
    font-size: 28px;
  }
}
.conceptpage__container {
  padding: 100px 20px;
  margin-top: -50px;
}
.conceptpage__containerBlue {
  padding: 150px 0;
  background-color: #050556;
  color: #fff;
  margin-top: -100px;
}
@media (max-width: 860px) {
  .conceptpage__containerBlue {
    padding: 100px 0;
  }
}
.conceptpage__containerTitle {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 100px 0 15px 0;
  border-bottom: 1px solid #050556;
}
@media (max-width: 860px) {
  .conceptpage__containerTitle {
    font-size: 28px;
    padding-top: 0;
  }
}
.conceptpage__containerTitleBlue {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #fff;
}
@media (max-width: 860px) {
  .conceptpage__containerTitleBlue {
    font-size: 28px;
  }
}
.conceptpage__containerBlock {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 860px) {
  .conceptpage__containerBlock {
    flex-direction: column-reverse;
  }
}
.conceptpage__containerBlockReverse {
  flex-direction: row-reverse; /* ここで横並びを逆にする */
  gap: 30px;
}
@media (max-width: 860px) {
  .conceptpage__containerBlockReverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 860px) {
  .conceptpage__containerBlockText {
    width: 100%;
    max-width: 820px;
    font-size: 14px;
  }
}
@media (max-width: 860px) {
  .conceptpage__containerBlockImage {
    width: 100%;
    max-width: 820px;
    height: auto;
  }
}
.conceptpage__containerBlockRight {
  max-width: 550px;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .conceptpage__containerBlockRight {
    width: 100%;
    max-width: 820px;
    height: auto;
  }
}
.conceptpage__containerBlockTitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.conceptpage__containerBox {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 860px) {
  .conceptpage__containerBox {
    flex-direction: column;
  }
}
.conceptpage__containerLeft {
  max-width: 550px;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .conceptpage__containerLeft {
    max-width: 820px;
  }
}
.conceptpage__containerText {
  margin-bottom: 50px;
}
@media (max-width: 860px) {
  .conceptpage__containerText {
    margin-bottom: 30;
    font-size: 14px;
    line-height: 1.7;
  }
}
.conceptpage__containerImage {
  object-fit: cover;
}
@media (max-width: 860px) {
  .conceptpage__containerImage {
    width: 100%;
    max-width: 820px;
    height: auto;
  }
}

.recipepage {
  max-width: 1000px;
  margin: 0 auto;
}
.recipepage__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .recipepage__title {
    font-size: 28px;
  }
}
.recipepage__container {
  padding: 125px 0 75px;
}
@media (max-width: 768px) {
  .recipepage__container {
    padding: 425px 0 25px;
    margin-top: -350px;
  }
}
.recipepage__containerTitle {
  font-size: 32px;
  font-weight: bold;
  padding: 0 0 5px 10px;
  border-left: 1px solid #050556;
  border-bottom: 1px solid #050556;
}
@media (max-width: 768px) {
  .recipepage__containerTitle {
    font-size: 28px;
  }
}
.recipepage__containerImg {
  max-width: 600px;
  margin: 50px auto 0;
}
.recipepage__containerImage {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.recipepage__containerExp {
  max-width: 800px;
  margin: 50px auto 0;
}
.recipepage__containerExpTitle {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #050556;
}
.recipepage__containerExpBox {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .recipepage__containerExpBox {
    flex-direction: column;
    gap: 30px;
  }
}
.recipepage__containerExpText {
  line-height: 1.5;
  max-width: 650px;
}
@media (max-width: 768px) {
  .recipepage__containerExpText {
    font-size: 14px;
  }
}
.recipepage__containerExpImg {
  width: 100%;
  max-width: 144px;
  height: auto;
}
@media (max-width: 768px) {
  .recipepage__containerExpImg {
    display: none;
  }
}
.recipepage__containerExpPro {
  display: none;
}
@media (max-width: 768px) {
  .recipepage__containerExpPro {
    display: block;
  }
}

.experiencepage {
  max-width: 1000px;
  margin: 0 auto;
}
.experiencepage__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .experiencepage__title {
    font-size: 28px;
  }
}
.experiencepage__content {
  margin-bottom: 100px;
}
.experiencepage__container {
  padding-top: 100px;
  margin-top: -100px;
}
.experiencepage__containerInfo {
  margin-top: 100px;
  padding: 20px;
  background-color: #050556;
  color: #fff;
}
.experiencepage__containerTitle {
  display: flex;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 860px) {
  .experiencepage__containerTitle {
    font-size: 26px;
  }
}
.experiencepage__containerTitleNo {
  padding: 6px;
  background-color: #fff;
  color: #050556;
  min-width: 45px;
  height: 45px;
  margin-right: 10px;
}
.experiencepage__containerTitleName {
  align-self: center;
}
@media (max-width: 860px) {
  .experiencepage__containerTitleName {
    min-width: 240px;
    float: right;
  }
}
.experiencepage__containerEx {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 860px) {
  .experiencepage__containerEx {
    flex-direction: column;
  }
}
.experiencepage__containerImage {
  width: 100%;
  max-width: 500px;
  height: auto;
}
@media (max-width: 860px) {
  .experiencepage__containerImage {
    width: 100%;
    max-width: 820px;
    height: auto;
  }
}
.experiencepage__containerText {
  max-width: 400px;
  height: 300px;
  line-height: 1.5;
  /* Flexboxを適用 */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上下端に分ける */
}
@media (max-width: 860px) {
  .experiencepage__containerText {
    width: 100%;
    max-width: 820px;
    font-size: 14px;
    height: auto;
  }
}
@media (max-width: 860px) {
  .experiencepage__containerText p {
    margin-bottom: 30px;
  }
  .experiencepage__containerText p:last-child {
    margin-bottom: 0;
  }
}
.experiencepage__decoration {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */