@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

body {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

input,
textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background-color: #EEEEEE;
    border-radius: 5px;
    display: block;
}

input:focus,
textarea:focus {
    outline: none;
}

.required {
    background-color: #DB6224;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    margin-left: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 7px;
    width: 54px;
    height: 22px;
    line-height: 19px;
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .required {
        font-size: 12px;
        right: 10px;
    }
}

.mwform-radio-field {
    display: block;
    margin-left: 0 !important;
}

.mwform-radio-field label {
    margin: 0.5em 0;
    margin-right: 2rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .mwform-radio-field label {
        margin-right: 1rem;
    }
}

.mwform-radio-field label input[type='radio'] {
    position: absolute;
    opacity: 0;
}

.mwform-radio-field label input[type='radio'] + .mwform-radio-field-text {
    position: relative;
    padding-left: 2rem;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .mwform-radio-field label input[type='radio'] + .mwform-radio-field-text {
        padding-left: 2.5rem;
    }
}

.mwform-radio-field label input[type='radio'] + .mwform-radio-field-text:before {
    content: '';
    background: #EEEEEE;
    border-radius: 100%;
    border: 1px solid #EEEEEE;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mwform-radio-field label input[type='radio']:checked + .mwform-radio-field-text:before {
    background-color: #5B6D60;
    -webkit-box-shadow: inset 0 0 0 3px #fff;
    box-shadow: inset 0 0 0 3px #fff;
}

.mwform-radio-field label input[type='radio']:focus + .mwform-radio-field-text:before {
    border: 1px solid #DDDDDD;
}

.mwform-radio-field label input[type='radio']:disabled + .mwform-radio-field-text:before {
    -webkit-box-shadow: inset 0 0 0 4px #fff;
    box-shadow: inset 0 0 0 4px #fff;
    border: #DDDDDD;
    background: #DDDDDD;
}

.mwform-radio-field label input[type='radio'] + .radio-label:empty:before {
    margin-right: 0;
}

.error {
    color: #cc3300;
    width: 100%;
    font-size: 1.4rem;
    margin-top: 1rem;
    display: block;
    line-height: initial;
}

.formControl {
    width: 100%;
    padding: 1rem;
}

.formControlL {
    width: 100%;
    padding: 1rem;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
    color: #333333;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body.noScrolled {
    overflow: hidden;
}

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

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

body a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #1B1E2D;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
    opacity: 1;
}

body img {
    height: auto;
}

body .inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

@media screen and (max-width: 1160px) {
    body .inner {
        padding-left: 3vw;
        padding-right: 3vw;
    }
}

@media screen and (max-width: 767px) {
    body .inner {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

body .telLink {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

body .telLink _:-ms-fullscreen,
body .telLink :root .selector {
    display: inline-block;
}

@media screen and (max-width: 860px) {
    body .telLink {
        pointer-events: auto;
        letter-spacing: 0.02em;
    }
}

body .readTxt {
    letter-spacing: 0.15em;
    line-height: 1.8;
}

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

body input[type="text"],
body textarea {
    -webkit-appearance: none;
}

body select {
    background: none !important;
    padding: 0.6em !important;
}

body .pcNone {
    display: none;
}

@media screen and (max-width: 560px) {
    body .pcNone {
        display: block;
    }
}

@media screen and (max-width: 560px) {
    body .spNone {
        display: none;
    }
}

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

.wrap {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/*==================================================================================================
	共通 Common
==================================================================================================*/
.-center {
    text-align: center;
}

.-white {
    color: white;
}

.lContainer {
    position: relative;
    padding: 6em 0 6em;
}

.lContainer > * {
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 767px) {
    .lContainer {
        padding: 5em 0 5em;
    }
}

@media screen and (max-width: 560px) {
    .lContainer {
        padding: 4em 0 4em;
    }
}

.lContainer .mContainer {
    margin-bottom: 5em;
}

.lContainer .mContainer:last-child {
    margin-bottom: 0;
}

.lContainer.-gray {
    background: #F5F6F7;
}

.lContainer .whiteBox {
    background: #FFF;
    padding: 3em 3em 4em;
    border-radius: 0.4em;
}

@media screen and (max-width: 1160px) {
    .lContainer .whiteBox {
        padding: 5vw 5vw 7vw;
    }
}

.numList__item {
    margin-bottom: 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.numList__item .num {
    width: 2em;
    height: 2em;
    background: #F17B00;
    line-height: 1em;
    color: #FFF;
    border-radius: 2em;
    font-weight: bold;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0.5em;
}

.numList__item p {
    font-weight: 500;
    font-size: 110%;
    line-height: 1.4;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.numList__item p .orange {
    color: #F17B00;
    font-size: 120%;
}

@media screen and (max-width: 480px) {
    .numList__item p {
        font-size: 100%;
    }
}

/*------------------------------------------------------------
フッター
------------------------------------------------------------*/
footer .footerTop {
    padding: 2em 0;
}

footer .footerTop .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .footerTop .inner .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .footerTop .inner .main .logo {
    margin-right: 1em;
}

footer .footerTop .inner .main .logo img {
    max-width: 320px;
    width: 100%;
    margin-bottom: 1em;
}

footer .footerTop .inner .main .logo p {
    font-size: 80%;
}

footer .footerTop .inner .main .telList__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.5em;
}

footer .footerTop .inner .main .telList__item:last-child {
    margin-bottom: 0;
}

footer .footerTop .inner .main .telList__item span {
    background: #002D55;
    color: #FFF;
    line-height: 1;
    padding: 0.3em 1em;
    font-size: 90%;
    border-radius: 4em;
    margin-right: 0.5em;
}

footer .footerTop .inner .main .telList__item a {
    font-size: 130%;
    display: block;
    font-weight: bold;
}

footer .footerTop .inner .btnArea .basicBtn {
    display: block;
    background: #F17B00;
    color: #FFF;
    padding: 1em 1.5em;
    border-bottom: #D46D00 2px solid;
    border-radius: 0.2em;
    max-width: 300px;
    font-size: 90%;
    width: 100%;
    text-align: center;
}

footer .footerTop .inner .btnArea .basicBtn:hover {
    opacity: 0.8;
}

footer .footerTop .inner .btnArea .basicBtn span {
    position: relative;
    padding-left: 1.4em;
    white-space: nowrap;
    display: inline-block;
}

footer .footerTop .inner .btnArea .basicBtn span:after {
    content: "";
    width: 1em;
    height: 1em;
    background: url("../img/common/icon-pc.svg") no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.4em;
}

@media screen and (max-width: 1160px) {
    footer .footerTop .inner {
        display: block;
    }
    footer .footerTop .inner .main {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    footer .footerTop .inner .btnArea {
        margin-top: 2em;
    }
    footer .footerTop .inner .btnArea .basicBtn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 560px) {
    footer .footerTop .inner .main {
        display: block;
    }
    footer .footerTop .inner .main .logo {
        margin-right: 0;
        margin-bottom: 1em;
        text-align: center;
    }
    footer .footerTop .inner .main .logo img {
        width: 80%;
    }
    footer .footerTop .inner .main .telList__item {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    footer .footerTop .inner .main .telList__item a {
        font-size: 180%;
    }
    footer .footerTop .inner .btnArea {
        margin-top: 2em;
    }
    footer .footerTop .inner .btnArea .basicBtn {
        margin-left: auto;
        margin-right: auto;
    }
}

footer .footerBottom {
    background: #002D55;
    padding: 1em 0;
}

footer .footerBottom .copy {
    text-align: center;
    color: #FFF;
    font-size: 80%;
}

/*==================================================================================================
	タイトル Label
==================================================================================================*/
.mainLabel {
    font-size: 240%;
    margin-bottom: 1.6em;
    text-align: center;
    padding-bottom: 0.8em;
    line-height: 1.4;
    position: relative;
}

.mainLabel:before {
    content: "";
    width: 100px;
    height: 4px;
    background: #f17b00;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f17b00), color-stop(50%, #002d55));
    background: -webkit-linear-gradient(left, #f17b00 50%, #002d55 50%);
    background: linear-gradient(90deg, #f17b00 50%, #002d55 50%);
    position: absolute;
    left: 50%;
    margin-left: -50px;
    bottom: 0;
}

@media screen and (max-width: 860px) {
    .mainLabel {
        font-size: 200%;
    }
}

@media screen and (max-width: 560px) {
    .mainLabel {
        font-size: 180%;
    }
    .mainLabel:before {
        height: 3px;
    }
}

@media screen and (max-width: 480px) {
    .mainLabel {
        font-size: 160%;
    }
    .mainLabel:before {
        height: 2px;
        width: 80px;
        margin-left: -40px;
    }
}

.blueLabel {
    font-size: 128%;
    margin-bottom: 1.2em;
    background: #002D55;
    color: #FFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    padding: 0.5em 1em;
    border-radius: 6em;
    max-width: 600px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .blueLabel {
        font-size: 120%;
    }
}

@media screen and (max-width: 480px) {
    .blueLabel {
        font-size: 110%;
    }
    .blueLabel br {
        display: none;
    }
}

.pageLabel {
    position: relative;
    padding: 9.6em 0;
}

.pageLabel:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(241, 123, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.pageLabel > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;';
}

.pageLabel .ttl {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pageLabel .ttl > * {
    display: block;
    font-weight: bold;
}

.pageLabel .ttl .jp {
    font-size: 250%;
    color: #FFF;
    font-weight: 500;
    line-height: 1.4;
}

.pageLabel .ttl .jp span {
    font-size: 60%;
    vertical-align: middle;
    display: inline-block;
    padding-bottom: 0.2em;
    margin: 0 0.2em;
}

.pageLabel .ttl .en {
    font-size: 120%;
    margin-top: 0.2em;
    color: #FFEF09;
}

.pageLabel .ttl .spShow {
    display: none;
}

@media screen and (max-width: 767px) {
    .pageLabel {
        padding: 15vw 0;
    }
    .pageLabel .ttl .jp {
        font-size: 220%;
    }
}

@media screen and (max-width: 480px) {
    .pageLabel .ttl .jp {
        font-size: 200%;
    }
    .pageLabel .ttl .spShow {
        display: inline-block;
    }
}

/*==================================================================================================
	ボタン Button
==================================================================================================*/
/*==================================================================================================
	メイン
==================================================================================================*/
header {
    padding: 2em;
    position: relative;
}

header:before {
    content: "";
    width: 20vw;
    height: 20vw;
    background: rgba(241, 123, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

header:after {
    content: "";
    width: 20vw;
    height: 20vw;
    background: rgba(241, 185, 0, 0.2);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

header .textArea {
    position: absolute;
    left: 5em;
    bottom: 5em;
    width: 76%;
}

@media screen and (max-width: 1020px) {
    header {
        padding: 2vw;
    }
    header .textArea {
        left: 6vw;
        bottom: 5vw;
    }
    header > img {
        width: 100%;
        height: 60vw;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: 'object-fit: cover; object-position: center;';
    }
}

@media screen and (max-width: 480px) {
    header .textArea {
        width: 85%;
    }
    header > img {
        width: 100%;
        height: 80vw;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: 'object-fit: cover; object-position: center;';
    }
}

.secIntro {
    background: url("../img/top/intro-bg.svg");
    background-repeat: repeat-x;
    background-position: bottom;
}

.secIntro .inner p {
    text-align: center;
    font-size: 115%;
    line-height: 2.8;
}

.secIntro .inner p span {
    color: #F17B00;
    font-weight: bold;
    font-size: 120%;
}

.secIntro .inner .image {
    margin-top: 4em;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .secIntro .inner p {
        font-size: 100%;
    }
    .secIntro .inner .image {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 560px) {
    .secIntro .inner p {
        text-align: left;
        line-height: 2.4;
    }
    .secIntro .inner p br {
        display: none;
    }
    .secIntro .inner .image {
        margin-top: 3em;
        width: 100%;
    }
}

/*------------------------------------------------------------
「PULCLE」による社会貢献
------------------------------------------------------------*/
.secSdgs .pointList__item {
    background: #FFF;
    padding: 2em;
    margin-bottom: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.secSdgs .pointList__item:last-child {
    margin-bottom: 0;
}

.secSdgs .pointList__item .thumb {
    width: 40%;
}

.secSdgs .pointList__item .textArea {
    width: calc(100% - 40% - 2em);
}

.secSdgs .pointList__item .textArea .ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1em;
}

.secSdgs .pointList__item .textArea .ttl .num {
    background: #F17B00;
    line-height: 1;
    padding: 0.3em 0.5em;
    color: #FFF;
    border-radius: 2em;
    margin-right: 0.5em;
}

.secSdgs .pointList__item .textArea .ttl .main {
    font-size: 130%;
    line-height: 1.4;
}

.secSdgs .pointList__item .textArea .iconList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1em;
}

.secSdgs .pointList__item .textArea .iconList__item {
    margin-right: 1em;
}

.secSdgs .pointList__item .textArea .iconList__item:last-child {
    margin-right: 0;
}

.secSdgs .pointList__item .textArea .iconList__item img {
    max-width: 130px;
    height: auto;
}

@media screen and (max-width: 767px) {
    .secSdgs .pointList__item {
        padding: 5vw;
        display: block;
    }
    .secSdgs .pointList__item .thumb {
        width: 100%;
        margin-bottom: 1.5em;
    }
    .secSdgs .pointList__item .textArea {
        width: 100%;
    }
    .secSdgs .pointList__item .textArea .iconList__item img {
        max-width: 100px;
    }
}

/*------------------------------------------------------------
「PULCLE」車体広告の効果
------------------------------------------------------------*/
.secAd .point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3em;
}

.secAd .point .numList {
    width: 56%;
}

.secAd .point .numList__item p {
    font-size: 140%;
}

@media screen and (max-width: 1020px) {
    .secAd .point .numList__item p {
        font-size: 120%;
    }
}

@media screen and (max-width: 767px) {
    .secAd .point .numList__item p {
        font-size: 110%;
    }
    .secAd .point .numList__item p .orange {
        font-size: 110%;
    }
}

@media screen and (max-width: 480px) {
    .secAd .point .numList__item p {
        font-size: 105%;
    }
}

.secAd .point .logo {
    width: 40%;
    max-width: 360px;
}

@media screen and (max-width: 767px) {
    .secAd .point {
        display: block;
    }
    .secAd .point .numList {
        max-width: 30em;
        margin: 0 auto;
        width: 100%;
    }
    .secAd .point .logo {
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2em;
    }
}

.secAd .detail .image {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.secAd .detail .image img {
    width: 48%;
}

@media screen and (max-width: 767px) {
    .secAd .detail .image {
        display: block;
        text-align: center;
    }
    .secAd .detail .image img {
        width: 100%;
        max-width: 400px;
    }
}

/*------------------------------------------------------------
「PULCLE」導入のメリット
------------------------------------------------------------*/
.secMerit .whiteBox {
    margin-bottom: 3em;
}

.secMerit .whiteBox:last-child {
    margin-bottom: 0;
}

.secMerit .whiteBox > * {
    margin-bottom: 2em;
}

.secMerit .whiteBox > *:last-child {
    margin-bottom: 0;
}

.secMerit .whiteBox__cont {
    margin-bottom: 4em;
}

.secMerit .whiteBox__cont:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    .secMerit .-center {
        text-align: left;
    }
    .secMerit .-center br {
        display: none;
    }
}

.secMerit .merritLabel {
    text-align: center;
    margin-bottom: 1.5em;
}

.secMerit .merritLabel > * {
    display: block;
}

.secMerit .merritLabel .main {
    font-size: 190%;
    line-height: 1.4;
    margin-bottom: 0.2em;
}

.secMerit .merritLabel .num {
    color: #F17B00;
    font-size: 120%;
}

@media screen and (max-width: 767px) {
    .secMerit .merritLabel .main {
        font-size: 160%;
    }
    .secMerit .merritLabel .num {
        font-size: 115%;
    }
}

@media screen and (max-width: 560px) {
    .secMerit .merritLabel .main {
        font-size: 135%;
    }
}

.secMerit .col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.secMerit .col2 > * {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
}

.secMerit .col2 > *:nth-child(2n) {
    margin-right: 0;
}

.secMerit .col2 > *:nth-last-child(2) {
    margin-bottom: 0;
}

.secMerit .col2 > *:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .secMerit .col2 {
        display: block;
    }
    .secMerit .col2 > * {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2em;
    }
    .secMerit .col2 > *:nth-last-child(2) {
        margin-bottom: 2em;
    }
}

.secMerit .numList {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.secMerit .mediaList__item .thumb {
    margin-bottom: 1em;
}

.secMerit .mediaList__item p {
    text-align: center;
    font-size: 110%;
    font-weight: 500;
}

.secMerit .mediaList__item p span {
    display: block;
    font-size: 90%;
    margin-top: 0.2em;
}

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

.secMerit .situationList__item {
    width: 32%;
    margin-right: 2%;
}

.secMerit .situationList__item:last-child {
    margin-right: 0;
}

.secMerit .situationList__item > * {
    margin-bottom: 1em;
}

.secMerit .situationList__item > *:last-child {
    margin-bottom: 0;
}

.secMerit .situationList__item > *:first-child {
    margin-top: 0 !important;
}

.secMerit .situationList__item p {
    font-size: 80%;
    line-height: 1.8;
}

.secMerit .situationList__item .ttl {
    text-align: center;
    margin-bottom: 1em;
    margin-top: 1em;
    background: #FFF597;
    color: #F17B00;
    font-size: 115%;
    border-radius: 5em;
    line-height: 1.4;
    padding: 0.2em 0.5em;
}

@media screen and (max-width: 767px) {
    .secMerit .situationList {
        display: block;
    }
    .secMerit .situationList__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2em;
        text-align: center;
    }
    .secMerit .situationList__item:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
    .secMerit .situationList__item p {
        text-align: left;
        max-width: 450px;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .secMerit .situationList__item .ttl {
        text-align: center;
        margin-bottom: 1em;
        margin-top: 1em;
        background: #FFF597;
        color: #F17B00;
        font-size: 115%;
        border-radius: 5em;
        line-height: 1.4;
        padding: 0.2em 0.5em;
    }
}

.secMerit .graphWrap {
    max-width: 940px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.secMerit .graphWrap img {
    margin-top: 2em;
}

.secMerit .graphWrap img:first-child {
    margin-top: 1em;
}

@media screen and (max-width: 560px) {
    .secMerit .graphWrap {
        overflow-x: scroll;
    }
    .secMerit .graphWrap img {
        width: 700px;
        max-width: 700px;
    }
}

.secMerit .mapWrap {
    max-width: 940px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.secMerit .mapWrap img {
    margin-top: 2em;
}

.secMerit .mapWrap img:first-child {
    margin-top: 1em;
}

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

.secMerit .futureWrap p {
    font-weight: 500;
    font-size: 140%;
    margin-bottom: 0.8em;
}

.secMerit .futureWrap table {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.secMerit .futureWrap table tr > * {
    border: #E8E8E8 1px solid;
    padding: 0.5em 1em;
}

.secMerit .futureWrap table tr th {
    color: #FFF;
    background: #002D55;
    font-size: 120%;
    font-weight: 500;
}

.secMerit .futureWrap table tr td {
    font-size: 120%;
}

.secMerit .futureWrap table tr td.bg {
    background: rgba(0, 45, 85, 0.05);
}

.secMerit .futureWrap table tr td.orange {
    color: #F17B00;
    font-weight: bold;
    font-size: 160%;
}

@media screen and (max-width: 767px) {
    .secMerit .futureWrap p {
        font-size: 120%;
    }
    .secMerit .futureWrap table tr th {
        font-size: 110%;
        line-height: 1.4;
    }
    .secMerit .futureWrap table tr td {
        font-size: 110%;
        line-height: 1.4;
    }
    .secMerit .futureWrap table tr td.orange {
        font-size: 150%;
    }
}

@media screen and (max-width: 480px) {
    .secMerit .futureWrap p {
        font-size: 110%;
    }
    .secMerit .futureWrap table tr th {
        font-size: 100%;
    }
    .secMerit .futureWrap table tr td {
        font-size: 100%;
    }
    .secMerit .futureWrap table tr td.orange {
        font-size: 130%;
    }
}

.secMerit .tableRight {
    margin-left: auto;
    margin-top: 3em;
}

.secMerit .tableRight th, .secMerit .tableRight td {
    text-align: left;
}

.secMerit .tableRight th {
    padding-right: 1em;
    font-weight: 500;
    width: 6em;
}

@media screen and (max-width: 767px) {
    .secMerit .tableRight {
        margin-right: auto;
    }
    .secMerit .tableRight th, .secMerit .tableRight td {
        font-size: 80%;
        vertical-align: top;
        padding-bottom: 0.5em;
    }
}

/*------------------------------------------------------------
広告掲載を頂いている企業の声
------------------------------------------------------------*/
.secInterview .interviewList__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2em;
}

.secInterview .interviewList__item:last-child {
    margin-bottom: 0;
}

.secInterview .interviewList__item .thumb {
    width: 45%;
}

.secInterview .interviewList__item .textArea {
    width: 50%;
}

.secInterview .interviewList__item .textArea .orange {
    color: #F17B00;
    font-size: 110%;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.secInterview .interviewList__item .textArea .ttl {
    font-size: 180%;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.4em;
}

.secInterview .interviewList__item .textArea .btnArea {
    margin-top: 1em;
}

.secInterview .interviewList__item .textArea .btnArea .basicBtn {
    display: block;
    background: #002D55;
    color: #FFF;
    text-align: center;
    width: 100%;
    max-width: 240px;
    border-radius: 5em;
    padding: 0.7em 1em;
    position: relative;
}

.secInterview .interviewList__item .textArea .btnArea .basicBtn:after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    background: url("../img/common/icon-arrow.svg") no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -0.3em;
}

.secInterview .interviewList__item .textArea .btnArea .basicBtn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .secInterview .interviewList__item {
        display: block;
    }
    .secInterview .interviewList__item .thumb {
        width: 100%;
        margin-bottom: 1.5em;
        text-align: center;
    }
    .secInterview .interviewList__item .thumb img {
        max-width: 460px;
        width: 100%;
    }
    .secInterview .interviewList__item .textArea {
        width: 100%;
        text-align: center;
    }
    .secInterview .interviewList__item .textArea .orange {
        font-size: 105%;
    }
    .secInterview .interviewList__item .textArea .ttl {
        font-size: 160%;
    }
    .secInterview .interviewList__item .textArea .btnArea .basicBtn {
        margin-left: auto;
        margin-right: auto;
    }
}

/*------------------------------------------------------------
販売条件
------------------------------------------------------------*/
.secSale .whiteBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.secSale .whiteBox:last-child {
    margin-bottom: 0;
}

.secSale .whiteBox .thumb {
    width: 43%;
}

.secSale .whiteBox .textArea {
    width: 53%;
}

.secSale .whiteBox .textArea .conditionsList {
    margin-bottom: 1.5em;
}

.secSale .whiteBox .textArea .conditionsList__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1em;
}

.secSale .whiteBox .textArea .conditionsList__item:last-child {
    margin-bottom: 0;
}

.secSale .whiteBox .textArea .conditionsList__item > span {
    display: block;
    background: #F17B00;
    color: #FFF;
    text-align: center;
    width: 6em;
    border-radius: 5em;
    padding: 0.4em 0.5em;
    line-height: 1;
}

.secSale .whiteBox .textArea .conditionsList__item > p {
    display: block;
    width: calc(100% - 7em);
    font-weight: 500;
}

.secSale .whiteBox .textArea .conditionsList__item > p span {
    display: block;
    font-size: 84%;
}

.secSale .whiteBox .textArea .detail p {
    margin-bottom: 0.5em;
    display: block;
}

.secSale .whiteBox .textArea .detail ul li {
    font-size: 80%;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 767px) {
    .secSale .whiteBox {
        display: block;
    }
    .secSale .whiteBox:last-child {
        margin-bottom: 0;
    }
    .secSale .whiteBox .thumb {
        width: 100%;
        margin-bottom: 1.5em;
        text-align: center;
    }
    .secSale .whiteBox .thumb img {
        max-width: 460px;
        width: 100%;
    }
    .secSale .whiteBox .textArea {
        width: 100%;
    }
    .secSale .whiteBox .textArea .conditionsList {
        margin-bottom: 1.5em;
    }
    .secSale .whiteBox .textArea .conditionsList__item > span {
        font-size: 90%;
        margin-top: 0.1em;
    }
    .secSale .whiteBox .textArea .conditionsList__item > p {
        display: block;
        width: calc(100% - 6em);
    }
}

/*==================================================================================================
	インタビュー
==================================================================================================*/
.-interview .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3em;
}

.-interview .main:last-child {
    margin-bottom: 0;
}

.-interview .main .thumb {
    width: 45%;
}

.-interview .main .textArea {
    width: 50%;
}

.-interview .main .textArea .orange {
    color: #F17B00;
    font-size: 110%;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.-interview .main .textArea .ttl {
    font-size: 180%;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.4em;
}

.-interview .main .textArea .btnArea {
    margin-top: 1em;
}

.-interview .main .textArea .btnArea .basicBtn {
    display: block;
    background: #002D55;
    color: #FFF;
    text-align: center;
    width: 100%;
    max-width: 240px;
    border-radius: 5em;
    padding: 0.7em 1em;
    position: relative;
}

.-interview .main .textArea .btnArea .basicBtn:after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    background: url("../img/common/icon-arrow.svg") no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -0.3em;
}

.-interview .main .textArea .btnArea .basicBtn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .-interview .main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .-interview .main .thumb {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-top: 1.5em;
        text-align: center;
    }
    .-interview .main .thumb img {
        max-width: 460px;
        width: 100%;
    }
    .-interview .main .textArea {
        width: 100%;
        text-align: center;
    }
    .-interview .main .textArea .orange {
        font-size: 105%;
    }
    .-interview .main .textArea .ttl {
        font-size: 160%;
    }
    .-interview .main .textArea .btnArea .basicBtn {
        margin-left: auto;
        margin-right: auto;
    }
}

.-interview .article > *:first-child {
    margin-top: 0 !important;
}

.-interview .article .interviewLabel {
    font-size: 130%;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 1em;
    margin-top: 2em;
    padding-left: 1.5em;
    position: relative;
}

.-interview .article .interviewLabel:before {
    content: "";
    width: 1em;
    height: 1px;
    background: #F17B00;
    position: absolute;
    left: 0;
    top: 50%;
}

@media screen and (max-width: 480px) {
    .-interview .article .interviewLabel {
        font-size: 120%;
    }
}

.-interview .article p {
    line-height: 1.8;
}

.-interview .article .col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.-interview .article .col2 .thumb {
    width: 40%;
    max-width: 400px;
}

.-interview .article .col2 p {
    display: block;
    width: 57%;
}

.-interview .article .col2.-left .thumb {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

@media screen and (max-width: 767px) {
    .-interview .article .col2 {
        display: block;
    }
    .-interview .article .col2 p {
        width: 100%;
    }
    .-interview .article .col2 .thumb {
        width: 100%;
        margin-top: 1em;
    }
}

.-interview .btnArea {
    margin-top: 2em;
}

.-interview .btnArea .basicBtn {
    display: block;
    background: #002D55;
    color: #FFF;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-radius: 5em;
    padding: 1em 1em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.-interview .btnArea .basicBtn:after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    background: url("../img/common/icon-back.svg") no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 1em;
    top: 50%;
    margin-top: -0.3em;
}

.-interview .btnArea .basicBtn:hover {
    opacity: 0.8;
}
