@charset "UTF-8";


@media screen and (max-width: 640px) {

  /* 最大で640pxまではモバイル用CSSを適用 */
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  .hidden-sp {
    display: none !important;
  }

  img {
    display: block;
    width: 100%;
    height: auto;
  }

  li {
    list-style-type: none;
  }

  a {
    text-decoration: none;
  }

  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #6b6b6b;
    background-color: #FDF2EB;
  }

  /* ----------------
　　　header 
------------------*/
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FDF2EB;
  }

  #header-inner {
    padding: 0 20px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  main {
    padding-top: 70px;
    /* ヘッダーの高さ分 */
  }

  /* ----------------
　　　header左側 
------------------*/
  #header-logo {
    width: auto;
    margin: 5px 0;
  }

  #header-logo img {
    display: block;
    margin: 0;
    height: 60px;
    width: auto;
  }

  #header-logo a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #707070;
  }

  #logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }

  .logo-main {
    font-size: 1.5rem;
    font-weight: 550;
    gap: 4px;
    line-height: 0.8;
  }

  .logo-main small {
    font-size: 0.4em;
    font-weight: normal;
    margin-left: -6.9%;
  }

  /* ----------------
　　header右側
　　gnavi 
------------------*/
  #nav-toggle {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nav-toggle>div {
    position: relative;
    width: 100%;
    height: 100%;
  }

  #nav-toggle span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #707070;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
  }

  #nav-toggle span:nth-child(1) {
    top: 0;
  }

  #nav-toggle span:nth-child(2) {
    top: 10px;
  }

  #nav-toggle span:nth-child(3) {
    top: 20px;
  }

  #global-nav {
    display: none;
  }

  .open #global-nav {
    background-color: rgba(249, 249, 249, 1);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 29px;
    text-align: center;
    opacity: 1;
    transition: all .60s ease;
  }

  .open #global-nav ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }

  .open #global-nav ul li {
    margin: 26px;
  }

  .open #global-nav ul li a {
    color: #707070;
    font-size: 1.7rem;
    font-weight: bold;
    transition: all 0.5s;
  }

  .open #global-nav li:last-child a {
    display: block;
    text-decoration: none;
    line-height: 100%;
    text-align: center;
    background: #40BA8D;
    background: linear-gradient(to right, #CDE6C7, #40BA8D);
    color: #fff;
    padding: 10px 30px;
  }

  .open #header-logo img {
    height: 60px;
    width: auto;
  }

  /* ---------------------
　各セクションの背景の設定
-----------------------*/
  #news,
  #menu,
  #column {
    background-color: #f0f0f0;
    height: auto;
    padding: 40px 0 20px;
  }

  #about {
    padding: 40px 0 0;
  }

  #access {
    padding: 40px 0;
  }

  .about-wrapper:nth-of-type(3),
  #access-info {
    margin-bottom: 0;
  }

  /* #news,
  #about,
  #access,
  #menu,
  #column {
    padding: 20px 0;
    scroll-margin-top: 70px;
  } */

  section {
    scroll-margin-top: 70px;
  }


  /* ------------------
各セクションのタイトル 
---------------------*/
  .section-title {
    position: relative;
    text-align: center;
    font-size: 1.25rem;
    padding-bottom: 10px;
    font-family: "Playwrite US Trad", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    z-index: 1;


  }

  /* 葉っぱ左の画像 */
  /* .section-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/leaf.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
} */

  /* 葉っぱ右の画像 */
  /* .section-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/leaf.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
} */

  .section-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 54px;
    background-image: url("../images/background-logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* margin-right: -110px; */
    z-index: -1;
    opacity: 0.6;
  }

  /* ----------------
　　　  news 
------------------*/
  #news {
    padding-bottom: 40px;
  }

  #news-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #news-wrapper ul {
    margin: 0 10px;
  }

  #news-wrapper li a {
    display: flex;
    flex-direction: row;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
  }

  #news-wrapper .date {
    width: auto;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    flex-shrink: 0;
  }

  #news-wrapper .text {
    font-size: 0.8rem;
    text-decoration: underline;
  }

  /* ----------------
　　　about 
------------------*/
  /* wrapperは縦 */
  .about-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
  }

  /* 画像は背景のように使う */
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* テキストを画像の上に重ねる */
  .about-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 2.5;
    box-sizing: border-box;
    padding: 1rem;
  }

  .about-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-decoration: underline;
    text-align: center;
    font-family: "M PLUS 1", sans-serif;
  }

  /* ----------------
　　　　menu 
------------------*/
  .menu-text {
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
  }

  .menu-text h3 {
    text-decoration: underline;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .menu-text h3:last-of-type {
    margin-top: 25px;
  }

  .menu-text p {
    font-size: 0.7rem;
    text-decoration: none;
    margin-top: 0;
  }

  .price {
    margin-left: 12px;
  }

  #menu-wrapper-1,
  #menu-wrapper-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    /* 行（縦） 列（横） */
    text-align: center;
    margin: 0 auto;
  }

  .item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin: 0 auto;
  }

  .item p {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  .item p:nth-of-type(2) {
    margin-top: 0;
    font-size: 0.6rem;
    font-weight: normal;
  }

  /* ----------------
      access
------------------*/
  #access-wrapper-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: auto;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  #access-info {
    margin-top: 20px;
  }

  #access-info table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.75rem;
  }

  #access-info th,
  td {
    border-bottom: 1px solid#c9c2bc;
  }

  #access-info th {
    text-align: left;
    padding: 10px 16px 10px 10px;
    font-weight: bold;
    white-space: nowrap;
  }

  #access-info td {
    padding: 8px 10px;
  }

  iframe {
    width: 100%;
    height: 220px;
  }

  /* ----------------
　　　　column
------------------*/
  #column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: auto;
    padding: 40px 0;
  }

  #column img {
    width: 80%;
    height: auto;
    object-fit: cover;
    padding: 10px 10px;
    margin: 0 auto;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  /* ----------------
　　　　footer
------------------*/
  footer {
    background-color: #2E2E2E;
    /* margin-top: 30px; */
  }

  #footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #footer-text p {
    text-align: center;
    color: #ffff;
    font-size: 0.85rem;
    padding: 20px;
  }

  #footer-text img {
    display: block;
    width: 60%;
    height: auto;
  }
}