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

.color-cube {
  color: #d9988c;
}

/*■■■■■■ 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: #006ea1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #006ea1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

.bg-main {
  background-color: rgb(208.5384615385, 215.6153846154, 229.4615384615);
}

.bg-sub {
  background-color: #4c99bd;
}

.bg-ami {
  background: rgb(230, 230, 230);
}

.contents-first-block {
  padding: 2em 0 4em;
  position: relative;
  overflow: hidden;
}

.contents-block {
  padding: 4em 0;
  position: relative;
  overflow: hidden;
}

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

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

.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: 2em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 500;
}

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

.text-read {
  margin-bottom: 2em;
  font-family: "Noto Sans JP", sans-serif;
  /*font-feature-settings: "palt";*/
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 2.6;
  font-weight: 400;
}

.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;
}

/*■　リンクボタン 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(#006ea1), color-stop(#4c99bd), to(#006ea1));
  background: linear-gradient(to right, #006ea1, #4c99bd, #006ea1);
  background-size: 200% 100%;
  background-position: left center;
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
  -webkit-transition: background-position 0.8s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-position 0.8s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-position 0.8s ease, box-shadow 0.4s ease, transform 0.4s ease;
  transition: background-position 0.8s ease, box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}
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%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
a.link-btn-flag:link, a.link-btn-flag:visited, a.link-btn-flag:hover, a.link-btn-flag:active {
  color: #FFF;
}

a.link-btn-flag:hover {
  background-position: right center;
  -webkit-box-shadow: 0 8px 20px rgba(0, 110, 161, 0.18), 0 0 12px rgba(76, 153, 189, 0.12);
          box-shadow: 0 8px 20px rgba(0, 110, 161, 0.18), 0 0 12px rgba(76, 153, 189, 0.12);
}
a.link-btn-flag:hover:after {
  -webkit-transform: translateY(-50%) translateX(4px);
          transform: translateY(-50%) translateX(4px);
}

/*■　リンクボタン 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(#d9988c), color-stop(#e4b7ae), to(#d9988c));
  background: linear-gradient(to right, #d9988c, #e4b7ae, #d9988c);
  background-size: 200% 100%;
  background-position: left center;
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
  -webkit-transition: background-position 0.8s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-position 0.8s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-position 0.8s ease, box-shadow 0.4s ease, transform 0.4s ease;
  transition: background-position 0.8s ease, box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}
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%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
a.link-btn-cube:link, a.link-btn-cube:visited, a.link-btn-cube:hover, a.link-btn-cube:active {
  color: #FFF;
}

a.link-btn-cube:hover {
  background-position: right center;
  -webkit-box-shadow: 0 8px 20px rgba(217, 152, 140, 0.22), 0 0 12px rgba(228, 183, 174, 0.14);
          box-shadow: 0 8px 20px rgba(217, 152, 140, 0.22), 0 0 12px rgba(228, 183, 174, 0.14);
}
a.link-btn-cube:hover:after {
  -webkit-transform: translateY(-50%) translateX(4px);
          transform: translateY(-50%) translateX(4px);
}

/*■■■■■■　 パンくずリスト（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: #006ea1;
}
.breadcrumb li + li::before {
  content: "＞";
  margin: 0 0.5em;
}
.breadcrumb a {
  color: #006ea1;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

/*■■■■■■　 CTA　エントリー受付中　■■■■■■■*/
.bg-entry {
  margin: 0 auto;
  padding: 3em 0;
  width: 100%;
  background-color: #55576c;
  color: #FFF;
}

.entry-btn-block {
  margin: 10px auto 20px;
  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;
  width: 100%;
  max-width: 640px;
}

a.entry-btn-flag {
  margin: 0 auto;
  padding: 0 30px 5px 0;
  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: 5px;
  width: 300px;
  height: 72px;
  border-radius: 36px;
  background-color: #FFF;
  border: 3px solid #006ea1;
  color: #006ea1;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}
a.entry-btn-flag small {
  font-size: 1.4rem;
  line-height: 1;
}
a.entry-btn-flag:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: url(../images/top/btn-arrow-s.svg) center center no-repeat #006ea1;
  background-size: 16px 10px;
  position: absolute;
  right: 20px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
a.entry-btn-flag:link, a.entry-btn-flag:visited, a.entry-btn-flag:hover, a.entry-btn-flag:active {
  color: #006ea1;
}

a.entry-btn-flag:hover {
  -webkit-box-shadow: 0 8px 20px rgba(0, 110, 161, 0.12), 0 0 12px rgba(0, 110, 161, 0.08);
          box-shadow: 0 8px 20px rgba(0, 110, 161, 0.12), 0 0 12px rgba(0, 110, 161, 0.08);
}
a.entry-btn-flag:hover:after {
  -webkit-transform: translateY(50%) translateX(4px);
          transform: translateY(50%) translateX(4px);
  background-color: #1182b8;
}

a.entry-btn-cube {
  margin: 0 auto;
  padding: 0 30px 5px 0;
  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: 5px;
  width: 300px;
  height: 72px;
  border-radius: 36px;
  background-color: #FFF;
  border: 3px solid #d9988c;
  color: #d9988c;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}
a.entry-btn-cube small {
  font-size: 1.2rem;
  line-height: 1;
}
a.entry-btn-cube:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: url(../images/top/btn-arrow-s.svg) center center no-repeat #d9988c;
  background-size: 16px 10px;
  position: absolute;
  right: 20px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
a.entry-btn-cube:link, a.entry-btn-cube:visited, a.entry-btn-cube:hover, a.entry-btn-cube:active {
  color: #d9988c;
}

a.entry-btn-cube:hover {
  -webkit-box-shadow: 0 8px 20px rgba(217, 152, 140, 0.18), 0 0 12px rgba(217, 152, 140, 0.1);
          box-shadow: 0 8px 20px rgba(217, 152, 140, 0.18), 0 0 12px rgba(217, 152, 140, 0.1);
}
a.entry-btn-cube:hover:after {
  -webkit-transform: translateY(50%) translateX(4px);
          transform: translateY(50%) translateX(4px);
  background-color: #e6aaa0;
}

/*■■■■■■　#9 特典　■■■■■■■*/
.bg-merit {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
  background-color: #eeeef0;
  color: #007481;
}
.bg-merit .text-mi-en {
  color: #55576c;
}
.bg-merit .text-title {
  color: #333;
}

.merit-block {
  margin: 20px 0;
  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: #55576c;
  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: #55576c;
  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: #55576c;
  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;
  background-color: #aaabb5;
  color: rgb(255, 255, 255);
}
a.login-btn:link, a.login-btn:visited {
  color: #FFF;
  color: rgb(255, 255, 255);
  background-color: #aaabb5;
}
a.login-btn {
  /*
  &:hover,&:active{
  	color:#FFF;
  	background-color:#9596a1;
  }
  */
}

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

.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: #55576c;
  color: #FFF;
  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: clamp(1.2rem, 3vw, 1.6rem);
  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 0 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-note-block p {
  margin: 0 auto;
}

.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 0 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #006ea1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-mask-image: url("../images/crip-wabe-bottom.svg");
  mask-image: url("../images/crip-wabe-bottom.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top;
  mask-position: top;
}

.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 auto 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #006ea1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-mask-image: url("../images/crip-wave-bottom_16-9.svg");
  mask-image: url("../images/crip-wave-bottom_16-9.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top;
  mask-position: top;
}

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

/*タイトル*/
.contents-title {
  padding: 0;
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  line-height: 1.6;
  font-weight: 500;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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%;
  text-shadow: 0 0 6px #2b7cdd, 0 0 12px #2b7cdd, 0 0 18px #2b7cdd, 0 0 24px #2b7cdd;
}

.contents-fv-caption {
  padding: 5px 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #FFF;
  position: absolute;
  right: 10px;
  bottom: 20px;
  text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000, 0 0 7px #000;
}

/*■■■■■■■■■■■■■*/
/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 767px) {
  /*■　基本設定（XS）　■*/
  .contents-first-block {
    padding: 4em 0;
    position: relative;
    overflow: hidden;
  }
  .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.5rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-title-m {
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 2.1rem;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.6;
    font-weight: 500;
  }
  .text-read {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
  /*■■■■■■　 パンくずリスト（PCのみ）（XS）　■■■■■■■*/
  .breadcrumb {
    display: none;
  }
  /*■■■■■■　#8 CTA　エントリー受付中(XS)　■■■■■■■*/
  .bg-entry {
    padding: 3em 0;
    background-color: #55576c;
    color: #FFF;
  }
  .entry-btn-block {
    margin: 10px auto 20px;
    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;
    width: 100%;
    max-width: 640px;
  }
  a.entry-btn-flag {
    margin: 0 auto;
    padding: 0 30px 5px 0;
    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: 5px;
    width: 300px;
    height: 72px;
    border-radius: 36px;
    background-color: #FFF;
    border: 3px solid #006ea1;
    color: #006ea1;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    position: relative;
  }
  a.entry-btn-flag small {
    font-size: 1.3rem;
    line-height: 1;
  }
  a.entry-btn-flag:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #006ea1;
    background: url(../images/top/btn-arrow-s.svg) center center no-repeat #006ea1;
    background-size: 16px 10px;
    position: absolute;
    right: 20px;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  a.entry-btn-flag:link, a.entry-btn-flag:visited, a.entry-btn-flag:hover, a.entry-btn-flag:active {
    color: #006ea1;
  }
  a.entry-btn-cube {
    margin: 0 auto;
    padding: 0 30px 5px 0;
    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: 5px;
    width: 300px;
    height: 72px;
    border-radius: 36px;
    background-color: #FFF;
    border: 3px solid #d9988c;
    color: #d9988c;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    position: relative;
  }
  a.entry-btn-cube small {
    font-size: 1.2rem;
    line-height: 1;
  }
  a.entry-btn-cube:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #d9988c;
    background: url(../images/top/btn-arrow-s.svg) center center no-repeat #d9988c;
    background-size: 16px 10px;
    position: absolute;
    right: 20px;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  a.entry-btn-cube:link, a.entry-btn-cube:visited, a.entry-btn-cube:hover, a.entry-btn-cube:active {
    color: #d9988c;
  }
  /*■■■■■■　#9 特典(XS)　■■■■■■■*/
  .bg-merit {
    padding: 4em 0;
    background-color: #eeeef0;
  }
  .merit-block {
    margin: 20px 0;
    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: #55576c;
    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: #55576c;
    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: #55576c;
    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: #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;
    background-color: #aaabb5;
    color: rgb(255, 255, 255);
  }
  a.login-btn:link, a.login-btn:visited, a.login-btn:hover, a.login-btn:active {
    color: #FFF;
    color: rgb(255, 255, 255);
  }
  /*■■■■■■　#11 閲覧の流れ(XS)　■■■■■■■*/
  .bg-flow {
    padding: 3em 0;
    background-color: #eeeef0;
  }
  .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: #55576c;
    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-block p {
    margin: 0 auto;
  }
  .footer-note {
    padding: 10px;
    font-size: 1rem;
    text-align: left;
  }
  /*■■■■■■■　その他のコンテンツ共通（XS）　■■■■■■*/
  /*■■■■■■　#0 トップイメージ(XS)　■■■■■■■*/
  .contents-fv {
    margin: 0;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #006ea1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    -webkit-mask-image: url("../images/crip-wave-bottom_3-4.svg");
    mask-image: url("../images/crip-wave-bottom_3-4.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
  }
  .contents-fv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  .contents-fv-s {
    margin: 0;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #006ea1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    -webkit-mask-image: url("../images/crip-wave-bottom_1-1.svg");
    mask-image: url("../images/crip-wave-bottom_1-1.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
  }
  .contents-fv-s img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  /*タイトル*/
  .contents-title {
    padding: 0;
    font-family: "Jost", sans-serif;
    font-size: 2.8rem;
    line-height: 1.6;
    font-weight: 500;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    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;
    text-shadow: 0 0 6px #2b7cdd, 0 0 12px #2b7cdd, 0 0 18px #2b7cdd, 0 0 24px #2b7cdd;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  .contents-fv-s {
    margin: 0;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #006ea1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    -webkit-mask-image: url("../images/crip-wave-bottom_16-9.svg");
    mask-image: url("../images/crip-wave-bottom_16-9.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
  }
  .contents-fv-s img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  /*■　基本設定（SM）　■*/
  .contents-first-block {
    padding: 4em 0;
    position: relative;
    overflow: hidden;
  }
  /*■■■■■■　 パンくずリスト（PCのみ）（SM）　■■■■■■■*/
  .breadcrumb {
    display: none;
  }
} /*SM*/
/*------------(MD)------------*/
/*------------(LG)------------*/
@media (min-width: 1216px) and (max-width: 1439px) {
  .contents-block {
    padding: 6em 0;
    position: relative;
    overflow: hidden;
  }
}
/*------------(XL)------------*/
@media (min-width: 1440px) {
  .contents-block {
    padding: 8em 0;
    position: relative;
    overflow: hidden;
  }
}
/*------------(XXL)------------*/
@media (min-width: 1920px) {
  .contents-block {
    padding: 10em 0 8em;
    position: relative;
    overflow: hidden;
  }
  /*■　基本設定　■*/
  .text-mi-en {
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
  }
  .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: 3em;
    font-family: "Noto Serif JP", serif;
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-title-m {
    margin-bottom: 1.5em;
    font-family: "Noto Serif JP", serif;
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .text-read {
    margin-bottom: 3em;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 2.6;
    font-weight: 400;
  }
  /*タイトル*/
  .contents-title {
    font-size: 6.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
} /*(XXL)*/