@charset "UTF-8";


@media screen and (min-width: 641px) {
  /* 最小で641pxまではPC用CSSを適用 */

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #707070;
    background-color: #FDF2EB;
  }

  li {
    list-style-type: none;
  }

  img {
    border: none;
    display: block;
  }

  a {
    text-decoration: none;
  }

  .hidden-pc {
    display: none;
  }


  /* ----------------
　　　header 
------------------*/
  #header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
    background: #fff;
    background-color: #FDF2EB;
  }

  /* ----------------
　　　header左側 
------------------*/
  #header-logo a {
    display: flex;
    align-items: center;
    gap: 5px;
    /* ロゴとテキストの間隔*/
    text-decoration: none;
    color: #707070;
  }

  #header-logo img {
    width: 130px;
    height: auto;
    flex-shrink: 0;
    /* 縮まないように  */
    /* margin-top: 10px; */
  }

  #logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
  }

  .logo-sub {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .logo-main {
    font-size: 2rem;
    font-weight: 550;
  }

  .logo-main small {
    font-size: 0.4em;
    font-weight: normal;
    margin-left: -8%;
  }

  /* ----------------
　　header右側
　　gnavi 
------------------*/
  #global-nav {
    padding-right: 20px;
  }

  #global-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
  }

  #global-nav ul li {
    margin-top: 30px;
    margin-left: 50px;
  }

  #global-nav ul li a {
    color: #707070;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.5s;
  }

  #global-nav ul li a:hover {
    color: #40BA8D;
  }

  #global-nav ul li:last-child a {
    display: block;
    text-decoration: none;
    transition: ease all .2s;
    line-height: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    width: 170px;
    height: 50px;
    background: #40BA8D;
    background: linear-gradient(to right, #CDE6C7, #40BA8D);
    position: relative;
    border-radius: 10px;
  }

  #global-nav li:last-child a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 2px;
    z-index: 0;
    margin: auto;
    transition: ease-out all .5s;
    background-color: #fff;
  }

  #global-nav li:last-child a:hover::before {
    width: 166px;
    height: 46px;
  }

  #global-nav li:last-child a span {
    color: #fff;
    transition: ease all .3s;
    display: block;
    position: absolute;
    top: 13px;
    width: 100%;
    text-align: center;
    z-index: 1;
  }

  #global-nav li:last-child a:hover span {
    color: #40BA8D;
  }

  /* ----------------
　ファーストビュー 
------------------*/
  /* #hero{
  width: 100%;
  margin: 0 auto;
  height: 500px;
} */
  #hero {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  #hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: calc(100vh - 150px);
  }

  /* -----------------------
   各セクションのタイトル 
-------------------------*/
  .section-title {
    position: relative;
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 40px;
    font-family: "Playwrite US Trad", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    z-index: 1;
  }

  /* 左の葉っぱ */
  /* .section-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  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: 32px;
  height: 32px;
  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%, -66%);
    width: 160px;
    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 {
    background-color: #FDF2EB;
    padding: 60px 0;
  }

  #news-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #news-wrapper ul {
    margin: 0 auto;
  }

  #news-wrapper li {
    margin: 30px 0;
    font-size: 1rem;
  }

  #news-wrapper li a {
    display: block;
    display: flex;
    gap: 30px;
    text-decoration: none;
    color: inherit;
  }

  #news-wrapper .date {
    width: 120px;
    text-align: right;
    font-size: 100%;
    color: #666;
    flex-shrink: 0;
  }

  #news-wrapper .text {
    font-size: 100%;
    text-decoration: underline;
  }

  /* ---------------------
　Aboutとaccessの背景
-----------------------*/
  #about,
  #access {
    background-color: #f0f0f0;
    height: auto;
    padding: 40px 0;
  }

  #about-wrapper:nth-of-type(3),
  #access-info {
    margin-bottom: 0;
  }

  #menu,
  #column {
    padding: 40px 0;
  }

  /* ----------------
　　　About 
------------------*/
  .about-text {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2.2;
    letter-spacing: 0.05em;
  }

  .about-text h3 {
    margin: 10px 25px;
    text-decoration: underline;
    font-family: "M PLUS 1", sans-serif;
  }

  .about-text p {
    margin: 0 25px;
    padding: 0;
    font-size: 1rem;
  }

  .about-wrapper {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 60px auto;
    height: auto;
  }

  .about-wrapper.reverse {
    flex-direction: row-reverse;
  }

  /* .about-image,
.about-text{
  width: 50%;
} */
  .about-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* ----------------
　　　   menu 
------------------*/
  .menu-text {
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.0;
  }

  .menu-text h3 {
    text-decoration: underline;
    margin-top: 45px;
    margin-bottom: 10px;
    /* font-weight: bold; */
    font-family: "M PLUS 1", sans-serif;
    font-size: 1.1rem;
  }

  .menu-text p {
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .price {
    margin-left: 12px;
  }

  #menu-wrapper-1,
  #menu-wrapper-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 0rem;
    /* 行（縦） 列（横） */
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
  }

  .item img {
    display: block;
    width: 95%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin: 0 auto;
  }

  .item p {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 2px;
  }

  .item p:nth-of-type(2) {
    margin-top: 0;
    font-size: 0.75rem;
    font-weight: normal;
  }

  /* ----------------
　　　access
------------------*/
  #access-wrapper-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
    height: auto;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  #access-info {
    margin-top: 20px;
  }

  #access-info table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1rem;
  }

  #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;
  }

  /* ----------------
　　　　column
------------------*/
  #column-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
    padding-top: 30px;
  }

  #column-wrapper img {
    width: 80%;
    height: auto;
    object-fit: cover;
    padding: 0 10px;
  }

  .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;
  }

  /* ----------------
　　　戻るボタン
------------------*/
  .page-top {
    position: fixed;
    right: 30px;
    bottom: 70px;
    width: 60px;
    height: 60px;
    background: #CDE6C7;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* 非表示 */
    pointer-events: none;
    /* クリック不可 */
    transition: opacity 0.3s;
    /* フェード */
  }

  /* 表示状態 */
  .page-top.is-show {
    opacity: 1;
    pointer-events: auto;
  }

  .pagetop-arrow {
    display: block;
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(2px) rotate(-45deg);
  }
}