@charset "UTF-8";
/*
  File Name   : style.css
*/
/* BASE
================================================== */
/*** structure ***/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
  overflow: hidden;
}

body > div:first-child,
body > article,
body > footer,
body > header,
body > main {
  width: 100%;
  min-width: 320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

/*** hypertext ***/
a:link {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: underline;
}

a:visited {
  color: inherit;
}

a img {
  border: none;
}

a.over:hover,
a:hover img.over,
input.over:hover {
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  opacity: .7;
}

/*** pc-only / sp-only ***/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*** js event  !! .hoge { display: none; } & <div class="hoge no-js"></div> !! ***/
.no-js {
  display: block !important;
}

/*
----------------------------------------------------------- */
/* Header
----------------------------------------------------------- */
.header {
  display: block;
  width: 100%;
  height: 92px;
  background: #0099ff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
@media all and (min-width: 768px) {
  .header {
    position: absolute;
    z-index: 1;
    background-color: transparent;
  }
}


.header__inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media all and (min-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    max-width: calc(100% - 40px);
  }
}


.header__logo {
  /*
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  */
}

.header__logo img {
  vertical-align: middle;
}

.header__description {
  font-size: 10px;
  text-align: center;
}

.header__description .text_main {
  font-size: 18px;
}

@media all and (max-width: 767px) {
  .header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .header.scroll {
    /* height: 45px; */
    height: 13vw;
  }
  .header__inner {
    padding: 0 15px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__logo {
    position: relative;
    width: 30%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    max-width: 150px;
    left: auto;
    top: -3px;
  }
  .header__logo img {
    vertical-align: middle;
  }
  .header__side-btn.sp-only {
    width: 60%;
    max-width: 230px;
  }
  p.header__side-btn.sp-only a img {
    width: 100%;
    height: auto;
  }
  /*
  .header__side-btn a {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
    font-weight: bold;
    padding: 8px 35px 8px 10px;
    background: linear-gradient( to right, #fbb226 0%, #f89c11 50%, #f68b00 100%);
    text-decoration: none;
    border-radius: 10px;
    position: relative;
  }

  .header__side-btn a:before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/icon-arrow-01.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header__side-btn a:visited,
  .header__side-btn a:active {
    text-decoration: none;
  }
*/
}

/*
----------------------------------------------------------- */
/* Container
----------------------------------------------------------- */
.container {
  width: 100%;
  text-align: left;
}

@media all and (max-width: 767px) {
  .container {
    margin-top: 50px;
  }
}

/*
----------------------------------------------------------- */
/* side-btn
----------------------------------------------------------- */
.side-btn {
  position: fixed;
  top: 215px;
  right: 0;
  z-index: 1000;
}

@media all and (max-width: 767px) {
  .side-btn {
    width: 15vw;
    opacity: .8;
    display: none;
  }
}

/*
----------------------------------------------------------- */
/* Main
----------------------------------------------------------- */
.main {
  width: 100%;
  margin: 0 auto;
  display: block;
}

/*
----------------------------------------------------------- */
/* Footer
----------------------------------------------------------- */
.footer {
  background: #0099ff;
  color: #fff;
  padding: 0 15px 110px;
}

@media screen and (max-width: 767.98px) {
  .footer {
    padding-bottom: 0;
  }
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 100px;
}

.footer__info {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.footer__info .left .address {
  font-size: 1.3rem;
}

.footer__info .right p {
  font-size: 1.4rem;
  text-align: center;
}

.footer__fab {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  background-color: #0070e1;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

@media screen and (max-width: 767.98px) {
  .footer__fab {
    display: none;
    padding: 10px 15px 15px;
  }
}

.footer__fab.is-active {
  pointer-events: auto;
  opacity: 1;
}

.footer__fab .btn-monthly {
  padding-top: .5em;
  padding-bottom: .5em;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 0 0 #d47818;
  box-shadow: 0 4px 0 0 #d47818;
  line-height: 1.375;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 768px) {
  .footer__fab .btn-monthly {
    width: 372px;
    background-position: 20px center;
    background-size: 30px 27px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767.98px) {
  .footer__fab .btn-monthly {
    max-width: 240px;
    padding-left: 30px;
    background-position: 15px center;
    font-size: 12px;
  }
}

.footer__fab .btn-monthly:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 0 #d47818;
  box-shadow: 0 0 0 0 #d47818;
}

.footer__inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}

.footer__inner .pc_footer_link {
  display: flex;
}

.footer__inner .footer_logo .copyright {
  padding: 10px 0;
}

.footer__inner .footer_logo .copyright .text_sm {
  font-size: 13px;
  font-weight: 400;
}

@media all and (max-width: 970px) {
  .footer__inner {
    width: calc(100% - 40px);
  }
}

@media all and (max-width: 767px) {
  .footer__inner {
    height: auto;
  }
  .footer__inner .footer_logo {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }
  .footer__inner .footer_logo .copyright {
    font-size: 15px;
    font-weight: 700;
  }
  .footer__inner .footer_logo .copyright .text_sm {
    font-size: 10px;
  }
}

/* kv
============================================================ */
.sec-kv {
  box-sizing: border-box;
  /*
  height: 930px;
  */
  height: 100vh;
  /*
  background: url(../img/bg-kv.jpg) no-repeat 50% 50%;
  background-size: cover;
  */
  padding: 0 15px;
}

@media (orientation: landscape) and (min-width: 768px) {
  .sec-kv {
    min-height: 900px;
  }
}
@media (orientation: portrait) {
  .sec-kv {
    height: 950px;
  }
}

.kv__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: block;
  /*
  padding-top: 27px;
  */
  height: 100%;
}

/*
.kv__ttl {
  text-align: center;
  position: absolute;
  max-width: 500px;
  top: 280px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
*/

.kv__txt {
  font-size: 1rem;
  font-family: "HiraKakuProN";
  color: #676767;
  /*
  font-weight: bold;
  */
  position: absolute;
  left: 0;
  bottom: 30px;
  letter-spacing: 0;
  text-shadow: 1px 1px 0 #bed8e9;

}


/* 2022.06 AB検証
============================================================ */
.sec-kv img {
  height: auto;
}

.sec-cta-top {
  margin-top: 15px;
  text-align: center;
}

.sec-cta-top img {
  width: 354px;
  height: auto;
}

.sec-kv {
  padding-top: 108px;
  background: #b4d3e8 url(../img/kv_bg.jpg) center 0/auto 100% no-repeat;
}
@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv {
    padding-top: 11vh;
  }
}
@media all and (max-width: 767px) {
  .sec-kv {
    padding-top: 0;
    background-image: url(../img/kv_bg_sp.jpg);
    background-size: cover;
  }
}

@media all and (max-width: 767px) {
  .sec-kv .kv__ttl img {
    width: 63.6vw;
    max-width: 477px;
  }
}

.sec-kv .kv__content {
  width: 524px;
  text-align: center;
  position: absolute;
  top: 41%;
  left: 0;
  transform: translate(0, -41%);
  -webkit-transform: translate(0, -41%);
  -ms-transform: translate(0, -41%);
}

@media all and (max-width: 767px) {
  .sec-kv .kv__content {
    width: 100%;
    text-align: center;
  }
}
.sec-kv .kv_cta_top {
  position: relative;
  top: -8px;
  left: min(1.875vw,27px);
}
@media all and (max-width: 767px) {
  .sec-kv .kv_cta_top {
    margin-top: 3vw;
    margin-left: -3.304vw;
    width: 67.33vw;
    text-align: left;
    left: 0;
  }
}

@media all and (max-width: 374.98px) {
  .sec-kv .kv_cta_top {
    margin-top: 3vw;
  }
}

@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv .kv_cta_top {
    margin-left: auto;
    margin-right: auto;
    max-width: 475px;
  }
}

.sec-kv .kv_cta_bottom {
  margin-top: 43px;
}

/* pat01
========================= */
/*
.sec-kv.pat01 {
  padding-top: 200px;
  background: url(../img/kv_pat01/img02.png) no-repeat center 306px, url(../img/kv_pat01/img01.png) no-repeat center 46px, url(../img/bg-kv.jpg) repeat 50% 0/cover;
}

@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv.pat01 {
    padding-top: 18.8vh;
    background: url(../img/kv_pat01/img02.png) no-repeat center 28.5vh, url(../img/kv_pat01/img01.png) no-repeat center 30px/198px auto, url(../img/bg-kv.jpg) repeat 50% 0/cover;
  }
}

@media all and (max-width: 767px) {
  .sec-kv.pat01 {
    background: url(../img/kv_pat01/img02_sp.png) no-repeat center 35.2vw/contain, url(../img/kv_pat01/img01.png) no-repeat center 6vw/30vw auto, url(../img/bg-kv.jpg) repeat 50% 0/cover;
    padding-top: 22vw;
  }
}

@media all and (max-width: 767px) {
  .sec-kv.pat01 .kv__inner,
  .sec-kv.pat02 .kv__inner,
  .sec-kv.pat03 .kv__inner {
    width: 100%;
  }
}

.sec-kv.pat01 .kv__ttl {
  text-align: center;
}
@media all and (max-width: 767px) {
  .sec-kv.pat01 .kv__ttl {
    width: 60%;
    max-width: 450px;
  }
}

.sec-kv.pat01 .kv_cta_top {
  position: relative;
}

.sec-kv.pat01 .kv_cta_top .kv_cta_top_img {
  display: inline-block;
  position: absolute;
  left: calc(50% - 380px);
}
@media all and (max-width: 767px) {
  .sec-kv.pat01 .kv_cta_top .kv_cta_top_img {
    position: relative;
    top: 0;
    left: 1.33vw;
    width: 46.67vw;
  }
}

.sec-kv.pat01 .kv_cta_bottom {
  position: absolute;
  bottom: 8.33vh;
  text-align: center;
  width: 100%;
}
@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv.pat01 .kv_cta_bottom {
    bottom: 2.5vh;
  }
}
*/


/* pat03
========================= */
/*
.sec-kv.pat03 {
  padding-top: 165px;
  background: #1d181d url(../img/kv_pat03/img01.jpg) center 0/auto 100% no-repeat;
}
@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv.pat03 {
    padding-top: 20vh;
  }
}
@media all and (max-width: 767px) {
  .sec-kv.pat03 {
    padding-top: 7.73vw;
    background: #1d181d url(../img/kv_pat03/img01_sp.jpg) center 0/cover no-repeat;
  }
}

@media all and (max-width: 767px) {
  .sec-kv.pat03 .kv__ttl img {
    width: 60.13vw;
    max-width: 451px;
  }
}

.sec-kv.pat03 .kv__content {

}
@media all and (min-width: 768px) and (max-width: 1000px) {
  .sec-kv.pat03 .kv__content {
    margin-left: 0;
  }
}
@media all and (max-width: 767px) {
  .sec-kv.pat03 .kv__content {
    margin-left: 0;
    text-align: center;
  }
}

.sec-kv.pat03 .kv_cta_top {
  margin-top: 30px;
  margin-left: 45px;
}
@media (orientation: landscape) and (max-height: 800px) {
  .sec-kv.pat03 .kv_cta_top {
    max-width: 346px;
  }
}
@media all and (max-width: 767px) {
  .sec-kv.pat03 .kv_cta_top {
    margin-top: 14vw;
    margin-left: 1.87vw;
    width: 67.33vw;
    text-align: left;
  }
}

.sec-kv.pat03 .kv_cta_bottom {
  margin-top: 35px;
}

.sec-kv.pat03 .kv__scroll {
  color: #fff;
}

.sec-kv.pat03 .kv__scroll::before {
  background-color: #fff;
}

.sec-kv.pat03 .kv__scroll::after {
  border-color: #fff;
}
*/

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







/* kv-copy */
.sec-kv-copy {
  max-width: 1000px;
  margin: 0 auto 90px;
  text-align: center;
  padding-top: 100px;
  position: relative;
}

.sec-kv-copy:before {
  content: "";
  width: 599px;
  height: 241px;
  background: url(../img/bg-kv-copy-01.png) no-repeat 50% 50%;
  background-size: 100% auto;
  position: absolute;
  left: -290px;
  top: 378px;
}

.sec-kv-copy:after {
  content: "";
  width: 427px;
  height: 245px;
  background: url(../img/bg-kv-copy-02.png) no-repeat 50% 50%;
  background-size: 100% auto;
  position: absolute;
  right: -190px;
  top: 180px;
}

.kv-copy__ttl {
  display: inline-block;
  margin: 0 auto 40px;
  font-family: "A1 Mincho", "A1MinchoStd", "MS Mincho";
  color: #6b5a40;
  line-height: 1.375;
  position: relative;
  max-width: 572px;
}

.kv-copy__ttl span {
  font-size: 3.4rem;
}

.kv-copy__txt-box {
  text-align: center;
  position: relative;
}

.kv-copy__txt-box:after {
  content: "";
  width: 232px;
  height: 143px;
  background: url(../img/bg-kv-copy-03.png) no-repeat 50% 50%;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  bottom: -75px;
}

.kv-copy__txt-box p {
  margin: 0 auto 37px;
  max-width: 630px;
  color: #5b4a43;
  letter-spacing: .1em;
  line-height: 2;
}

.kv-copy__txt-box p span {
  padding: 4px 5px;
  border-bottom: 1px solid #e5e5e5;
  display: block;
}

.kv-copy__txt-box p:first-child span:first-child {
  border-top: 0;
}

.kv-copy__txt-box p:last-child span:last-child {
  border-bottom: 0;
}

.kv-copy__txt-box p span:first-child {
  border-top: 1px solid #e5e5e5;
}

.kv__scroll {
  position: absolute;
  right: 28px;
  bottom: 40px;
  padding-bottom: 15px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 1.1rem;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.kv__scroll:hover {
  text-decoration: none;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.kv__scroll:before {
  content: "";
  width: 2px;
  height: 12px;
  background: #000;
  position: absolute;
  bottom: -8px;
  left: 9px;
}

.kv__scroll:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  bottom: -9px;
  left: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media all and (max-width: 1340px) and (min-width: 768px) {
  .sec-kv {
    /*
    height: calc(100vh - 92px);
    */
    height: 100vh;
    position: relative;
  }
  /*
  .kv__inner {
    margin: 0 auto;
    padding: 0;
    width: 56%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  */
  .kv__ttl {
    top: 31%;
    width: 100%;
  }
  .kv__txt {
    bottom: 0;
  }
}

@media all and (max-width: 1000px) {
  .kv__inner {
    width: 82.5vw;
  }
}

@media all and (max-width: 767px) {
  .sec-kv {
    height: 104vw;
    padding: 0;
  }
  .kv__ttl {
    top: 28vw;
  }
  .sec-kv-copy:before,
  .sec-kv-copy:after,
  .kv-copy__txt-box:after {
    content: none;
  }
  .kv__inner {
    padding-top: 1.5vw;
  }
  .kv__ttl {
    width: 100%;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 24vw;
    transform: translateX(-8.7vw);
  }
  .kv__txt {
    position: absolute;
    bottom: 13px;
    left: 0;
    padding: 0 5px;
    width: calc(100% - 10px);
    line-height: 1.3;
    text-align: left;
  }
  /* kv-copy */
  .sec-kv-copy {
    padding-top: 30px;
    margin-bottom: 60px;
  }
  .kv-copy__ttl {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 0 15px;
    width: 90%;
  }
  .kv-copy__ttl:before,
  .kv-copy__ttl:after {
    content: none;
  }
  .kv-copy__ttl span {
    font-size: 1.7rem;
  }
  .kv-copy__txt-box p {
    letter-spacing: 0;
    margin-bottom: 2em;
  }
}

/*
----------------------------------------------------------- */
/* contents
----------------------------------------------------------- */
/* story
============================================================ */
.sec-story {
  margin: 0 auto 290px;
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
}

.story__ttl {
  text-align: center;
  margin-bottom: -60px;
}

.story__img-box {
  text-align: center;
  margin: 0 0 40px;
  height: 424px;
  align-self: flex-end;
}

.story__img-box iframe {
  width: 100%;
  height: 100%;
}

.story__area-book {
  position: relative;
  margin-bottom: 115px;
}

.story__inner {
  max-width: 1000px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 230px 134px 0 116px;
  position: relative;
}

.story__inner:before {
  content: "";
  width: 2020px;
  height: 1282px;
  background: url(../img/bg-story-01-01.png) no-repeat 0 50%;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -946px;
  z-index: 1;
}

.story__area-book--02 .story__row-layout .img-box {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.story__area-book--02 .story__inner:before {
  content: "";
  width: 2020px;
  height: 1282px;
  background-image: url(../img/bg-story-02-01.png);
  top: 0;
  left: auto;
  right: -925px;
}

.story__inner:after {
  content: "";
  width: 602px;
  height: 267px;
  background: url(../img/bg-story-01-02.png) no-repeat 0 50%;
  background-size: 100% auto;
  position: absolute;
  bottom: -200px;
  right: -402px;
}

.story__area-book--02 .story__inner:after {
  width: 731px;
  height: 350px;
  background-image: url(../img/bg-story-02-02.png);
  right: auto;
  left: -400px;
  bottom: -300px;
}

.story__inner > * {
  position: relative;
  z-index: 2;
}

.story__row-layout {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
  margin: 0 0 35px;
}

.story__row-layout .txt-box {
  -webkit-flex: 0 0 57%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57%;
  flex: 0 0 57%;
  max-width: 55%;
  margin-right: -5%;
  letter-spacing: .05em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.story__row-layout .img-box {
  -webkit-flex: 0 0 48%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
}

.story__row-layout .txt-box .name {
  margin-bottom: 36px;
  max-width: 484px;
  margin-right: -4%;
}

.story__area-book--02 .story__row-layout .txt-box .name {
  max-width: 484px;
  margin-right: -4%;
}

.story__row-layout .txt-box p {
  margin: 0 0 30px;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .sec-story {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
  .story__area-book {
    margin-bottom: 0;
  }
  .story__inner {
    padding: 10px 15px 0;
    margin-bottom: 40px;
  }
  .story__inner:before,
  .story__inner:after {
    content: none !important;
  }
  .story__ttl {
    max-width: 70%;
    margin: 0 auto 30px;
  }
  .story__row-layout {
    display: block;
    margin-bottom: 20px;
  }
  .story__row-layout .img-box,
  .story__row-layout .txt-box {
    max-width: none;
  }
  .story__row-layout .txt-box {
    margin: 0 0 3.125vw;
  }
  .story__row-layout .txt-box .name,
  .story__area-book--02 .story__row-layout .txt-box .name {
    max-width: 75%;
    margin-bottom: 20px;
  }
  .story__area-book--02 .story__row-layout .txt-box .name {
    margin-right: 0;
  }
  .story__img-box {
    height: 50vw;
    margin-bottom: 6.25vw;
  }
  .story__row-layout .txt-box p {
    margin-bottom: 10px;
  }
}

/* img-view
============================================================ */
.sec-img-view {
  max-width: 1000px;
  margin: 0 auto 150px;
  padding: 50px 15px 0;
}

.img-view__ttl {
  text-align: center;
  margin: 0 auto 70px;
  max-width: 797px;
}

.img-view__row-layout {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 70px;
  line-height: 2;
}

.img-view__row-layout .txt-box {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
  padding: 25px 30px;
  position: relative;
  -webkit-box-shadow: 0 0 10px 1px #eee;
  box-shadow: 0 0 10px 1px #eee;
  background: rgba(255, 255, 255, 0.9) url(../img/bg-txt-box-01.png) repeat-y 0 0;
  background-size: 3px 100%;
  z-index: 2;
}

.img-view__row-layout .txt-box p + p {
  margin: 30px 0 0;
}

.img-view__row-layout .txt-box p + .ttl {
  margin: 22px 0 5px;
  max-width: 324px;
}

.img-view__row-layout .img-box {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .img-view__row-layout .img-box.img-01:before {
    content: "";
    width: 431px;
    height: 354px;
    background: url(../img/bg-peace-01.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    right: -340px;
    top: -265px;
  }
}

@media only screen and (min-width: 768px) {
  .img-view__row-layout .txt-box.img-02:before {
    content: "";
    width: 126px;
    height: 192px;
    background: url(../img/bg-peace-02.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    right: 14px;
    bottom: -46px;
  }
}

@media only screen and (min-width: 768px) {
  .img-view__row-layout .txt-box.img-03:before {
    content: "";
    width: 320px;
    height: 208px;
    background: url(../img/bg-peace-03.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    right: -60px;
    top: -86px;
  }
}

@media only screen and (min-width: 768px) {
  .img-view__row-layout .txt-box.img-03:after {
    content: "";
    width: 141px;
    height: 145px;
    background: url(../img/bg-peace-04.png) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    right: -55px;
    bottom: -94px;
  }
}

@media only screen and (min-width: 768px) {
  .img-view__row-layout .img-box.img-04:before {
    content: "";
    width: 431px;
    height: 354px;
    background: url(../img/bg-peace-05.png) no-repeat 0 0;
    position: absolute;
    background-size: cover;
    left: -268px;
    bottom: -202px;
    z-index: 2;
  }
}

.img-view__row-layout .img-box img {
  position: relative;
  z-index: 1;
}

.img-view__row-layout:nth-of-type(odd) .txt-box {
  -webkit-order: -1;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.img-view__row-layout:nth-of-type(even) .txt-box {
  background-position: 100% 0;
}

.img-view__row-layout:nth-of-type(odd) .img-box {
  margin-left: -170px;
  z-index: -1;
}

.img-view__row-layout:nth-of-type(even) .img-box {
  margin-right: -80px;
}

.img-view__row-layout:nth-of-type(even) .img-box img {
  position: relative;
  z-index: 2;
}

.img-view__row-layout .ttl {
  font-size: 2rem;
  line-height: 1.4;
  color: #ef6793;
  font-family: "A1 Mincho", "A1MinchoStd", "MS Mincho";
  margin: 0 0 25px;
  max-width: 489px;
}

@media all and (max-width: 767px) {
  .sec-img-view {
    padding-top: 0;
    margin-bottom: 60px;
  }
  .img-view__ttl {
    margin: 0 auto 20px;
    max-width: 400px;
  }
  .img-view__row-layout {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
  }
  .img-view__row-layout .ttl {
    font-size: 1.6rem;
    margin-bottom: 15px;
    max-width: 320px;
  }
  .sec-img-view .img-view__row-layout .img-box {
    margin: 0;
    width: 100%;
  }
  .sec-img-view .img-view__row-layout .img-box img {
    width: 100%;
  }
  .sec-img-view .img-view__row-layout .txt-box {
    margin: 0 auto;
    padding: 15px;
    -webkit-order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  /*
  @at-root *:not(.sec-monthly) {
    .img-view__row-layout .img-box:before,
    .img-view__row-layout .txt-box:before,
    .img-view__row-layout .txt-box:after {
      content: none !important;
    }
  }
  */
  .img-view__row-layout .txt-box p + p {
    margin-top: 10px;
  }
}

/* network
============================================================ */
.sec-network {
  padding: 84px 15px 90px;
  border-top: 1px solid #c4e4e9;
  border-bottom: 1px solid #c4e4e9;
  background: #e8f6f8;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.sec-network:before {
  content: "";
  width: 35.9%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/bg-network-01.jpg) no-repeat 100% 50%;
  background-size: auto 100%;
}

.sec-network:after {
  content: "";
  width: 36%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(80%, rgba(232, 247, 249, 0)), to(#e8f7f9));
  background-image: -webkit-linear-gradient(right, rgba(232, 247, 249, 0) 80%, #e8f7f9 100%);
  background-image: -o-linear-gradient(right, rgba(232, 247, 249, 0) 80%, #e8f7f9 100%);
  background-image: linear-gradient(to left, rgba(232, 247, 249, 0) 80%, #e8f7f9 100%);
}

.network__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: url(../img/bg-world.png) no-repeat 50% 50%;
}

.network__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.network__list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.network__list li {
  width: 24vw;
  height: 24vw;
  line-height: 24vw;
  vertical-align: middle;
  border-radius: 50%;
  background: url(../img/bg-circle-01.png) no-repeat 50% 50%;
  background-size: cover;
  text-align: center;
  margin: 0 3.125vw 3.125vw;
  position: relative;
}

.network__list li img {
  vertical-align: middle;
  max-height: 60%;
  width: auto;
  height: auto;
}

.network__list li:nth-child(1),
.network__list li:nth-child(3) {
  top: -10px;
}

.network__list li:nth-child(4),
.network__list li:nth-child(6) {
  bottom: -10px;
}

@media all and (max-width: 767px) {
  .sec-network {
    padding: 30px 0;
  }
  .sec-network:before {
    content: none;
  }
  .network__inner {
    padding: 15px 0;
    background-size: cover;
  }
  .network__ttl {
    width: 90%;
    margin: 0 auto 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: static;
  }
}

/* donation
============================================================ */
.sec-donation {
  width: 100%;
  position: relative;
}

.donation__inner {
  background: url(../img/bg-donation.png) no-repeat 50% 100%;
  background-size: 100% auto;
  padding-bottom: 22.1875vw;
}

@media screen and (max-width: 767.98px) {
  .donation__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.donation__top {
  max-width: 1000px;
  margin: 0 auto;
}

.donation__ttl {
  text-align: center;
  margin: 0 auto;
  background-color: #3faffd;
  margin-bottom: 78px;
}

.donation__btn-list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 567px;
}

.donation__btn-list li a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  height: 100%;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 100;
  position: relative;
}

.donation__btn-list li a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff;
}

.donation__btn-list li.item-primary a {
  line-height: 1.25;
}

@media only screen and (min-width: 768px) {
  .donation__btn-list li.item-primary a {
    padding-top: 10px;
    /* padding-left: 13px; */
    width: 576px;
    height: 98px;
  }
  .donation__btn-list li.item-primary a _:lang(x)::-ms-backdrop, .donation__btn-list li.item-primary a {
    padding-top: 12px;
  }
  .donation__btn-list li.item-primary a _:-ms-lang(x)::backdrop, .donation__btn-list li.item-primary a {
    padding-top: 12px;
  }
}

.donation__btn-list li:not(.item-primary) {
  margin-top: 30px;
}

@media screen and (max-width: 767.98px) {
  .donation__ttl {
    margin-bottom: 36px;
  }

  .donation__btn-list li:not(.item-primary) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .donation__btn-list li:not(.item-primary) a {
    width: 576px;
    height: 62px;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__btn-list li:not(.item-primary) a {
    width: 100%;
    max-width: 567px;
    background-position: 13px center;
    font-size: 1.2rem;
  }
}

*[class^='btn-'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

*[class^='btn-']:hover, *[class^='btn-']:active, *[class^='btn-']:visited, *[class^='btn-']:focus {
  color: #fff;
}

*[class^='btn-'] _:lang(x)::-ms-backdrop, *[class^='btn-'] {
  font-family: メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}

*[class^='btn-'] _:-ms-lang(x)::backdrop, *[class^='btn-'] {
  font-family: メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}

*[class^='btn-'] .sub {
  display: block;
}

.btn-monthly {
  width: 100%;
  max-width: 567px;
  /* background: #fb7b00 url(../img/202401/icon_monthly_present.png) 29px center no-repeat; */
  background: #fb7b00;
  -webkit-box-shadow: 0 8px 0 0 #d47818;
  box-shadow: 0 8px 0 0 #d47818;
}
.footer__fab .btn-monthly {
  background: #fb7b00;
  background: #fb7b00 url(../img/icon_monthly_cycle.png) 40px center no-repeat;
  background-size: 30px 27px;
  background-position: 20px center;
}

@media only screen and (min-width: 768px) {
  .btn-monthly {
    font-size: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .btn-monthly {
    padding-top: .8em;
    padding-bottom: .8em;
    /* padding-left: 30px; */
    /* background-image: url(../img/202401/icon_monthly_present_sp@2x.png);
    background-position: 9px center;
    background-size: 55px auto; */
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 320px) {
  .btn-monthly {
    /* padding-left: 30px; */
    background-position: 15px center;
    font-size: 14px;
  }
}

.btn-monthly:link, .btn-monthly:hover, .btn-monthly:active, .btn-monthly:focus {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .btn-monthly .sub {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767.98px) {
  .btn-monthly .sub {
    font-size: .9rem;
  }
}

.btn-onetime {
  padding-top: 12px;
  background: #a3c400 url(../img/icon_onetime.png?202011) 48px center no-repeat;
  -webkit-box-shadow: 0 4px 0 0 #8aa600;
  box-shadow: 0 4px 0 0 #8aa600;
  line-height: 1.3;
}

.btn-onetime _:lang(x)::-ms-backdrop, .btn-onetime {
  padding-top: 10px;
}

.btn-onetime _:-ms-lang(x)::backdrop, .btn-onetime {
  padding-top: 10px;
}

@media screen and (max-width: 767.98px) {
  .btn-onetime {
    padding-top: 6px;
    padding-left: 30px;
    padding-right: 10px;
    background-size: 14px 14px;
  }
}

@media only screen and (min-width: 768px) {
  .btn-onetime {
    font-size: 20px;
  }
  .btn-onetime .sub {
    padding-left: 35px;
    font-size: 10px;
    letter-spacing: .03em;
  }
}

@media screen and (max-width: 767.98px) {
  .btn-onetime .sub {
    font-size: .9rem;
  }
}

@media screen and (max-width: 374.98px) {
  .btn-onetime .sub .br {
    display: none;
  }
}

.donation__middle {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .donation__middle {
    padding: 25px 15px 20px;
  }
}

.donation__middle__link {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .donation__middle__link {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .donation__middle__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) {
  .donation__middle__link li {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__middle__link li {
    margin: 0 0 10px;
    font-size: 1.2rem;
  }
}

.donation__middle__link li a {
  color: #09f;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .donation__middle__link li a {
    display: inline-block;
    line-height: 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__middle__link li a {
    display: block;
    padding-left: 1.8em;
  }
}

.donation__middle__link li a:hover {
  text-decoration: none;
}

.donation__middle__link li .arrow {
  padding-left: 20px;
  background: url(../img/icon-arrow-03.png) no-repeat 0 center;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .donation__middle__link li .arrow {
    padding-left: 30px;
    background-position: 8px center;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__middle__link li .arrow {
    background-position: .3em .2em;
  }
}

.donation__middle__link li .pdf {
  background: url(../img/icon-pdf.png) no-repeat 0 center;
}

@media only screen and (min-width: 768px) {
  .donation__middle__link li .pdf {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__middle__link li .pdf {
    background-size: auto 1.2em;
    background-position: 0 .3em;
  }
}

/* credit, updated date
============================================================ */
.donation__middle__info {
  margin-top: 45px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  color: #666;
  font-family: メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 12px;
}

@media screen and (max-width: 767.98px) {
  .donation__middle__info {
    margin-top: 30px;
    font-size: 1rem;
  }
}

.donation__middle__info p + p {
  margin-top: 30px;
}

@media screen and (max-width: 767.98px) {
  .donation__middle__info p + p {
    margin-top: 1em;
  }
}

.credit small {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .txt-updated {
    text-align: right;
  }
}

.donation__bottom {
  border-top: 1px solid #ccc;
}

.donation__bottom__link {
  margin: 15px auto;
  max-width: 1000px;
}

@media only screen and (min-width: 768px) {
  .donation__bottom__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__bottom__link {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .donation__bottom__link li {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__bottom__link li {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767.98px) {
  .donation__bottom__link li:not(:first-child) {
    margin-top: .5em;
  }
}

.donation__bottom__link li a {
  position: relative;
  color: #09f;
  text-decoration: underline;
}

.donation__bottom__link li a:hover {
  text-decoration: none;
}

.donation__bottom__link li a:after {
  content: '';
  position: absolute;
  right: -15px;
  top: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media all and (max-width: 767px) {
  .donation__btn-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 20px;
  }
  .donation__btn-list li {
    width: 100%;
  }
  .donation__btn-list li .sub {
    font-size: 1rem;
  }
  .donation__inner .donation__btn-list li a {
    text-align: center;
  }
  .donation__btn-list li.green {
    background-size: 25px auto;
    background-position: 10px 50%;
  }
  .donation__btn-list li.green a,
  .donation__btn-list li.orange a {
    background-size: 20px auto;
  }
  .donation__bottom:before {
    content: none;
  }
  .donation__bottom__link {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/* activity
============================================================ */
@media only screen and (min-width: 768px) {
  .sec-activity {
    padding-bottom: 135px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .sec-activity {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767.98px) {
  .sec-activity {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.activity__ttl {
  text-align: center;
}

.activity__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 998px;
}

@media only screen and (min-width: 768px) {
  .activity__inner {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .activity__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__inner {
    margin-top: 30px;
  }
}

.activity__inner:before {
  content: '';
  position: absolute;
  background: url(../img/bg-activity-01.png) 0 0/contain no-repeat;
}

@media only screen and (min-width: 768px) {
  .activity__inner:before {
    left: calc(50% + 230px);
    bottom: -145px;
    width: 513px;
    height: 362px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .activity__inner:before {
    left: calc(50% + 80px);
    bottom: -60px;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__inner:before {
    top: 50vw;
    left: calc(50% + 24vw);
    width: 179px;
    width: 47.58vw;
    height: 130px;
    height: 34.66vw;
  }
}

.activity__img {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .activity__img {
    text-align: right;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__img img {
    width: 100%;
  }
}

.activity__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .activity__items {
    margin-top: -330px;
    width: 560px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .activity__items {
    margin-top: -200px;
  }
}

.activity__items > li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 2px solid #919191;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
}

@media only screen and (min-width: 768px) {
  .activity__items > li {
    padding: 30px;
    width: 270px;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__items > li {
    margin-top: 20px;
    padding: 15px;
    width: calc(50% - 10px);
  }
}

.activity__items > li:nth-of-type(even) {
  margin-left: 20px;
}

@media only screen and (min-width: 768px) {
  .activity__items > li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .activity__items > li:nth-child(4) {
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
  }
  .activity__items > li:nth-child(4) _:lang(x)::-ms-backdrop, .activity__items > li:nth-child(4) {
    letter-spacing: -.05em;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__item > .head img {
    width: auto;
    height: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  li:nth-child(2) .activity__item > .head img {
    height: 47px;
  }
}

.activity__item > .body {
  margin-left: 5px;
}

@media only screen and (min-width: 768px) {
  .activity__item > .body {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .activity__item > .body {
    margin-top: 10px;
  }
}

/* monthly
============================================================ */
@media screen and (max-width: 767.98px) {
  .sec-monthly {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sec-monthly .txt-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 460px;
}

@media only screen and (min-width: 768px) {
  .sec-monthly .img-view__row-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.sec-monthly .img-view__row-layout:nth-of-type(odd) .txt-box {
  background-position: 100% 0;
}

.sec-monthly .img-view__row-layout:nth-of-type(even) .txt-box {
  -webkit-order: -1;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.sec-monthly .img-view__row-layout:nth-of-type(odd) .img-box {
  margin-left: 0;
  margin-right: -80px;
  z-index: -1;
}

@media screen and (max-width: 767.98px) {
  .sec-monthly .img-view__row-layout .txt-box {
    margin-top: -30px;
    max-width: calc(100% - 40px);
  }
}

.monthly__ttl {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .monthly__inner {
    margin-top: 70px;
  }
}

@media screen and (max-width: 767.98px) {
  .monthly__inner {
    margin-top: 30px;
  }
}

.monthly-img-01 {
  position: relative;
}

.monthly-img-01:before, .monthly-img-01:after {
  content: '';
  position: absolute;
}

.monthly-img-01:before {
  z-index: 1;
  left: -120px;
  top: -225px;
  width: 211px;
  height: 297px;
  background: url(../img/bg-monthly-01.png) 0 0/contain no-repeat;
}

@media screen and (max-width: 767.98px) {
  .monthly-img-01:before {
    top: -129px;
    left: -30px;
    width: 91px;
    height: 129px;
  }
}

.monthly-img-01:after {
  top: 22px;
  left: -176px;
  z-index: 3;
  width: 226px;
  height: 178px;
  background: url(../img/bg-monthly-02.png) 0 0/contain no-repeat;
}

@media screen and (max-width: 767.98px) {
  .monthly-img-01:after {
    top: -30px;
    top: -4vw;
    left: -13vw;
    width: 38.26vw;
    height: 23.73vw;
  }
}

.monthly-img-02 {
  position: relative;
}

.monthly-img-02:before {
  content: '';
  position: absolute;
  width: 272px;
  height: 224px;
  background: url(../img/bg-monthly-03.png) 0 0/contain no-repeat;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .monthly-img-02:before {
    top: 150px;
    left: 404px;
  }
}

@media screen and (max-width: 767.98px) {
  .monthly-img-02:before {
    bottom: -30px;
    right: -110px;
    width: 136px;
    height: 112px;
  }
}

.monthly__support-sample {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px;
  background: url(../img/bg-monthly-support.png) 0 0 no-repeat;
}

@media screen and (max-width: 767.98px) {
  .monthly__support-sample {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
    padding: 20px;
  }
}

.monthly__support-sample:before {
  content: '';
  position: absolute;
  z-index: 2;
  background: url(../img/bg-example-01.png) 0 0/contain no-repeat;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .monthly__support-sample:before {
    top: -40px;
    left: -24px;
    width: 546px;
    height: 76px;
  }
}

@media screen and (max-width: 767.98px) {
  .monthly__support-sample:before {
    top: -21px;
    left: 5px;
    width: 308px;
    height: 38px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .monthly__support-img {
    max-width: 450px;
  }
}

.monthly__support-txt {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

@media only screen and (min-width: 768px) {
  .monthly__support-txt {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .monthly__support-txt {
    margin-right: 20px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.98px) {
  .monthly__support-txt {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .monthly__support-txt p + p {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .monthly__support-txt p + p {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .monthly__support-txt p + p {
    margin-top: 1em;
  }
}

.monthly__support-txt em {
  color: #0099ff;
  font-style: inherit;
}

.monthly__support-txt small {
  display: block;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .monthly__support-txt small {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .monthly__support-txt small {
    font-size: 1.1rem;
  }
}

/* sec-example
============================================================ */
.sec-example {
  background: url(../img/202308/bg-example.jpg) right top/cover no-repeat;
}

.sec-example__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-example__main {
  box-sizing: border-box;
  padding: 53px 25px 48px;
  width: 500px;
  background-color: rgba(23,176,233,.8);
}

.sec-example__main .ttl {
  padding-left: 12px;
  box-sizing: border-box;
}

.sec-example__main .body {
  margin-top: 48px;
  padding-top: 50px;
  border-top: 3px solid #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
}

.sec-example__main .body .item:nth-of-type(n + 2) {
  margin-top: 31px;
}

.sec-example__main .body .item .head {
  padding-left: 15px;
  box-sizing: border-box;
}

.sec-example__main .body .item .txt {
  margin-top: 11px;
  padding-left: 13px;
  box-sizing: border-box;
  color: #222;
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: .1em;
}

@media screen and (max-width: 767.98px) {
  .sec-example {
    background: none;
  }

  .sec-example__main {
    padding: 0;
    width: 100%;
    background-color: #17b0e9;
  }

  .sec-example__main .ttl {
    padding-left: 0;
  }

  .sec-example__main .body {
    margin-top: 0;
    padding: 27px 20px 31px;
    border-top: none;
  }

  .sec-example__main .body .item:nth-of-type(n + 2) {
    margin-top: 13px;
  }

  .sec-example__main .body .item .head {
    padding-left: 0;
  }

  .sec-example__main .body .item .txt {
    margin-top: 6px;
    padding-left: 0;
    font-size: 15px;
    line-height: 1.533;
  }
}
