@charset "utf-8";

/* 2025/07/26 */

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  
  line-height: 1.618;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

strong {
  font-weight: 700;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #454849;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

@media(max-width: 599px) {
  body .l-wide {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {
  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}
/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

@media(max-width: 599px) {
  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease-out;
  will-change: opacity, transform;
}

.fade-up.inview {
  opacity: 1;
  transform: translateY(0);
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =========================
   FIRST VIEW
========================= */

.header {
  position: relative;
  width: 100%;
  min-height: 80svh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  padding: 8% 8% 5% 45%;

  color: #fff;
  text-align: left;

  background-image: url("img/header__bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;


}

/* ロゴ */
.header .header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(180px, 29vw, 260px);
  margin: 0;
  padding: clamp(28px, 3.5vw, 35px) clamp(30px, 4vw, 35px);

  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.85);
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 共通テキスト */
.header .header__eyebrow,
.header .header__title,
.header .header__lead {
  position: relative;
  z-index: 1;
  margin-right: 0;
  margin-left: 0;
  color: #fff;

  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    serif;
  width: 100%;
  text-align: right;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);

  /* 見出し用の字詰め設定。キャッチコピーはpだが、見出しと同じ字詰めで表示する */
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/* 英語タイトル */
.header .header__eyebrow {
  margin-top: 0;
  margin-bottom: 22px;

  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(16px, 1.45vw, 25px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

/* メインコピー */
.header .header__title {
  margin-top: 0;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: clamp(26px, 2.7vw, 47px);
  line-height: 1.5;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* 日本語サブコピー */
.header .header__lead {
  margin-top: 0;
  margin-bottom: 26px;

  font-size: clamp(17px, 1.55vw, 27px);
  line-height: 1.75;
  letter-spacing: 0.12em;
}

/* 最後の文章 */
.header .header__lead:last-child {
  margin-bottom: 0;
}

/* サブコピーは狭い画面でも改行を残す（p br の一括非表示を上書き） */
@media(max-width: 599px) {
  .header .header__lead br {
    display: block;
  }
}


/* =========================
   TABLET / SP
========================= */

@media screen and (max-width: 767px) {
  .header {
    min-height: 70svh;
    padding: 45vh 4vw 8vh;

    justify-content: flex-start;

    background-image: url("img/header__sp-bg.webp");
    background-position: center top;
  }

  /* SPロゴ */
  .header .header__logo {
    width: 37.5%;
    min-width: 150px;
    max-width: 230px;
    padding: 24px 19px 22px;
  }

  /* 英語タイトル */
  .header .header__eyebrow {
    margin-bottom: 14px;

    font-size: clamp(13px, 3.3vw, 20px);
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  /* メインコピー */
  .header .header__title {
    margin-bottom: 20px;

    font-size: clamp(20px, 5.4vw, 34px);
    line-height: 1.55;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  /* 日本語サブコピー */
  .header .header__lead {
    margin-bottom: 19px;

    font-size: clamp(14px, 3.7vw, 22px);
    line-height: 1.75;
    letter-spacing: 0.08em;
  }

  .header .header__lead:last-child {
    margin-bottom: 0;
  }
}


/* 画面幅がかなり小さい端末用 */
@media screen and (max-width: 374px) {
  .header {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .header .header__title {
    font-size: 19px;
    letter-spacing: 0.04em;
  }

  .header .header__lead {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main {
  padding-bottom: 0;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 0;
  }
}

/* =========================
   COMMON SECTION HEADING
========================= */

.section-heading-wrap {
  width: 100%;
}

/* 英語見出し */
.section-heading {
  margin: 0 0 14px;

  color: #89bcce;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(36px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

/* 日本語見出し */
.section-heading__lead {
  margin: 0;

  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

/* 左寄せ */
.section-heading-wrap--left {
  text-align: left;
}

/* 中央寄せ */
.section-heading-wrap--center {
  text-align: center;
}

/* 右寄せ */
.section-heading-wrap--right {
  text-align: right;
}

/* =========================
   INTRO
========================= */

.intro {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* 左30％が白、右70％が薄いブルー */
  background:
    linear-gradient(
      to right,
      #eff8fb 0%,
      #eff8fb 70%,
      #fff 70%,
      #fff 100%
    );
}

.intro__container {
  width: min(100%, 860px);
  min-height: 760px;
  margin: 0 auto;
  padding: 100px 70px 110px;

  box-sizing: border-box;
}

/* 見出し */
.intro__heading {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 55px;
}

/* 本文と写真 */
.intro__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  column-gap: 50px;
}

/* 本文 */
.intro__txt {
  position: relative;
  z-index: 2;
}

.intro__txt p {
  margin: 0 0 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* 本文中で強調するキーワード */
.intro__keyword {
  font-size: 21px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.intro__txt p:last-child {
  margin-bottom: 0;
}

/* 写真 */
.intro__img {
  position: relative;
  z-index: 2;
  width: 100%;
}

.intro__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


@media screen and (max-width: 767px) {
  /* 共通見出し */
  .section-heading {
    margin-bottom: 10px;

    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .section-heading__lead {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .intro {
    /* SPでは左側に少し白い余白を残す */
    background:
      linear-gradient(
        to right,
        #fff 0%,
        #fff 8%,
        #eff8fb 8%,
        #eff8fb 100%
      );
  }

  .intro__container {
    min-height: auto;
    padding: 40px 0 40px;
  }

  .intro__heading {
    width: auto;
    margin: 0 25px 42px;
  }

  .intro__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 42px;
  }

  .intro__txt {
    margin: 0 25px;
  }

  .intro__txt p {
    margin-bottom: 29px;

    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
  }

  .intro__img {
    width: calc(100% - 55px);
    margin-left: auto;
  }

  .intro__img img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
  }
}

/* =========================
   CTA
========================= */

.cta {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 40px;

  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}

/* 説明文 */
.cta .cta__text {
  margin: 0 20px 55px;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.13em;
}

/* ボタンを囲むp */
.cta .cta__action {
  margin: 0 20px 48px;
}

/* 説明文が無く、ボタンだけのCTA（ページ下部の2箇所） */
.cta .cta__action:first-child {
  margin: 0 20px 55px;
}

/* CTAボタン */
.cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 520px);
  min-height: 90px;
  padding: 20px 20px;

  box-sizing: border-box;
  overflow: hidden;

  color: #fff;
  background-color: #89bcce;

  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* マウスを乗せたとき */
.cta__button:hover {
  background-color: #72aabd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 139, 162, 0.25);
}

/* クリック時 */
.cta__button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* CTA画像 */
.cta__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .cta {
    padding-top: 20px;
  }

  .cta .cta__text {
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;

    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.07em;
  }

  /* SP用改行を表示 */
  .sp {
    display: block;
  }

  .cta .cta__action {
    margin-right: 30px;
    margin-bottom: 35px;
    margin-left: 30px;
  }

  /* 説明文が無く、ボタンだけのCTA（ページ下部の2箇所） */
  .cta .cta__action:first-child {
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .cta__button {
    width: 100%;
    min-height: 72px;
    padding: 16px 20px;

    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  .cta__img {
    width: 100%;
  }
}

/* ページ内リンクをなめらかに移動 */
html {
  scroll-behavior: smooth;
}

/* リンク先で上部に少し余白を残す */
.photo,
.point,
.quality,
.plan,
.faq,
.korea {
  scroll-margin-top: 40px;
}


/* =========================
   PAGE MENU
========================= */

.menu {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 70px 90px;

  box-sizing: border-box;
  background-color: #fff;
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 50px;

  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;
}

.menu__list li {
  min-width: 0;
  text-align: center;
}

.menu__list a {
  position: relative;
  display: block;
  padding: 0 5px 13px;

  color: #454849;
  font-family:
    "Times New Roman",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

/* ボタン下の水色ライン */
.menu__list a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;
  margin: auto;

  content: "";
  background-color: #89bcce;

  transition:
    height 0.3s ease,
    background-color 0.3s ease;
}

/* マウスを乗せたとき */
.menu__list a:hover {
  color: #6aa6bb;
  letter-spacing: 0.12em;
}

.menu__list a:hover::after {
  height: 3px;
}

/* キーボード操作時 */
.menu__list a:focus-visible {
  color: #6aa6bb;
  outline: 2px solid #89bcce;
  outline-offset: 6px;
}

@media screen and (max-width: 767px) {
  .menu {
    padding: 55px 25px 65px;
  }

  .menu__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 35px;
  }

  .menu__list a {
    padding-bottom: 11px;

    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .photo,
  .point,
  .quality,
  .plan,
  .faq,
  .korea {
    scroll-margin-top: 20px;
  }
}

/* =========================
   PHOTO STORIES
========================= */

.photo {
  width: 100%;
  padding: 110px 30px 120px;
  box-sizing: border-box;
  background-color: #fff;
}

/* 見出し */
.photo .section-heading-wrap {
  width: min(100%, 760px);
  margin: 0 auto 60px;
}

/* カルーセル全体 */
.photo__carousel {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
}

/* 表示領域 */
.photo__viewport {
  width: 100%;
  overflow: hidden;
}

/* 横に並ぶ写真 */
.photo__gallery {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;

  transition: transform 0.65s ease;
  will-change: transform;
}

/* 1枚分 */
.photo__slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* 写真 */
.photo__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860 / 500;
  object-fit: cover;
}

/* =========================
   ARROWS
========================= */

.photo__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);

  cursor: pointer;
  transform: translateY(-50%);

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.photo__arrow--prev {
  left: -26px;
}

.photo__arrow--next {
  right: -26px;
}

.photo__arrow:hover {
  background-color: #89bcce;
}

.photo__arrow--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.photo__arrow--next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* 矢印の線 */
.photo__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 11px;
  height: 11px;
  border-top: 2px solid #89bcce;
  border-right: 2px solid #89bcce;
}

.photo__arrow--prev .photo__arrow-icon {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.photo__arrow--next .photo__arrow-icon {
  transform: translate(-65%, -50%) rotate(45deg);
}

.photo__arrow:hover .photo__arrow-icon {
  border-color: #fff;
}

/* =========================
   DOTS
========================= */

.photo__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  margin-top: 28px;
}

.photo__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #89bcce;
  border-radius: 50%;

  background-color: transparent;
  cursor: pointer;

  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background-color 0.3s ease;
}

.photo__dot.is-active {
  width: 28px;
  border-radius: 10px;
  background-color: #89bcce;
}

.photo__arrow:focus-visible,
.photo__dot:focus-visible {
  outline: 2px solid #89bcce;
  outline-offset: 4px;
}


/* =========================
   PHOTO STORIES / SP
========================= */

@media screen and (max-width: 767px) {
  .photo {
    padding: 75px 20px 20px;
  }

  .photo .section-heading-wrap {
    margin-bottom: 40px;
  }

  .photo__slide img {
    aspect-ratio: 4 / 2.3;
  }

  .photo__arrow {
    width: 42px;
    height: 42px;
  }

  .photo__arrow--prev {
    left: -10px;
  }

  .photo__arrow--next {
    right: -10px;
  }

  .photo__arrow-icon {
    width: 9px;
    height: 9px;
  }

  .photo__dots {
    gap: 9px;
    margin-top: 22px;
  }

  .photo__dot {
    width: 7px;
    height: 7px;
  }

  .photo__dot.is-active {
    width: 23px;
  }
}
/* =========================
   ALL YOU NEED / POINT
========================= */

.point {
  width: 100%;
  padding: 40px 0 80px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
}

/* 背景写真部分 */
.point__visual {
  
  min-height: 720px;
  margin: 0 auto;

  background-image: url("img/point__bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.point__visual-inner {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 95px 0 80px;

  box-sizing: border-box;
}

/* 見出し */
.point .section-heading-wrap {
  margin-bottom: 60px;
}

.point .section-heading {
  line-height: 1.12;
}

/* 導入文 */
.point__intro {
  width: 58%;
}

.point__intro p {
  margin: 0 0 38px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.point__intro p:last-child {
  margin-bottom: 0;
}

.point__intro .point__intro-emphasis {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}


/* =========================
   POINT LIST
========================= */

.point__inner {
  width: min(calc(100% - 60px), 760px);
  margin: 60px auto 0;
  padding: 0;

  list-style: none;
}

.point__item {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  column-gap: 25px;

  padding: 0 0 55px;
  margin: 0 0 48px;

  border-bottom: 1px solid #89bcce;
  box-sizing: border-box;
}

.point__item:last-child {
  margin-bottom: 0;
}

/* POINT 01などの画像 */
.point__number {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.point__number img {
  display: block;
  width: 85px;
  height: auto;
}

/* ポイントの文章 */
.point__content {
  min-width: 0;
}

.point__title {
  position: relative;
  margin: 12px 0 30px;
  padding-bottom: 13px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.11em;
}

/* 見出し下の水色ライン */
.point__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;

  content: "";
  background-color: #89bcce;
}

.point__text {
  margin: 0;

  color: #444;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.07em;
}


@media screen and (max-width: 767px) {
  .point {
    padding: 75px 0 85px;
  }

  .point__visual {
    width: 100%;
    min-height: 500px;

    background-image: url("img/point__bg-sp.webp");
    background-position: center top;
    
  }

  .point__visual-inner {
    width: 100%;
    padding: 60px 25px 70px;
  }

  .point .section-heading-wrap {
    margin-bottom: 42px;
  }

  .point .section-heading {
    font-size: clamp(29px, 9vw, 39px);
    line-height: 1.12;
  }

  .point .section-heading__lead {
    font-size: 14px;
    line-height: 2;
  }

  .point__intro {
    width: 100%;
  }

  .point__intro p {
    margin-bottom: 30px;

    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .point__intro .point__intro-emphasis {
    font-size: 15px;
    line-height: 1.8;
  }

  .point__inner {
    width: calc(100% - 40px);
    margin-top: 50px;
  }

  .point__item {
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 15px;

    padding-bottom: 38px;
    margin-bottom: 40px;
  }

  .point__number img {
    width: 62px;
  }

  .point__title {
    margin: 7px 0 23px;
    padding-bottom: 11px;

    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }

  .point__text {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .pc {
    display: none;
  }
}


/* =========================
   MARBLE QUALITY
========================= */

.quality {
  width: 100%;
  padding: 110px 30px 120px;
  box-sizing: border-box;
  background-color: #eff8fb;
}

/* 見出し */
.quality .section-heading-wrap {
  width: min(100%, 760px);
  margin: 0 auto 65px;
}

/* カード一覧 */
.quality__inner {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;

  list-style: none;
}

/* 1つのカード */
.quality__item {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 100%;
 
  margin-bottom: 38px;

  overflow: hidden;
  box-sizing: border-box;
}

.quality__item:last-child {
  margin-bottom: 0;
}

/* =========================
   TEXT
========================= */

.quality__txt {
  display: grid;
  grid-template-rows: auto 1fr;

  min-width: 0;
  background-color: #fff;
}

/* 水色のタイトル部分 */
.quality__title {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 40px;
  min-height: 120px;
  box-sizing: border-box;
  color: #fff;
  background-color: #89bcce;

  font-size: 21px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.11em;
}

/* 白い説明部分 */
.quality__text {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 40px;

  box-sizing: border-box;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.07em;
}

/* =========================
   IMAGE
========================= */

.quality__img {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.quality__img img {
  display: block;
  width: 100%;
  height: 100%;
  

  object-fit: cover;
  object-position: center;
}


/* =========================
   HOVER
========================= */

.quality__img img {
  transition: transform 0.7s ease;
}

.quality__item:hover .quality__img img {
  transform: scale(1.03);
}



@media screen and (max-width: 767px) {
  .quality {
    padding: 75px 20px 85px;
  }

  .quality .section-heading-wrap {
    margin-bottom: 45px;
  }

  .quality__item {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 35px;
  }

  .quality__txt {
    display: block;
  }

  .quality__title {
    min-height: auto;
    padding: 22px 25px;

    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .quality__text {
    display: block;
    min-height: auto;
    padding: 27px 25px 30px;

    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .quality__img {
    aspect-ratio: 4 / 3;
  }

  .quality__img img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* =========================
   LOCATION PHOTO PLAN
========================= */

.plan {
  width: 100%;
  padding: 110px 90px 130px;
  overflow: hidden;

  box-sizing: border-box;
  background-color: #fff;
}

/* 見出し */
.plan .section-heading-wrap {
  width: min(100%, 680px);
  margin: 0 auto 90px;
}

/* プラン一覧 */
.plan__inner {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 0;

  list-style: none;
}

/* 各プラン */
.plan__item {
  width: 100%;
  margin-bottom: 80px;
}

.plan__item:last-child {
  margin-bottom: 0;
}

/* =========================
   PLAN IMAGE
========================= */

.plan__img {
  position: relative;
  z-index: 3;

  width: 100%;
  overflow: hidden;
}

.plan__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860 / 385;

  object-fit: cover;
  object-position: center;

  transition: transform 0.7s ease;
}

.plan__item:hover .plan__img img {
  transform: scale(1.025);
}

/* =========================
   PLAN CARD
========================= */

.plan__card {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;

  width: 100%;
  min-height: 300px;
  margin-top: -20px;
  padding: 55px 55px 38px;

  box-sizing: border-box;
  background-color: #eff8fb;

  /* PCだけ写真より少し右へずらす */
  transform: translateX(70px);
}

/* =========================
   LEFT CONTENT
========================= */

.plan__description {
  min-width: 0;
}

.plan__title {
  position: relative;
  margin: 0 0 27px;
  padding-bottom: 17px;

  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

/* タイトル下の水色ライン */
.plan__title::after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 175px;
  height: 2px;

  content: "";
  background-color: #89bcce;
}

/* 下マージンは共通の p:not(:last-child) { margin-bottom: 1em } に任せる */
.plan__catch {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.07em;
}

.plan__text {
  margin: 0;

  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* =========================
   RIGHT CONTENT
========================= */

.plan__detail {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.plan__list {
  margin: 7px 0 25px;
  padding: 0;

  list-style: none;
}

.plan__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* リストの小さな丸 */
.plan__list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;

  width: 5px;
  height: 5px;
  border-radius: 50%;

  content: "";
  background-color: #89bcce;
}

.plan__price {
  margin: auto 0 0;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.plan__price-value {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1000px) {
  .plan {
    padding-right: 65px;
    padding-left: 40px;
  }

  .plan__card {
    transform: translateX(30px);
  }
}


@media screen and (max-width: 767px) {
  .plan {
    padding: 40px 20px 40px;
  }

  .plan .section-heading-wrap {
    margin-bottom: 55px;
  }

  .plan__item {
    margin-bottom: 45px;
  }

  .plan__img img {
    aspect-ratio: 4 / 2.3;
  }

  /* SPではずらさない */
  .plan__card {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 32px 24px 32px;

    transform: none;
  }

  .plan__title {
    margin-bottom: 23px;
    padding-bottom: 13px;

    font-size: 23px;
    line-height: 1.5;
  }

  .plan__title::after {
    width: 125px;
  }

  .plan__catch {
    font-size: 14px;
    line-height: 1.9;
  }

  .plan__text {
    font-size: 13px;
    line-height: 2;
  }

  .plan__detail {
    margin-top: 27px;
    padding-top: 24px;
    border-top: 1px solid rgba(137, 188, 206, 0.55);
  }

  .plan__list {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .plan__list li {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .plan__price {
    white-space: normal;
  }

  .plan__price-value {
    font-size: 23px;
  }

  .pc {
    display: none;
  }
}

/* =========================
   KOREA PHOTO PLAN
========================= */

.korea {
  width: 100%;
  padding: 100px 30px 120px;

  box-sizing: border-box;
  background-color: #fff;
  background-image: url("img/korea__bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.korea__container {
  width: min(100%, 960px);
  margin: 0 auto;
}

/* 見出し */
.korea .section-heading-wrap {
  width: min(100%, 860px);
  margin: 0 auto 45px;
}

.korea .section-heading {
  white-space: nowrap;
}

/* =========================
   MAIN CONTENT
========================= */

.korea__inner {
  display: grid;
  grid-template-columns: 42% 58%;

  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0 40px 45px;

  box-sizing: border-box;
  background-color: #fffdf7;
}

/* =========================
   LEFT
========================= */

.korea__main {
  position: relative;
  z-index: 2;
}

.korea__main-img {
  width: 100%;
  margin-top: -10px;
  overflow: hidden;
}

.korea__main-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;

  object-fit: cover;
  object-position: center;
}

/* 料金 */
.korea__prices {
  padding: 35px 20px 0;
}

.korea__price {
  margin-bottom: 26px;
}

.korea__price:last-child {
  margin-bottom: 0;
}

.korea__price .korea__price-text {
  margin: 0 0 7px;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.korea__price-value {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.korea__price-note {
  display: block;

  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* =========================
   RIGHT
========================= */

.korea__detail {
  padding: 55px 20px 0 50px;
  box-sizing: border-box;
}

.korea__message {
  margin-bottom: 45px;
}

.korea__message p {
  margin: 0 0 28px;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.korea__message p:last-child {
  margin-bottom: 0;
}

/* プランに含まれる内容 */
.korea__list {
  display: grid;
  gap: 5px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.korea__list li {
  position: relative;
  padding-left: 17px;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.korea__list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;

  width: 5px;
  height: 5px;
  border-radius: 50%;

  content: "";
  background-color: #89bcce;
}

/* =========================
   GALLERY
========================= */

.korea__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;

  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 0 45px;

  list-style: none;

  box-sizing: border-box;
  background-color: #fffdf7;
}

.korea__gallery li {
  min-width: 0;
}

.korea__gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 3.4;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.korea__gallery img:hover {
  transform: scale(1.025);
}


@media screen and (max-width: 767px) {
  .korea {
    padding: 70px 20px 85px;
    background-position: center top;
  }

  .korea .section-heading-wrap {
    margin-bottom: 40px;
    text-align: left;
  }

  .korea .section-heading {
    font-size: clamp(27px, 8.2vw, 37px);
    white-space: normal;
  }

  .korea__inner {
    display: block;
    padding: 0 20px 40px;
  }

  .korea__main-img {
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
  }

  .korea__main-img img {
    aspect-ratio: 4 / 5;
  }

  .korea__prices {
    padding: 28px 0 0;
  }

  .korea__price {
    margin-bottom: 22px;
  }

  .korea__price-value {
    font-size: 24px;
  }

  .korea__price-note {
    font-size: 11px;
  }

  .korea__detail {
    margin-top: 38px;
    padding: 32px 0 0;

    border-top: 1px solid rgba(137, 188, 206, 0.6);
  }

  .korea__message {
    margin-bottom: 32px;
  }

  .korea__message p {
    margin-bottom: 24px;

    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .korea__list {
    gap: 6px;
  }

  .korea__list li {
    font-size: 12px;
    line-height: 1.8;
  }

  .korea__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;

    padding: 0 20px 25px;
  }

  .korea__gallery img {
    aspect-ratio: 1 / 1.15;
  }
}

/* =========================
   FAQ
========================= */

.faq {
  width: 100%;
  padding: 40px 30px 40px;

  box-sizing: border-box;
  background-color: #eff8fb;
}

/* 見出し */
.faq .section-heading-wrap {
  width: min(100%, 760px);
  margin: 0 auto 45px;
}

/* FAQの白いボックス */
.faq__inner {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 70px 65px 75px;

  list-style: none;

  box-sizing: border-box;
  background-color: #fff;
}

/* 1つの質問と回答 */
.faq__item {
  margin-bottom: 65px;
}

.faq__item:last-child {
  margin-bottom: 0;
}

/* 質問 */
.faq__question {
  position: relative;
  margin: 0;
  padding: 2px 20px 17px 30px;

  border-bottom: 2px solid #89bcce;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

/* 質問左側の縦ライン */
.faq__question::before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 2px;
  height: 48px;

  content: "";
  background-color: #89bcce;
}

/* 回答 */
.faq__answer {
  margin: 28px 0 0;
  padding: 0 30px;

  color: #444;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.06em;
}


/* =========================
   FAQ / SP
========================= */

@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 20px 40px;
  }

  .faq .section-heading-wrap {
    margin-bottom: 35px;
  }

  .faq__inner {
    padding: 45px 20px 50px;
  }

  .faq__item {
    margin-bottom: 48px;
  }

  .faq__question {
    padding: 0 10px 13px 18px;

    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .faq__question::before {
    height: 38px;
  }

  .faq__answer {
    margin-top: 20px;
    padding: 0 5px 0 18px;

    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .pc {
    display: none;
  }
}


/* =========================
   MORE THAN A PHOTO
========================= */

.message {
  position: relative;

  width: 100%;
  min-height: 980px;
  padding: 85px 30px 100px;
  overflow: hidden;

  box-sizing: border-box;
  background-color: #fff;
}

.section-heading--glow {
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff,
    0 0 14px #fff,
    0 0 22px rgba(255, 255, 255, 0.95);
}

/* 右上の写真 */
.message::before {
  position: absolute;
  top: 0;
  right: 0;

  width: 35%;
  height: 570px;

  content: "";
  background-image: url("img/message__img-1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 左下の写真 */
.message::after {
  position: absolute;
  bottom: 75px;
  left: 0;

  width: 35%;
  height: 535px;

  content: "";
  background-image: url("img/message__img-2.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 中央の内容 */
.message__container {
  position: relative;
  z-index: 2;

  width: min(100%, 1000px);
  margin: 0 auto;
}

/* 見出し */
.message .section-heading-wrap {
  position: relative;
  z-index: 3;

  width: min(100%, 760px);
  margin: 0 auto 45px;
}

.message .section-heading {
  white-space: nowrap;
}

/* =========================
   MESSAGE BODY
========================= */

.message__body {
  position: relative;
  z-index: 3;

  width: min(100%, 520px);
  margin: 0 auto;
  padding: 35px 45px 0;

  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.message__body .message__text {
  margin: 0 0 35px;

  color: #333;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.07em;
}

/* .message__last の個別マージン（PC:42px / SP:34px）は、元のCSSでは
   .message__body > p:not(.message__cta) に詳細度で負けていて一度も効いていなかった。
   見た目を変えないため指定しない（最後の一文も他の段落と同じマージンになる）。 */

/* =========================
   CTA BUTTON
========================= */

.message__cta {
  width: calc(100% + 60px);
  margin: 0 0 0 -30px;
}

.message__cta a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 82px;
  padding: 18px 30px;

  box-sizing: border-box;
  color: #fff;
  background-color: #89bcce;

  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.message__cta a:hover {
  background-color: #72aabd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 139, 162, 0.25);
}

.message__cta a:focus-visible {
  outline: 2px solid #5e9eb5;
  outline-offset: 5px;
}


/* =========================
   MESSAGE / SP
========================= */

@media screen and (max-width: 767px) {
  .message {
    min-height: 0;
    padding: 65px 20px 140px;
  }


  /* 右上写真 */
  .message::before {
    top: 0;
    right: 0;

    width: 70%;
    height: 400px;

    opacity: 0.72;
  }

  /* 左下写真 */
  .message::after {
    bottom: 0;
    left: 0;

    width: 55%;
    height: 380px;
  }

  .message .section-heading-wrap {
    margin-bottom: 60px;
  }

  .message .section-heading {
    font-size: clamp(27px, 8vw, 36px);
    white-space: normal;
  }

  .message__body {
    width: 90%;
    padding: 30px 20px;

    background-color: rgba(255, 255, 255, 0.9);
  }

  .message__body .message__text {
    margin-bottom: 28px;

    font-size: 12px;
    line-height: 2.1;
    letter-spacing: 0.04em;
  }

}



/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]), .main ul, .main ol {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]), .main ul, .main ol {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
}
  .h3:first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding: .75em 1em;
    font-size: 21px;
  }
}

/* 小見出し H3-1
======================================================================= */

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
  position: relative;
}
  .h3-1:first-child {
    margin-top: 0;
  }

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }
  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
  margin: 2em auto 1em;
    font-size: 18px;
  }
}

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}

/* 引用
======================================================================= */

/* NOTE: 以下の .blockquote と .ul のアイコンは FontAwesome 依存。
   このページでは未使用のため FontAwesome の読み込みを外している。
   使う場合は index.html に FontAwesome の CSS を戻すこと。 */

.blockquote {
  position: relative;
  padding: 24px 24px 24px 64px;
  box-sizing: border-box;
  font-style: italic;
  background: #f2efe6;
  color: #333;
}

.blockquote::before {
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 24px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #ddd;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.blockquote p {
  padding: 0;
  margin: 18px 0;
  line-height: 1.7;
}

.blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

@media(max-width: 599px) {
  .blockquote {
    padding: 24px 24px 24px 48px;
  }
}

/* キャプション
======================================================================= */

.caption,
.main p.caption {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* サイン
======================================================================= */

p.sign {
  margin: 3em 0;
  text-align: right;
  font-weight: 700;
  font-size: 1.5em;
  font-family: serif;
}
  p.sign img {
    max-width: 50%;
  }

@media(max-width: 599px) {
  .main p.sign {
    margin: 2em 0 ;
  }
  .main p.sign img {
    max-width: 50%;
  }
}

/* UL
======================================================================= */

.ul {
  background-color: #f2efe6;
  padding: 1.5em 2em;
  padding-left: 3em;
}

.ul li::before {
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #369;
  content: "\f111";
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .ul {
    font-size: 1em;
  }
}



/* =========================
   FOOTER
========================= */

.footer {
  width: 100%;
  padding: 40px 30px 40px;

  box-sizing: border-box;
  color: #fff;
  background-color: #89bcce;
  text-align: center;
}

.footer__inner {
  width: min(100%, 500px);
  margin: 0 auto;
}

/* ロゴ */
.footer__logo {
  width: 150px;
  max-width: 30%;
  margin: 0 auto 45px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 住所・営業時間 */
.footer__info {
  margin: 0;

  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.11em;
}

.footer__info p {
  margin: 0 0 5px;
}

.footer__info p:first-child {
  margin-bottom: 9px;
}

.footer__info a {
  color: #fff;
  text-decoration: none;
}

.footer__info a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* コピーライト */
.footer__copyright {
  margin-top: 48px;
}

.footer__copyright small {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}


@media screen and (max-width: 767px) {
  .footer {
    padding: 20px;
  }

  .footer__logo {
    width: 180px;
    max-width: 35%;
    margin-bottom: 35px;
  }

  .footer__info {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .footer__info p {
    margin-bottom: 3px;
  }

  .footer__info p:first-child {
    margin-bottom: 10px;
  }

  .footer__copyright {
    margin-top: 35px;
  }

  .footer__copyright small {
    font-size: 8px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
}

/* =======================================================================
  このページの先頭へ戻る
======================================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  clear: both;
  text-align: right;
}

.back-to-top a {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAABhlBMVEUAAADMzMzd3d2AgIDd3d3d3d3c3Nzb29vc3NzV1dXc3Nzc3Nzd3d3d3d3c3Nzb29vc3Nzc3Nze3t7c3NzW1tbb29vd3d3d3d3d3d3c3Nzc3Nzf39/d3d3d3d3b29va2trc3NzGxsbb29vc3Nzd3d3d3d3c3Nzc3Ny/v7/c3Nzd3d3c3NzR0dHY2Njc3Nzc3Nzc3Nzc3Nzc3Nzb29vY2Nja2trc3Nzc3NzZ2dnc3Nze3t7d3d3c3Nzc3Nzc3NzX19fc3Nzc3Nzc3Nzd3d3b29vc3Nzc3Nzb29vV1dXd3d3c3NzV1dXd3d3c3Nzc3Nzd3d3c3Nzc3Nzd3d3d3d3c3Nzc3Nzb29vc3Nzd3d3d3d3d3d3c3Nzd3d3d3d3////o6Oj9/f329vbm5ub8/Pz5+fn4+Pj+/v7w8PDj4+Py8vLx8fHv7+/i4uL4+fnk5OTs7Ozd3d339/ekpqrt7e3u7u6doKS3ubzLzM6+wMLr6+vf39/6+vrl5uexs7bR09WqrbDr7O3e3+Ej3aiqAAAAXnRSTlMACuEC35y4FXYMFunx9NtH60j0px9NeHCUUCT+WchcKewJB2y70VjzCKjX2gsh1m2Yk9yPDUXV5RTG79DjkL0g+eTinV3FHUYS3r8G7d2+b/KZ4NK3dZ5RSlJ3SVq5/bnMpQAAAw1JREFUeF6t2WVz4lAUgOGDU6SFFipABaruLluVdXe58eBWddl/vjPMMGXTJpwk9/0Bz6ebKydQp6X53va+Ce9gafP1m/6+9t75JTCeJTy7GuUvkpwosERmr0QuecFHV2fDFiOaranFzydF8igxyftbmmw6uYY2eyojEJWETMHe1gD44l8CTJloVmYC7jjWG7AyIqmbyFgHUFzoc4ojqLiUM1Tf6/IdywSZfOzrAu2GdnIS0ZGU+zqk5XmWGZboimWWPere+EyR6K44M67mdS9miYGyi91Pe5G1NDFUei3ylOdqTBKDZRpdj71XnUfEcEedCVDmYIiJGIfS68qxZkA2p1jhIZ9ETCX5QlCb85iYLOus9QZSsllQTsUePIuVI6bjrBao5mYIhRh31WsIiDRAsad6KkwyhErMJFSyvZDogJLdVgGbUoRShWAFbMnQAjPDlTXTLNACheYxAOjgCbX4DgCYStIDk1MAMCoigPztXwwojgJ4LhHe9eHJyV0eIV56IMjjPJzI/4LWIspDisVWcGQwHlZMO+AZh/DQIvcWRq4QHlq8GgGvgPDQouCF9yzKuztEiewglHBe/honlmAT5/2Ha4I9LM7Diewg2AU1774K3FQAlCh44ZPqsjmt8RTirfqy0VjYhw+eUjxXA7mX4EirgWcPnlK8Vv/0NDaH/GnVU4pnWptDkNfYVW/O8kTR/fmpxl7Lf0dtsPguPQCNIg7AHgHwgfIhRf8YHaN90MMw5asIBAuUL0s2O63r3Ecb5Qvnu+qVuIfulZj+pR0s1rJ5r1zzrIAYjYfPb6jJmTULZv9AbRvmH4+KycOu2eftLuUH+A4oS5gbEQw9NcTIUB1iAES2jI5ZtiIqg6BtY4Og7W5QaX/ByKhqYR9Ue76nf5i29xw0SkzrHfdNJ0C7bys6BpLZlR9Qt5BTx8h0AzDFsEPdGCCLuwOMpM1JTOBnHPDNtdkLdQbjcxRH982K0T02S3i9P8oX05woyITIgsili3y0fz1sAeO5Diq/P/ylkt870dfee+AC7f4Bnw1DMsoy0tsAAAAASUVORK5CYII=") no-repeat center center;
  background-size: contain;
  line-height: 100px;
}

.back-to-top a:active {
  outline: 0 none black;
}



/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */