/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* FONT-SIZE
-------------------------------------*/
/* @media screen and (max-width: 480px) {
  html {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  html {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px !important;
  }
} */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  /* color */
  --whitecolor: #ffffff;
  --blackcolor: #333;
  --color_pink1: #ee3c5e;
  --contents-width: 660px;
}

html {
  width: 100%;
}

body {
  /* font-size: 1.6em; */
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-color: #eee;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--blackcolor);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: underline;
  color: var(--whitecolor);
}

a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: 'alpha(opacity=70)';
  color: var(--whitecolor);
}

/* コンテンツエリア
-------------------------------------*/
.justify-content-between {
  background: #eeeeee;
}

p {
  margin-bottom: 28px;
  margin-top: -5px;
}

.pink {
  color: #ff1493;
}

.red {
  color: #df060b;
}

.red2 {
  color: #d75b68;
}

.blue {
  color: #2ebed7;
}

.orange {
  color: #e78f08;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.strong {
  font-weight: bold;
  font-size: 1.2em;
}

@media screen and (max-width: 750px) {
  .strong {
    font-size: 1.26em;
  }
}

.fs-ms {
  font-weight: bold;
  font-size: 1.1em;
}

.fs-m {
  font-weight: bold;
  font-size: 1.2em;
}

.fs-l {
  font-weight: bold;
  font-size: 1.4em;
}

@media screen and (max-width: 750px) {
  .fs-l {
    font-size: 1.35em;
  }
}

.fs-ll {
  font-weight: bold;
  font-size: 1.6em;
}

@media screen and (max-width: 750px) {
  .fs-ll {
    font-size: 1.45em;
  }
}

.fs-lll {
  font-weight: bold;
  font-size: 1.8em;
}

@media screen and (max-width: 750px) {
  .fs-lll {
    font-size: 1.45em;
  }
}

.ac {
  text-align: center;
}

.al {
  text-align: left;
}

.marker {
  background: linear-gradient(transparent 60%, #edd7ff 60%);
  font-weight: bold;
  font-size: 18px;
}

.fs-s {
  font-size: 0.8em !important;
}

.fs20 {
  font-size: 20px;
}

.bold {
  font-weight: bold;
}

.u-line {
  text-decoration: underline;
}

.inline-block {
  display: inline-block;
}

section {
  margin-top: 40px;
}

section:first-child {
  margin-top: 0;
}

h2 {
  /*     font-size: 1.4rem !important; */
  color: var(--whitecolor);
  line-height: 1.6;
  margin-bottom: 0;
}

h2 strong {
  /*     font-size: 1.8rem !important; */
  line-height: 1.4;
}

h3 {
  /*     font-size: 1.2rem !important; */
  line-height: 1.6;
  margin-bottom: 0;
}

p strong {
  background: linear-gradient(transparent 60%, yellow 60%);
  font-size: 1.2rem;
}

p strong.add_text-highlight {
  background: none;
}

p strong.add_text-highlight > strong {
  background: none;
  line-height: 1;
}

.add_zIndex100 {
  z-index: 100;
}

.add_spacing-shorten {
  letter-spacing: -1px;
}

.add_color-purple {
  color: #70319e;
}

.add_color-blue {
  color: #4672c2;
}

.add_color-white {
  color: var(--whitecolor) fff;
}

.add_color-red {
  color: #f64647;
}

.add_color-blue {
  color: #85b1bb;
}

.add_color-orange {
  color: #e78f08;
}

.add_bg-color-white {
  background: var(--whitecolor) fff;
}

.add_bg-color-red {
  background: #f64647 !important;
}

.add_bg-color-green {
  background: #46c035 !important;
}

@media screen and (min-width: 481px) {
  .add_bg-block-contain {
    background-size: contain !important;
  }

  .add_bg-block {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
  }

  .add_main_img-contain .w-75 {
    width: 50% !important;
  }
}

@media screen and (max-width: 480px) {
  .add_bg-block {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
  }
}

.add_bg-block::before {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}

.add_bg-block-bkwht {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.add_lh-120 {
  line-height: 1.2;
}

.add_lh-130 {
  line-height: 1.3;
}

.add_lh-140 {
  line-height: 1.4;
}

.add_lh-150 {
  line-height: 1.5;
}

.add_lh-200 {
  line-height: 2;
}

.add_item-block ul {
  margin: 0;
  padding: 0;
}

.add_item-block li {
  list-style: none;
  font-weight: bold;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

.add_item-block li:before {
  content: '';
  position: absolute;
  top: 0.3em;
  left: 0;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  width: 0.7rem;
  height: 1.5rem;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}

.add_btn-link {
  color: var(--whitecolor);
  font-weight: bold;
  border-radius: 0.5rem;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.3rem 0;
  font-size: 1.2rem;
  background: #be911e;
  text-decoration: none;
  line-height: 1.3em;
}

@media screen and (max-width: 480px) {
  .add_btn-link {
    width: 100%;
  }
}

.add_btn-link:hover {
  color: var(--whitecolor);
  text-decoration: none;
}

.bg-grey {
  background-color: #f2f2f2;
  padding: 10px 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 767px) {
  .bg-grey {
    padding: 20px;
  }
}

.bg-yellow {
  background-color: var(--whitecolor) 2CC;
  padding: 10px 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 767px) {
  .bg-yellow {
    padding: 20px;
  }
}

.al-block {
  display: inline-block;
  width: 90%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .al-block {
    width: 100%;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

.main-wrap {
  width: 100%;
  max-width: var(--contents-width);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--whitecolor);
  padding: 20px 0 70px;
}

@media screen and (max-width: 599px) {
  .main-wrap {
    padding-top: 20px;
  }
}

.section-inner {
  padding: 0 50px;
}

@media screen and (max-width: 599px) {
  .section-inner {
    padding: 0 15px;
  }
}

/* kv */
.kv {
  width: 100%;
  padding: 0 15px;
}

@media screen and (max-width: 599px) {
  .kv {
    padding: 0;
  }
}

.kv_inner {
  width: 100%;
  max-width: var(--contents-width);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--whitecolor);
  padding: 20px 30px 20px;
}

@media screen and (max-width: 599px) {
.kv_inner {
  padding: 20px 15px 20px;
}
}

h1.kv_ttl {
  text-align: left;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
h1.kv_ttl {
  font-size: 18px;
}
}

.kv_pr {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

.kv_img {
  width: 100%;
  margin-top: 10px;
}

/* container */
.container {
  width: 100%;
  max-width: initial;
  padding: 0 15px;
}

@media screen and (max-width: 599px) {
  .container {
    padding: 0;
  }
}

/* セクションタイトル */
h2.intro_ttl {
  width: 100%;
}

h2.sec_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--whitecolor);
  margin: 0 0 20px;
  padding: 10px 20px;
  text-align: center;
  background-color: #3a4043;
}

/* 注釈 */
.asterisk {
  font-size: 0.5em;
  vertical-align: top;
}

.note {
  display: block;
  text-align: right;
  font-size: 0.7em;
}

/* チェックボックスコンテンツ */
.check {
  margin: 30px 0;
}

.check_title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .check_title {
    font-size: 16px;
  }
}

.check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9e5df;
  border: 2px solid #777;
  border-radius: 8px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .check_box {
    padding: 15px;
  }
}

.check_item {
  display: flex;
  margin-bottom: 5px;
  cursor: pointer;
  user-select: none;
}

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

.check_input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check_custom {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  background-color: var(--whitecolor);
  border-radius: 3px;
  margin-top: 5px;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

@media screen and (max-width: 599px) {
  .check_custom {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    margin-right: 10px;
  }
}

.check_input:checked + .check_custom {
  background-color: #c89f8f;
  border-color: #c89f8f;
}

.check_input:checked + .check_custom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid var(--whitecolor);
  border-width: 0 2px 2px 0;
}

.check_text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .check_text {
    font-size: 16px;
  }
}

.check_item:hover .check_text {
  color: var(--blackcolor);
}

/* 矢印アニメーション */
.arrows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 48px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-bottom: 60px;
}
.cp_arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cp_arrows .cp_arrow {
  /*矢印を配置するベースの設定*/
  position: absolute;
  width: 48px;
  height: 8px;
  opacity: 0; /*スタートは透明*/
  transform: scale(0.3); /*スタートは30%に縮小*/
  animation: arrow-move07 3s ease-out infinite;
}
.cp_arrows .cp_arrow:first-child {
  /*1秒ずらしてアニメーション*/
  animation: arrow-move07 3s ease-out 1s infinite;
}
.cp_arrows .cp_arrow:nth-child(2) {
  /*2秒ずらしてアニメーション*/
  animation: arrow-move07 3s ease-out 2s infinite;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
  /*矢印全体の設定*/
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  background: var(--color_pink1);
  border-radius: 2px;
}
.cp_arrows .cp_arrow:before {
  /*矢印左の線の位置と傾斜*/
  left: 1px;
  transform: skewY(30deg);
}
.cp_arrows .cp_arrow:after {
  /*矢印左の線の位置と傾斜*/
  right: 1px;
  transform: skewY(-30deg);
}
@keyframes arrow-move07 {
  25% {
    opacity: 0.6;
  }
  43% {
    transform: translateY(1em);
    opacity: 0.8;
  }
  62% {
    transform: translateY(2em);
    opacity: 1;
  }
  100% {
    transform: translateY(3em) scale(0.5);
    opacity: 0;
  }
}

/* arrow */
.arrow {
  width: 70%;
  max-width: 300px;
  margin: 30px auto;
}

/* cta */
.cta {
  width: 100%;
}
/* CTAリンクをアニメ対象に */
.cta a{
  display: inline-block;          /* picture/imgでも崩れにくい */
  transform: translateZ(0);
  will-change: transform, filter;
  -webkit-tap-highlight-color: transparent;
}

/* 画像の変形時に余白が出ないように */
.cta img{
  display: block;
  max-width: 100%;
  height: auto;
}

/* 常時：呼吸するように軽く拡大縮小 */
.cta a{
  animation: ctaPulse 2.2s ease-in-out infinite;
}

/* PC：ホバーで少し浮かせる */
@media (hover:hover){
  .cta a:hover{
    transform: translateY(-3px) scale(1.01);
    filter: brightness(1.03);
  }
}

/* クリック時：沈める（押した感） */
.cta a:active{
  transform: translateY(0) scale(0.99);
  filter: brightness(0.98);
  animation: none;
}

/* キーボード操作の見た目 */
.cta a:focus-visible{
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 6px;
}

@keyframes ctaPulse{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

/* 動きを減らす設定の人には止める */
@media (prefers-reduced-motion: reduce){
  .cta a{ animation: none; }
}

/* review */
.review {
  margin-top: 70px;
}

/* review carousel - Swiper */
.review-carousel {
  margin: 30px 0;
  width: 100%;
  overflow: hidden;
}

.review-swiper {
  width: 100%;
  padding-bottom: 40px;
  overflow: visible;
}

.review-swiper .swiper-wrapper {
  align-items: center;
}

.review-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

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

/* list */
.list-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.list-wrap ul {
  margin: 0;
  padding: 0;
}

.list-wrap ul li {
  display: flex;
  column-gap: 10px;
  list-style: none;
  font-weight: bold;
}

.list-wrap ul.check li::before {
  content: '✔';
}

/* author */
.author {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 20px;
  align-items: center;
  margin: 70px 0 0;
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 5px;
}

@media screen and (max-width: 599px) {
  .author {
    grid-template-columns: 1fr 1.5fr;
    column-gap: 10px;
  }
}

.author_img {
  width: 100%;
}

.author_img .img {
  position: relative;
  padding-top: 15px;
}

.author_img .img .label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3c4043;
  width: 60%;
  text-align: center;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: 14px;
  color: var(--whitecolor);
}

@media screen and (max-width: 599px) {
  .author_img .img .label {
    width: 70%;
  }
}

.author_img .name {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #3c4043;
  text-align: center;
  margin-top: 10px;
}

.author_text {
  width: 100%;
}

.author_text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #3c4043;
}

@media screen and (max-width: 499px) {
  .author_text p {
    font-size: 13px;
  }
}

/* footer */
footer {
  background-color: #e9e5e0;
}

/* 改行 */
@media screen and (max-width:750px){
    .pc-display-none{
        display: none;
    }
}
@media screen and (min-width:751px){
    .sp-display-none{
        display: none;
    }
}

/*TOPへ戻るボタン*/
.pageTop{
  position: fixed;
  right: 16px;
  bottom: 50px;
  z-index: 9999;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

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

  background: rgb(155 151 151 / 70%);
  color: #fff;
  font-size: 18px;

  box-shadow: 0 6px 18px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.pageTop.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover（PCのみ） */
@media (hover: hover){
  .pageTop:hover{
    background: rgba(0,0,0,.9);
  }
}

.kv .kv_inner .kv_tx {
border-bottom: #999 solid 1px;
    padding-bottom: 15px;
    font-weight: bold;
}
.kv .kv_inner .kv_tx p {
    margin: 0;
}
.kv .kv_inner .kv_tx .pink {
color: #d75b68;
}
.kv .kv_inner .kv_tx .center {
    text-align: center;
}
.kv .kv_inner .kv_tx .blue {
    color: rgb(0, 0, 255);
}
.kv .kv_inner .kv_tx .marker {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff00 0%) repeat scroll 0 0;
}