/*****************************************
*
* 共通パーツ
*
******************************************/

/*------------------------------------------*/
/* section
/*------------------------------------------*/

.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 80px;
}

@media screen and (min-width: 768px), print {
  .section {
    width: calc(100% - 60px);
    margin-top: 100px;
  }
}

@media screen and (min-width: 834px), print {
  .section {
    width: calc(100% - 120px);
    margin-top: 160px;
  }
}

@media screen and (min-width: 1200px), print {
  .section {
    width: 1100px;
  }
}

/*------------------------------------------*/
/* contents
/*------------------------------------------*/

.contents {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: var(--color-text);
  line-height: 2;
  padding: 40px 20px;
}

.contents.red {
  background: var(--color-back-red);
  color: white;
}

.contents.blue {
  background: var(--color-back-blue);
  color: white;
}

.contents.green {
  background: var(--color-back-green);
  color: white;
}

.contents.orange {
  background: var(--color-back-orange);
  color: white;
}


@media screen and (min-width: 768px), print {
  .contents {
    padding: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .contents {
    padding: 60px;
  }
}

@media screen and (min-width: 1240px), print {
  .contents {
    padding: 80px;
  }

  .contents.narrow {
    padding: 60px 80px;
  }
}

/* contents-flex --------------------------------*/
.contents-flex .btn-wrap {
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .contents-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contents-flex .btn-wrap {
    margin-top: 0;
    margin-left: 40px;
  }
}


/* 横並び50 --------------------------------*/
.contents-box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}

@media screen and (min-width: 768px), print {
  .contents-box {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .contents-box {
    row-gap: 60px;
    column-gap: 60px;
  }
}

/*------------------------------------------*/
/* 一覧
/*------------------------------------------*/

.contents-list-box figure img {
  width: 100%;
  transition: all .5s ease;
}

.contents-list-box figure {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.contents-list-box a:hover figure img {
  transform: scale(1.1);
}

@media screen and (max-width: 833px) {

  .pswp__button--arrow--prev,
  .pswp__button--arrow--next {
    display: none;
  }
}


/*------------------------------------------*/
/* 文字 推し
/*------------------------------------------*/

.text-oshi {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/text_oshi.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 140/77;
  width: 100px;
  height: auto;
}

@media screen and (min-width: 834px), print {
  .text-oshi {
    width: 160px;
  }
}

/*------------------------------------------*/
/* SNS
/*------------------------------------------*/

.sns-list a:hover {
  text-decoration: none;
}

.sns-insta,
.sns-x {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
}

.sns-insta {
  background: url('../img/common/sns_insta.svg') no-repeat;
  background-size: 100%;
}

.sns-insta.white {
  background: url('../img/common/sns_insta_white.svg') no-repeat;
  background-size: 100%;
}

.sns-x {
  background: url('../img/common/sns_x.svg') no-repeat;
  background-size: 100%;
}

.sns-x.white {
  background: url('../img/common/sns_x_white.svg') no-repeat;
  background-size: 100%;
}

.sns-list .item {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.1;
}



/*------------------------------------------*/
/* 見出し H2
/*------------------------------------------*/

.heading-secondary {
  position: relative;
  margin-bottom: 60px;
}

.heading-secondary h2 {
  position: relative;
  font-family: var(--font-family-Antique);
  color: var(--color-blue);
  font-size: 1.4rem;
  font-weight: bold;
  padding: 15px 0;
}

.heading-secondary h2 .min {
  font-size: 0.9rem;
}

.heading-secondary h2 .en {
  font-weight: 600;
}

.heading-secondary.orange h2 {
  color: var(--color-orange);
}

.heading-secondary.red h2 {
  color: var(--color-red);
}

.heading-secondary.green h2 {
  color: var(--color-green);
}

.heading-secondary::before,
.heading-secondary::after {
  content: '';
  display: inline-block;
  background-repeat: repeat-x;
  height: 7px;
  position: absolute;
}

.heading-secondary::before {
  background: url('../img/common/heading-line_t_blue.svg');
  width: calc(100% - 20px);
  top: 0;
  right: 0;
}

.heading-secondary.orange::before {
  background: url('../img/common/heading-line_t_orange.svg');
}

.heading-secondary.red::before {
  background: url('../img/common/heading-line_t_red.svg');
}

.heading-secondary.green::before {
  background: url('../img/common/heading-line_t_green.svg');
}

.heading-secondary::after {
  background: url('../img/common/heading-line_b_blue.svg');
  width: calc(100% - 60px);
  bottom: 0;
  left: 0;
}

.heading-secondary.orange::after {
  background: url('../img/common/heading-line_b_orange.svg');
}

.heading-secondary.red::after {
  background: url('../img/common/heading-line_b_red.svg');
}

.heading-secondary.green::after {
  background: url('../img/common/heading-line_b_green.svg');
}

.heading-secondary h2::before {
  content: '';
  display: inline-block;
  background: url('../img/common/kingyo_blue.png');
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 100/94;
  width: 50px;
  height: auto;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.heading-secondary.orange h2::before {
  background: url('../img/common/kingyo_orange.png');
  background-size: 100%;
}

.heading-secondary.red h2::before {
  background: url('../img/common/kingyo_red.png');
  background-size: 100%;
}

.heading-secondary.green h2::before {
  background: url('../img/common/kingyo_green.png');
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .heading-secondary {
    margin-bottom: 100px;
  }

  .heading-secondary h2 {
    font-size: 3rem;
  }

  .heading-secondary h2 .min {
    font-size: 2rem;
  }

  .heading-secondary::before {
    width: calc(100% - 40px);
  }

  .heading-secondary::after {
    width: calc(100% - 120px);
  }

  .heading-secondary h2::before {
    width: 100px;
    bottom: -20px;
  }
}

/*------------------------------------------*/
/* 見出し H3
/*------------------------------------------*/

.heading-tertiary {
  position: relative;
  margin-bottom: 40px;
}

.heading-tertiary h3 {
  position: relative;
  font-family: var(--font-family-Antique);
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 0;
}

.heading-tertiary h3 .min {
  font-size: 0.9rem;
}

.heading-tertiary h3 .en {
  font-weight: 600;
}

.heading-tertiary.orange h3 {
  color: var(--color-orange);
}

.heading-tertiary.red h3 {
  color: var(--color-red);
}

.heading-tertiary.green h3 {
  color: var(--color-green);
}

.heading-tertiary::before,
.heading-tertiary::after {
  content: '';
  display: inline-block;
  background: var(--color-blue);
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
}

.heading-tertiary::before {
  top: 0;
  right: 0;
}

.heading-tertiary::after {
  bottom: 0;
  left: 0;
}

.heading-tertiary h3::before,
.heading-tertiary h3::after {
  content: '';
  display: inline-block;
  background: url('../img/common/diamond_blue.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  position: absolute;
}

.heading-tertiary h3::before {
  top: -10px;
  left: 0;
}

.heading-tertiary h3::after {
  bottom: -10px;
  right: 0;
}

.heading-tertiary.orange h3::before,
.heading-tertiary.orange h3::after {
  background: url('../img/common/diamond_orange.svg');
  background-size: 100%;
}

.heading-tertiary.red h3::before,
.heading-tertiary.red h3::after {
  background: url('../img/common/diamond_red.svg');
  background-size: 100%;
}

.heading-tertiary.green h3::before,
.heading-tertiary.green h3::after {
  background: url('../img/common/diamond_green.svg');
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    margin-bottom: 80px;
  }

  .heading-tertiary h3 {
    font-size: 2.4rem;
  }

  .heading-tertiary h3 .min {
    font-size: 2rem;
  }

  .heading-tertiary::before,
  .heading-tertiary::after {
    width: calc(100% - 60px);
  }

  .heading-tertiary h3::before,
  .heading-tertiary h3::after {
    width: 40px;
  }

  .heading-tertiary h3::before {
    top: -20px;
  }

  .heading-tertiary h3::after {
    bottom: -20px;
  }
}

/*------------------------------------------*/
/* 見出し H4
/*------------------------------------------*/

.heading-quaternary {
  text-align: left;
  width: 100%;
  border-bottom: 4px solid var(--color-blue);
  margin-top: 40px;
}

.heading-quaternary.orange {
  border-color: var(--color-orange);
}

.heading-quaternary.red {
  border-color: var(--color-red);
}

.heading-quaternary.green {
  border-color: var(--color-green);
}

.heading-quaternary h4 {
  display: inline-block;
  background: var(--color-blue);
  font-family: var(--font-family-Antique);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0px 10px;
}

.heading-quaternary.orange h4 {
  background: var(--color-orange);
}

.heading-quaternary.red h4 {
  background: var(--color-red);
}

.heading-quaternary.green h4 {
  background: var(--color-green);
}

@media screen and (min-width: 834px), print {
  .heading-quaternary {
    margin-top: 80px;
  }

  .heading-quaternary h4 {
    font-size: 1.6rem;
    padding: 0px 20px;
  }
}

/*------------------------------------------*/
/* 見出し H5
/*------------------------------------------*/

.heading-quinary {
  display: inline-block;
  background: var(--color-blue);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.heading-quinary.orange {
  background: var(--color-orange);
}

.heading-quinary.red {
  background: var(--color-red);
}

.heading-quinary.green {
  background: var(--color-green);
}

@media screen and (min-width: 834px), print {
  .heading-quinary {
    font-size: 1.2rem;
  }
}


/*------------------------------------------*/
/* ボタン wrap
/*------------------------------------------*/

.btn-type-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
}

.btn-type-wrap.left {
  text-align: left;
}

.btn-type-wrap.center {
  text-align: center;
}

.btn-type-wrap.right {
  text-align: right;
}

@media screen and (min-width: 1020px), print {
  .btn-type-wrap {
    margin-top: 60px;
  }
}


/*------------------------------------------*/
/* ボタン 角丸
/*------------------------------------------*/

.btn-type-rounded {
  position: relative;
  display: inline-block;
  background: white;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  border-radius: 40px;
  color: var(--color-blue);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 50px 10px 20px;
  transition: all .5s ease;
}

.btn-type-rounded.back {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}

.btn-type-rounded.red {
  color: var(--color-red);
}

.btn-type-rounded.green {
  color: var(--color-green);
}

.btn-type-rounded.orange {
  color: var(--color-orange);
}

.btn-type-rounded.back.red {
  background: var(--color-red);
  border-color: var(--color-red);
  color: white;
}

.btn-type-rounded.back.green {
  background: var(--color-green);
  border-color: var(--color-green);
  color: white;
}

.btn-type-rounded.back.orange {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

.btn-type-rounded::after {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow_blue.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 9/14;
  width: 9px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .5s ease;
}

.btn-type-rounded.back::after,
.btn-type-rounded.back.red::after,
.btn-type-rounded.back.green::after,
.btn-type-rounded.back.orange::after {
  background: url('../img/common/arrow_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.red::after {
  background: url('../img/common/arrow_red.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.green::after {
  background: url('../img/common/arrow_green.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.orange::after {
  background: url('../img/common/arrow_orange.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank::after {
  background: url('../img/common/icon_blank_blue.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 18px;
}

.btn-type-rounded.blank.back::after,
.btn-type-rounded.blank.back.red::after,
.btn-type-rounded.blank.back.green::after,
.btn-type-rounded.blank.back.orange::after {
  background: url('../img/common/icon_blank_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.red::after {
  background: url('../img/common/icon_blank_red.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.green::after {
  background: url('../img/common/icon_blank_green.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.orange::after {
  background: url('../img/common/icon_blank_orange.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.pdf::after,
.btn-type-rounded.pdf.back::after,
.btn-type-rounded.pdf.back.red::after,
.btn-type-rounded.pdf.back.green::after,
.btn-type-rounded.pdf.back.orange::after {
  background: url('../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
}

.btn-type-rounded:hover {
  text-decoration: none;
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}

.btn-type-rounded.back:hover {
  background: white;
  color: var(--color-blue);
}

.btn-type-rounded.red:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: white;
}

.btn-type-rounded.green:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: white;
}

.btn-type-rounded.orange:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

.btn-type-rounded.back.red:hover {
  background: white;
  border-color: var(--color-red);
  color: var(--color-red);
}

.btn-type-rounded.back.green:hover {
  background: white;
  border-color: var(--color-green);
  color: var(--color-green);
}

.btn-type-rounded.back.orange:hover {
  background: white;
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-type-rounded:hover::after {
  background: url('../img/common/arrow_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.back:hover::after {
  background: url('../img/common/arrow_blue.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.back.red:hover::after {
  background: url('../img/common/arrow_red.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.back.green:hover::after {
  background: url('../img/common/arrow_green.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.back.orange:hover::after {
  background: url('../img/common/arrow_orange.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank:hover::after {
  background: url('../img/common/icon_blank_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.back:hover::after {
  background: url('../img/common/icon_blank_blue.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.back.red:hover::after {
  background: url('../img/common/icon_blank_red.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.back.green:hover::after {
  background: url('../img/common/icon_blank_green.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.blank.back.orange:hover::after {
  background: url('../img/common/icon_blank_orange.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded.pdf:hover::after,
.btn-type-rounded.pdf.back:hover::after,
.btn-type-rounded.pdf.back.red:hover::after,
.btn-type-rounded.pdf.back.green:hover::after,
.btn-type-rounded.pdf.back.orange:hover::after {
  background: url('../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 768px), print {
  .btn-type-rounded {
    padding: 15px 60px 15px 30px;
  }
}


/*------------------------------------------*/
/* マージン消し
/*------------------------------------------*/

.margin-top-non {
  margin-top: 0 !important;
}

/*------------------------------------------*/
/* 注意書き
/*------------------------------------------*/
.notes {
  text-align: justify;
  text-justify: inter-ideograph;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1rem;
  line-height: 1.6em;
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8em;
  font-weight: 500;
}

/* マージン 上 --------------------------------*/
.margin-p {
  margin-top: 1em;
}

.margin-p2 {
  margin-top: 2em;
}

/* 寄せ --------------------------------*/
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* 太文字 --------------------------------*/
.text-bold {
  font-weight: bold;
}

/* 文字色 --------------------------------*/
.text-red {
  color: var(--color-red);
}

.text-blue {
  color: var(--color-blue);
}

.text-light-blue {
  color: var(--color-light-blue);
}

.text-pink {
  color: var(--color-pink);
}

/* 文字 縁取り --------------------------------*/
.text-stroke {
  -webkit-text-stroke: 4px white;
  text-stroke: 4px white;
  paint-order: stroke;
}

/*------------------------------------------*/
/* 改行
/*------------------------------------------*/

/* 強制改行 --------------------------------*/
.break-word {
  word-wrap: break-word;
}

/* 改行消し --------------------------------*/
@media screen and (max-width: 767px) {
  .br-sp-non {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .br-pc-non {
    display: none;
  }
}

/*------------------------------------------*/
/* 画像
/*------------------------------------------*/

/* 画像横幅一杯 */
.image-w100 {
  width: 100%;
}

/* 画像最大横幅100% */
.image-max100 {
  max-width: 100%;
}

/* スマホのみ画像横幅一杯 */
@media screen and (max-width: 767px) {
  .image-sp-w100 {
    width: 100%;
  }
}


/*------------------------------------------*/
/* リンク無効
/*------------------------------------------*/
.link-off {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*------------------------------------------*/
/* 訪問済みでも色を戻したくない場合
/*------------------------------------------*/
a.link-color,
a.link-color:visited {
  color: var(--color-main);
}


/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
}

.link-blank:visited {
  color: var(--color-main);
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url('img/icon_blank.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}


/*------------------------------------------*/
/* comingsoon
/*------------------------------------------*/

.comingsoon {
  font-size: 2rem;
  font-weight: 700;
}


/*------------------------------------------*/
/* YouTube
/*------------------------------------------*/

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}