@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 {
    color: #000000;
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

a:hover {
    opacity: 0.7;
}

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 {}

[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, sans-serif", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

body::selection {
    background: #C30D23;
    color: white;
}

[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: #cf1126;
    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;
}

.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: #c30d23;
    width: 100%;
    font-size: 1.4rem;
    margin-top: 1rem;
    display: block;
    line-height: initial;
}

.formControl {
    width: 100%;
    padding: 1rem;
}


/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "游ゴシック体", Meiryo, sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #000000;
    background-color: #FFFFFF;
    letter-spacing: 0.15em;
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    cursor: none!important;
}

/*カーソル要素*/
#cursor {
    position: fixed;
    background: #C30D23;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.1s;
}

/*ちょっと遅れてついてくるストーカー要素*/
#stalker {
    position: fixed;
    background: rgba(195, 13, 35, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin: -30px 0 0 -30px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.5s;
}

#cursor.active,
#stalker.active {
    transform: scale(2.0);
}

body .wrap {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

@media all and (-ms-high-contrast: none) {
    body .wrap.radioFormFix {
        overflow-x: visible !important;
    }
}

@media screen and (max-width: 820px) {
    body {
        font-size: 1.5rem;
    }
}


body a {
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
    opacity: 0.8;
    cursor: none;
}

body .inner,
.companyWrapper .whiteBox .flexBox {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1600px) {

    body .inner,
    .companyWrapper .whiteBox .flexBox,
    #company .messageWrapper {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (max-width: 1100px) {

    .companyWrapper .whiteBox .flexBox,
    #company .messageWrapper {
        padding-left: 0;
        padding-right: 0;
    }

    footer .footTop .inner {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 980px) {
    body .inner {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 720px) {
    body .inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media screen and (max-width: 560px) {
    body .inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 480px) {
    body .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1160px) {
    body .inner {
        width: 100%;
    }
}

body .en {
    font-family: "Poppins", sans-serif;
}

body input[type="text"],
body textarea {
    -webkit-appearance: none;
}

body select {
    background: none !important;
    padding: 0.6em !important;
}

body .spShow {
    display: none;
}

@media screen and (max-width: 720px) {
    body .spShow {
        display: block;
    }
}

@media screen and (max-width: 720px) {
    body .pcShow {
        display: none;
    }
}



/*==================================================================================================
	ヘッダー
==================================================================================================*/
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 90px;
    padding: 2rem;
    padding-right: 0;
    transition: background-color 0.3s ease;
}

header a {
    color: #fff;
}


header .headLogo {
    max-width: 440px;
    width: 100%;
    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;
    align-items: baseline;
    z-index: 1000;
}

header .headLogo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1100px) {
    header .headLogo {
        width: 300px;
    }

    header .headLogo .headLogo_01 img {
        width: 90%;
    }
}

@media screen and (max-width: 820px) {
    header {
        height: 66px;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 1rem 2rem;
    }

    header .headLogo {
        width: 280px;
    }
}

.headMenu {
    max-width: 650px;
    width: 100%;
    background-color: #000000;
    border-radius: 0 0 0 10px;
    position: relative;
    z-index: 900;
}

.headMenu .navList {
    max-width: 550px;
    height: 90px;
    padding: 2rem;
    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: flex-start;
    align-items: center;
    position: relative;
}

.headMenu .navList .current a {
    position: relative;
}

.headMenu .navList .current a.underline::before {
    position: absolute;
    content: "";
    bottom: -30px;
    right: 0;
    width: 100%;
    border-bottom: 5px solid #CF1126;
}

.headMenu .navList__item>a {
    display: block;
    text-align: center;
    font-weight: 400;
    position: relative;
    margin: 0 1.5rem;
}

.headMenu .navList__contact {
    display: none;
    background: #C30D23;
}

.headMenu .navList__item span {
    display: block;
}

header .contactBox a {
    position: absolute;
    top: 0;
    right: 0;
    background: #C30D23;
    padding: 2rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    height: 90px;
    width: 130px;
    text-align: center;
    font-weight: 400;
    display: block;
}

header .contactBox a img {
    display: block;
    width: 25px;
    margin: 0 auto;
}

@media screen and (max-width: 820px) {
    header .contactBox {
        display: none;
    }
}



/*==================================================================================================
	ハンバーガーメニュー、ヘッダー子リスト
==================================================================================================*/
/* 初期状態（PC） */
.activeLogo {
    display: none;
}

.humburgerBtn {
    display: none;
    background: #C30D23;
    padding: 2rem;
}

.humburgerLine span {
    display: block;
    height: 2px;
    width: 20px;
    margin: .5rem auto;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
}

.humburgerBtn.open .top {
    transform: translateY(7px) rotate(45deg);
}

.humburgerBtn.open .middle {
    opacity: 0;
}

.humburgerBtn.open .bottom {
    transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 820px) {
    .humburgerBtn {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1000;
    }

    .headMenu.active {
        display: block;
    }

    .headMenu {
        display: none;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10rem 2rem;
        text-align: center;
        height: 100vh;
    }

    .headMenu .navList {
        display: block;
        width: 95%;
        margin: 0 auto;
    }

    .headMenu .navList__item {
        width: 100%;
        padding-bottom: 0;
        position: relative;
    }

    .headMenu .navList__contact {
        display: block;
        border: none;
        margin: 4rem auto 0;
        width: 280px;
        height: 60px;
        border-radius: 60px;
    }

    .headMenu .navList__contact a {
        text-align: center;
        color: #fff;
        display: block;
        width: 280px;
        height: 60px;
        padding: 1.5rem 1rem;
    }

    .headMenu .navList__contact a img {
        width: 20px;
        margin-right: 1rem;
        margin-bottom: .4rem;
    }

    .headMenu .navList__item {
        text-align: left;
        padding: 1.5rem .5rem;
        border-bottom: .5px solid #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .headMenu .navList__item:first-of-type {
        border-top: .5px solid #fff;
    }

    .headMenu .navList .current a::before {
        width: 0;
    }
}



header .childList li a {
    color: #fff;
}

@media screen and (max-width: 820px) {
    header .childList {
        display: none;
        margin-top: 3rem;
    }
}

.navList__toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: none;
    border: none;
    z-index: 2;
}

.navList__toggle::before,
.navList__toggle::after {
    content: '';
    position: absolute;
    background-color: #C30D23;
    transition: transform 0.3s;
}

.navList__toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.navList__toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.parentLink.open .navList__toggle::after {
    transform: scaleY(0);
}

@media screen and (min-width: 821px) {
    header .childList li {
        margin-bottom: 1.5rem;
    }

    .navList__item.parentLink {
        position: relative;
    }

    .navList__item.parentLink:hover .childList {
        opacity: 1;
        transition: opacity .3s, visibility .3s;
        visibility: visible;
    }

    .navList__item.parentLink .childList {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 3rem 3rem 1rem 3rem;
        z-index: 1000;
        width: max-content;
        border-radius: 0 0 10px 10px;
        transition: opacity .3s, visibility .3s;
    }

    /* トグルボタンはPCで非表示 */
    .navList__toggle {
        display: none;
    }
}

/*==================================================================================================
	お問い合わせ
==================================================================================================*/
#inquiry {
    padding-top: 0;
    padding-bottom: 9rem;
}

#inquiry .thinTtl {
    letter-spacing: -.04em;
}

#inquiry .ttlArea {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 auto 10rem;
}

#inquiry .ttlArea .topSubttl {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 2.5rem;
}

#inquiry .contactArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#inquiry .contactArea .telBox {
    margin-bottom: 0;
    width: 33%;
    text-align: center;
    position: relative;
    display: block;
}

#inquiry .contactArea .telBox:nth-of-type(1):after,
#inquiry .contactArea .telBox:nth-of-type(2):after {
    position: absolute;
    content: "";
    right: 0;
    top: 50px;
    width: 1px;
    height: 100px;
    border-right: solid 1px #C30D23;
}

#inquiry .contactArea .telBox img {
    height: 50px;
    width: auto;
    margin-bottom: 3.4rem;
}

#inquiry .telBox .telNumber {
    font-size: 2.3rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #C30D23;
    line-height: 1;
}


@media screen and (max-width: 900px) {
    #inquiry .contactArea .telBox {
        width: 45%;
        padding: 2rem;
    }

    #inquiry .contactArea .telBox:first-of-type {
        width: 100%;
        margin-bottom: ;
    }

    #inquiry .ttlArea {
        margin: 0 auto 5rem;
    }

    #inquiry .contactArea .telBox:nth-of-type(1):after,
    #inquiry .contactArea .telBox:nth-of-type(2):after {
        border-right: none;
    }

    #inquiry .contactArea .telBox img {
        height: 40px;
        margin-bottom: 1.5rem;
    }

    #inquiry .telBox h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    #inquiry .telBox .smallBtn_red a {
        width: 180px;
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 600px) {
    #inquiry {
        padding-bottom: 3rem;
    }

    #inquiry .ttlArea .subTtl {
        bottom: 40px;
    }

    #inquiry .contactArea .telBox {
        width: 100%;
        padding: 4rem 0;
    }

    #inquiry .contactArea .telBox:before {
        position: absolute;
        width: 150px;
        content: "";
        height: 1px;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-bottom: 1px solid #C30D23;
    }

    #inquiry .ttlArea .topSubttl {
        bottom: 45px;
    }
}

/*==================================================================================================
	バナーエリア
==================================================================================================*/
.bannerWrap {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bannerWrap .inner {
    padding-left: 30px;
    padding-right: 30px;
}

.bannerWrap .inner .bannerArea .bannerList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.bannerWrap .inner .bannerArea .bannerList__item {
    width: 25%;
    padding: 0 0.5em 0.5em 0;
}

@media screen and (max-width: 860px) {
    .bannerWrap .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bannerWrap .inner .bannerArea .bannerList__item {
        width: 33%;
    }
}

@media screen and (max-width: 560px) {
    .bannerWrap .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bannerWrap .inner .bannerArea .bannerList {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .bannerWrap .inner .bannerArea .bannerList__item {
        width: 50%;
        padding: 0 0.5em 0.5em 0;
    }
}

/*==================================================================================================
	フッター
==================================================================================================*/
footer {
    font-size: 1.3rem;
    background: #000000;
    color: #adadad;
    line-height: 1.5;
}

.footTop .inner {
    padding: 10rem 0;
}

.footCompany__address {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 50px;
}

footer .logo {
    margin-bottom: 4rem;
}

.footCompany__address .logo img {
    width: 300px;
}

.footCompany__address .textArea {
    margin-bottom: 4rem;
}

.ftSitemap {
    width: 40%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
    gap: 70px;
    margin-top: 4rem;
}

footer .parentLink {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.subLink {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.parentLink a,
.subLink a,
.copy {
    color: #fff;
}

.childList {
    margin-top: 1.5rem;
}

.childList li {
    margin-bottom: .5rem;
}

.childList li a {
    font-size: 1.4rem;
    color: #adadad;
}

.footBottom {
    background: #C30D23;
    padding: 1rem 0;
    text-align: center;
}

@media (max-width: 1100px) {
    .footCompany__address .logo img {
        width: 260px;
    }

    .footCompany__address {
        width: 100%;
        ju
    }

    .footCompany__address .flexBox {
        width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }

    .ftSitemap {
        width: 60%;
        gap: 40px;
    }

    footer .parentLink {
        margin-bottom: 2rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
    }
}

@media (max-width: 600px) {
    footer {
        font-size: 1.2rem;
    }

    footer .logo {
        max-width: 260px;
    }

    .footCompany__address .textArea {
        max-width: 46%;
    }

    .footCompany__address {
        gap: 0;
        -webkit-box-pack: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
    }

    .ftSitemap {
        width: 100%;
        display: block;
        margin-top: 4rem;
    }

    footer .parentLink {
        display: none;
    }

    footer .copy {
        font-size: 1rem;
    }
}



/*==================================================================================================
	共通 Common
==================================================================================================*/
.center {
    text-align: center;
}

.white {
    color: white;
}

.bgBeige {
    background-color: #F2ECE8;
}

.bgBeige.-navy {
    background-color: #2f4858;
}

.mContainer {
    padding: 18rem 0 14rem;
}

.mContainer.white {
    background: #fff;
}

.whiteBox {
    padding: 10rem 0;
    background: #fff;
}

.grayBox {
    padding: 7rem;
    background: #F4F4F4;
    border-radius: 50px;
}

@media screen and (max-width: 1100px) {
    .mContainer {
        padding: 15rem 0 10rem;
    }

    .whiteBox {
        padding: 7rem 4rem;
    }

    .grayBox {
        padding: 5rem 3rem;
        background: #F4F4F4;
        border-radius: 30px;
    }
}

@media screen and (max-width: 600px) {
    .mContainer {
        padding: 9rem 0 7rem;
    }

    .whiteBox {
        padding: 5rem 3rem;
    }
}

/* flex */
.flexBox {
    flex-wrap: wrap;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
}

.flexBox.rv {
    flex-direction: row-reverse;
}

.flexBox .txtArea {
    width: 48%;
}

.flexBox .imgArea {
    width: 48%;
}

@media screen and (max-width: 600px) {
    .flexBox {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }

    .flexBox .txtArea {
        width: 100%;
        margin-bottom: 3rem;
    }

    .flexBox .imgArea {
        width: 100%;
    }
}

/*==================================================================================================
	マージン
==================================================================================================*/
.mb40 {
    margin-bottom: 4rem;
}

/*==================================================================================================
	テーブル
==================================================================================================*/
.basicTable {
    width: 100%;
    text-align: left;
}

.basicTable tr {
    border-top: 1px solid #ccc;
    vertical-align: top;
}

.basicTable tr:last-of-type {
    border-bottom: 1px solid #ccc;
}

.basicTable th {
    width: 20%;
    padding: 2.8rem 0;
}

.basicTable td {
    padding: 2.8rem 0;
}

@media screen and (max-width: 600px) {
    .basicTable tr {
        display: block;
        font-size: 1.5rem;
    }

    .basicTable th {
        display: block;
        width: 100%;
        padding: 2rem 0 1rem;
    }

    .basicTable td {
        width: 100%;
        padding: 0 0 2rem;
    }
}


/*==================================================================================================
	テキスト
==================================================================================================*/
.center {
    text-align: center;
}

h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.h2Ttl {
    font-size: 5rem;
    margin-bottom: 7rem;
    font-weight: 600;
    font-style: normal;
    color: #000;
    position: relative;
    line-height: 1.2;
    text-align: center;
}

.h2Ttl::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: #c30d23;
}

.subTtl {
    font-size: 4rem;
    margin-bottom: 5rem;
    font-weight: 500;
}

.mTxt {
    font-size: 2.6rem;
}

.sTxt {
    font-size: 1.4rem;
}

.bigTtl {
    font-size: 9rem;
    font-family: "Poppins", sans-serif;
}

.thinTtl {
    font-size: 18rem;
    opacity: 0.1;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    letter-spacing: .01em;
    color: #C30D23;
}

body .txtLink {
    text-decoration: underline;
}

body .txtLink:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1100px) {
    .subTtl {
        font-size: 3.2rem;
        margin-bottom: 3.6rem;
    }

    .sTxt {
        font-size: 1.3rem;
    }

    .bigTtl {
        font-size: 7rem;
    }

    .thinTtl {
        font-size: 14rem;
    }
}

@media screen and (max-width: 600px) {
    .h2Ttl {
        font-size: 2.8rem;
        margin-bottom: 6rem;
    }

    .h2Ttl::before {
        bottom: -20px;
        width: 60px;
        height: 6px;
    }

    .subTtl {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .mTxt {
        font-size: 2rem;
    }

    .sTxt {
        font-size: 1.2rem;
    }

    .bigTtl {
        font-size: 5.5rem;
    }

    .thinTtl {
        font-size: 10rem;
    }
}



/*==================================================================================================
	ボタン Button
==================================================================================================*/

.basicBtn_red a,
.basicBtn_wh a {
    width: 320px;
    height: 80px;
    margin-top: 8rem;
    font-size: 2rem;
    padding: 3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 100px;
    background: #C30D23;
    color: #fff;
    text-align: left;
    position: relative;
}

.basicBtn_wh a {
    background: #fff;
    color: #000;
}

.basicBtn_red a::before,
.basicBtn_wh a::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: #fff;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        right 0.3s ease;
}

.basicBtn_wh a::before {
    background: #C30D23;
}

.basicBtn_red a::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 27px;
    width: 24px;
    height: 18px;
    background: url(../img/common/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s ease;
}

.basicBtn_wh a::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 27px;
    width: 24px;
    height: 18px;
    background: url(../img/common/btn_arrow_wh.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s ease;
}

.basicBtn_red a:hover::before,
.basicBtn_wh a:hover::before {
    width: 300px;
    border-radius: 100px;
}

.basicBtn_red a:hover::after,
.basicBtn_wh a:hover::after {
    right: 42%;
}

.basicBtn_red a:hover,
.basicBtn_wh a:hover {
    opacity: 1;
}

@media screen and (max-width: 1100px) {

    .basicBtn_red a,
    .basicBtn_wh a {
        width: 280px;
        height: 70px;
        margin-top: 8rem;
        font-size: 1.6rem;
        padding: 2rem;
    }

    .basicBtn_red a::before,
    .basicBtn_wh a::before {
        top: 8px;
        right: 10px;
        width: 50px;
        height: 50px;
    }

    .basicBtn_red a::after,
    .basicBtn_wh a::after {
        top: 25px;
        right: 22px;
    }
}

@media screen and (max-width: 600px) {

    .basicBtn_red a,
    .basicBtn_wh a {
        width: 260px;
        height: 60px;
        margin-top: 5rem;
        padding-left: 3rem;
    }

    .basicBtn_red a::before,
    .basicBtn_wh a::before {
        top: 5px;
        right: 5px;
        width: 50px;
        height: 50px;
    }

    .basicBtn_red a::after,
    .basicBtn_wh a::after {
        top: 23px;
        right: 20px;
        width: 20px;
        height: 14px;
    }
}

.smallBtn a,
.smallBtn_red a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 200px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #c30d23;
    color: #c30d23;
    text-align: center;
    letter-spacing: normal;
    position: relative;
    line-height: 1;
    padding: 1rem 4rem 1rem 6rem;
    font-size: 1.5rem;
}

.smallBtn_red a {
    background: #c30d23;
    color: #fff;
    width: 220px;
    padding: 1rem 3rem;
    margin: 0 auto;
}

.smallBtn a::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 34px;
    width: 14px;
    height: 10px;
    background: url(../img/common/btn_arrow_red.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s ease;
}

.smallBtn a:hover {
    color: #fff;
    background: #c30d23;
    opacity: 1;
}

.smallBtn_red a:hover {
    color: #c30d23;
    background: #fff;
    opacity: 1;
}

.smallBtn a:hover::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 34px;
    width: 14px;
    height: 10px;
    background: url(../img/common/btn_arrow_wh.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* TOPに戻る */
.scrollBtn a {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.scrollBtn img {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 24px;
    height: 18px;
    transform: rotate(270deg);
    margin: 0 auto;
}

.scrollBtn.isScrolled {
    bottom: 20px;
}

@media screen and (max-width: 480px) {
    .scrollBtn a {
        right: 15px;
        bottom: 15px;
    }

    .scrollBtn.isScrolled {
        bottom: 0px;
    }
}

/*==================================================================================================
	画像
==================================================================================================*/
.bigImg {
    width: 100%;
}

.roundedImg {
    border-radius: 50px;
}

@media screen and (max-width: 600px) {
    .roundedImg {
        border-radius: 30px;
    }
}

/*==================================================================================================
	動き
==================================================================================================*/

/* 初期状態 */
.slide-left,
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.slide-left {
    transform: translateX(-50px);
}

/* 表示状態 */
.slideIn {
    opacity: 1;
    transform: translateX(0);
}

.fadeIn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 1s ease-out;
}

.fadeIn__item {
    opacity: 0;
    transform: translateY(30px);
}



/*==================================================================================================
	下層タイトル
==================================================================================================*/
.pageHead {
    height: 460px;
    position: relative;
    padding: 14rem 0;
    z-index: 0;
}

.pageHead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .50), rgba(0, 0, 0, .50));
}

.pageHead .ttl {
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
}

.pageHead .ttl .en {
    font-weight: 600;
    font-size: 9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pageHead .ttl .jp {
    font-size: 2rem;
    font-weight: 400;
}

@media screen and (max-width: 560px) {
    .pageHead {
        height: 200px;
        padding: 0;
    }

    .pageHead .ttl {
        position: absolute;
        top: 40%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        color: #fff;
        text-align: center;
    }

    .pageHead .ttl .en {
        font-weight: 600;
        font-size: 3.3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .pageHead .ttl .jp {
        font-size: 1.2rem;
    }
}

.breadWrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    padding: 3rem;
    border-radius: 15px 15px 0 0;
    height: 64px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1160px) {
    .breadWrap {
        max-width: calc(100% - 10rem);
    }
}

@media screen and (max-width: 980px) {
    .breadWrap {
        max-width: calc(100% - 8rem);
    }
}

@media screen and (max-width: 720px) {
    .breadWrap {
        max-width: 100%;
        padding: 1.5rem 2rem;
        border-radius: 0 0;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        bottom: -40px;
    }
}

.breadWrap .breadList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadWrap .breadList__item {
    font-size: 1.2rem;
    margin-right: 2rem;
    color: #787878;
    position: relative;
    line-height: 1;
}

.breadWrap .breadList__item a {
    color: #787878;
}

.breadWrap .breadList__item:after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 4px;
    right: -10px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #787878;
    border-right: 1px solid #787878;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadWrap .breadList__item:last-of-type {
    margin-right: 0;
    color: #000;
}

.breadWrap .breadList__item:last-of-type:after {
    content: none;
}

@media screen and (max-width: 720px) {
    .breadWrap .breadList__item {
        font-size: 1rem;
        margin-right: 1.5rem;
    }

    .breadWrap .breadList__item:after {
        top: 3px;
        right: -7px;
    }
}