@charset "utf-8";
/*
Theme Name: karaku
Version: 1.0
*/

html {
  scroll-behavior: smooth;
}

body .pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  body .sp {
    display: none;
  }

  body .pc {
    display: block;
  }
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  font-size: 16px;
  color: #232323;
}

img {
  width: 100%;
  height: auto;
}

.inner {
  margin: 0 5%;
}

@media screen and (min-width: 1024px) {
  .inner {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header h1 {
  width: 80px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  padding: 10px 16px;
  background-color: #232323;
  z-index: 999;
}

.header__nav {
  position: absolute;
  display: flex;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  background-color: #232323;
  transition: ease 0.4s;
  height: 100vh;
  z-index: 998;
}

.header__nav.active {
  transform: translateX(0);
}

.header__nav .logo {
  width: 160px;
  margin: 0 auto 64px;
}

.header__nav .wrapper {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-items__item {
  text-align: center;
  margin-bottom: 40px;
}

.nav-items__item a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  border-bottom: #fff 1px solid;
  padding: 0 8px 8px;

}

.hamburger {
  position: relative;
  width: 24px;
  height: 48px;
  background-color: #232323;
  border-radius: 100px;
  cursor: pointer;
  border: none;
}

.hamburger .span {
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  display: block;
  display: flex;
  width: 100%;
}

.hamburger .span>span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 3px;
  background-color: #fff;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
  top: 30%;
}

.hamburger .span>span:nth-child(2) {
  top: 50%;
}

.hamburger .span>span:nth-child(3) {
  top: 70%;
}

.hamburger.active .span>span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .span>span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
    gap: 56px;
  }

  header h1 {
    width: 143px;
  }

  .nav-bg {
    display: none;
  }

  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }


  .nav-items__item {
    margin-bottom: 0;
  }

  .nav-items__item a {
    width: 100%;
    display: block;
    border-top: none;
    border-bottom: none;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .nav-items__item a:hover {
    opacity: 0.7;
  }

  .nav-items .tel {
    background-color: #46423F;
    padding: 12px 32px 16px;
    font-size: 14px;
  }

  .tel-number {
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
  }

  .nav-items .tel span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('./images/callbtn.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
  }


  .hamburger {
    display: none;
  }

  .header__inner {
    padding: 0 32px;
  }

}

/* ----------------------------------------------------
    lang-switcher
---------------------------------------------------- */
header .flex-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;

}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #232323;
  border: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 14px;
  cursor: pointer;
  height: 100%;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.lang-switcher__btn:hover {
  opacity: 0.8;
}

.lang-switcher__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lang-switcher__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #2e2b28;
  list-style: none;
  margin: 0;
  min-width: 120px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.lang-switcher__dropdown.open {
  display: block;
}

.lang-switcher__option {
  padding: 10px 16px;
  color: #ccc;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.lang-switcher__option:hover {
  background-color: #46423F;
  color: #fff;
}

.lang-switcher__option.active {
  color: #fff;
  font-weight: 700;
}

/* SP表示時はヘッダー内にコンパクトに表示 */
@media screen and (max-width: 1023px) {
  .lang-switcher {
    display: flex;
    align-items: center;
  }

  .lang-switcher__btn {
    padding: 8px 10px;
    font-size: 12px;
    gap: 4px;
  }

  .lang-switcher__icon {
    width: 14px;
    height: 14px;
  }

  .lang-switcher__dropdown {
    right: 0;
  }
}

/* PC表示時 */
@media screen and (min-width: 1024px) {
  .lang-switcher__btn {
    padding: 0 0 0 20px;
    font-size: 14px;
  }

  header .flex-right {
    flex-direction: row;
  }

  .lang-switcher__dropdown {
    top: 150%;
  }
}

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.mv {
  height: 100vh;
  position: relative;
}

/* .mv-video video {
  height: 100vh;
  object-fit: cover;
} */

.video_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}

.mv-text {
  position: absolute;
  left: 5%;
  bottom: 16px;
  color: #fff;
}

.mv .main-copy {
  font-size: 40px;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  text-shadow: 0px 0px 14px rgba(255, 255, 255, 0.24);
}

@media screen and (1024px <=width) {
  .mv .main-copy {
    font-size: 80px;
  }

  .mv-text {
    right: 0;
    bottom: 24px;
    left: auto;
  }
}

/* ----------------------------------------------------
    recommend
---------------------------------------------------- */
.recommend {
  padding: 56px 0;
  background-image: url('./images/background.jpg');
}

.recommend .text1 {
  font-size: 18px;
  margin-bottom: 8px;
  padding-left: 5%;
}

.recommend .heading {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 5%;
}

.recommend .heading p {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-color: #232323;
  padding: 4px 8px;
}

.recommend .heading h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;

}

.recommend-image {
  padding-left: 5%;
}

.recommend .text2 {
  padding: 0 5%;
  margin-bottom: 32px;
}

.btn {
  font-weight: 700;
  background-color: #da2b26;
  padding: 16px;
  border-radius: 110px;
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 0 5%;
  max-width: 400px;
}

.btn p::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('./images/arrow.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

@media screen and (min-width: 1024px) {

  .recommend {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 62px 0 120px;
  }

  .recommend .heading {
    gap: 9px;
    padding-left: 0;
  }

  .recommend .text {
    width: 39%;
    margin-right: -5%;
  }

  .recommend-image {
    padding-left: 0;
    width: 56%;
  }

  .recommend .text1 {
    font-size: 24px;
    padding-left: 0;
  }

  .recommend .heading p {
    font-size: 20px;
    padding: 7px 14px;
    white-space: nowrap;
  }

  .recommend .heading h2 {
    font-size: 42px;
    white-space: nowrap;
  }


  .recommend .text2 {
    margin-top: 40px;
    padding: 0;
    font-size: 20px;
    margin-bottom: 40px;
  }

  .btn {
    width: 320px;
    margin: 0;
    font-size: 20px;

  }

  .btn p::after {

    width: 15px;
    height: 15px;

    margin-left: 24px;
  }
}



/* ----------------------------------------------------
    about
---------------------------------------------------- */
.about {
  padding: 64px 0;
  position: relative;
}

.about-heading {
  padding-bottom: 32px;
  text-align: center;
}

.about-heading img {
  height: 35px;
  width: auto;
}


.about .inner .container {
  position: relative;
  z-index: 1;
}

.about .karaku {
  position: absolute;
  top: 140px;
  width: 28%;
  z-index: 0;
  left: -40px;
  z-index: 0;

}

.about-content {
  margin: 0 auto;
  z-index: 100;
  position: relative;
}

.sec-wrap h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 18px;
}

.sec-wrap .txt {
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 19px;
}

.about {
  background: #FAF8F3;
}

.sec-wrap2 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.about-bg {
  position: absolute;
  left: -60px;
  bottom: 0;
  opacity: 0.15;
  z-index: 0;
}


.about-images {
  position: relative;
}


.sec-wrap3 {
  margin-top: 24px;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 33px;

}

.btn2 {
  font-weight: 700;
  background-color: #da2b26;
  padding: 16px;
  border-radius: 110px;
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 0 auto;
  max-width: 400px;
}

.btn2 p::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('./images/arrow.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.scenery {
  padding: 0%;
}


@media screen and (min-width: 1024px) {
  .about {
    position: relative;
    padding: 120px 0;
  }

  .about .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 48px;
    align-items: center;
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-heading {
    padding-bottom: 54px;
  }

  .about-heading img {
    height: 70px;
  }

  .about .inner .container {
    position: static;
  }

  .about .inner .karaku {
    position: absolute;
    top: auto;
    width: 30%;
    bottom: 10px;
    left: -77px;
  }

  .about-content {
    margin: 0;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    z-index: 100;
    position: relative;
    max-width: 592px;
  }

  .sec-wrap {
    width: 54%;
  }

  .sec-wrap h3 {
    padding: 0;
    font-size: 31px;
    font-weight: 700;
    padding-bottom: 32px;
  }

  .sec-wrap .txt {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 64px;
  }

  .sec-wrap2 {
    width: 70%;
    max-width: none;
    margin: 0;
    position: static;
  }

  .sec-wrap3 {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 54px 0;
    display: flex;
    justify-content: flex-end;
  }

  .btn2 {
    border-radius: 110px;
    color: #fff;
    text-align: center;
    display: block;
    text-decoration: none;
    width: 320px;
    margin: 0;
    font-size: 20px;
  }

  .btn2 p::after {
    width: 15px;
    height: 15px;
    margin-left: 24px;

  }

  .scenery {
    padding: 0%;
    width: 100vw;
    height: 458px;
  }
}

/* ----------------------------------------------------
    company
---------------------------------------------------- */
.page-top .company {
  padding: 64px 0;
}

.company {
  padding: 56px 0;
  background-image: url('./images/background.jpg');
}

.company h3 {
  text-align: center;
  margin-bottom: 48px;
}

.company h3 img {
  height: 35px;
  width: auto;
}

.company .flex {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  margin-bottom: 24px;
}

.company .logo-img {
  width: 95px;
}

.company ul li {
  display: flex;
  margin-bottom: 16px;
}

.company ul li h4 {
  font-size: 14px;
  width: 28%;
}

.company ul li p {
  font-size: 15px;
  width: 72%;
  line-height: 1.6;
}

.company ul li p span {
  font-size: 13px;
  color: #5E554F;
}


.storeimage {
  margin-top: 40px;
  margin-bottom: 24px;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-bottom: 24px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn3 {
  font-weight: 700;
  background-color: #da2b26;
  padding: 8px;
  border-radius: 110px;
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 0 40%;
  margin-right: auto;
}

.btn3 p::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(./images/mappoint.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}


@media screen and (min-width: 1024px) {
  .company {
    padding: 60px 0 180px;
  }

  .page-top .company {
    padding: 160px 0;
  }

  .page-top .company .heading img {
    height: 56px;
  }

  .company .heading img {
    height: 70px;
  }

  .company .inner {
    display: flex;
    justify-content: space-between;
  }

  .company .flex {
    align-items: baseline;
    margin-bottom: 32px;
  }

  .company .logo-img {
    width: 220px;
  }

  .company .logo-txt {
    font-size: 20px;
  }

  .company .flex-right {
    width: 49%;
  }

  .company ul li h4 {
    font-size: 15px;
  }

  .company ul li p {
    font-size: 16px;
  }

  .storeimage {
    margin-top: 0;
  }
}

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
footer {
  background-color: #232323;
  color: #fff;
  padding: 32px 0;
}

.footer-logo {
  display: block;
  margin: 0 auto;
  width: 143px;
  height: 70px;

}

.subtitle {
  padding-top: 14px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  text-align: center;

}

.address {
  padding-top: 30px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 400;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  padding-bottom: 8px;

}

.footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 33px;
}

.footer-flex .phone {
  width: 16px;
  margin: 0;
  padding: 0;
  margin-top: -14px;
}

.footer-flex a {
  margin: 0;
  padding: 0;
  color: #fff;
  text-decoration: none;
}

.footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  position: relative;
  padding: 5px 0;
  border-left: #fff 1px solid;
  line-height: 1.17;
  width: 33%;
  text-align: center;
  margin-bottom: 12px;
}

.footer-menu li:last-child {
  border-right: #fff 1px solid;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* .footer-menu li::before {
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
} */

.footer-menu li:first-child::before {
  content: none;
}

.copy-right {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}


@media screen and (min-width: 1024px) {
  .footer-menu li {
    width: 24%;
    margin-bottom: 24px;
  }
}


/* ----------------------------------------------------
下層ページ　ヒーロセクション
---------------------------------------------------- */
.page-menu,
.page-about {
  padding-top: 60px;
}

.page-hero {
  position: relative;
  font-family: "Noto Serif JP", sans-serif;
}

.page-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-hero .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero .title h2 {
  font-size: 32px;
}

.page-hero .title p {
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
}


@media screen and (min-width: 1024px) {

  .page-menu,
  .page-about {
    padding-top: 88px;
  }

  .page-hero img {
    height: 425px;
  }

  .page-hero .title {
    top: 45%;
  }

  .page-hero .title h2 {
    font-size: 64px;
  }

  .page-hero .title p {
    font-size: 18px;
  }

  .inner {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* ここからお品書きページ */
/* ----------------------------------------------------
    ramen menu
---------------------------------------------------- */
.page-menu .menu-ramen {
  padding: 56px 0;
  background-image: url('./images/background.jpg');
  font-family: "Noto Serif JP", sans-serif;
}

.page-menu .menu ul {
  margin: 0 5%;
}

.page-menu .menu ul li:not(:last-child) {
  margin-bottom: 80px;
}

.page-menu .menu-ramen h3 {
  text-align: center;
  margin-bottom: 48px;
}

.page-menu .menu-ramen h3 img {
  height: 35px;
  width: auto;
}

.page-menu .menu-ramen .image {
  width: 78%;
  margin: 0 auto;
}

.page-menu .menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(35, 35, 35, 0.23);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.page-menu .menu h4 {
  font-size: 24px;
  font-weight: 900;
}

.page-menu .menu h4 span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}

.page-menu .menu-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-menu .yen {
  font-size: 16px;
  font-weight: 400;
}

.page-menu .price {
  font-size: 20px;
  font-weight: 400;
}

.page-menu .menu-text p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .page-menu .menu-ramen {
    padding: 120px 0;
  }

  .page-menu .menu-ramen h3 img {
    height: 80px;
  }

  .page-menu .menu.menu-ramen ul {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-menu .menu.menu-ramen ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .page-menu .menu.menu-ramen ul li:nth-of-type(2n) {
    flex-direction: row-reverse;
    margin-right: -5%;
  }

  .page-menu .menu.menu-ramen ul li:first-child .image img {
    width: 93%;
  }

  .page-menu .menu-ramen .image {
    width: 52%;
    max-width: 560px;
    margin: 0;
  }

  .page-menu .menu-ramen .txt {
    width: 43%;
    margin: 0;
  }

  .page-menu .menu-head {
    align-items: baseline;
  }

  .page-menu .menu h4 {
    font-size: 36px;
  }

  .page-menu .price {
    font-size: 24px;
  }

  .page-menu .menu ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* ----------------------------------------------------
    set menu
---------------------------------------------------- */
.page-menu .menu-set {
  padding: 56px 0;
  font-family: "Noto Serif JP", sans-serif;
  background-color: #FAF8F3;
}

.page-menu .menu-set h3 {
  text-align: center;
  margin-bottom: 48px;
}

.page-menu .menu-set h3 img {
  height: 35px;
  width: auto;
}

.page-menu .menu-set .image {
  width: 93%;
  margin: 0 auto;
}

.page-menu .menu.menu-set .top-p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 48px;
}

.page-menu .menu.menu-set .top-p span {
  margin-left: 12px;
}

.page-menu .menu.menu-set ul li:not(:last-child) {
  margin-bottom: 18px;
}

.page-menu .menu.menu-set h4 {
  font-size: 18px;
}

.page-menu .menu-set .yen {
  font-size: 14px;
}

.page-menu .menu-set .price {
  font-size: 16px;
}

@media screen and (min-width: 1024px) {
  .page-menu .menu-set {
    padding: 120px 0;
  }


  .page-menu .menu-set h3 img {
    height: 80px;
  }


  .page-menu .menu-set .wrapper {
    display: flex;
    align-items: center;
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 54px;
    justify-content: center;
  }

  .page-menu .menu-set .image {
    width: 100%;
    margin: 0;
  }

  .page-menu .menu.menu-set .top-p {
    margin-bottom: 0;
    font-size: 18px;
  }

  .page-menu .menu.menu-set ul {
    width: 100%;
    margin: 0;
  }

  .page-menu .menu.menu-set ul li {
    gap: 20px;
  }

  .page-menu .menu.menu-set h4 {
    font-size: 20px;
  }

  .page-menu .menu-set .yen {
    font-size: 16px;
  }

  .page-menu .menu-set .price {
    font-size: 18px;
  }
}

/* ----------------------------------------------------
        menu-rice
---------------------------------------------------- */
.page-menu .menu-rice {
  padding: 56px 0;
  background-image: url('./images/background.jpg');
  font-family: "Noto Serif JP", sans-serif;
}

.page-menu .menu-rice h3 {
  text-align: center;
  margin-bottom: 48px;
}

.page-menu .menu-rice h3 img {
  height: 35px;
  width: auto;
}

.page-menu .menu-rice .image {
  width: 90%;
  margin: 0 auto;
}

.page-menu .menu.menu-rice h4 {
  font-size: 20px;
}

.page-menu .attention {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  padding: 32px 5%;
}

@media screen and (min-width: 1024px) {
  .page-menu .menu-rice {
    padding: 120px 0;
  }

  .page-menu .menu-rice h3 img {
    height: 80px;
  }

  .page-menu .menu-rice .image {
    width: 90%;
    margin: 0 auto;
  }

  .page-menu .menu.menu-rice h4 {
    font-size: 34px;
  }

  .page-menu .attention {
    font-size: 20px;
    padding: 58px 5%;
  }

  .page-menu .menu.menu-rice ul {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-menu .menu.menu-rice ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .page-menu .menu.menu-rice ul li:nth-of-type(2n) {
    flex-direction: row-reverse;
    margin-right: -5%;
  }

  .page-menu .menu.menu-rice ul li:nth-of-type(2n+1) {
    margin-left: -5%;
  }


  .page-menu .menu-rice .image {
    width: 52%;
    max-width: 560px;
    margin: 0;
  }

  .page-menu .menu-rice .txt {
    width: 43%;
    margin: 0;
  }

}

/* ここから可楽についてページ */
/* ----------------------------------------------------
    about karaku
---------------------------------------------------- */
.page-about .about-karaku {
  padding: 56px 0 72px;
  background-image: url('./images/background.jpg');
  position: relative;
  overflow: hidden;
}

.page-about .about-karaku p {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
  z-index: 100;
  position: relative;
}

.page-about .about-karaku .image {
  z-index: 100;
  position: relative;
}

.page-about .about-karaku .typo {
  position: absolute;
  top: 0;
  right: -23px;
  width: 30%;
  z-index: 0;
}

@media screen and (min-width: 1024px) {

  .page-about .about-karaku {
    padding: 120px 0;
  }

  .page-about .about-karaku p {
    font-size: 20px;
    width: 62%;
  }

  .page-about .about-karaku .image {
    width: 62%;
    margin: -120px 0 0 auto;
    max-width: 720px;
  }

  .page-about .about-karaku .typo {
    max-width: 467px;
    right: -80px;
    width: 26%;
  }
}


/* ----------------------------------------------------
    kodawari
---------------------------------------------------- */
.page-about .kodawari {
  padding: 56px 0;
  background-color: #FAF8F3;
  overflow: hidden;
}

.page-about .kodawari h3 {
  text-align: center;
  margin-bottom: 72px;
}

.page-about .kodawari h3 img {
  height: 35px;
  width: auto;
}

.page-about .kodawari .image {
  margin-bottom: 16px;
  position: relative;
  z-index: 100;
}

.page-about .kodawari h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.page-about .kodawari li {
  position: relative;
}

.page-about .kodawari li:not(:last-child) {
  margin-bottom: 100px;
}

.page-about .kodawari li:first-child .typo {
  position: absolute;
  width: 50%;
  top: -100px;
  left: -68px;
  z-index: 0;
}

.page-about .kodawari li:nth-child(2) .typo {
  position: absolute;
  width: 70%;
  top: -103px;
  left: -77px;
  z-index: 0;
}

.page-about .kodawari li:nth-child(3) .typo {
  position: absolute;
  width: 90%;
  top: -85px;
  left: -56px;
  z-index: 0;
}

@media screen and (min-width: 1024px) {
  .page-about .kodawari {
    padding: 120px 0;
  }

  .page-about .kodawari h3 {
    margin-bottom: 160px;
  }

  .page-about .kodawari h3 img {
    height: 80px;
  }

  .page-about .kodawari h4 {
    font-size: 32px;
    white-space: nowrap;
    margin-bottom: 12px;
  }

  .page-about .kodawari p {
    font-size: 18px;
  }

  .page-about .kodawari li:not(:last-child) {
    margin-bottom: 120px;
  }

  .page-about .kodawari li .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .page-about .kodawari li:nth-child(2) .wrapper {
    flex-direction: row-reverse;
  }

  .page-about .kodawari li .wrapper .image {
    width: 50%;
  }

  .page-about .kodawari li .wrapper .txt {
    width: 46%;
  }

  .page-about .kodawari li:first-child .typo {
    max-width: 379px;
    width: 32%;
    top: -120px;
    left: -108px;
  }

  .page-about .kodawari li:nth-child(2) .typo {
    max-width: 551px;
    width: 57%;
    top: -183px;
    left: auto;
    right: -179px;
  }

  .page-about .kodawari li:nth-child(3) .typo {
    max-width: 924px;
    width: 80%;
    top: -165px;
    left: -176px;
  }

}


/* ----------------------------------------------------
    tennai
---------------------------------------------------- */
.page-about .tennai {
  padding: 56px 0;
  background-image: url('./images/background.jpg');
  font-family: "Noto Serif JP", serif;
}

.page-about .tennai h3 {
  text-align: center;
  margin-bottom: 48px;
}

.page-about .tennai h3 img {
  height: 35px;
  width: auto;
}

.page-about .tennai .image {
  margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
  .page-about .tennai {
    padding: 120px 0;
  }

  .page-about .tennai h3 img {
    height: 70px;
  }

  .page-about .tennai .wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .page-about .tennai .wrapper .image {
    width: 58%;
  }

  .page-about .tennai .wrapper p {
    width: 38%;
  }

}

/* タブレットサイズの調整 */
@media (max-width: 1023px) and (min-width: 768px) {

  .page-menu .menu ul,
  .page-menu .menu-set .image,
  .inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .recommend .text2 {
    max-width: 560px;
    margin: 0 auto 32px;
  }
}