@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2022.10.05
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*CUBE 青緑　濃い*/
/*CUBE 青緑　薄い*/
/*CUBE ピンク　*/
.color-flag {
  color: #116f6e;
}

.color-cube {
  color: #d2b898;
}

/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #116f6e;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #116f6e;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #ce978a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 共有設定 ■■■■■■■*/
.text-left {
  text-align: left;
}

.bg-main {
  background-color: #f4f3ef;
}

.bg-sub {
  background-color: #87a6a2;
}

.bg-ami {
  background-color: #f4f3ef;
  position: relative;
  overflow: hidden;
}

.contents-first-block {
  margin: 0 auto;
  padding: 2em 0 4em;
  width: 100%;
}

.contents-block {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
}

.content > * + * {
  margin-top: 1em;
}

/*■　基本設定　■*/
.text-mi-en {
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #955d41;
}

.text-color-main {
  color: #007480;
}

.text-read-m {
  margin-bottom: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  line-height: 1.4;
  font-weight: 500;
}

.text-title-l {
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: 500;
}

.text-title {
  margin-bottom: 1.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.text-title-m {
  margin-bottom: 1.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 2px;
}
.text-title-m strong {
  font-size: 4rem;
  font-weight: 300;
}

.text-title-s {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 2px;
}
.text-title-s strong {
  font-size: 4rem;
  font-weight: 300;
}

.text-read {
  font-family: "Noto Serif JP", serif;
  /*font-feature-settings: "palt";*/
  font-size: 1.6rem;
  line-height: 2.6;
  font-weight: 400;
}

.text-color-flaf {
  color: #116f6e;
}

.text-color-coco {
  color: #007481;
}

/*■　リンクボタンブロック　■*/
.link-btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  margin: 0 auto 4em;
  max-width: 720px;
  background-color: #FFF;
}

/*■　リンクボタン FLAG　■*/
a.link-btn-flag {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 62px;
  border-radius: 31px;
  background: -webkit-gradient(linear, left top, right top, from(#116f6e), to(#87a6a2));
  background: linear-gradient(to right, #116f6e, #87a6a2);
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
}
a.link-btn-flag span {
  font-size: 1.1rem;
}
a.link-btn-flag:after {
  content: "";
  display: block;
  width: 26px;
  height: 16px;
  background: url(../images/top/btn-arrow.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
a.link-btn-flag:link, a.link-btn-flag:visited, a.link-btn-flag:hover, a.link-btn-flag:active {
  color: #FFF;
}

/*■　リンクボタン CUBE　■*/
.cube-btn-box {
  margin: 15px 0 20px;
}

a.link-btn-cube {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 62px;
  border-radius: 31px;
  background: -webkit-gradient(linear, left top, right top, from(#d2b898), to(#dfcdb7));
  background: linear-gradient(to right, #d2b898, #dfcdb7);
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
}
a.link-btn-cube span {
  font-size: 1.1rem;
}
a.link-btn-cube:after {
  content: "";
  display: block;
  width: 26px;
  height: 16px;
  background: url(../images/top/btn-arrow.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
a.link-btn-cube:link, a.link-btn-cube:visited, a.link-btn-cube:hover, a.link-btn-cube:active {
  color: #FFF;
}

/*■　CUBE　エントリー　■*/
.entry-block {
  margin: 0 auto;
  padding: 3em 0;
  width: 100%;
  background-color: #7f9994;
  color: #FFF;
}

.entry-text-mi {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 400;
}

.entry-text-title {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2rem;
  line-height: 1.6;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 40px;
}
.entry-text-title img {
  width: 360px;
}

a.entry-link-btn {
  margin: 2em auto 0;
  display: block;
  padding: 5px;
  max-width: 280px;
  height: 70px;
  color: #FFF;
  background-color: #d4978a;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.2;
}
a.entry-link-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #FFF;
}
a.entry-link-btn span:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 1px 1px 0 0;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  bottom: 23px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 20px;
}
a.entry-link-btn span img {
  width: 17px;
  height: auto;
}
a.entry-link-btn:link, a.entry-link-btn:visited {
  color: #FFF;
  -webkit-box-shadow: 6px 6px 10px #677671;
          box-shadow: 6px 6px 10px #677671;
}
a.entry-link-btn:hover, a.entry-link-btnactive {
  color: #FFF;
  -webkit-box-shadow: 0 0 6px #677671;
          box-shadow: 0 0 6px #677671;
  background-color: #dd8977;
}

.entry-text-read {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 1.6;
}

/*■■■■■■　 パンくずリスト（PCのみ）　■■■■■■■*/
.breadcrumb {
  margin-bottom: 6em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  display: block;
}
.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  color: #116f6e;
}
.breadcrumb li + li::before {
  content: "＞";
  margin: 0 0.5em;
}
.breadcrumb a {
  color: #116f6e;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

/*■■■■■■　#9 特典　■■■■■■■*/
.bg-merit {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
  background-color: #f6f1ee;
}

.merit-block {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
}

.merit-box {
  padding: 15px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #a69890;
  color: #FFF;
  position: relative;
  border-radius: 6px;
  width: 100%;
  max-width: 346px;
}

.merit-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #FFF;
  color: #955d41;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 3;
}
.merit-num span {
  font-size: 1rem;
}

.merit-img-box {
  margin: 0 auto;
  width: 100%;
  max-width: 370px;
  aspect-ratio: 9/4;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.merit-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.caption-imagephoto_w::after {
  padding: 5px 10px;
  content: "image Photo";
  color: #FFF;
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  text-shadow: 0 0 6px #000, 0 0 12px #000, 0 0 18px #000, 0 0 24px #000;
}

.caption-imagephoto_bk::after {
  padding: 5px 10px;
  content: "image Photo";
  color: #000;
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  text-shadow: 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
}

.merit-title {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.merit-read {
  font-size: 1.3rem;
}

.merit-bottom-note {
  margin: 0 auto;
  display: block;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  text-align: left;
  width: 100%;
  max-width: 1120px;
}

/*■■■■■■　#10 ログインリンク　■■■■■■■*/
.bg-login {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
  background-color: #a69890;
  color: #FFF;
}

.login-btn-box {
  margin: 0 auto 20px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 370px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  width: auto;
  background-color: #FFF;
}
.login-btn-box:before {
  content: "";
  margin: 0 12px;
  display: block;
  width: 30px;
  height: 35px;
  background: url(../images/top/icon-lock.svg) center center no-repeat;
  background-size: cover;
}

a.login-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 50px;
  color: rgb(255, 255, 255);
  background-color: #c9ae9f;
}
a.login-btn:link, a.login-btn:visited {
  background-color: #c9ae9f;
  color: #FFF;
  color: rgb(255, 255, 255);
}
a.login-btn {
  /*
  &:hover,&:active{
  background-color:#b89785;
  }
  */
}

.text-login {
  font-size: 1.6rem;
}

/*■■■■■■　#11 閲覧の流れ　■■■■■■■*/
.bg-flow {
  margin: 0 auto;
  padding: 3em 0;
  width: 100%;
  background-color: #f6f1ee;
}

.flow-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.flow-box {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 346px;
  background-color: #a69890;
  overflow: hidden;
}

.flow-num {
  font-family: "Jost", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  color: #FFF;
}

.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #FFF;
}

.flow-text-read {
  font-size: 1.3rem;
  color: #FFF;
}

.crip-path-flow {
  padding: 20px 40px 20px 20px;
  clip-path: polygon(calc(100% - 50px) 0%, 100% 50%, calc(100% - 50px) 100%, 0% 100%, 0% 0%);
}

/*■■■■■■　#12 注意書き　■■■■■■■*/
.footer-note-block {
  margin: 20px auto 4em;
  width: 100%;
}

.footer-note-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-note {
  padding: 10px;
  font-size: 1rem;
  text-align: left;
}

/*■■■■■■■　その他のコンテンツ共通　■■■■■■*/
.contents-fv {
  margin: 80px auto 0;
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
  background: #f4f3ef;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.contents-fv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contents-fv-s {
  margin: 80px 0 0;
  width: 100%;
  aspect-ratio: 7/2;
  position: relative;
  overflow: hidden;
}

/*タイトル*/
.contents-title {
  padding: 0;
  font-family: "Libre Caslon Text", serif;
  font-size: 5rem;
  line-height: 1.6;
  font-weight: 500;
  color: #7f9a94;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  alidn-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-shadow: 0 0 1px #FFF, 0 0 2px #FFF, 0 0 3px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
}

/*タイトル*/
.contents-title-s {
  font-family: "Cormorant", serif;
  font-size: 4.2rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 2px;
  color: #7f9a94;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  alidn-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: 0 0 1px #FFF, 0 0 2px #FFF, 0 0 3px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
}

/*■■■■■■■■■■■■■*/
/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 767px) {
  /*■　基本設定（XS）　■*/
  .contents-first-block {
    margin: 0 auto;
    padding: 2em 0 4em;
    width: 100%;
  }
  .text-mi-en {
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .text-color-main {
    color: #007480;
  }
  .text-read-m {
    margin-bottom: 6px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-title-l {
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-title {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-title-m {
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 2.2rem;
    font-size: clamp(1.9rem, 4.4vw, 3.4rem);
    line-height: 1.6;
    font-weight: 500;
  }
  .text-title-s {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .text-title-s strong {
    font-size: 4rem;
    font-weight: 300;
  }
  .text-read {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 2.6;
    font-weight: 400;
  }
  /*■　CUBE　エントリー (XS)　■*/
  .entry-block {
    padding: 3em 0;
    background-color: #7f9994;
    color: #FFF;
  }
  .entry-text-mi {
    margin: 0 0 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
  }
  .entry-text-title {
    margin: 0 0 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 3.2rem;
    line-height: 1.6;
    font-weight: 400;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .entry-text-title img {
    width: 260px;
  }
  a.entry-link-btn {
    margin: 2em auto 0;
    display: block;
    padding: 5px;
    max-width: 280px;
    height: 70px;
    color: #FFF;
    background-color: #d4978a;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    line-height: 1.2;
  }
  a.entry-link-btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid #FFF;
  }
  a.entry-link-btn span:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-width: 1px 1px 0 0;
    border-color: #FFF;
    border-style: solid;
    position: absolute;
    bottom: 23px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    right: 20px;
  }
  a.entry-link-btn span img {
    width: 17px;
    height: auto;
  }
  a.entry-link-btn:link, a.entry-link-btn:visited {
    color: #FFF;
    -webkit-box-shadow: 6px 6px 10px #677671;
            box-shadow: 6px 6px 10px #677671;
  }
  a.entry-link-btn:hover, a.entry-link-btnactive {
    color: #FFF;
    -webkit-box-shadow: 0 0 6px #677671;
            box-shadow: 0 0 6px #677671;
    background-color: #dd8977;
  }
  .entry-text-read {
    font-family: "Noto Serif JP", serif;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  /*■■■■■■　#9 特典(XS)　■■■■■■■*/
  .bg-merit {
    padding: 4em 0;
    background-color: #f6f1ee;
  }
  .merit-block {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 40px;
  }
  .merit-box {
    padding: 15px 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    color: #FFF;
    position: relative;
    border-radius: 6px;
    width: 100%;
    max-width: 346px;
  }
  .merit-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    font-size: 3rem;
    line-height: 1;
    font-weight: 500;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 3;
  }
  .merit-num span {
    font-size: 1rem;
  }
  .merit-img-box {
    margin: 0 auto;
    width: 100%;
    max-width: 370px;
    aspect-ratio: 9/4;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
  .merit-img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  .caption-imagephoto_w::after {
    padding: 5px 10px;
    content: "image Photo";
    color: #FFF;
    font-size: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
    text-shadow: 0 0 6px #000, 0 0 12px #000, 0 0 18px #000, 0 0 24px #000;
  }
  .caption-imagephoto_bk::after {
    padding: 5px 10px;
    content: "image Photo";
    color: #000;
    font-size: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
    text-shadow: 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
  }
  .merit-title {
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .merit-read {
    font-size: 1.3rem;
  }
  .merit-bottom-note {
    margin: 0 auto;
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    text-align: left;
    width: 100%;
    max-width: 1120px;
  }
  /*■■■■■■　#10 ログインリンク(XS)　■■■■■■■*/
  .bg-login {
    padding: 4em 0;
    background-color: #a69890;
    color: #FFF;
  }
  .login-btn-box {
    margin: 0 auto 20px;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 370px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    width: auto;
  }
  .login-btn-box:before {
    content: "";
    margin: 0 12px;
    display: block;
    width: 30px;
    height: 35px;
    background: url(../images/top/icon-lock.svg) center center no-repeat;
    background-size: cover;
  }
  a.login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 50px;
    background-color: #c9ae9f;
    color: rgba(255, 255, 255, 0.3);
  }
  a.login-btn:link, a.login-btn:visited, a.login-btn:hover, a.login-btn:active {
    background-color: #c9ae9f;
    color: #FFF;
    color: rgba(255, 255, 255, 0.3);
  }
  .text-login {
    font-size: 1.4rem;
  }
  /*■■■■■■　#11 閲覧の流れ(XS)　■■■■■■■*/
  .flow-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .flow-box {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 346px;
    background-color: #a69890;
    overflow: hidden;
  }
  .flow-num {
    font-family: "Jost", sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    color: #FFF;
  }
  .flow-title {
    font-family: "Noto Serif JP", serif;
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 500;
    color: #FFF;
  }
  .flow-text-read {
    font-size: 1.3rem;
    color: #FFF;
  }
  .crip-path-flow {
    padding: 20px 20px 40px;
    clip-path: polygon(100% 0, 100% calc(100% - 50px), 50% 100%, 0% calc(100% - 50px), 0% 0%);
  }
  /*■■■■■■　#12 注意書き(XS)　■■■■■■■*/
  .footer-note-block {
    margin: 20px 0 4em;
  }
  .footer-note {
    padding: 10px;
    font-size: 1rem;
    text-align: left;
  }
  /*■■■■■■■　その他のコンテンツ共通（XS）　■■■■■■*/
  /*■■■■■■　#0 トップイメージ(XS)　■■■■■■■*/
  .contents-fv {
    margin: 0;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f4f3ef;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
  .contents-fv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .contents-fv-s {
    margin: 0;
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
  }
  /*タイトル*/
  .contents-title {
    padding: 0;
    font-family: "Libre Caslon Text", serif;
    font-size: 2.8rem;
    line-height: 1.6;
    font-weight: 500;
    color: #7f9a94;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    alidn-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-shadow: 0 0 1px #FFF, 0 0 2px #FFF, 0 0 3px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
  }
  /*タイトル*/
  .contents-title-s {
    padding: 0;
    font-family: "Cormorant", serif;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 2px;
    color: #7f9a94;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    alidn-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-shadow: 0 0 1px #FFF, 0 0 2px #FFF, 0 0 3px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
  }
  /*■■■■■■　 パンくずリスト（PCのみ）（XS）　■■■■■■■*/
  .breadcrumb {
    display: none;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■■　その他のコンテンツ共通　■■■■■■*/
  .contents-first-block {
    margin: 0 auto;
    padding: 2em 0 4em;
    width: 100%;
  }
  .contents-fv {
    margin: 0;
  }
  .contents-fv-s {
    margin: 0;
  }
  /*タイトル*/
  .contents-title {
    padding: 0;
    font-family: "Libre Caslon Text", serif;
    font-size: 2.8rem;
    line-height: 1.6;
    font-weight: 500;
    color: #7f9a94;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    alidn-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-shadow: 0 0 1px #FFF, 0 0 2px #FFF, 0 0 3px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 12px #FFF, 0 0 18px #FFF, 0 0 24px #FFF;
  }
  /*タイトル*/
  .contents-title-s {
    padding: 0;
    font-family: "Cormorant", serif;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 2px;
    color: #116f6e;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    alidn-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /*■■■■■■　 パンくずリスト（PCのみ）（XS）　■■■■■■■*/
  .breadcrumb {
    display: none;
  }
} /*SM*/
/*------------(MD)------------*/
/*------------(LG)------------*/
/*------------(XL)------------*/
/*------------(XXL)------------*/
@media (min-width: 1920px) {
  /*タイトル*/
  .contents-title {
    font-size: 6.2rem;
  }
  .contents-title-s {
    font-size: 6.2rem;
  }
} /*(XXL)*/