@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* 画面外にいる状態 */
.fadeinBottom {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  -webkit-transform : translate(0, 50px);
  -moz-transform : translate(0, 50px);
  -ms-transform : translate(0, 50px);
  -o-transform : translate(0, 50px);
  transform : translate(0, 50px);
  -moz-opacity:0.0;
}
/* 画面内に入った状態 */
.fadeinBottom.scrollin {
  opacity:1.0;
  filter: alpha(opacity=100);
  -webkit-transform : translate(0, 0);
  -moz-transform : translate(0, 0);
  -ms-transform : translate(0, 0);
  -o-transform : translate(0, 0);
  transform : translate(0, 0);
  -moz-opacity:1.0;
}
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
/*  footer-top
--------------------------------------------- */
.footer-top {
    padding: 50px 0;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .footer-top {
        padding: 49px 0;
        font-size: 0;
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    margin: 0 auto;
    width: 50px;
}

@media screen and (max-width: 750px) {
    .footer-pagetop {
        font-size: 0;
    }
}

.footer-pagetop__link {
    display: block;
}

@media screen and (min-width: 751px) {
    .footer-pagetop__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-pagetop__link:hover {
        opacity: 0.7;
    }
}

/*  footer-top-link
--------------------------------------------- */
.footer-top-link h2 {
    margin-bottom: 40px;
}
.footer-top-link p {
    font-size: 18px;
    font-weight: 600;
}
.footer-top-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 19px;
    width: 800px;

    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
}
@media screen and (max-width: 750px) {
    .footer-top-link ul {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }
    .footer-top-link ul li {
        padding: 20px 0 0 0;
        width: 100%;
    }
}



@media screen and (max-width: 750px) {
    .footer-sns-nav__txt {
        margin-top: 19px;
    }
}

.footer-sns-nav__list-item {
    width: 30px;
}

@media screen and (min-width: 751px) {
    .footer-sns-nav__list-item {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-sns-nav__list-item:hover {
        opacity: 0.7;
    }
}

/*  footer-bottom
--------------------------------------------- */
.footer-bottom {
    padding: 50px 0 19px;
}

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

/*  footer-logo-nu
--------------------------------------------- */
.footer-logo-nu {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 255px;
}

@media screen and (min-width: 751px) {
    .footer-logo-nu__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-logo-nu__link:hover {
        opacity: 0.7;
    }
}

/*  footer-cassette
--------------------------------------------- */
.footer-cassette {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    padding: 17px 20px 0;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .footer-cassette {
        display: block;
        padding: 20px 0 0;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 10px;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        margin-top: 16px;
        text-align: center;
        font-size: 9px;
    }
}

.footer-copyright__txt {
    color: #000;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .footer-copyright__txt {
        font-size: 9px;
        line-height: 1.66667;
    }
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 110;
}

/*  header-container
--------------------------------------------- */
.header-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    padding: 20px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 751px) {
    .header-container {
        margin: 0 auto;
        min-width: 1000px;
    }
}

@media screen and (max-width: 750px) {
    .header-container {
        padding: 10px;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    width: 110px;
}

@media screen and (max-width: 750px) {
    .header-logo {
        width: 65px;
        font-size: 20px;
    }
}

.header-logo__link {
    display: block;
}

@media screen and (min-width: 751px) {
    .header-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-logo__link:hover {
        opacity: 0.7;
    }
}

/*  header-box
--------------------------------------------- */
.header-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    padding: 0px 10px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 751px) {
    .header-box {
        margin: 0 auto;
        min-width: 1000px;
    }
}

@media screen and (max-width: 750px) {
    .header-box {
        padding: 10px;
        width: 100%;
    }
}
.header-box__txt {
    color: #000;
    font-size: 10px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
}
.header-box__txt h6 {
    font-size: 22px;
    padding-right: 10px;
}
.header-box__txt p {
    font-size: 10px;
    line-height: 1.2;
}

@media screen and (max-width: 750px) {
    .header-box__txt {
        font-size: 9px;
        flex-direction: column;
    }
    .header-box__txt h6 {
        font-size: 9px;
    }
}

/*  header-sns-nav
--------------------------------------------- */
.header-sns-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
}
.header-sns-nav h6 {
    font-size: 21px;
    font-weight: 900;
    line-height: 30px;
    margin-right: 16px;
}
.header-sns-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    margin-top: 0;
    font-size: 0;

    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 750px) {
    .header-sns-nav__list {
        margin-top: 0;
    }
    .header-sns-nav h6 {
        display: none;
    }
}

.header-sns-nav__list-item {
    width: 30px;
}

@media screen and (min-width: 751px) {
    .header-sns-nav__list-item {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-sns-nav__list-item:hover {
        opacity: 0.7;
    }
}

.header-sns-nav__list-item:nth-of-type(1) {
    margin-right: 10px;
}

@media screen and (max-width: 750px) {
    .header-sns-nav__list-item:nth-of-type(1) {
        margin-right: 8px;
    }
}

@media screen and (min-width: 751px) {
    .header-sns-nav__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-sns-nav__link:hover {
        opacity: 0.7;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-bg
--------------------------------------------- */
.c-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image: url(../img/bg_top_red.svg), url(../img/bg_top_gray.svg);
    background-size: 27vw, 20vw;
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    /* background: url(../img/bg_top.png) no-repeat top center;
    background-size: 4000px auto; */
}
@media screen and (min-width: 1350px) {
    .c-bg {
      background-image: url(../img/bg_top_red.svg), url(../img/bg_top_gray.svg);
      background-size: 34vw, 20vw;
      background-repeat: no-repeat;
      background-position: top left, bottom right;
    }
}
@media screen and (max-width: 750px) {
    .c-bg {
      background-image: url(../img/bg_top_red.svg), url(../img/bg_top_gray.svg);
      background-size: 46vw, 46vw;
      background-repeat: no-repeat;
      background-position: top left, bottom right;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block {
    padding-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .c-block {
        padding: 0 25px;
    }
}

.c-block__name {
    margin-top: 3px;
    padding-bottom: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 2.25;
}

@media screen and (max-width: 750px) {
    .c-block__name {
        margin-top: 7px;
        padding-bottom: 28px;
        line-height: 1.375;
    }
}

.c-block__name--strong {
    border-bottom: none;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
}

.c-block__intro {
    margin-top: 25px;
    font-size: 16px;
    line-height: 2;
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
.c-box {
    background: transparent;
    margin-top: 77px;
}
.c-box.c-box__article {
    margin-top: 0;
}
@media screen and (max-width: 750px) {
    .c-box, .c-box.c-box__article {
        margin-top: 39px;
        padding: 0;
    }
}

.c-box__container {
    margin: 0 auto;
    padding: 10px 150px 30px;
    width: 1000px;
}
@media screen and (max-width: 750px) {
    .c-box__container {
        padding: 50px 20px 0px;
        width: 100%;
    }
}

.c-box__container.c-box__container_under {
    padding: 65px 150px 0 150px;
}

@media screen and (max-width: 750px) {
    .c-box__container.c-box__container_under {
        padding: 0 20px;
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    background: transparent;
    color: #E82721;
    font-weight: 600;
    line-height: 60px;
    position: relative;
    z-index: 0;
    display: block;
    padding: 0;
    width: 250px;
    height: 60px;
    text-align: center;
}
.c-btn:hover {
    background: transparent;
    color: #FFF;
}
.c-btn::before{
    width: 250px;
    height: 60px;
    transform: skewX(-30deg);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: linear-gradient(to bottom, #FFF 0%, #FFF 100%);
    border: 1px solid #E82721;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.c-btn:hover::before{
    width: 250px;
    height: 60px;
    transform: skewX(-30deg);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-image: linear-gradient(to bottom, #EE736E 0%, #E82721 100%);
    border: 1px solid #E82721;
    border: 0;
    opacity: 1;
}
.c-btn01::after {
    background: url(../img/icon-prev-red.svg) no-repeat top center;
    content: "";
    display: block;
    background-size: cover;
    width: 16px;
    height: 17px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.c-btn01:hover::after {
    background: url(../img/icon-prev-white.svg) no-repeat top center;
    width: 16px;
    height: 17px;
}
.c-btn02::after {
    background: url(../img/icon-next-red.svg) no-repeat top center;
    content: "";
    display: block;
    background-size: cover;
    width: 16px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.c-btn02:hover::after {
    background: url(../img/icon-next-white.svg) no-repeat top center;
    width: 16px;
    height: 17px;
}

@media screen and (min-width: 751px) {
    .c-btn:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 750px) {
    .c-btn,
    .c-btn:hover {
        width: 95%;
        height: 50px;
        margin: 0;
        padding: 0;
        font-size: 21px;
        line-height: 50px;
    }
    .c-btn::before,
    .c-btn:hover::before {
        width: 100%;
        height: 100%;
        left: -0.5%;
    }
    .c-btn:after,
    .c-btn:hover::after {
        display: none !important;
    }
}

.c-btn__inner {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 0;
}

@media screen and (max-width: 750px) {
    .c-btn__inner {
        padding: 8px 5px;
    }
}

.c-btn__txt {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.33333;
}

@media screen and (max-width: 750px) {
    .c-btn__txt {
        font-size: 18px;
    }
}

.c-btn-footer {
    background: transparent;
    color: #FFF;
    font-weight: 600;
    line-height: 60px;
    position: relative;
    z-index: 0;
    display: block;
    padding: 0;
    width: 300px;
    height: 60px;
}
.c-btn-footer::before{
    width: 350px;
    height: 60px;
    transform: skewX(-30deg);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -24px;
    z-index: -1;
    border: 1px solid #E82721;
    background-image: linear-gradient(to bottom, #EE736E 0%, #E82721 100%);
    transition: all 2s;
}
.c-btn-footer::after {
    content: "";
    display: block;
    background: url(../img/icon_link.svg) no-repeat top center;
    background-size: cover;
    width: 16px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.c-btn-footer:hover {
    background-image: unset;
    background-color: transparent;
    color: #E82721;
}
.c-btn-footer:hover::before{
    background-image: linear-gradient(to bottom, #FFF 0%, #FFF 100%);
    border: 1px solid #E82721;
}
.c-btn-footer:hover::after {
    background: url(../img/icon-link-red.svg) no-repeat top center;
    border: 0;
}
@media screen and (max-width: 750px) {
    .c-btn-footer {
        margin: 0 auto;
        width: 70%;
        font-size: 21px;
    }
    .c-btn-footer::before {
        width: 120%;
        left: -10%;
    }
    .c-btn-footer::after{
        width: 21px;
        height: 24px;
        right: 1%;
    }
}
/* ---------------------------------------------
*   c-chapter
--------------------------------------------- */
.c-chapter:nth-of-type(n+2) {
    margin-top: 97px;
}

@media screen and (max-width: 750px) {
    .c-chapter:nth-of-type(n+2) {
        margin-top: 70px;
    }
}


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

.c-chapter__ttl_under {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
    .c-chapter__ttl_under {
        font-size: 36px;
        line-height: 1.4;
    }
}
.c-chapter h3 {
    background: url(../img/bg_h3_article.png) no-repeat left top;
    background-size: cover;
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto 25px auto;
    padding: 10px;
    height: 42px;
    width: 100%;
}
@media screen and (min-width: 751px) {
    .c-chapter h3 br {
        display: none;
    }
}
@media screen and (max-width: 750.98px) {
    .c-chapter h3 {
        background: none;
        background-size: auto 100%;
        font-size: 22px;
        line-height: 1.4;
        padding: 0 0 3px 10px;
        height: auto;
        width: 100%;
        color: #000;
        border-left: solid 5px #E71F19;
    }
    .c-chapter h3 br {
        display: block;
    }
}

.c-chapter__article p {
    margin: 0 auto 1em auto;
    font-size: 14px;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .c-chapter__article p {
        font-size: 18px;
        line-height: 1.8;
    }
}
.c-chapter__article figure {
    margin: 0 auto 60px auto;
    font-size: 14px;
    line-height: 1.8;
}
.c-chapter__article figure p {
  margin: 10px 0 0 0;
  font-size: 80%;
}

.c-chapter__ttl-txt {
    display: block;
    margin-top: 26px;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .c-chapter__ttl-txt {
        margin-top: 20px;
        line-height: 1.5;
    }
}

.c-chapter__txt {
    margin-top: 27px;
}

@media screen and (max-width: 750px) {
    .c-chapter__txt {
        margin-top: 17px;
    }
}

.c-chapter__belong {
    text-align: center;
    font-size: 16px;
    line-height: 1.625;
}

.c-chapter__name {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.45455;
}

@media screen and (max-width: 750px) {
    .c-chapter__name {
        margin-top: 4px;
    }
}

.c-chapter__list-ol {
    display: flex;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    margin-top: 50px;
    width: 100%;
}

.c-chapter__list-ol li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 50px;
    width: 100%;
    height: auto;

    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
}
@media screen and (max-width: 750px) {
    .c-chapter__list-ol li {
        flex-direction: column;
        justify-content: flex-start;
    }
}
.c-chapter__list-ol li a {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    font-weight: 900;
    line-height: 37px;
}
@media screen and (max-width: 400.98px) {
    .c-chapter__list-ol li a {
        font-size: 26px;
        line-height: 1.25;
    }
}
.c-chapter__list-ol li a:nth-child(1) {
    padding: 5px 0;
    background: url(../img/img_list_more.png) no-repeat;
    background-position: 90% 100%;
    background-size: auto 20px;
    width: 54%;
    -webkit-transition: background-position 300ms;
    transition: background-position 300ms;
}
.c-chapter__list-ol li a:nth-child(1):hover {
    background: url(../img/img_list_more.png) no-repeat;
    background-size: auto 20px;
    background-position: 100% 100%;
}

.c-chapter__list-ol li a:nth-child(1) img{
    margin: 0 10px 0 0;
    width: 110px;
    height: auto;
}
.c-chapter__list-ol li a:nth-child(1) span{
    padding: 25px 0;
}
.c-chapter__list-ol li a:nth-child(2) {
    width: 46%;
    -webkit-transition: background-position 300ms;
    transition: background-position 300ms;
}
.c-chapter__list-ol li a:nth-child(2):hover {
    opacity: 0.8;
}
.c-chapter__list-ol li a:nth-child(2) img{
    margin: 0 0 0 auto;
    height: auto;
    width: 300px;
}
@media screen and (max-width: 750px) {
    .c-chapter__list-ol li a:nth-child(1),
    .c-chapter__list-ol li a:nth-child(2) {
        width: 100%;
    }
    .c-chapter__list-ol li a:nth-child(1),
    .c-chapter__list-ol li a:nth-child(1):hover {
        background-image: none;
    }
    .c-chapter__list-ol li a:nth-child(2) {
        padding: 5px 0 30px 0;
        background: url(../img/img_list_more.png) no-repeat;
        background-position: 0 100%;
        background-size: auto 25px;
        width: 100%;
        -webkit-transition: background-position 300ms;
        transition: background-position 300ms;
    }
    .c-chapter__list-ol li a:nth-child(2):hover {
        background: url(../img/img_list_more.png) no-repeat;
        background-size: auto 26px;
        background-position: 100% 100%;
    }
    .c-chapter__list-ol li a:nth-child(2) img {
        width: 100%;
    }

}
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    position: relative;
    height: 989px;
    background: url(../img/bg_top.png) 50% 50% no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-kv {
        height: 257px;
        background: url(../img/sp/img_kv.jpg) 50% 50% no-repeat;
        background-size: cover;
    }
}

.c-kv__container {
    margin: 0 auto;
    width: 800px;
}

@media screen and (max-width: 750px) {
    .c-kv__container {
        width: 89.33333vw;
    }
}

.c-kv__img {
    margin-top: -25px;
}

@media screen and (max-width: 750px) {
    .c-kv__img {
        margin-top: 5.33333vw;
    }
}

/* ---------------------------------------------
*   c-prof
--------------------------------------------- */
.c-prof {
    font-size: 16px;
    line-height: 2.0;
}

@media screen and (max-width: 750px) {
    .c-prof {
        margin: 0 15px;
    }
}

.c-prof__container {
    padding: 25px 40px 29px 29px;
}

@media screen and (max-width: 750px) {
    .c-prof__container {
        padding: 16px 6.66667vw 22px 4vw;
    }
}

.c-prof__name {
    margin-bottom: 12px;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .c-prof__name {
        margin-bottom: 12px;
    }
}

.c-prof__txt {
    font-size: 14px;
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.c-section-1__container {
    margin: 0 auto;
    width: 1000px;
}
.c-section-1__container.c-section-1__container-article {
    width: 700px;
}

@media screen and (max-width: 750px) {
    .c-section-1 {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .c-section-1__container {
        padding: 0;
        width: 100%;
    }
    .c-section-1__container.c-section-1__container-article {
        padding: 0;
        width: 100%;
    }
}

@media screen and (max-width: 374px) {
    .c-section-1__container {
        padding: 0;
    }
}

/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    position: relative;
    z-index: 100;
    margin: 0;
    padding-top: 100px;
    width: 100%;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-ttl {
        padding-top: 83px;
        width: 90%;
        margin: 0 auto;
    }
    .c-section-1__container-article .c-ttl {
        width: 100%;
        padding: 100px 15px 0 15px;
    }
}
.c-ttl__under {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 400.98px) {
    .c-ttl__under-txt {
        width: 100%;
    }
    .c-ttl__under-number {
        margin-left: 10px;
        position: relative;
        top: -2.5vw;
    }
}
@media screen and (min-width:401px) and (max-width: 600.98px) {
    .c-ttl__under-txt {
        width: 90%;
    }
    .c-ttl__under-number {
        margin-left: 10px;
        top: -2.5vw;
    }
}
@media screen and (min-width:601px) and (max-width: 750.98px) {
    .c-ttl__under-txt {
        width: 60%;
    }
    .c-ttl__under-number {
        margin-left: 10px;
    }
}
@media screen and (max-width: 750.98px){
    .c-ttl__under-txt img.pc {
        display: none;
    }
    .c-ttl__under-txt img.sp {
        display: block;
    }
}
@media screen and (min-width: 751px) {
    .c-ttl__under-txt img.pc {
        display: block;
        width: 388px;
    }
    .c-ttl__under-txt img.sp {
        display: none;
    }
    .c-ttl__under-number {
        margin-left: 20px;
    }
}

.c-breadcrumb {
    display: flex;
    justify-content: flex-start;
    margin: 50px auto 0 auto;
    width: 100%;
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-breadcrumb {
        padding: 0 25px;
    }
}
.c-breadcrumb li {
    position: relative;
    font-size: 12px;
    font-weight: 700;
}
.c-breadcrumb li:nth-child(1) {
    margin-right: .5em;
}
.c-breadcrumb li:nth-child(1)::after {
    content: ">";
    padding-left: .5em;
}
.c-breadcrumb li:nth-child(1) a {
    text-decoration: underline;
}
@media screen and (max-width: 750px) {
    .c-breadcrumb li {
        font-size: 16px;
    }
}

.c-lead {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
}

@media screen and (max-width: 750.98px) {
    .c-lead {
        width: 100%;
        padding: 0 25px;
    }
    .c-lead > br.pc {
        display: none !important;
    }
}
@media screen and (min-width: 751px) {
    .c-lead {
        width: 420px;
    }
    .c-lead > br.pc {
        display: block !important;
    }
}

.c-lead__under {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
    width: 100%;
}
@media screen and (max-width: 750px) {
    .c-lead__under{
        font-size: 18px;
        padding: 40px 25px;
    }
}


.c-figure {
    margin: 0;
    padding: 0;
}
.c-figure img {
    height: auto;
}
@media screen and (min-width: 751px) {
    .c-figure {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 400px;
        width: 140%;
        max-width: 1500px;
        min-width: 1379px;
        height: auto;
    }
    .c-figure img.pc {
        display: block;
    }
    .c-figure img.sp {
        display: none;
    }
}
@media screen and (max-width: 750.98px) {
    .c-figure {
        margin: 0 auto;
        padding-top: 25px;
        position: relative;
        top: auto;
        bottom: auto;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        min-width: 100vw;
    }
    .c-figure img.sp {
        display: block;
        width: 100%;
        height: auto;
    }
    .c-figure img.pc {
        display: none;
    }
}

.c-figure__under {
    margin: 0 auto;
    padding: 0;
    position: relative;
    bottom: 0;
    width: 700px;
    height: auto;
}
.c-figure__under figure {
    position: relative;
    top: -20px;
    z-index: -1;
}
@media screen and (min-width: 751px) {
    .c-figure__under figure img.pc {
        display: block;
    }
    .c-figure__under figure img.sp {
        display: none;
    }
}
@media screen and (max-width: 750.98px) {
    .c-figure__under {
        width: 100vw;
        height: auto;
    }
    .c-figure__under figure{
        top: -4vw;
        width: 100%;
        height: auto;
    }
    .c-figure__under figure img.pc {
        display: none;
    }
    .c-figure__under figure img.sp {
        display: block;
    }
}

.c-comment {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
}

@media screen and (min-width: 751px) {
    .c-comment.c-comment-pc {
        display: flex !important;
    }
    .c-comment.c-comment-sp,
    .c-comment.c-comment-sp img {
        display: none !important;
    }
    .c-comment.c-comment-pc img {
        display: block;
        width: 337px;
    }
}
@media screen and (max-width: 750.98px) {
    .c-comment.c-comment-pc,
    .c-comment.c-comment-pc img {
        display: none !important;
    }
    .c-comment.c-comment-sp {
        display: flex !important;
        padding: 0 5vw;
    }
    .c-comment.c-comment-sp img {
        display: block;
        width: 43.5vw;
    }
}
@media screen and (max-width: 400.98px) {
        .c-comment.c-comment-sp img {
        display: block;
        width: 42vw;
    }
}

.c-ttl__main {
    display: block;
    font-size: 0;
}

@media screen and (max-width: 750px) {
    .c-ttl__main {
        position: relative;
    }
}

.c-ttl__main-txt {
    position: relative;
    display: inline-block;
    padding-bottom: 21px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .c-ttl__main-txt {
        display: block;
        padding-bottom: 18px;
        border-width: 0;
        font-size: 44px;
        line-height: 1.31818;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    margin: 0 auto;
    margin-top: 45px;
    width: 800px;
}

@media screen and (max-width: 750px) {
    .c-txt {
        margin-top: 33px;
        padding: 0 5px;
        width: 100%;
    }
}

.c-txt__content {
    color: #fff;
    font-size: 16px;
    line-height: 2;
}

.c-pager {
    display: block;
    margin: 0 auto 50px auto;
    width: 900px;
    height: auto;
}
@media screen and (max-width: 750px) {
    .c-pager {
        margin: 0 auto 50px auto;
        padding: 0 ;
        width: calc(100% - 30px);
    }
}
.c-pager ul {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.c-pager li {
    width: 30%;
    padding: 0;
}
@media screen and (max-width: 750px) {
    .c-pager li{
        width: 34%;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-fade
--------------------------------------------- */
.js-fade {
    opacity: 0;
    -webkit-transition: opacity .6s ease-out, -webkit-transform .6s;
    transition: opacity .6s ease-out, -webkit-transform .6s;
    transition: opacity .6s ease-out, transform .6s;
    transition: opacity .6s ease-out, transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
}

.js-fade.is-fade {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* ---------------------------------------------
*   js-fadein
--------------------------------------------- */
.js-fadein {
    opacity: 0;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.js-fadein.is-fadein {
    opacity: 1;
}

/* ---------------------------------------------
*   js-fadeup
--------------------------------------------- */
.js-fadeup {
    opacity: 0;
    -webkit-transition: opacity .6s ease-out, -webkit-transform .6s;
    transition: opacity .6s ease-out, -webkit-transform .6s;
    transition: opacity .6s ease-out, transform .6s;
    transition: opacity .6s ease-out, transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
}

.js-fadeup.is-fadeup {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */


/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

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

.mgt-pc--15 {
    margin-top: 15px !important;
}

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

.mgt-pc--25 {
    margin-top: 25px !important;
}

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

.mgt-pc--35 {
    margin-top: 35px !important;
}

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

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

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

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 1.33333vw !important;
    }
    .mgt-sp--10 {
        margin-top: 2.66667vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4vw !important;
    }
    .mgt-sp--20 {
        margin-top: 5.33333vw !important;
    }
    .mgt-sp--25 {
        margin-top: 6.66667vw !important;
    }
    .mgt-sp--30 {
        margin-top: 8vw !important;
    }
    .mgt-sp--35 {
        margin-top: 9.33333vw !important;
    }
    .mgt-sp--40 {
        margin-top: 10.66667vw !important;
    }
    .mgt-sp--45 {
        margin-top: 12vw !important;
    }
    .mgt-sp--50 {
        margin-top: 13.33333vw !important;
    }
    .mgt-sp--55 {
        margin-top: 14.66667vw !important;
    }
    .mgt-sp--60 {
        margin-top: 16vw !important;
    }
    .mgt-sp--65 {
        margin-top: 17.33333vw !important;
    }
    .mgt-sp--70 {
        margin-top: 18.66667vw !important;
    }
    .mgt-sp--75 {
        margin-top: 20vw !important;
    }
    .mgt-sp--80 {
        margin-top: 21.33333vw !important;
    }
    .mgt-sp--85 {
        margin-top: 22.66667vw !important;
    }
    .mgt-sp--90 {
        margin-top: 24vw !important;
    }
    .mgt-sp--95 {
        margin-top: 25.33333vw !important;
    }
    .mgt-sp--100 {
        margin-top: 26.66667vw !important;
    }
    .mgt-sp--105 {
        margin-top: 28vw !important;
    }
    .mgt-sp--110 {
        margin-top: 29.33333vw !important;
    }
    .mgt-sp--115 {
        margin-top: 30.66667vw !important;
    }
    .mgt-sp--120 {
        margin-top: 32vw !important;
    }
    .mgt-sp--125 {
        margin-top: 33.33333vw !important;
    }
    .mgt-sp--130 {
        margin-top: 34.66667vw !important;
    }
    .mgt-sp--135 {
        margin-top: 36vw !important;
    }
    .mgt-sp--140 {
        margin-top: 37.33333vw !important;
    }
    .mgt-sp--145 {
        margin-top: 38.66667vw !important;
    }
    .mgt-sp--150 {
        margin-top: 40vw !important;
    }
    .mgt-sp--155 {
        margin-top: 41.33333vw !important;
    }
    .mgt-sp--160 {
        margin-top: 42.66667vw !important;
    }
    .mgt-sp--165 {
        margin-top: 44vw !important;
    }
    .mgt-sp--170 {
        margin-top: 45.33333vw !important;
    }
    .mgt-sp--175 {
        margin-top: 46.66667vw !important;
    }
    .mgt-sp--180 {
        margin-top: 48vw !important;
    }
    .mgt-sp--185 {
        margin-top: 49.33333vw !important;
    }
    .mgt-sp--190 {
        margin-top: 50.66667vw !important;
    }
    .mgt-sp--195 {
        margin-top: 52vw !important;
    }
    .mgt-sp--200 {
        margin-top: 53.33333vw !important;
    }
    .mgt-sp--205 {
        margin-top: 54.66667vw !important;
    }
    .mgt-sp--210 {
        margin-top: 56vw !important;
    }
    .mgt-sp--215 {
        margin-top: 57.33333vw !important;
    }
    .mgt-sp--220 {
        margin-top: 58.66667vw !important;
    }
    .mgt-sp--225 {
        margin-top: 60vw !important;
    }
    .mgt-sp--230 {
        margin-top: 61.33333vw !important;
    }
    .mgt-sp--235 {
        margin-top: 62.66667vw !important;
    }
    .mgt-sp--240 {
        margin-top: 64vw !important;
    }
    .mgt-sp--245 {
        margin-top: 65.33333vw !important;
    }
    .mgt-sp--250 {
        margin-top: 66.66667vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

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

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

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

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

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

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

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

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 1.33333vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 2.66667vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 5.33333vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 6.66667vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 9.33333vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 10.66667vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 13.33333vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 14.66667vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 17.33333vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 18.66667vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 21.33333vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 22.66667vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 25.33333vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 26.66667vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 29.33333vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 30.66667vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 33.33333vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 34.66667vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 36vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 37.33333vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 38.66667vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 40vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 41.33333vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 42.66667vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 44vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 45.33333vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 46.66667vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 48vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 49.33333vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 50.66667vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 52vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 53.33333vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 54.66667vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 56vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 57.33333vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 58.66667vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 60vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 61.33333vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 62.66667vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 64vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 65.33333vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 66.66667vw !important;
    }
}
