.article {
    margin: 120px auto;
}

@media screen and (max-width: 767px) {
    .article {
        margin-top: 0;
    }
}

.section {
    margin: 120px auto;
}

@media screen and (max-width: 767px) {
    .section {
        margin: 0 auto 60px;
    }
}

.section .reed {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section .reed .title {
    width: 300px;
    letter-spacing: 0.3em;
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 1.6em;
}

@media screen and (max-width: 767px) {
    .section .reed .title {
        width: 100%;
        font-size: 2rem;
    }
}

.section .reed .inr {
    width: -webkit-calc(100% - 300px);
    width: calc(100% - 300px);
}

@media screen and (max-width: 767px) {
    .section .reed .inr {
        width: 100%;
    }
}

.section .reed .inr p {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.16em;
    margin-bottom: 1em;
    text-align: justify;
}

@media screen and (max-width: 767px) {
    .section .reed .inr p {
        font-size: 1.4rem;
        line-height: 2;
    }
}

.section .img {
    text-align: center;
    margin: 90px auto;
}

.section .img img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .section .img {
        margin: 0 auto 60px;
    }
}


/*!------------------------------------*
effect
\*!------------------------------------*/

.effect_bg {
    opacity: 0;
}

.show2 .effect_bg {
    opacity: 1;
}

.effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.effect::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, #1d1d1d 0%, #1d1d1d 100%);
    z-index: 2;
    -webkit-transform: translate3d(-101%, 0, 0);
    transform: translate3d(-101%, 0, 0);
    -webkit-transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
    transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
}

.show.effect::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.show2.effect::before {
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
}

.page_title {
    padding: 80px 20px 99px;
    /*
    background: linear-gradient(-90deg, #faf6f7, #ffffff);
    */
    background: rgb(228, 228, 228);
    background: -moz-linear-gradient(180deg, rgba(228, 228, 228, 1) 0%, rgba(186, 186, 186, 0.4724090319721639) 55%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(228, 228, 228, 1) 0%, rgba(186, 186, 186, 0.4724090319721639) 55%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(228, 228, 228, 1) 0%, rgba(186, 186, 186, 0.4724090319721639) 55%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#e4e4e4", endColorstr="#ffffff", GradientType=1);
}

@media screen and (max-width: 767px) {
    .page_title {
        margin-top: 65px;
        padding: 46px 20px 56px;
    }
}

.page_title h1 {
    font-size: 2.78rem;
    letter-spacing: 0.16em;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .page_title h1 {
        font-size: 2.2rem;
    }
}

.page_title h1:before {
    content: " ";
    position: absolute;
    bottom: -2px;
    left: 50%;
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: #1d1d1d;
    margin-left: -43px;
}

.page_title h1:after {
    content: " ";
    display: block;
    height: 1px;
    width: 76px;
    background: #1d1d1d;
    margin: 0.85em auto 0;
}

.c-text-container {
    max-width: 1160px;
    margin: auto;
    padding: 0 3.5%;
}

@media screen and (max-width: 767px) {
    .c-text-container {
        padding: 0 5.5%;
    }
}


/* title */

figure {
    margin: 0;
    line-height: 0;
    display: block;
}

.h-underline {
    position: relative;
    padding-bottom: 1em;
}

.h-underline:before {
    position: absolute;
    display: block;
    left: -20px;
    right: -20px;
    bottom: 0;
    margin: auto;
    width: calc(100% + 40px);
    height: 1px;
    content: "";
    opacity: 0.75;
    background-color: #000;
}

.h-underline-inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.h-underline.-left:before {
    left: 0;
    right: auto;
}

.h-underline.-right:before {
    left: auto;
    right: 0;
}

.w-state {
    width: calc(100% - 60px);
    max-width: 1280px;
    position: static;
    margin-right: auto;
    margin-left: auto;
}

.w-state--s {
    width: 90%;
    margin-left: 2.8%;
    margin-right: auto;
    max-width: 100%;
    position: static;
}


/*
.w-state--s {
    width: calc(100% - 60px);
    max-width: 750px;
    position: static;
    margin-right: auto;
    margin-left: auto;
}
*/

.w-state--max {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .w-state {
        width: calc(100% - 100px);
    }
    .w-state--s {
        width: calc(100% - 160px);
        max-width: 750px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1280px) {
    .w-state {
        width: calc(100% - 160px);
    }
    .w-state--s {
        width: calc(100% - 240px);
    }
}

.section-header {
    margin-bottom: 20px;
}

.section-header__ttl {
    position: relative;
    margin-bottom: 2em;
    padding-bottom: 0;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
}

.child .section-header__ttl,
.child .section-header__ttl.h-underline {
    font-size: 1.8rem;
}

#tbl .section-header {
    text-align: center;
}

.child .section-header__ttl.h-underline {
    width: auto;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-header__read {
    font-size: 110%;
}

@media screen and (min-width: 768px) {
    .child .section-header__ttl,
    .child .section-header__ttl.h-underline {
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 1280px) {
    .section-header {
        margin-bottom: 0;
    }
    .section-header__ttl {
        line-height: 1.8;
        font-size: 2.4rem;
    }
    .child .section-header__ttl,
    .child .section-header__ttl.h-underline {
        font-size: 2.4rem;
    }
    .section-header-inner {
        position: relative;
        z-index: 1;
    }
}

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

.c-section--m {
    margin-bottom: 30px;
    margin-top: 25px;
}

.c-section--ml {
    margin-bottom: 40px;
    margin: 0;
}

.c-section--s {
    margin-bottom: 20px;
}

@media screen and (min-width: 1280px) {
    .c-section--m {
        margin-bottom: 60px;
    }
    .c-section--ml {
        margin-bottom: 80px;
    }
    .c-section--s {
        margin-bottom: 40px;
    }
}

.box--flex {
    display: flex;
}

.box--flex.box--2>* {
    width: 50%;
}

.box__fig img {
    max-height: 200px;
}

.box--flex {
    flex-wrap: wrap;
}

.section-header__ttl {
    text-align: center;
    margin-bottom: 1em;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}

.section__txt {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.7rem;
    line-height: 1.5;
}

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

.box__fig {
    max-width: 200px;
    width: 85%;
    margin: 0 auto 1.5em;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.box__fig {
    margin-bottom: 0;
}

.box__txt {
    width: 100%;
}

.-vert .feature-index__head {
    margin-bottom: 0;
}

.-vert .feature-index__ttl {
    border-radius: 5px;
}

#support-index .feature-index__item {
    margin-bottom: 25px;
}

.feature-index__item:last-child {
    margin-bottom: 0;
}

.section-inner__list {
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(102, 102, 102, .3);
}

.section-inner__item {
    display: block;
    padding: 1em .5em;
    border-bottom: 1px solid rgba(102, 102, 102, .3);
}

.section-inner__item .box-supply {
    padding: .8em;
    margin-top: .5em;
    border-radius: 5px;
}

.section-inner__item .list-data {
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.section-inner__item .list-data dt,
.section-inner__item .list-data dd {
    width: 100%;
}

.section-inner__item .list-data dd {
    margin: 0;
    white-space: nowrap;
}

@media print,
screen and (min-width: 768px) {
    .box--flex {
        justify-content: space-between;
        align-items: center;
    }
    .feature-index__item {
        width: calc(50% - 20px);
    }
    .box__fig {
        width: 200px;
        margin-right: 25px;
    }
    .box__txt {
        width: calc(100% - 225px);
    }
    /* chain */
    .chain__list {
        width: calc(100% - 50px);
    }
    .chain-contents .fig {
        max-width: 120px;
        margin-right: 15px;
    }
    .chain-contents .txt {
        width: calc(100% - 135px);
        margin-left: 0;
    }
    .section-inner__item .list-data dt {
        width: calc(100% - 15em);
    }
    .section-inner__item .list-data dd {
        width: 14em;
        text-align: right;
        margin-left: 1em;
    }
    .section--secondary .extra__img {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1280px) {
    .feature-index__item {
        width: calc(33.333% - 40px);
    }
    .box__fig {
        margin-right: 40px;
    }
    .box__txt {
        max-width: calc(100% - 240px);
    }
    .chain__list-ttl {
        font-size: 1.8rem;
    }
    .chain__list {
        width: calc(100% - 100px);
    }
    .chain__item {
        padding-bottom: 20px;
    }
    .chain-contents {
        padding: 0 0 20px 55px;
    }
    .chain__item:before {
        top: 0;
        left: 5px;
        font-size: 1.6rem;
        width: 2em;
        height: 2em;
    }
    .chain__item:after {
        top: 38px;
        left: 20px;
    }
    .chain-inner__header {
        font-size: 1.6rem;
    }
    /* --------------------------------------------------------- */
    /* underline list */
    .section-inner__item {
        padding: 20px 10px;
    }
    .section-inner__item .box-supply {
        margin-top: 1em;
    }
}

.before-after {
    padding-top: .8em;
}

.before-after__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    position: relative;
    margin: 0 auto .5em;
}

.before-after__item {
    width: calc(50% - 10px);
    position: relative;
}

.before-after__item figure {
    border-radius: 5px;
    overflow: hidden;
    margin: 0;
    line-height: 0;
    display: block;
}

.before-after__list:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background-image: url(../../img/custom/order-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 10;
}

@media print,
screen and (min-width: 768px) {
    .before-after {
        padding-top: 1.5em;
    }
    .before-after__item {
        width: calc(50% - 20px);
    }
    .before-after__list:before {
        top: -20px;
        width: 75px;
        height: 75px;
    }
}

@media screen and (min-width: 1440px) {
    .before-after__item {
        width: calc(50% - 30px);
    }
}

.before-after__item figure {
    border-radius: 15px;
    overflow: hidden;
}

.before__fig img {
    border-style: none;
    width: 100%;
    height: auto;
}

.after__fig img {
    border-style: none;
    width: 100%;
    height: auto;
}

#gallery {
    position: relative;
}

#gallery .c-section {
    padding-bottom: 50px;
}

#gallery .indicator-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 40px;
}

.gallery__cap.-vert {
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    background-color: #fff;
    border-radius: 5px 0 0 0;
    position: absolute;
    right: 2px;
    bottom: -2px;
    line-height: 0;
    z-index: 1;
}

.gallery__cap.-vert {
    padding: .6em .45em .1em .45em;
}

.msie .gallery__cap.-vert {
    width: 3%;
    height: 5em;
}

.gallery__cap span {
    font-size: 1.35rem;
    display: inline-block;
    line-height: 1.5;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (min-width: 768px) {
    .gallery__cap.-vert {
        padding: 1em .3em .1em .8em;
    }
}

@media screen and (min-width: 1280px) {
    #gallery .c-section {
        padding-bottom: 80px;
    }
    .gallery__cap.-vert {
        padding: 1em .3em .1em .8em;
        right: 0;
        bottom: 0;
    }
    .gallery__cap span {
        font-size: 1.6rem;
    }
}

.footnote {
    display: flex;
}

.inline-footnote {
    display: inline-flex;
}

.footnote,
.inline-footnote {
    position: relative;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 1.25em;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #2e8b57;
    list-style: none;
    font-family: 'Zen Old Mincho', serif;
}

.footnote li,
.inline-footnote li {
    position: relative;
    margin-bottom: 0.5em;
    display: inline-block;
}

.footnote:last-child,
.footnote li:last-child,
.inline-footnote:last-child,
.inline-footnote li:last-child {
    margin-bottom: 0;
}

.footnote li:before,
.inline-footnote li:before {
    position: absolute;
    right: calc(100% + 3px);
    content: "※ ";
    white-space: nowrap;
}


/* card */

.card__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 3px 1px;
}

.card {
    /*
    margin: 8px 1%;
    */
    padding: 2px;
    width: 33%;
}

@media screen and (max-width: 767px) {
    .card {
        /*
    margin: 8px 1%;
    */
        width: 48%;
    }
}

.card__thumbnail {
    height: auto;
    width: 100%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__thumbnail img {
    max-width: 100%;
    max-height: 100%;
}

.card__content {
    line-height: 1.4;
    margin: 8px 0 0;
}

.card__text {
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 4px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.card__description {
    font-size: 12px;
    margin-bottom: 4px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.card__date {
    font-size: 10px;
    color: #888;
    line-height: 1;
    text-align: right;
}

.order-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.order-item {
    padding: 5px;
    width: 47.5%;
    background-color: #fff;
}

.order-item img {
    width: 100%;
    max-width: 100%;
}

.order-item-2 {
    padding: 5px;
    width: 32.5%;
    background-color: #fff;
}

.order-item-2 img {
    width: 100%;
    max-width: 100%;
}

.order-item-2 h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: normal;
    font-size: 1.65rem;
    padding-top: 6px;
}

.order-item h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: normal;
    font-size: 1.65rem;
    padding-top: 6px;
}

@media not all and (min-width: 768px) {
    .order-item {
        width: 48%;
    }
    .order-item-2 {
        width: 48%;
    }
}