@charset "UTF-8";

/*
 Theme Name: grappinoブランドサイトテンプレート
 Version: 1.0
*/

/*====================
  共通設定
====================*/

:root {
  --font-family-base: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  --font-family-en: "Lexend", "Zen Kaku Gothic New", sans-serif;
  --font-size-base: 16px;

  --color-black-500: #222;
  --color-gray-400: #eeeeee;
  --color-gray-300: rgba(217, 217, 217, 0.33);
  --color-red-500: #d70407;
  --base-font-size: 1.6rem;

  --font-main: var(--font-family-base);
  --font-accent: var(--font-family-en);
  --color-main: var(--color-black-500);
  --color-hover-btn: var(--color-gray-400);
  --color-sub: var(--color-red-500);
  --color-content-bg: var(--color-gray-300);
  --content-width: 1040px;
  --content-single-width: 800px;
  --header-height: 118px;

  @media screen and (max-width: 800px) {
    --header-height: 78px;
  }
}

html {
  font-size: 10px;

  @media (max-width: 600px) {
    font-size: 50%;
  }
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: var(--base-font-size);
  color: var(--color-main);
  letter-spacing: 1px;
  margin-top: var(--header-height);
  overflow-x: hidden;

  @media (max-width: 600px) {
    font-size: 2rem;
    overflow-x: hidden;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s ease;

  &:hover {
    opacity: 0.8;

    @media (max-width: 800px) {
      opacity: 1;
      text-decoration: none;
    }
  }
}

/** フォント設定 **/
.eg-font {
  font-family: var(--font-accent);
  font-weight: 500;
}

/** フォームリセット **/
input,
button,
textarea,
submit {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* コンテンツ幅設定 */
.page-contents {
  max-width: calc(var(--content-width) + 40px);
  padding-inline: 20px;
  margin-inline: auto;
}

/* パンくず */
.breadcrumbs {
  max-width: calc(var(--content-width) + 40px);
  padding-inline: 20px;
  margin-inline: auto;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 50px;
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;

  a {
    color: var(--color-main);

    &:hover {
      text-decoration: none;
    }
  }
}

/* 見出し設定 */
.page-title {
  margin-bottom: 30px;

  .page-title_en {
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1;
  }

  .page-title_ja {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
  }

  &.title-center {
    text-align: center;
  }
}

/* リンクボタン設定 */
.link-btn {
  max-width: 300px;
  margin-inline: auto;
  margin-top: 30px;
  .link-btn_text {
    padding: 15px 10px;
    color: var(--color-main);
    text-align: center;
    display: block;
    border: 1px solid var(--color-main);
    position: relative;
    transition: all 0.3s ease;

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: calc(50% - 0.5px);
      right: 30px;
      width: 8px;
      height: 1px;
      border-radius: 9999px;
      background-color: var(--color-main);
      transform-origin: calc(100% - 0.5px) 50%;
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }

    &:hover {
      opacity: 1;
      text-decoration: none;
      background-color: var(--color-hover-btn);
    }
  }
}

/* ホバーアニメーション */
.hover-underline {
  > span {
    padding-bottom: 5px;
    display: inline-block;
    background-image: linear-gradient(var(--color-main), var(--color-main));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 2px;
    transition: background-size 0.3s;
  }

  &:hover {
    text-decoration: none;
    opacity: 1;

    > span {
      background-position: bottom left;
      background-size: 100% 2px;
    }
  }
}

/* 順序 */
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}

@media screen and (min-width: 601px) {
  .sp-only {
    display: none !important;
  }
}

/*====================
  ヘッダー
====================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 900;

  .header_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-inline: 40px;

    @media screen and (max-width: 800px) {
      padding-block: 10px;
      padding-inline: 20px;
    }
  }

  .header_logo {
    margin-bottom: 0;
    img {
      width: 180px;

      @media screen and (max-width: 600px) {
        width: 110px;
      }
    }
  }

  .btn-hamburger {
    position: relative;
    width: 50px;
    height: 30px;
    cursor: pointer;
    z-index: 900;

    @media screen and (max-width: 600px) {
      width: 40px;
    }

    span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--color-main);
      border-radius: 4px;
      transition: all 0.3s ease;

      &:nth-of-type(1) {
        top: 0;
      }
      &:nth-of-type(2) {
        top: 14px;
      }
      &:nth-of-type(3) {
        bottom: 0;
      }
    }

    &.active span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
    }
    &.active span:nth-of-type(2) {
      opacity: 0;
    }
    &.active span:nth-of-type(3) {
      -webkit-transform: translateY(-20px) rotate(45deg);
      transform: translateY(-20px) rotate(45deg);
    }

    &:not(.menu-close):hover {
      span:nth-child(2) {
        width: 80%;
      }
      span:nth-child(3) {
        width: 60%;
      }
    }
  }

  .btn-hamburger,
  .btn-hamburger span {
    display: block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
}

.header_nav {
  background-color: #fff;
  width: 450px;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  height: 100%;
  border-left: 1px solid var(--color-main);

  @media screen and (max-width: 800px) {
    width: 70%;
  }

  @media screen and (max-width: 600px) {
    width: 100%;
  }

  &.active {
    transform: translateX(0);
  }

  .header_nav_inner {
    height: 100%;
    overflow-y: auto;
    padding: 60px 50px 30px;
    scrollbar-width: none; /* Firefox */
    &::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
  }

  .menu-close {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .header_nav_list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 0;

    a {
      color: var(--color-main);
      font-weight: bold;
      font-size: 2.4rem;
    }
  }

  .header_sub-nav_list {
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 0;

    a {
      color: var(--color-main);
      font-size: 2rem;
    }
  }

  .header_sns-list {
    display: flex;
    margin-bottom: 0;
    margin-top: 80px;
    column-gap: 18px;

    a {
      font-size: 10px;
      text-align: center;
      display: block;
      color: var(--color-main);

      &:hover {
        text-decoration: none;
      }
    }
  }

  .sns-link_image figcaption {
    display: block;
    margin-top: 3px;
  }
}

/*====================
  フッター
====================*/
.footer {
  margin-top: 250px;
  padding-top: 108px;
  position: relative;
  background: url(./assets/img/common/bg_town.png) center top no-repeat;
  background-size: auto;

  @media screen and (max-width: 800px) {
    margin-top: 120px;
  }

  @media screen and (max-width: 600px) {
    background-size: auto 70px;
    padding-top: 70px;
  }
  .footer-wrap {
    background-color: rgba(217, 217, 217, 0.66);
    padding: 70px 0 25px;

    @media screen and (max-width: 800px) {
      padding-inline: 20px;
    }

    @media screen and (max-width: 600px) {
      padding: 50px 20px 15px;
    }
  }
  .footer-inner {
    max-width: 1260px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 30px;
    display: flex;
    gap: 30px 153px;

    @media screen and (max-width: 1195px) {
      flex-direction: column;
      align-items: center;
    }
    @media screen and (max-width: 600px) {
      margin-bottom: 60px;
      row-gap: 15px;
    }

    .footer-logo {
      flex: 1;
      @media screen and (max-width: 1195px) {
        max-width: 250px;
        width: 100%;
      }
      @media screen and (max-width: 600px) {
        max-width: 200px;
      }
    }
    .footer-contents {
      width: 70%;
      display: flex;
      column-gap: 60px;
      align-items: flex-start;

      @media screen and (max-width: 1195px) {
        width: 100%;
        max-width: 700px;
        column-gap: 30px;
      }
      @media screen and (max-width: 800px) {
        flex-direction: column;
        row-gap: 30px;
        align-items: center;
      }
    }
  }
  .footer-nav {
    display: flex;
    column-gap: 40px;
    justify-content: space-between;
    flex: 1;
    @media screen and (max-width: 1195px) {
      column-gap: 20px;
    }
    .footer-nav_list {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(2, 1fr);
      justify-content: space-between;
      margin-bottom: 0;
      width: 100%;

      @media screen and (max-width: 600px) {
        row-gap: 15px;
      }
    }
    a {
      color: var(--color-text);
      font-weight: 500;
      @media screen and (max-width: 600px) {
        font-size: 15px;
      }

      &:hover {
        text-decoration: none;
      }
    }
  }
  .sns-link {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 370px;
    width: 100%;
    box-sizing: border-box;

    @media screen and (max-width: 1195px) {
      max-width: 280px;
    }

    .sns-link_title {
      width: fit-content;
      margin-inline: auto;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      padding-inline: 10px;
      margin-bottom: 25px;
      line-height: 1.6;

      &::before,
      &::after {
        content: "";
        background-color: #000;
        height: 13px;
        width: 1px;
        position: absolute;
        bottom: 5px;
      }

      &::before {
        rotate: -25deg;
        left: 0;
      }
      &::after {
        rotate: 25deg;
        right: 0;
      }
    }
    .sns-link_list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
      margin-bottom: 0;
      max-width: 250px;
      margin-inline: auto;
      justify-content: center;

      a {
        color: #000;
        display: block;
        text-align: center;

        &:hover {
          text-decoration: none;
        }
      }
      .sns-name {
        display: block;
        font-size: 10px;
        margin-top: 3px;
      }
    }
  }
  .copyright {
    text-align: center;
    font-size: 14px;
    font-family: var(--font-accent);
    font-weight: 400;
    max-width: 1260px;
    width: 100%;
    text-align: left;
    margin-inline: auto;
    margin-bottom: 0;
  }
}

.page-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  cursor: pointer;

  @media screen and (max-width: 800px) {
    width: 60px;
  }
}

/*====================
  トップページ
====================*/
.mv {
  text-align: center;

  @media screen and (max-width: 600px) {
    margin-top: 100px;
  }
}

.top-about {
  margin-top: 86px;

  @media screen and (max-width: 600px) {
    margin-top: 60px;
  }

  .link-btn {
    margin-top: 50px;
  }
}

.top-about_title {
  text-align: center;
  .image {
    width: 300px;
    margin-inline: auto;

    @media screen and (max-width: 600px) {
      width: 200px;
    }
  }

  .title-text {
    font-size: 2.6rem;
    font-weight: 400;

    @media screen and (max-width: 600px) {
      font-size: 16px;
    }
  }
}

.top-about_text {
  margin-top: 35px;
  text-align: center;

  > p {
    line-height: 2;
    margin-bottom: 0;
  }
}

.top-services {
  margin-top: 110px;

  @media screen and (max-width: 600px) {
    margin-top: 80px;
  }

  .services-list {
    display: flex;
    justify-content: space-between;
    gap: 30px 10px;

    @media screen and (max-width: 600px) {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      max-width: 450px;
      margin-inline: auto;
    }
  }

  .link-btn {
    margin-top: 50px;
  }
}

.top-instagram {
  margin-top: 110px;

  @media screen and (max-width: 600px) {
    margin-top: 80px;
  }

  .instagram-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;

    @media screen and (max-width: 600px) {
      gap: 40px 30px;
    }
  }

  .instagram-item {
    width: calc((100% - 60px) / 2);

    @media screen and (max-width: 600px) {
      width: calc((100% - 30px) / 2);
    }

    #sb_instagram #sbi_images {
      padding: 0 !important;
    }

    .title {
      font-weight: 500;
      font-size: 18px;
      margin-bottom: 10px;
    }
  }
}

.top-event {
  margin-top: 80px;
  position: relative;
}

.top-event_list {
  @media screen and (min-width: 801px) {
    overflow: visible;
    width: calc(100% + (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
  margin-bottom: 60px;

  &:has(> .event-item:nth-child(-n + 3):last-child) {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
    .event-item {
      width: calc((100% - 60px) / 3);
      margin-inline: 0;

      @media screen and (max-width: 800px) {
        width: calc((100% - 30px) / 2);
      }

      @media screen and (max-width: 600px) {
        width: 100%;
        max-width: 400px;
        margin-inline: auto;
      }
    }
  }

  .event-item {
    margin-inline: 15px;
    @media screen and (min-width: 801px) {
      width: calc((var(--content-width) - 60px) / 3);
    }
  }

  .slick-arrow {
    position: absolute;
    bottom: -60px;
    background: none;
    cursor: pointer;

    &:focus {
      outline: none;
    }
  }

  .slick_prev {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2211%22%20height%3D%2219%22%20viewBox%3D%220%200%2011%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.67401%200.530273L1.06068%209.1436C4.4244%2012.5073%206.3103%2014.3932%209.67401%2017.7569%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 12px;
    height: 22px;
    left: calc(50% - (100vw - 100%) / 2);
    transform: translateX(calc(-50% - 35px));

    @media screen and (max-width: 800px) {
      left: 50%;
    }
  }
  .slick_next {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2211%22%20height%3D%2219%22%20viewBox%3D%220%200%2011%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.530334%200.530273L9.14367%209.1436C5.77995%2012.5073%203.89405%2014.3932%200.530334%2017.7569%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 12px;
    height: 22px;
    left: calc(50% - (100vw - 100%) / 2);
    transform: translateX(calc(-50% + 35px));

    @media screen and (max-width: 800px) {
      left: 50%;
    }
  }
}

.event-item {
  width: calc((100% - 60px) / 3);
  a {
    display: block;
    color: var(--color-main);

    &:hover {
      text-decoration: none;
      color: var(--color-main);
    }
  }
  .event-image {
    margin-bottom: 15px;

    img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 311 / 248;
      object-fit: cover;
    }
  }
  .event-title {
    font-size: 18px;
    font-weight: 400;
  }
}
.post-meta {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 5px;
  time {
    font-size: 14px;
    line-height: 1;
  }
  .meta-category {
    border: 1px solid var(--color-main);
    font-size: 12px;
    padding: 2px 8px;
    margin: 0;
  }
}

.top-news {
  margin-top: 180px;

  @media screen and (max-width: 600px) {
    margin-top: 80px;

    .information-list {
      margin-bottom: 60px;
    }
  }

  .top-news_contents {
    display: flex;
    column-gap: 100px;

    @media screen and (max-width: 800px) {
      flex-direction: column;
      row-gap: 80px;
    }
  }
  .news-item {
    width: calc((100% - 100px) / 2);

    @media screen and (max-width: 800px) {
      width: 100%;
    }
  }
}

.information-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 120px;

  @media screen and (max-width: 800px) {
    margin-bottom: 80px;
  }

  .information-list_item {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--color-main);
  }

  .information-title {
    a {
      color: var(--color-main);
      display: block;
      font-size: 16px;
      font-weight: 400;
      transition: all 0.3s ease;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;

      &:hover {
        text-decoration: none;
      }
    }
  }
}

.blog-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-bottom: 70px;

  .blog-list_item {
    a {
      display: flex;
      column-gap: 23px;
      color: var(--color-main);

      &:hover {
        text-decoration: none;
      }
    }

    .blog-image {
      width: 30%;

      @media screen and (max-width: 600px) {
        width: 150px;
      }

      img {
        width: auto;
        height: auto;
        object-fit: cover;
        aspect-ratio: 312 / 249;
      }
    }

    .blog-text {
      flex: 1;
    }

    .blog-title {
      font-size: 16px;
      font-weight: 400;
    }
  }
}

/*====================
  下層ページ
====================*/
.page-main-title {
  text-align: center;
  padding: 50px 10px;
  margin-bottom: 0;

  @media screen and (max-width: 800px) {
    padding-top: 0;
  }

  .title {
    font-weight: 400;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .title-en {
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--color-sub);
    margin-bottom: 0;
  }
}

.main-image {
  margin-bottom: 100px;

  @media screen and (max-width: 800px) {
    img {
      height: 300px;
      width: auto;
      object-fit: cover;
    }
  }

  @media screen and (max-width: 600px) {
    margin-bottom: 60px;
  }
}

.shiop-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 60px;
  margin-bottom: 100px;

  @media screen and (max-width: 800px) {
    flex-direction: column;
  }
}

.shop-info_item {
  width: calc((100% - 160px) / 2);

  @media screen and (max-width: 800px) {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  .shop-title {
    font-weight: 700;
    padding: 0 15px 25px;
    border-bottom: 1px solid var(--color-main);
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }

  .shop-image {
    margin-bottom: 40px;

    @media screen and (max-width: 600px) {
      margin-bottom: 20px;
    }
  }

  .shop-details {
    margin-bottom: 0;

    li {
      display: flex;
      gap: 5px 10px;
      padding: 15px;
      border-bottom: 1px dashed #d9d9d9;

      @media screen and (max-width: 600px) {
        flex-direction: column;
      }
    }
    .info-title {
      font-weight: 700;
      width: 25%;

      @media screen and (max-width: 600px) {
        width: 100%;
      }
    }
    .info-text {
      flex: 1;
    }
  }
}

.shop-service-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: var(--color-content-bg);
  padding-block: 100px;

  @media screen and (max-width: 600px) {
    padding-block: 80px;
  }
}

.wp-block-lazyblock-shop-service + .wp-block-lazyblock-shop-service {
  .shop-service-block {
    padding-top: 0;
  }
}

.shop-service_contents {
  background-color: #fff;
  padding: 50px;

  @media screen and (max-width: 600px) {
    padding: 30px;
  }
}
.shop-service_inner:has(.shop-service_gallery) {
  display: flex;
  flex-direction: column;
  gap: 30px 50px;

  @media screen and (max-width: 800px) {
    flex-direction: column;
  }

  .shop-service_gallery {
    width: 100%;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    @media screen and (max-width: 800px) {
      width: 100%;
    }

    .service-gallery_image {
      width: calc((100% - (15px * 3)) / 4);

      img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 4 / 3;
        object-fit: cover;
      }

      figcaption {
        font-size: 14px;
        display: block;
        margin-top: 5px;
      }
    }
  }
}

.shop-service_detail {
  .service-item_title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-sub);
  }

  .service-description {
    line-height: 1.8;
    margin-bottom: 0;

    &:has(~ .service-detail_list) {
      margin-bottom: 20px;
    }
  }

  .service-detail_list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .detail-item_title {
    font-weight: 700;
    margin-bottom: 5px;

    &::before {
      content: "■";
      margin-right: 5px;
    }
  }

  .detail-item_description {
    margin-bottom: 0;
    line-height: 1.8;
  }
}

/* イベント詳細 */
.event-meta {
  background: var(--color-content-bg);
  padding: 50px;
  border-radius: 20px;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 100px;
}

.event-meta_details {
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 60px 100px;

  dt,
  dd {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.2em;
    padding-bottom: 25px;

    &:last-of-type {
      padding-bottom: 0;
    }
  }
}

/* カフェページ */
.cafe-main-image {
  max-width: 1280px;
  margin-inline: auto;
  img {
    width: 100%;

    @media screen and (max-width: 800px) {
      height: 300px;
      object-fit: cover;
    }
  }
}
.cafe-about-block {
  margin-top: 100px;
}

.img_cafe_logo {
  max-width: 250px;
  margin-inline: auto;
  margin-bottom: 60px;

  @media screen and (max-width: 600px) {
    max-width: 200px;
    margin-bottom: 40px;
  }
}

.cafe-about {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 170px;

  @media screen and (max-width: 600px) {
    margin-bottom: 100px;
  }

  .cafe-about_lead {
    display: flex;
    gap: 30px 60px;
    padding-inline: 30px;
    margin-bottom: 75px;

    @media screen and (max-width: 830px) {
      padding-inline: 20px;
      flex-direction: column;
    }

    @media screen and (max-width: 600px) {
      margin-bottom: 40px;
    }
  }
  .cafe-about_lead_text {
    flex: 1;

    .title {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 32px;
    }
    .lead-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 2.4;
      letter-spacing: 0.1em;
    }
  }
  .cafe-about_lead_image {
    width: 40%;

    @media screen and (max-width: 830px) {
      width: 100%;
      max-width: 450px;
    }
  }

  .cafe-about_body {
    display: flex;
    gap: 30px 60px;

    @media screen and (max-width: 830px) {
      flex-direction: column;
      padding-inline: 20px;
    }
  }

  .cafe-about_body_text {
    width: 40%;

    @media screen and (max-width: 830px) {
      width: 100%;

      &.order2 {
        order: 1;
      }
    }

    .body-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 2.4;
      letter-spacing: 0.1em;
      padding-left: 30px;

      @media screen and (max-width: 830px) {
        padding-left: 0;
      }
    }
  }

  .cafe-about_body_image {
    flex: 1;
    display: grid;
    align-items: flex-start;
    column-gap: 67px;
    grid-template-columns: 280px 200px;

    @media screen and (max-width: 830px) {
      justify-content: flex-start;

      &.order1 {
        order: 2;
      }
    }

    @media screen and (max-width: 600px) {
      column-gap: 10px;
      display: flex;
    }

    img {
      display: block;
      width: auto;

      @media screen and (max-width: 600px) {
        width: calc((100% - 10px) / 2);
      }
    }

    .image3 {
      padding-top: 135px;

      @media screen and (max-width: 600px) {
        padding-top: 50px;
      }
    }
  }
}

.cafe-contents {
  margin-bottom: 67px;

  @media screen and (max-width: 600px) {
    margin-bottom: 60px;
  }
}

.content-anker-link {
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding-block: 30px;
  @media screen and (max-width: 600px) {
    padding-block: 20px;
  }

  .anker-link_list {
    max-width: 775px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 0;

    .anker-link_list_item {
      a {
        display: block;
        color: var(--color-main);
        font-family: var(--font-family-en);
        font-size: 2.4rem;
        position: relative;

        @media screen and (max-width: 600px) {
          font-size: 16px;
        }

        &:hover {
          text-decoration: none;
        }

        &::after {
          content: "";
          background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2211%22%20viewBox%3D%220%200%2019%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M17.7568%200.530396L9.1435%209.14373C5.77979%205.78001%203.89389%203.89411%200.530175%200.530394%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
          background-repeat: no-repeat;
          background-size: 100%;
          width: 16px;
          height: 9px;
          display: inline-block;
          margin-left: 15px;
          margin-top: -1px;
          vertical-align: middle;

          @media screen and (max-width: 600px) {
            width: 12px;
            height: 7px;
            margin-left: 5px;
          }
        }
      }
    }
  }
}

.service-title,
.parent-menu {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-main);
  position: relative;
  padding-left: 33px;
  padding-block: 9px;
  width: fit-content;

  &.icon-takeout {
    &::before {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2229%22%20viewBox%3D%220%200%2020%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.4387%208.49046C16.8505%208.29804%2018.746%208.1008%2019.9972%208.43274C19.503%209.65946%2019.968%2010.992%2019.9972%2012.4865C20.0431%2014.7347%2019.5072%2017.0599%2019.6344%2019.4348C19.7908%2022.3629%2019.5885%2025.3808%2019.7824%2028.4725C13.2887%2028.4308%207.04945%2028.2368%200.920688%2028.3298C0.783056%2023.1887%200.70382%2017.6853%200.24922%2012.9163C0.109504%2011.4474%20-0.163673%209.97536%200.132443%208.55461C1.26269%209.03728%202.8225%208.40548%204.28222%208.43113C5.56887%206.97991%206.70328%203.92512%207.60205%201.86294C7.97116%201.01625%208.71145%20-0.0404967%209.94179%200.00119597C12.0355%200.857499%2012.1439%203.36066%2013.3325%204.96743C14.0937%205.6249%2014.59%206.77786%2014.7839%207.6534C15.0321%207.90677%2015.3511%208.1008%2015.4345%208.49207L15.4387%208.49046ZM9.86046%200.315498C8.78235%200.283427%208.54463%201.33697%207.91069%201.85332C7.69799%203.76476%206.2466%205.43888%205.53133%206.99113C5.43958%207.19318%205.40205%207.52993%205.2665%207.77848C5.11219%208.06231%204.63256%208.22107%204.89322%208.4135C5.06213%208.40869%205.23104%208.40387%205.39995%208.39906C6.02972%207.82979%206.14442%206.9735%206.49684%206.02739C6.84717%205.0877%207.54159%204.22819%207.88567%203.41358C8.27771%202.48672%208.35068%201.51817%208.68434%201.13011C8.94917%200.820619%209.62065%200.605741%209.9835%200.778926C11.1242%201.32253%2011.4224%203.12333%2012.3691%203.90427C11.5934%202.96779%2011.2993%200.358794%209.85837%200.315498H9.86046ZM12.2002%204.53287C11.535%203.46971%2011.1763%202.28788%2010.5299%201.54222C10.2191%201.18463%209.49136%200.799771%209.09306%201.19425C8.06709%203.59158%207.07864%206.01456%205.90044%208.30445C8.66974%208.62516%2011.7769%208.5065%2014.4336%208.67487C13.9581%207.47861%2013.1011%205.97287%2012.1981%204.53126L12.2002%204.53287ZM13.0364%205.05403C13.0114%204.70124%2012.4358%204.01652%2012.4838%204.13518C12.5109%204.60984%2012.6944%204.71888%2013.0364%205.05403ZM14.2709%207.43372C14.4211%207.90356%2014.4628%208.4632%2015.0383%208.58026C14.2063%207.62294%2014.102%205.6281%2012.9446%205.21278C13.3784%205.96004%2013.6745%206.82276%2014.273%207.43372H14.2709ZM13.8434%209.00521C12.8863%209.03889%2011.8624%208.75666%2010.7905%208.78392C8.69477%208.83844%207.2121%208.5498%205.31029%208.63478C3.55862%208.71336%201.95709%209.05171%200.359736%208.93786C0.416039%2013.7935%201.27519%2018.6715%201.00618%2023.8847C0.933194%2025.2846%201.5442%2026.7919%201.31482%2028.0074C7.1141%2028.0604%2013.883%2028.0459%2018.9608%2028.187C19.3841%2021.8995%2019.2965%2013.686%2019.0963%208.61875C17.4886%208.29483%2015.7452%208.93946%2013.8455%209.00842L13.8434%209.00521ZM19.7136%2012.8858C19.6656%2012.6774%2019.7595%2011.9365%2019.5739%2012.1113C19.7219%2012.4481%2019.3508%2012.8473%2019.7136%2012.8858Z%22%20fill%3D%22%23222222%22%2F%3E%0A%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 100%;
      width: 20px;
      height: 30px;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  &.icon-cafe {
    &::before {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.6682%203.42883C18.5835%201.68246%2020.2166%200.604413%2022.0327%201.62434C22.7446%202.02244%2023.689%203.64386%2023.6309%204.79165C23.6076%205.23333%2022.919%206.66878%2022.6284%207.17149C21.5678%209.01085%2019.1008%2010.0831%2017.9123%2011.6871C17.799%2013.0063%2017.8425%2013.2794%2017.7728%2014.8369C16.9737%2016.3044%2016.0555%2017.58%2014.4806%2018.2803C11.5544%2019.5792%209.11647%2019.8116%205.34767%2019.1666C4.46722%2019.0155%203.75821%2018.6348%202.96784%2018.2745C2.03508%2017.8502%201.35512%2017.7544%200.919257%2016.7344C0.489201%2015.729%200.680983%2014.2848%200.628679%2013.0383C0.471766%209.18519%20-0.234339%205.48032%200.0794857%202.60359C2.20652%20-0.200491%206.77732%20-0.133659%2011.075%200.104615C13.173%200.220846%2015.2128%20-0.0639228%2016.718%200.810718C17.2701%201.60981%2017.8077%202.17935%2017.6682%203.42883ZM13.8965%200.459121C11.1128%200.23247%207.84083%200.258618%206.29205%200.49108C6.07412%200.49108%205.85619%200.488178%205.64116%200.485272C7.95997%200.642184%2011.3191%200.517235%2013.8936%200.784567C15.5034%200.953103%2015.9857%201.67955%2016.8139%202.11832C16.9795%200.831059%2015.1489%200.560823%2013.8965%200.459121ZM4.11562%200.796193C4.29868%200.470745%205.3099%200.990876%205.3128%200.482363C5.05128%200.65671%203.89187%200.491086%204.11562%200.796193ZM8.24183%200.947291C6.53323%200.915327%200.460141%201.04899%200.939595%203.37362C1.11394%204.21339%203.65069%204.71319%204.61832%204.82361C8.88111%205.30306%2013.7803%204.90497%2016.3722%202.76631C14.8496%200.203413%2010.5723%201.46743%208.24183%200.947291ZM20.3996%201.93526C21.036%201.90329%2021.283%202.61812%2022.024%202.38566C22.2826%202.78084%2022.7039%203.57993%2022.8812%203.69616C22.6371%202.50188%2021.5765%201.43547%2020.1875%201.60691C18.6881%201.79288%2018.0227%203.67001%2017.8745%204.95146C18.7491%204.19305%2019.1269%201.99628%2020.4025%201.93526H20.3996ZM11.0227%205.3205C13.6611%205.11129%2016.009%204.05648%2017.3486%202.88545C17.0464%202.93195%2017.4386%202.29267%2017.1364%202.33916C16.0904%204.38774%2012.772%204.63764%2011.0227%205.3205ZM20.1788%202.36822C19.1908%203.48404%2018.415%204.81199%2017.7496%206.25326C17.9181%207.52018%2017.7844%207.62188%2017.7234%208.85975C19.557%208.63891%2023.8779%203.42302%2020.1788%202.36531V2.36822ZM4.39748%205.14615C2.63367%204.80327%201.0413%204.72191%200.399119%203.14988C0.390402%205.05898%202.97074%205.00086%204.39748%205.14615ZM15.3755%204.71029C11.3481%206.35496%204.95249%206.06729%200.92507%204.89335C0.707136%204.90497%200.428181%204.14946%200.384594%204.6696C0.49792%206.80245%200.701322%208.36867%200.872764%2010.1063C1.07907%2012.2072%200.503727%2015.4966%201.45682%2016.9553C1.77356%2017.4405%203.86572%2018.3849%204.69968%2018.6174C6.37341%2019.0823%208.46267%2019.2683%2010.0173%2019.2131C12.0862%2019.1404%2015.393%2017.5451%2016.2356%2016.5601C17.4212%2015.1711%2017.4938%2013.7298%2017.4793%2011.5767C17.4561%208.32218%2017.4038%206.46828%2017.2352%203.31841C16.7907%203.89085%2016.102%204.41389%2015.3755%204.71319V4.71029ZM17.7176%209.29561C17.7902%209.6908%2017.7496%2010.1964%2017.9239%2010.4928C19.9347%208.92948%2023.1543%206.95064%2022.1228%203.36491C22.0182%206.31718%2020.1352%208.33961%2017.7176%209.29561ZM22.5325%205.75927C22.7649%206.15155%2023.4449%204.38774%2022.8754%203.917C22.9306%204.70447%2022.733%205.23332%2022.5325%205.75927ZM6.24265%205.48903C6.74826%205.49485%207.25677%205.49775%207.76238%205.50356C8.58762%205.41929%207.30327%205.35827%207.00397%205.38733C6.75407%205.30016%206.64656%205.29144%206.13514%205.2711C6.12933%205.20427%206.12061%205.14324%206.02763%205.16068C5.99276%205.3728%206.17291%205.37861%206.24265%205.48903ZM21.8642%207.49112C22.085%207.1279%2022.6691%206.56126%2022.4221%206.08472C22.3349%206.53511%2021.7276%207.5318%2021.8642%207.49112Z%22%20fill%3D%22%23222222%22%2F%3E%0A%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 100%;
      width: 23px;
      height: 20px;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

.cafe-menu-block {
  background: var(--color-content-bg);
  padding-top: 138px;
  padding-bottom: 120px;

  @media screen and (max-width: 830px) {
    padding-block: 100px;
  }

  @media screen and (max-width: 600px) {
    padding-block: 60px;
  }
}

.cafe-menu {
  max-width: 1188px;
  margin-inline: auto;
  margin-bottom: 120px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px;
  column-gap: 70px;
  align-items: self-start;

  @media screen and (max-width: 830px) {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
  }

  .cafe-menu-box {
    background-color: #fff;
    padding: 48px 56px;

    @media screen and (max-width: 830px) {
      padding: 30px;
    }

    > div {
      margin-bottom: 20px;

      &:last-of-type {
        margin-bottom: 0;
      }
    }

    .service-title {
      margin-bottom: 44px;

      @media screen and (max-width: 830px) {
        margin-bottom: 30px;
      }
    }
  }

  .menu-lists {
    margin-bottom: 70px;

    &:last-of-type {
      margin-bottom: 0;
    }

    @media screen and (max-width: 830px) {
      margin-bottom: 30px;
    }
  }
}
.cafe-menu_contents {
  display: flex;
  flex-direction: column;
  row-gap: 22px;

  @media screen and (max-width: 830px) {
    order: 2;
  }
}
.menu-lists {
  @media screen and (max-width: 830px) {
    order: 1;
  }
  .menu-genre {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .menu-lists_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    .menu-item {
      width: calc((100% - 60px) / 3);

      @media screen and (max-width: 600px) {
        width: calc((100% - 30px) / 2);
      }

      @media screen and (max-width: 450px) {
        width: 100%;
      }
    }

    .menu-item_image {
      margin-bottom: 15px;
    }

    .menu-item_title {
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 0.1em;
      margin-bottom: 5px;
    }

    .menu-item_price {
      font-family: var(--font-family-en);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.1em;
    }

    .menu-item_link {
      margin-bottom: 0;
      margin-top: 20px;
      max-width: 230px;

      a {
        font-size: 12px;
        padding: 10px 20px;

        &::before,
        &::after {
          right: 10px;
          width: 6px;
        }
      }
    }
  }

  .menu-note {
    text-align: right;
    font-size: 12px;
    color: #797979;
    font-weight: 400;
    margin-top: 45px;
  }

  .menu-item_coming-soon {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0;
  }

  .menu-item--coming-soon {
    width: 100%;
  }
}

.menu-links {
  display: flex;
  flex-direction: column;
  row-gap: 46px;
  position: sticky;
  top: var(--header-height);

  @media screen and (max-width: 830px) {
    row-gap: 10px;
    margin-bottom: 30px;
    position: relative;
    top: auto;
  }

  .menu-link_list {
    margin-bottom: 0;

    @media screen and (max-width: 830px) {
      display: flex;
      gap: 10px 20px;
    }
    @media screen and (max-width: 400px) {
      flex-direction: column;
    }
  }

  .parent-menu {
    margin-bottom: 10px;
  }

  .child-menu {
    margin-top: 8px;
    @media screen and (max-width: 830px) {
      margin-top: 0;
    }
    a {
      color: var(--color-main);
      line-height: 2.5;
      letter-spacing: 0.1em;
      font-weight: 500;
      position: relative;

      &:hover {
        text-decoration: none;
      }

      @media screen and (max-width: 830px) {
        &::after {
          content: "";
          background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2211%22%20viewBox%3D%220%200%2019%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M17.7568%200.530396L9.1435%209.14373C5.77979%205.78001%203.89389%203.89411%200.530175%200.530394%22%20stroke%3D%22%23222222%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
          background-repeat: no-repeat;
          background-size: 100%;
          width: 13px;
          height: 8px;
          display: inline-block;
          margin-left: 6px;
          margin-top: -1px;
          vertical-align: middle;
        }
      }
    }
  }
}

.cafe-features-block {
  max-width: 1240px;
  margin-inline: auto;
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 170px;
  padding-inline: 20px;
  position: relative;

  @media screen and (max-width: 600px) {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  &::after {
    content: "";
    background: url(./assets/img/cafe/logo_hatsune.png) 0 0 no-repeat;
    background-size: 100%;
    width: 413px;
    height: 131px;
    position: absolute;
    right: 20px;
    bottom: -60px;
    opacity: 0.06;

    @media screen and (max-width: 600px) {
      width: 270px;
      height: 81px;
      right: 10px;
      bottom: -40px;
    }
  }

  .page-title {
    margin-bottom: 83px;

    @media screen and (max-width: 800px) {
      margin-bottom: 60px;
    }
    @media screen and (max-width: 600px) {
      margin-bottom: 40px;
    }
  }
}

.cafe-features-content {
  max-width: 992px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 70px;

  .features-box {
    display: flex;
    gap: 50px;
    justify-content: space-between;

    @media screen and (max-width: 600px) {
      flex-direction: column;
    }

    &:nth-child(1) {
      .image1 {
        max-width: 250px;
      }
      .image2 {
        max-width: 200px;
      }
    }

    &:nth-child(2) {
      .image1 {
        max-width: 350px;
      }
      .image2 {
        max-width: 200px;
      }
    }

    &:nth-child(3) {
      .image1 {
        max-width: 285px;
      }
      .image2 {
        max-width: 200px;
      }
    }

    &:nth-child(even) {
      flex-direction: row-reverse;
      align-items: flex-end;

      @media screen and (max-width: 600px) {
        flex-direction: column;
        align-items: flex-start;
      }

      .features-box_image {
        .image1 {
          margin-left: 0;
          margin-top: 0;
        }
        .image2 {
          margin-left: auto;
        }
      }
    }
  }

  .features-box_text {
    width: 55%;

    @media screen and (max-width: 600px) {
      width: 100%;
    }

    .features-box_heading {
      margin-bottom: 38px;

      .title {
        font-weight: 500;
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        margin-bottom: 13px;
      }

      .sub-title {
        color: #868686;
        font-weight: 500;
        letter-spacing: 0.16em;
        font-size: 14px;
        position: relative;
        padding-left: 76px;

        @media screen and (max-width: 600px) {
          padding-left: 30px;
        }

        &::before {
          content: "";
          background: #ababab;
          height: 1px;
          width: 44px;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);

          @media screen and (max-width: 600px) {
            width: 20px;
          }
        }
      }
    }

    .features-box_description {
      font-size: 14px;
      line-height: 0.1em;
      line-height: 2.2;

      > p {
        margin-bottom: 30px;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }

  .features-box_image {
    flex: 1;

    @media screen and (max-width: 600px) {
      width: 100%;
    }

    img {
      display: block;
    }

    .image1 {
      margin-left: auto;
      margin-top: 40px;
      width: 100%;

      @media screen and (max-width: 600px) {
        margin-top: 0;
      }
    }

    .image2 {
      margin-top: 80px;
      width: 100%;

      @media screen and (max-width: 600px) {
        margin-top: 60px;
      }
    }
  }
}

.cafe-shop-info {
  margin-top: 120px;

  @media screen and (max-width: 830px) {
    margin-top: 100px;
  }

  @media screen and (max-width: 600px) {
    margin-top: 80px;
  }

  .cafe-info {
    display: flex;
    column-gap: 70px;
    margin-top: 90px;

    @media screen and (max-width: 830px) {
      flex-direction: column;
      row-gap: 60px;
      max-width: 600px;
      margin-inline: auto;
    }

    @media screen and (max-width: 600px) {
      margin-top: 50px;
    }

    .cafe-info_text {
      flex: 1;

      .cafe-logo {
        max-width: 250px;
        margin-bottom: 30px;

        @media screen and (max-width: 600px) {
          max-width: 200px;
        }
      }

      .cafe-info_access {
        font-size: 14px;
        line-height: 1.8;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin-bottom: 40px;
      }
      .cafe-payment {
        margin-bottom: 0;

        dt {
          font-size: 14px;
          font-weight: 600;
          line-height: 1.9;
          letter-spacing: 0.1em;
          margin-bottom: 3px;
        }

        dd {
          display: flex;
          flex-wrap: wrap;
          gap: 0 20px;
          font-size: 14px;
          line-height: 1.9;
          letter-spacing: 0.1em;
          margin-bottom: 0;

          @media screen and (max-width: 400px) {
            flex-direction: column;
          }
        }
      }
    }

    .cafe-info_gallery {
      width: 50%;
      @media screen and (max-width: 830px) {
        width: 100%;
      }
      .gallery-thumbnail_item {
        opacity: 0.3;
        transition: opacity 0.3s linear;
        width: calc(100% / 3) !important;
        display: block !important;
        float: none !important;
      }

      .gallery-thumbnail {
        .slick-track {
          transform: unset !important;
          width: 100% !important;
          display: flex;
          justify-content: space-between;
          flex-flow: row wrap;
        }

        .slick-current {
          opacity: 1;
        }
      }
    }
  }
}

/* ページネーション */
.pagination {
  .nav-links {
    display: flex;
    column-gap: 15px;
    justify-content: center;

    .page-numbers {
      color: #000;
      padding: 10px 5px;
      font-size: 16px;
      line-height: 1;
    }

    .current {
      border-bottom: 1px solid #000;
    }
  }
}

/* grappinoとは */
.about-message {
  margin-top: 40px;
  text-align: center;

  @media screen and (max-width: 600px) {
    text-align: left;
    margin-top: 0;
  }

  .message-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  p {
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 20px;
  }
}

.about-concept {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  margin-top: 120px;

  @media screen and (max-width: 600px) {
    row-gap: 60px;
  }

  .about-concept_box {
    padding: 50px;
    background-color: var(--color-content-bg);
    display: flex;
    gap: 20px 50px;
    border-radius: 20px;
    align-items: center;

    &:nth-child(even) {
      flex-direction: row-reverse;

      @media screen and (max-width: 800px) {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 800px) {
      padding: 45px 50px;
      flex-direction: column;
    }

    @media screen and (max-width: 600px) {
      padding: 35px 30px;
    }
  }
  .about-concept_detail {
    flex: 1;

    @media screen and (max-width: 800px) {
      width: 100%;
    }

    .concept-sub-title {
      position: relative;
      display: flex;
      align-items: center;
      column-gap: 20px;
      margin-bottom: 15px;
      &::before {
        content: "";
        background-color: #000;
        height: 1px;
        width: 150px;
        display: block;
        @media screen and (max-width: 600px) {
          width: 50px;
        }
      }
    }
    .concept-title {
      font-size: 24px;
      font-weight: 500;
      line-height: 1.8;
      margin-bottom: 10px;
      @media screen and (max-width: 600px) {
        font-size: 20px;
      }
    }
    p:not(.concept-sub-title) {
      line-height: 1.8;
      font-size: 18px;

      @media screen and (max-width: 600px) {
        font-size: 16px;
      }
    }
  }
  .concept-image {
    width: 40%;

    @media screen and (max-width: 800px) {
      width: 100%;
      max-width: 350px;
      margin-inline: auto;
    }
  }
}

/* 会社概要 */
.table-block {
  max-width: 900px;
  margin-inline: auto;
  table {
    width: 100%;
    th,
    td {
      padding: 20px;
      border: 1px solid var(--color-content-bg);

      @media screen and (max-width: 600px) {
        display: block;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
      }
    }
    th {
      background-color: var(--color-content-bg);
      width: 30%;
      font-weight: bold;
      text-align: center;
      border-bottom: 1px solid #fff;

      @media screen and (max-width: 600px) {
        text-align: left;
        width: 100%;
      }
    }
  }
}

/* お知らせ一覧 */
.information-archive {
  .information-list_item {
    display: flex;
    gap: 5px 15px;

    @media screen and (max-width: 600px) {
      flex-direction: column;
    }

    .post-meta {
      width: 70px;
      margin-bottom: 0;
      @media screen and (max-width: 600px) {
        width: 100%;
      }
    }

    .information-title {
      width: 90%;
      @media screen and (max-width: 600px) {
        width: 100%;
      }
    }
  }
}

.simple-contents {
  p {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;

    @media screen and (max-width: 600px) {
      text-align: left;
    }
  }
}
