@charset "utf-8";


main.fs-l-main {
    margin: 0;
    width: auto;
    max-width: none;
    display: block;
    padding: 0;
}

section.fs-l-pageMain {
    max-width: none;
}

.fs-preview-header {
    display: none;
}

.fs-c-productList {
    max-width: 108rem;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

.fs-c-productList {
    display: none;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: calc(100vw / 128);
}

@media screen and (min-width:1280px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", helvetica, sans-serif;
    font-size: 1.6rem;
    min-height: 100vh;
    color: #222;
    background: #fff;
    letter-spacing: .05em;
    line-height: 1.5;
}

body.open {
    overflow: hidden;
}

.wrap {
    overflow: hidden;
    width: 100%;
}

img[data-src] {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

img[data-src].lazyloaded {
    opacity: 1;
}

/* a:visited {
    color: inherit;
} */

a:hover {
    text-decoration: none;
}

div.main {
    width: 100%;
    overflow: hidden;
    /*padding-top: 8rem;*/
}


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

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, .08);
    box-shadow: 0 0 3rem rgba(0, 0, 0, .08);
    z-index: 1000;
    background: #fefefe;
    width: 100%;
    height: 8rem;
    /*font-family: "Noto Serif JP", serif;*/
}

.header_inner {
    max-width: 108rem;
    margin: 0 auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header h2 img {
    height: 5.1rem;
}

.h_menu {
    margin-left: auto;
}

.dw_cnt ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dw_cnt ul li {
    margin-left: 5rem;
}

.dw_cnt ul li:first-child {
    margin-left: 0;
}

.dw_cnt ul li a {
    font-size: 1.5rem;
    font-weight: 400;
    color: #222;
}

.h_icon {
    margin-left: 5rem;
    margin-left: auto;
}

.h_icon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h_icon ul li {
    margin-left: .4rem;
}

.h_icon ul li:first-child {
    margin-left: 0;
}

@media screen and (max-width:768px) {
    html {
        font-size: calc(100vw / 37.5);
    }

    .pc_style {
        display: none;
    }

    header {
        height: 5rem;
        padding: 0 1rem;
    }

    div.main {
        padding-top: 5rem;
    }

    .header_inner {
        position: relative;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    header h2 img {
        height: 3.8rem;
    }

    .h_menu {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .h_icon {
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .h_icon ul {
        height: 100%;
    }

    .dw_button_box {
        width: 5rem;
        height: 5rem;
        position: relative;
        z-index: 1001;
    }

    .dw_button {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }

    .dw_button span, .dw_button::after, .dw_button::before {
        content: "";
        display: block;
        width: 1.8rem;
        height: .2rem;
        background: #222;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .dw_button::before {
        top: -1.2rem;
    }

    .dw_button::after {
        bottom: -1.2rem;
    }

    .dw_button.active span {
        opacity: 0;
    }

    .dw_button.active::before {
        top: 0;
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
    }

    .dw_button.active::after {
        bottom: 0;
        -webkit-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
    }

    .dw_cnt {
        background: #fefefe;
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 0;
        width: 100%;
        height: 100%;
        -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, .08) inset;
        box-shadow: 0 0 3rem rgba(0, 0, 0, .08) inset;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
    }

    .dw_cnt.open {
        -webkit-animation: dwAnimationOpen .3s linear forwards;
        animation: dwAnimationOpen .3s linear forwards;
    }

    .dw_cnt.close {
        -webkit-animation: dwAnimationClose .3s linear forwards;
        animation: dwAnimationClose .3s linear forwards;
    }

    @-webkit-keyframes dwAnimationOpen {
        0% {
            z-index: 1000;
            opacity: 0;
        }

        1% {
            z-index: 1000;
            opacity: 0;
        }

        100% {
            z-index: 1000;
            opacity: 1;
            pointer-events: auto;
        }
    }

    @keyframes dwAnimationOpen {
        0% {
            z-index: 1000;
            opacity: 0;
        }

        1% {
            z-index: 1000;
            opacity: 0;
        }

        100% {
            z-index: 1000;
            opacity: 1;
            pointer-events: auto;
        }
    }

    @-webkit-keyframes dwAnimationClose {
        0% {
            z-index: 1000;
            opacity: 1;
            pointer-events: none;
        }

        99% {
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
        }

        100% {
            z-index: -1;
            opacity: 0;
            pointer-events: none;
        }
    }

    @keyframes dwAnimationClose {
        0% {
            z-index: 1000;
            opacity: 1;
            pointer-events: none;
        }

        99% {
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
        }

        100% {
            z-index: -1;
            opacity: 0;
            pointer-events: none;
        }
    }

    .dw_cnt ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
        margin-top: -2.5rem;
    }

    .dw_inner {
        height: 100%;
    }

    .dw_cnt ul li {
        margin-left: 0;
        margin-bottom: 5rem;
    }

    .dw_cnt ul li a {
        font-size: 1.8rem;
    }
}

/* footer */

footer {
    background: #222;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    padding: 4rem 0;
}

ul.f_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

ul.f_menu li {
    margin: 0 2.5rem;
}

ul.f_menu li a {
    font-size: 1.3rem;
    font-weight: 500;
}

ul.f_menu.top {
    margin-bottom: 2rem;
}

ul.f_menu.bottom li {
    margin: 0;
}

ul.f_menu.bottom li:nth-child(2)::after, ul.f_menu.bottom li:nth-child(2)::before {
    content: "｜";
    font-size: 1.2rem;
    font-weight: 500;
}

ul.f_menu.bottom li a {
    font-size: 1.2rem;
    font-weight: 500;
}
a[href^="mailto"]{
    color: #fff!important;
}

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

    footer {
        padding: 1rem 2rem 3rem;
    }

    ul.f_menu.top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    ul.f_menu.top li {
        width: 16.2rem;
        margin: 0;
        padding: 1rem 0;
        border-bottom: .1rem solid #ccc;
    }

    ul.f_menu.top li:nth-child(odd) {
        margin-right: .5rem;
    }

    ul.f_menu.top li:nth-child(even) {
        margin-left: .5rem;
    }

    ul.f_menu li a {
        font-size: 1.2rem;
    }

    ul.f_menu.bottom li a {
        font-size: 1.1rem;
    }

    ul.f_menu.bottom li:nth-child(2)::after, ul.f_menu.bottom li:nth-child(2)::before {
        font-size: 1rem;
    }

    ul.f_menu.bottom li {
        font-size: 0;
        letter-spacing: 0;
    }

    ul.f_menu.bottom {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}


/* area */
.area {
    padding: 8rem 0;
}

.area_inner {
    max-width: 98rem;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .area {
        padding: 6rem 0;
    }
    .area_inner {
        padding: 0 2rem;
    }
}

/* corp_common */

.corp_common_title {
    font-family: "Noto Serif JP", serif;
    text-align: center;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.corp_common_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23.2rem;
    height: 5.7rem;
    line-height: 5.7rem;
    /*font-family: "Noto Serif JP", serif;*/
    font-weight: 400;
    color: #222;
    text-align: center;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.4rem 0.4rem;
    margin-left: auto;
    margin-top: 3rem;
    background: rgb(255, 255, 255);
    border-radius: 10rem;
}

.corp_common_btn span {
    margin-left: 1.1rem;
    width: 1rem;
}

.corp_common_btn span img {
    display: block;
    margin-top: .2rem;
    width: 100%;
}

@media screen and (max-width:768px) {
    .corp_common_title {
        font-size: 2.6rem;
    }

    .corp_common_btn {
        margin-right: auto;
    }
}


/* mv_area */

.mv_area {
    position: relative;
    margin-bottom: 4rem;
}

.mv_box {
    position: absolute;
    height: 100%;
    bottom: 0;
    left: calc((100% - 136rem)/ 2);
}

.mv_b_title {
    font-family: "Noto Serif JP", serif;
    margin-top: 10rem;
    position: relative;
    font-size: 4.5rem;
    color: #21201f;
}

.mv_b_img {
    position: absolute;
    bottom: 0rem;
    margin-bottom: 7.8rem;
    max-width: 40rem;
}

.mv_b_btn {
    text-align: center;
    position: absolute;
    left: calc(40rem / 2);
    transform: translateX(-50%);
    z-index: 1;
    max-width: 40rem;
    bottom: 3rem;
}

.mv_b_btn a {
    display: inline-block;
    width: 24rem;
    line-height: 6rem;
    background: #222;
    border-radius: 10rem;
    -webkit-box-shadow: .3rem .3rem 0 #8394ea;
    box-shadow: .3rem .3rem 0 #8394ea;
}

.mv_b_btn a img {
    vertical-align: middle;
    height: 2.3rem;
}

.mv_b_btn a:hover {
    opacity: 1;
    position: relative;
    top: .3rem;
    left: .3rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mv_icon {
    display: flex;
    justify-content: flex-end;
}
.mv_icon a.icon_img {
    width: 40rem;
    height: 16rem;
    text-indent: -9999px;
    margin-top: -8rem;
    background: url(../images/item_linkicon.png) no-repeat 80%/70%;
}
.mv_icon a.icon_img:hover {
    /*opacity: 10;*/
    position: relative;
    top: .3rem;
    left: .3rem;
    background: url(../images/item_linkicon_hover.png) no-repeat 80%/70%;
}

@media screen and (max-width:1380px) {
    .mv_b_title {
        margin-top: 4rem;
    }
    .mv_box {
        left: 2rem;
    }
    .mv_b_btn{
        right: 10rem;
    }

}


@media screen and (max-width:768px) {
    .mv_area {
        z-index: 1;
        margin-bottom: -5rem;
    }

    .mv_img img {
        width: 100%;
    }

    .mv_box {
        left: 0;
        bottom: -5.5rem;
        max-width: none;
        width: 100%;
    }

    .mv_b_title {
        margin-top: 0;
        padding-left: 2rem;
    }

    .mv_b_img {
        position: absolute;
        left: 2rem;
        bottom: 20rem;
        margin: 0;
        width: calc(30.2rem / 2);
        height: calc(20rem / 2);
    }

    .mv_b_title h1 {
        font-size: 2.4rem;
    }

    .mv_b_btn {
        position: absolute;
        bottom: 20rem;
        right: 10rem;
        margin: 0;
        padding-left: 1rem;
        padding-top: 3.5rem;
    }

    .mv_b_btn a {
        text-align: center;
        width: 18rem;
        line-height: 4.4rem;
    }

    .mv_b_btn a img {
        height: 1.8rem;
        vertical-align: text-top;
    }
    .mv_icon a.icon_img{
      margin-top: 0;
      background: url(../images/item_linkicon.png) no-repeat 50% / 55%;
    }

}


/* message_area */

.message_area {    
    overflow: hidden;
}

.message_text {
    font-size: 1.8rem;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.message_area02 .message_text {
    margin: 6rem auto;
}

.message_area02 {
    padding-bottom: 0;
}

.message_img {
    max-height: 75.7rem;
}

.message_img img {
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width:768px) {
    .message_text {
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: -0.01em;
    }

    .message_area01 .message_text {
        text-align: left;
    }
}


/* btn_area */

.btn_area {
    background-color: #f8f8f9;
    padding: 6rem 0;
}

.btn_area_inner {
    text-align: center;
}

.btn_area_inner a {
    display: inline-block;
    max-width: 50rem;
    line-height: 8rem;
    width: 100%;
    background: #1a286d;
    position: relative;
    border-radius: 10rem;
    -webkit-box-shadow: 0 .5rem 0 #8394ea;
    box-shadow: 0 .5rem 0 #8394ea;
}

.btn_area_inner a img {
    vertical-align: middle;
}

.btn_area_inner a img.btn_text {
    /*height: 4.9rem;*/
    height: 3.5rem;
}

.btn_area_inner a img.btn_icon {
    position: absolute;
    top: -2.7rem;
    right: 4rem;
    height: 8.6rem;
}

.btn_area_inner a:hover {
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: .5rem;
}

@media screen and (max-width:768px) {
    .btn_area_inner a {
        max-width: none;
        width: calc(100% - 4rem);
        line-height: 7.3rem
    }

    .btn_area_inner a img.btn_text {
        /*height: 4.6rem*/
        height: 2.6rem;
    }

    .btn_area_inner a img.btn_icon {
        height: 6.5rem;
        right: 1rem
    }
}

/* item_order_btn */

.item_order_btn.btn_area {
    padding-bottom: 0;
}

.item_order_btn a {
    /*font-family: "Noto Serif JP", serif;*/
    font-weight: 400;
    font-size: 2rem;
    background-color: #262424;
    color: #fff;
    -webkit-box-shadow: 0 .5rem 0 #CDCDCD;
    box-shadow: 0 .5rem 0 #CDCDCD;
}
.item_order_btn a:hover{
    color: #fff!important;
}
.item_order_btn a span img {
    margin-bottom: .4rem;
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .item_order_btn a {
        font-size: 1.4rem;
    }

    .item_order_btn a span img {
        margin-left: .5rem;
        width: .8rem;
    }
}


/* eco_area */

.eco_area {
    background-color: #F1F1F1;
}

.eco_area_inner {
    max-width: 99.2rem;
}
.eco_inner_title , .uservoice_title{
  margin-bottom: 5rem;
}
.eco_head {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.4rem;
    padding-left: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    line-height: 1.3;
    border-bottom: .1rem solid #222;
}
.eco_box {
    display: flex;
}

.eco_b_img {
    max-width: 48.6rem;
    width: 100%;
}

.eco_item01 {
    margin-bottom: 8rem;
}

.eco_item01 .eco_b_img {
    margin-right: 3rem;
    /*max-width: 37.7rem;*/
}

.eco_item02 .eco_b_text {
    margin-right: 3rem;
}

.eco_item03 .eco_b_img {
    margin-right: 5rem;
}

.eco_fsc {
    background-color: #fff;
    margin: 4rem auto 9rem;
    padding: 5rem 2.5rem;
    border-radius: 1rem;
}

.eco_f_box {
    display: flex;
}

.eco_f_text {
    max-width: 83rem;
    margin-left: 4rem;
    font-size: 2.5rem;
}

.eco_f_img {
    width: 100%;
    max-width: 12.8rem;
}

.eco_f_video {
    width: 57rem;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.eco_f_video p {
    font-size: 2.5rem;
}

.eco_f_v_icon {
    display: block;
    max-width: 9.1rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*FSC*/
.item_c_intro {
    display: block!important;
    padding: 4rem;
}
.item_c_intro {
    margin: 8rem 0px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: left 3.3rem bottom;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.item_c_i_l_title {
    text-align: left;
    padding-top: 0;
    margin-bottom: 3rem;
}
.item_c_i_l_title strong {
    font-size: 2.4rem;
}
.item_c_i_box {
    display: flex;
    /*align-items: flex-end;*/
    justify-content: space-between;
}
.item_c_i_l {
    width: 100%;
    max-width: 50rem;
    padding-right: 5rem;
}
.item_c_i_video {
    width: 41.3rem;
    position: relative;
}

.item_c_i_l_text {
    margin-bottom: 2rem;
}
.item_c_i_l_text p {
    font-size: 1.5rem;
    text-align: left;
    color: #000000;
}

.item_c_i_r {
    width: 100%;
    border-radius: 1rem;
    background: #fff;
    border-radius: .5rem;
    padding: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
        box-shadow: 0 0 2rem rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, .25);
}
.item_c_i_r_r {
    max-width: 7rem;
    width: 100%;
    padding-top: 0;
}
.item_c_i_r_l {
    width: calc(100% - 6.1rem);
    padding-right: 0;
    padding-left: 2.1rem;
}
.item_c_i_r_l strong {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.item_c_i_r_l p {
    font-size: 1.3rem;
    margin: 1rem 0 0;
}
.item_c_i_v_icon {
    display: block;
    max-width: 9.1rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
small.fsctxt{
    position: relative;
    top: -.4rem;
    font-size: 100%;
}

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

    .eco_item01 {
        margin-bottom: 4rem;
    }

    .eco_item02 .eco_b_text {
        margin-right: auto;
    }

    .eco_head {
        font-size: 2rem;
    }

    .eco_box {
        flex-direction: column;
    }
    .eco_b_text p {
        margin-top: 2rem;
    }

    .eco_fsc {
        margin-bottom: 4rem;
        padding: 3rem 2rem;
    }

    .eco_f_text {
        max-width: 60%;
        margin-left: 2rem;
        font-size: 1.2rem;
    }

    .eco_f_video {
        width: 100%;
        margin-top: 2rem;
    }

    .eco_f_video p {
        font-size: inherit;
    }
    .item_c_intro {
        padding: 2rem;
    }
    .item_c_i_box{
          display: block;
    }
    .item_c_i_l{
      padding-right: 0;
    }
    .item_c_i_video {
        width: 100%;
        margin-top: 2rem;
    }
}

/* uservoice_area */

/*.uservoice_area {
    background-color: #F1F1F1;
}

.uservoice_title::after {
    content: "";
    display: block;
    width: 60rem;
    height: 0.1rem;
    background-color: #1b0d01;
    margin: 0 auto;
    margin-top: 3rem;
}

.uservoice_box {
    display: flex;
}

.uservoice_b_img {
    max-width: 40rem;
    width: 100%;
    margin-right: 3rem;
}

.uservoice_b_offer {
    background-color: #e5dcd4;
    padding: 2rem 1.5rem 2.4rem 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}*/

.uservoice_area2{
    padding: 0 0 8rem;
}
.uservoice_area2_box{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.voicebox_inner{
    width: calc(100% - 206rem / 3);
    border-radius: 1rem;
    padding: 2.4rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, .25);
}
.voicebox_inner p.voicebox_inner_ttl, .voicebox_inner p.voicebox_inner_star{
  font-size: 1.4rem;
}
.voicebox_inner p.voicebox_inner_star{
  color: #FFCC00;
  margin: 1rem 0;
}
.voicebox_inner p.voicebox_inner_star span{
  color: #222;
  font-size: 1.1rem;
}
.voicebox_text{
  font-size: 1.2rem;
}

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

    /*.uservoice_title::after {
        width: 100%;
    }
    .uservoice_box {
        flex-direction: column;
    }

    .uservoice_b_text {
        margin-top: 2rem;
    }

    .uservoice_b_offer {
        font-size: 1.4rem;
    }*/
    .uservoice_area2_box{
      display: block;
    }
    .voicebox_inner {
      width: 100%;
      margin-bottom: 2rem;
    }
    .voicebox_inner img{
      margin: 0 5rem;
    }
}


/* scene_area */

.scene_title {
    font-size: 3.5rem;
}

.scene_text {
    /*font-family: "Noto Serif JP", serif;*/
    font-weight: 500;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 8rem;
    font-weight: 300;
}

/*.scene_box {
    display: flex;
}
.scene_box+.scene_box {
    margin-top: 7rem;
}
.scene_b_img {
    width: calc((100% - 4rem) / 2) ;
}
.scene_b_desc {
    width: calc((100% - 4rem) / 2) ;
}
.scene_b_img+.scene_b_desc {
    margin-left: 4rem;
}
.scene_b_desc+.scene_b_img {
    margin-left: 4rem;
}
.scene_box+.scene_box {
    margin-top: 7rem;
}
*/
.scene_sec{
  display: flex;
  gap:5rem;
  flex-wrap: wrap;
}
.scene_box{
  width: calc(100% - 103rem / 2);
}


.scene_b_title {
    /*font-family: "Noto Serif JP", serif;*/
    font-size: 2.4rem;
    /*font-weight: 600;*/
    margin: 2rem 0 0;
}

.scene_b_text {
    margin: 2rem 0 1rem;
}

.scene_b_exam {
    display: flex;
    flex-wrap: wrap;
    padding: 1.8rem 1rem;
    border-top: .1rem solid #222;
    border-bottom: .1rem solid #222;
}

.scene_b_exam li {
    width: 33.3%;
}

.scene_box03 .scene_b_exam li {
    width: 100%;
}

@media screen and (max-width:768px) {
    .scene_title {
        font-size: 2.6rem;
        letter-spacing: -0.01em;
    }

    .scene_text {
        font-size: 1.8rem;
        margin-bottom: 6rem;
    }

    /*.scene_box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .scene_box:nth-child(even) {
        flex-direction: column-reverse;
    }

    .scene_box+.scene_box {
        margin-top: 4rem;
    }*/
    .scene_sec {
    gap: 2rem;
  }
    .scene_box {
    width: calc(94% / 2);
  }


  .scene_b_img , .scene_b_desc {
        width: 100%;
    }

    .scene_b_img + .scene_b_desc , .scene_b_desc + .scene_b_img {
        margin-left: 0;
    }

    .scene_b_desc {
        margin-top: 2rem;
    }

    .scene_b_title {
        font-size: 3.8vw;
        font-weight: bold;
    }

    .scene_b_text {
        margin: 2rem 0;
        font-size: 3vw;
    }

    .scene_b_exam {
        padding: 1rem .5rem;
    }

    .scene_b_exam li {
        font-size: 1.2rem;
    }
    .scene_b_exam li{
      width: 100%;
    }
}


/* lineup_area */

.lineup_area {
    background-color: #f8f8f9;
    padding-bottom: 0;
}

.lineup_cnt {
    background-color: #fff;
    padding: 5rem 2rem 4rem;
}

.lineup_cnt_inner {
    max-width: 80rem;
    margin: 0 auto;
}

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

/* lineup_select */

.lineup_select {
    padding: 5rem;
    max-width: 85rem;
    margin: auto;
    background-color: #fff;
}

.lineup_select h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    font-size: 2.8rem;
}

.lineup_select h4:before {
    margin-right: 1rem;
}

.lineup_select h4:after {
    margin-left: 1rem;
}

.lineup_select h4:before, .lineup_select h4:after {
    content: "";
    flex-grow: 1;
    border-top: .1rem solid #222;
}

.lineup_select h5 {
    padding: 0.5rem 1rem;
    border-left: 5px solid #222;
    color: #222;
    font-weight: 700;
    font-size: 2rem;
    text-align: left;
    margin: 5rem 0 3rem;
}

.lineup_s_font {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.lineup_s_f_item {
    margin-right: 2%;
    margin-bottom: 5%;
    width: calc(94% / 3);
    text-align: center;
}

.lineup_s_f_item:nth-child(3n) {
    margin-right: 0;
}

.lineup_s_box {
    display: flex;
    justify-content: center;
}


.lineup_s_layout {
    text-align: center;
}

.lineup_s_l_data p {
    text-align: left;
}

.lineup_s_l_btn a {
    display: block;
    border: .1rem solid #ccc;
    border-radius: .5rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
    width: calc(94% / 3);
    margin: 0 2% 0 0;
}

.lineup_s_l_btn a:after {
    content: "";
    display: inline-block;
    width:0;
    height:0;
    border-style:solid;
    border-width: 1.21rem .7rem 0 .7rem;
    border-color: #222 transparent transparent transparent;
    margin-left: 1rem;
}

.lineup_s_l_img img {
    width: 50%;
}

.lineup_s_l_att {
    display: block;
    background-color: #efefee;
    border-radius: .5rem;
    padding: 2rem 10rem;
    text-align: left;
    margin: 2rem 0;
}

.lineup_s_l_f_item {
    display: inline-block;
    width: calc(96% / 2);
    margin: 0 2% 2% 0;
    text-align: left;
}

.lineup_s_l_f_item p {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-top: dotted #ccc 0.1rem;
    border-bottom: dotted #ccc 0.1rem;
    padding: 0.5rem 0;
}

/* .lineup_s_l_t_text {
    margin-bottom:3rem;
} */

.lineup_s_l_t_item {
    width: calc(94% / 3);
    margin: 0 2% 0 0;
    text-align: center;
}

/* 25.4.17追加 */
.lineup_detail p{
    margin: 5rem 0;
}
.lineup_detail_list{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.lineup_detail_list img{
    width: 100%;
}
.lineup_detail_list div{
    width: calc(97% / 3);
}




@media screen and (max-width:768px) {
    .lineup_select {
        padding: 0 1.5rem 3rem;
    }

    .lineup_select h4 {
        margin: 0;
        padding: 3rem 0;
        font-size: 2rem;
    }

    .lineup_s_box , .lineup_s_font {
        /*flex-direction: column;*/
        font-size: 1.3rem;
    }

    .lineup_s_f_item {
        /*margin-right: 0;
        margin-bottom: 3rem;
        width: 100%;*/
    }

    .lineup_s_f_item img {
        width: 100%;
    }

    .lineup_s_layout {
        text-align: left;
    }

    .lineup_s_l_btn a {
        width: 100%;
        margin-bottom: 1rem;
    }

    .lineup_s_l_img img {
        width: 100%;
        margin: 0 0 5rem;
    }

    .lineup_s_l_att {
        padding: 1rem;
    }

    .lineup_s_l_f_item  {
        width: 100%;
        margin-right: 0;
    }

    .lineup_s_l_f_item + .lineup_s_l_f_item {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
    
    .lineup_s_l_t_item {
        width: 100%;
        margin-right: 0;
    }

    .lineup_s_l_t_item + .lineup_s_l_t_item {
        margin-top: 1.5rem;
    }

    /* .lineup_s_l_t_text {
        text-align: left;
    } */

    .lineup_detail_list div {
        width: calc(98% / 2);
    }

}

/* set_area */

.set_cnt {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
    border-top: .1rem solid #222;
    border-bottom: .1rem solid #222;
    /*font-family: "Noto Serif JP", serif;*/
    margin: 8rem auto;
}

.set_text {
    margin-right: 6rem;
}

.set_t_large {
    font-size: 1.8rem;
}

.set_t_icon {
    max-width: 30rem;
    margin: 3rem 0;
}

.set_t_att {
    font-size: 1.5rem;
}

.set_img {
    max-width: 50rem;
}

@media screen and (max-width:768px) {
    .set_cnt {
        flex-direction: column;
        justify-content: center;
        margin: 6rem auto;
    }

    .set_text {
        margin-right: auto;
        /* margin-bottom: 2rem; */
    }

    .set_t_large {
        font-size: 2rem;
    }

    .set_t_icon {
        margin: 2rem auto;
    }

    .set_t_att {
        font-size: 1.8rem;
    }

}

/* item_area */
.item_cnt > h4{
    font-size: 2.4rem;
    text-align: center;
    margin: 5rem 0;
    font-weight: 600;
}
.item_c_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5rem;
}

.item_c_box {
    width: 46rem;
    /*margin-right: 8rem;
    margin-bottom: 6rem;*/
}

/*.item_c_box:nth-child(even) {
    margin-right: 0;
}*/

.item_c_b_h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
}

.item_c_b_h_l {
    width: 23.4rem;
}
.item_c_b_h_l img {
    width: 100%;
}

.item_c_b_h_r {
    width: calc(100% - 23.4rem);
    padding-left: 2rem;
    position: relative;
}

.item_c_b_h_r_title {
    /*font-family: "Noto Serif JP", serif;*/
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.item_c_b_h_r_text {
    margin-bottom: 1.2rem;
}

.item_c_b_h_r_text p {
    color: #222;
    font-size: 1.2rem;
    font-weight: 500;
}

.item_c_b_h_r_data {
    position: absolute;
    bottom: 4rem;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}

.item_c_b_h_r_data p {
    font-size: 2.4rem;
    font-weight: 500;
    padding-right: .4rem;
}

.item_c_b_b {
    position: absolute;
    bottom: -2.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.item_c_b_b a {
    display: block;
    width: 21rem;
    line-height: 3.4rem;
    text-align: center;
    border-radius: .5rem;
    color: #fff;
    background-color: #262424;
    font-size: 1.3rem;
    /*font-family: "Noto Serif JP", serif;*/
    position: relative;
}

.item_c_b_b a span {
    vertical-align: middle;
}
.item_c_b_b a:hover{
  opacity: .8;
  color: #fff!important;
}
.item_c_b_f {
    position: relative;
    padding-left: 5.2rem;
}

.item_c_b_f_l {
    width: 3.2rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: .1rem solid #222;
}

.item_c_b_f_l p {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .5rem;
}

.item_c_b_f_r dl {
    border-bottom: .1rem solid #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .8rem;
    padding-bottom: .8rem;
}

.item_c_b_f_r dt {
    width: 14rem;
    padding-left: 1rem;
}

.item_c_b_f_r dd {
    width: calc(100% - 14rem);
}

.item_c_b_f_r dd, .item_c_b_f_r dt {
    font-size: 1.3rem;
    font-weight: 500;
}

.item_c_b_f_r dd small {
    display: block;
    font-size: 1.2rem;
    padding-top: .2rem;
}

.item_c_b_f_r dl:first-child {
    padding-top: .8rem;
}

.item_c_b_h_r_title img {
    display: block;
}


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

    .item_area {
        padding: 8rem 0 6rem;
    }

    .item_title.common_title {
        margin-bottom: 2rem;
    }

    .item_c_intro {
        display: block;
        padding: .5rem;
        background-position: top 3rem right .7rem;
        margin-bottom: 4rem;
    }

    .item_c_i_l, .item_c_i_r {
        width: 100%;
    }

    .item_c_i_l {
        padding: 1.5rem 1.5rem 1.2rem;
    }

    .item_c_i_l_title {
        padding: 0;
        text-align: left;
        font-size: 2rem;
    }

    .item_c_i_l_text p {
        font-size: 1.4rem;
        text-align: left;
        letter-spacing: 0;
    }

    .item_c_i_r {
        padding: 2rem;
    }

    .item_c_i_r_l p {
        font-size: 1.2rem;
    }

    .item_c_i_r_r {
        padding-top: 2rem;
    }

    .modal_box {
        width: 90%;
    }

    .item_c_note p {
        font-size: 1.2rem;
    }

    .item_c_note p i {
        font-size: 1.4rem;
    }

    .item_c_list {
        display: block;
        margin: 0;
    }

    .item_c_box {
        width: auto;
        margin-right: 0;
        margin-bottom: 5rem;
    }

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

    .item_c_b_h_l {
        width: 13rem;
    }

    .item_c_b_h_r {
        width: calc(100% - 13rem);
        /* padding-left: 2rem; */
    }

    .item_c_b_h_r_title {
        margin-bottom: .8rem;
        font-size: 2rem;
    }

    .item_c_b_h_r_text {
        margin-bottom: .8rem;
    }

    .item_c_b_h_r_text p {
        font-size: 1.1rem;
        font-weight: 400;
    }

    .item_c_b_h_r_data {
        position: relative;
        bottom: unset;
    }

    .item_c_b_h_r_data small {
        font-size: 1.1rem;
    }

    .item_c_b_h_r_data p {
        font-size: 2rem;
    }



    .item_c_b_b {
        bottom: unset;
        position: relative;
        margin-bottom: 1.2rem;
    }

    .item_c_b_b a {
        margin: 0 auto;
    }

    .item_c_b_f {
        padding: 0;
    }

    .item_c_b_f_l {
        width: auto;
        border: 0;
        position: static;
        display: block;
        margin-bottom: .5rem;
        padding-bottom: .5rem;
        border-bottom: .1rem solid #222;
    }

    .item_c_b_f_l p {
        text-align: center;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        letter-spacing: .02em;
    }

    .item_c_b_f_l p::before {
        content: "＜ ";
        display: inline-block;
        padding-right: .2rem;
    }

    .item_c_b_f_l p::after {
        content: "＞";
        display: inline-block;
        padding-left: .2rem;
    }

    .item_c_b_f_r dl:first-child {
        padding-top: 0;
    }

    .item_c_b_f_r dl {
        margin-bottom: .5rem;
        padding-bottom: .5rem;
    }

    .item_c_b_f_r dd, .item_c_b_f_r dt {
        font-size: 1.2rem;
    }

    .item_c_b_f_r dt {
        width: 12rem;
    }

    .item_c_b_f_r dd {
        width: calc(100% - 12rem);
    }
}

/* other_area */

.other_area {
    margin-top: 8rem;
}
.other_items {
    display: flex;
    justify-content: space-between;
    max-width: 100rem;
    margin: 0 auto;
}

.other_items li {
    width: 22.4rem;
    font-size: 1.9rem;
}

.other_items p {
    text-align: center;
    margin: 2rem auto;
}

.other_i_img {
    width: 100%;
}

.other_items a {
    display: block;
    background-color: #222;
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 1.5rem;
}

@media screen and (max-width:768px) {
    .other_items {
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }

    .other_items li {
        width: 40%;
        font-size: 1.5rem;
    }

    .other_items li:nth-child(n+3) {
        margin-top: 3rem;
    }

    .other_items p {
        margin: 1rem auto;
    }

    .other_i_img img {
        width: 100%;
    }
}


/* order_area */

.order_area {
    padding: 8rem 0;
}

.order_area_text {
    /*font-family: "Noto Serif JP", serif; */
    text-align: center;

}

.order_area_h {
    max-width: 77.2rem;
    margin: 4rem auto;
}

.order_area_b_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order_area_b_box + .order_area_b_box {
    margin-top: 4rem;
}

.order_area_b_b_r {
    width: 70.4rem;
}

.order_area_b_b_l {
    width: calc(100% - 70.4rem);
}

.order_area_b_b_l img {
    height: 15rem;
}

.order_area_b_box:nth-child(2) .order_area_b_b_l img {
    height: 13.5rem;
}

.order_area_b_b_r_box {
    background: #f8f8f9;
    padding: 5rem;
}

.order_area_b_b_r_box p {
    margin-bottom: 2rem;
}

.order_area_b_b_r_box p:last-child {
    margin-bottom: 0;
}

.order_area_b_b_r_box p.btn {
    text-align: center;
    padding-top: .5rem;
}

.order_area_b_b_r_box p.btn a {
    display: inline-block;
    max-width: 33.5rem;
    line-height: 5.5rem;
    width: 100%;
    background: #1a286d;
    position: relative;
    border-radius: 10rem;
    -webkit-box-shadow: 0 .5rem 0 #8394ea;
    box-shadow: 0 .5rem 0 #8394ea;
}

.order_area_b_b_r_box p.btn a:hover {
    opacity: 1;
    box-shadow: none;
    top: 0.5rem;
}

.order_area_b_b_r_box p.btn img {
    vertical-align: middle;
}

.order_area_b_b_r_box p.btn img.btn_icon {
    position: absolute;
    height: 6.5rem;
    width: 8rem;
    right: -2rem;
    top: -2rem;
}

.order_area_b_b_r_box p.btn img.btn_text {
    /*height: 4.4rem;*/
    height: 2.5rem;
}

.order_area_b_b_r_box p.note {
    font-size: 1.3rem;
    color: #d04d4d;
}

@media screen and (max-width:768px) {
    .order_area {
        padding: 6rem 0;
    }

    .order_area_inner {
        padding: 0 2rem;
    }

    .order_area_text {
        font-size: 1.5rem;
        letter-spacing: -0.01em;
    }

    .order_area_b_box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .order_area_b_box + .order_area_b_box {
        margin-bottom: 1.2rem;
    }

    .order_area_b_b_r {
        width: 100%;
    }

    .order_area_b_b_l {
        width: 100%;
        margin-bottom: 2rem;
    }

    .order_area_b_b_l img {
        display: block;
        /*margin: 0 auto;*/
        height: 13rem;
    }

    .order_area_b_box:nth-child(2) .order_area_b_b_l img {
        height: 11.5rem;
    }

    .order_area_b_b_r_box {
        padding: 2rem;
    }

    .order_area_b_b_r_box p {
        font-size: 1.4rem;
    }

    .order_area_b_b_r_box p.btn {
        position: relative;
    }

    .order_area_b_b_r_box p.btn a {
        max-width: 26.5rem;
    }

    .order_area_b_b_r_box p.btn img.btn_text {
        /*height: 3.8rem;*/
        height: 2.2rem;
    }
}


/* faq_area */

.faq_area {
    padding: 8rem 0;
    background-color: #f8f8f9;
}

.faq_area_inner {
    max-width: 90rem;
    margin: 0 auto;
}

.faq_area_title.common_title {
    margin-bottom: 8rem;
}

.faq_img img {
    display: block;
    margin: 0 auto;
}

dl.toggle_box {
    padding: 0 3rem;
    background-color: #fff;
}

dl.toggle_box + dl.toggle_box {
    margin-top: 2rem;
}

dl.toggle_box dt {
    font-size: 1.6rem;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    padding: 2.4rem 0;
}

dl.toggle_box dd {
    display: none;
    border-top: .1rem solid #222;
    padding: 2.4rem 0;
}


dl.toggle_box dt i {
    width: 4rem;
    height: 4rem;
    display: block;
    background: #4b4b4b;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

dl.toggle_box dt i::after, dl.toggle_box dt i::before {
    content: "";
    display: block;
    width: 1.8rem;
    height: .2rem;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: .3s;
    transition: .3s;
}

dl.toggle_box dt i::after {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

dl.toggle_box>dt.active i::after {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
}

@media screen and (max-width:768px) {
    .faq_area {
        padding: 6rem 0;
    }

    .faq_area_title.common_title {
        margin-bottom: 2rem;
    }

    .faq_area_cnt {
        margin: 0 2rem;
    }

    dl.toggle_box dt {
        font-size: 2rem;
        padding: 2rem 4rem 2rem 0;
    }

    dl.toggle_box dt i {
        width: 2.8rem;
        height: 2.8rem;
    }

    dl.toggle_box dt i::after, dl.toggle_box dt i::before {
        width: 1.2rem;
    }
}

/* modal_cnt */

.modal_cnt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.modal_cnt.open {
    -webkit-animation: dwAnimationOpen .3s ease forwards;
    animation: dwAnimationOpen .3s ease forwards;
}

.modal_cnt.close {
    -webkit-animation: dwAnimationClose .3s ease forwards;
    animation: dwAnimationClose .3s ease forwards;
}

.overlay {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
}

.modal_box {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: auto;
    width: 100%;
    max-width: 80rem;
    padding: 1rem;
    background: #fff;
}

@-webkit-keyframes dwAnimationOpen {
    0% {
        z-index: 1000;
        opacity: 0;
    }

    1% {
        z-index: 1000;
        opacity: 0;
    }

    100% {
        z-index: 1000;
        opacity: 1;
        pointer-events: auto;
    }
}

@keyframes dwAnimationOpen {
    0% {
        z-index: 1000;
        opacity: 0;
    }

    1% {
        z-index: 1000;
        opacity: 0;
    }

    100% {
        z-index: 1000;
        opacity: 1;
        pointer-events: auto;
    }
}

@-webkit-keyframes dwAnimationClose {
    0% {
        z-index: 1000;
        opacity: 1;
        pointer-events: none;
    }

    99% {
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
    }

    100% {
        z-index: -1;
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes dwAnimationClose {
    0% {
        z-index: 1000;
        opacity: 1;
        pointer-events: none;
    }

    99% {
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
    }

    100% {
        z-index: -1;
        opacity: 0;
        pointer-events: none;
    }
}

