@charset "utf-8";

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
    color: #222;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}



/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #222;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #222;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

@media(min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}



html {
    overflow: auto;
}

body {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    font-family: 'M PLUS 1p', sans-serif;
    background-color: #fff;
    overflow: hidden;
    font-size: 16px;
    margin: 0 auto;
}

.wrapepr {
    width: 100%;
    height: auto;
    max-width: 1200px;
}

img {
    max-width: 100%;
}

header {
    width: 100%;
}

section {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #222;
}

.fl {
    display: -webkit-flex;
    display: flex;
}

.fl-j-b {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}

.fl_c {
    justify-content: center;
}

.fl_l {
    justify-content: left;
}

.fl-wr {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pc-none {
    display: none;
}

.pc-none02 {
    display: none;
}

.sp-none {
    display: block;
}

@media screen and (max-width:1024px) {
    .pc-none02 {
        display: block;
    }

    .sp-none {
        display: none;
    }
}


@media screen and (max-width:768px) {
    .pc-none {
        display: block;
    }

    .pad-none {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .sp-none {
        display: none;
    }
}

.fade-in {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* CLEARFIX */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

body.menu-open {
    overflow: hidden;
}

.nav-wrap {
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 1000;
    transition: .5s;
}

.nav-wrap.hide {
    transform: translateY(-100%);
}

.header-logo {
    width: 465px;
    margin: 30px 2% 0 50px;
}

.header-logo img {
    max-width: 100%;
}

.hamburger {
    position: absolute;
    right: 40px;
    top: 35px;
    width: 35px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #222;
    margin: 6px 0;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    position: fixed;
    top: 0;
    right: -500px;
    width: 30%;
    max-width: 500px;
    min-width: 350px;
    height: 100vh;
    background: #FDF3EB;
    padding: 120px 50px;
    transition: .4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .1);
}

.nav.active {
    right: 0;
}

.nav ul {
    display: flex;
    flex-direction: column;
}

.nav ul li {
    margin: 20px 0;
}

.nav ul li a {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    transition: .3s;
}

.nav ul li a:hover {
    color: #E73828;
}

/* CTAボタン */

.nav .btn {
    margin-top: 30px;
}

.nav .btn a {
    display: inline-block;
    padding: 18px 25px;
    border-radius: 100px;
    border: 1px solid #222;
    background: #FDF3EB;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: .3s;
}

.nav .btn a:hover {
    background: #E73828;
    color: #fff;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

header .sns {
    display: flex;
    position: fixed;
    flex-direction: column;
    gap: 10px;
    left: 50px;
    margin-top: 100px;
    z-index: 999;
}

@media screen and (max-width:1200px) {

    .nav-wrap {
        height: 75px;
    }

    .header-logo {
        width: 320px;
        margin: 20px 3% 0 2%;
    }

    .hamburger {
        top: 25px;
    }

    .nav {
        width: 320px;
        padding: 100px 30px;
    }

    .nav ul li a {
        font-size: 18px;
    }

    .nav .btn a {
        font-size: 14px;
        padding: 15px 20px;
    }
}

@media screen and (max-width:768px) {
    header .sns {
        display: none;
    }

    .hamburger {
        right: 25px;
    }
}

/* first-view */
.first-view {
    width: 100%;
    height: 100vh;
    max-height: 850px;
    background-color: #FDF3EB;
    display: flex;
    color: #fff;
    margin: 0 auto;
}

.first-view-content {
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.fv_wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.fv_wrap h1 img {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.fv_wrap h2 {
    margin-bottom: 50px;
}

.fv_wrap h2 img {
    width: 100%;
    max-width: 50%;
    height: 100%;
}

.first-view h1 {
    width: auto;
    max-width: 917px;
    margin: 15px auto 0;
}

.fv_wrap h2 {
    margin-bottom: 50px;
    margin-top: -30px;
}

@media (max-width: 1440px) {
    .fv_wrap {
        max-width: inherit;
        margin: 0 auto;
        padding: 0 2%;
    }

    .first-view {
        height: 80vh;
    }
}

@media (max-width: 1200px) {
    .first-view {
        padding-top: 1em;
        height: 75vh;
    }
}

@media (max-width: 900px) {
    .first-view {
        height: 65vh;
    }

    .first-view h1 {
        margin: 0 auto;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .first-view {
        height: 100vh;
        min-height: 1080px;
    }

    .fv_wrap h2 {
        display: block;
        margin-top: 0;
    }

    .fv_wrap h2 img {
        width: 100%;
        max-width: 100%;
        height: inherit;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .first-view {
        height: 100vh;
        min-height: 900px;
    }
}

@media (max-width: 520px) {
    .first-view {
        height: 100vh;
        min-height: 500px;
    }

    .first-view h1 {
        font-size: 1.5rem;
    }

    .first-view p {
        font-size: 0.9rem;
    }

    .first-view h1 img.sp_none {
        display: none;
    }

    .first-view h1 img.pc_none {
        display: block;
    }
}

section.CTA {
    padding: 50px 2% 100px;
    text-align: center;
    margin: 0 auto;
    background: url("../img/bg03.svg") no-repeat left top/cover;
}

section.CTA img {
    width: 50%;
    margin-bottom: 25px;
}

section.CTA p {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 10px;
    color: #E73828;
}

section.CTA p::before,
section.CTA p::after {
    width: 1px;
    height: 28px;
    content: '';
    background-color: #E73828;
}

section.CTA p::before {
    margin-right: 0.5em;
    transform: rotate(-30deg);
    left: 0;
    top: 0;
}

section.CTA p::after {
    margin-left: 0.5em;
    transform: rotate(30deg);
}

section.CTA a span {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    section.CTA img {
        width: 70%;
    }

}

@media (max-width: 768px) {
    section.CTA {
        padding: 10px 2% 40px;
        text-align: center;
        margin: 0 auto;
        background: url(../img/bg03.svg) no-repeat left top / cover;
    }

    section.CTA img {
        width: auto;
    }

}


.btn {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.btn img.btn_add {
    margin-bottom: 20px;
}

.btn a {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.btn a:hover {
    background-color: #E73828;
    letter-spacing: 1.5px;
}

.btn a::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: #ffffff #ffffff transparent transparent;
    transform: rotate(45deg);
    top: 40%;
    right: 15%;
    transition: all 0.2s ease-in-out;
}


.btn a:hover::after {
    right: 13%;
}

a.moreview {
    display: block;
    width: 500px;
    height: 80px;
    border-radius: 50px;
    background: var(--main, #E73828);
    color: var(--base-white, #FFF);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0 auto;
    padding-top: 27px;
}

a.moreview.contact {
    display: block;
    width: 500px;
    height: 80px;
    border-radius: 50px;
    background: var(--main, #E73828);
    color: var(--base-white, #FFF);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0 auto;
    padding-top: 11px;
}

nav a.moreview {
    display: block;
    width: 500px;
    height: 50px;
    border-radius: 50px;
    background: var(--main, #E73828);
    color: var(--base-white, #FFF);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0 auto;
    padding-top: 27px;
}

.btn.btn02 a.moreview {
    background: url(../img/icon_07.png) no-repeat left 25px bottom 23px / 50px auto;
    background-color: var(--main, #E73828);
}

.moreview.member {
    background-color: #E73828;
    margin-bottom: 30px;
}

.moreview.member:hover {
    background-color: #e44d12;
}

@media (max-width: 768px) {
    a.moreview.contact {
        width: 400px;
        height: 70px;
        font-size: 20px;
        padding-top: 8px;
    }

    .btn a::after {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        border: 1.5px solid;
        border-color: #ffffff #ffffff transparent transparent;
        transform: rotate(45deg);
        top: 43%;
        right: 20px;
        transition: all 0.2s ease-in-out;
    }

    .btn a:hover::after {
        right: 20px;
    }

}


@media (max-width: 520px) {
    a.moreview {
        width: 90%;
        height: 70px;
        font-size: 18px;
        padding-top: 1.6rem;
    }

    a.moreview.contact {
        width: 335px;
        height: 70px;
        font-size: 18px;
        padding-top: 12px;
    }

    .btn.btn02 a.moreview {
        background: url(../img/icon_07.png) no-repeat left 25px bottom 23px / 35px auto;
        background-color: var(--main, #E73828);
    }
}



section.top_first {
    margin: 0 auto 120px;
    /* padding: 130px 0 0; */
    position: relative;
    background-image: linear-gradient(3deg, #ffffff, #fdf3eb);
}

section.top_first::after {
    content: '';
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 115px;
    background: url("../img/bg01.svg") no-repeat left 0 top /100%;
    z-index: 1;
}

section.top_first .wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

section.top_first .wrap h2 {
    width: 50%;
    text-align: center;
    margin: 0 auto 60px;
}

section.top_first .wrap ul {
    width: 100%;
    gap: 4%;
    margin-bottom: 60px;
}

section.top_first .wrap li {
    width: calc(96% /2);
    height: 100%;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(125, 101, 82, .07);
    background: url("../img/icon01.svg") no-repeat left 50px bottom 23px/auto;
}

section.top_first .wrap li p {
    padding: 15px 30px 15px 120px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

section.top_first .wrap h3 {
    text-align: center;
    margin: 0 auto 30px;
}

section.top_first .wrap h3 img {
    width: 975px;
    margin: 0 auto;
}

section.top_first .wrap h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    background: url("../img/icon02.svg") no-repeat left top/auto 115px;
    margin-bottom: 50px;
}

section.top_first .wrap h4 span {
    color: #2649A1;
}


@media screen and (max-width:1200px) {
    section.top_first .wrap ul {
        width: 96%;
        gap: 2%;
        margin-bottom: 60px;
        margin: 0 auto;
    }

    section.top_first .wrap li p {
        padding: 15px 30px 15px 80px;
        font-size: 16px;
    }

    section.top_first .wrap li {
        margin-bottom: 30px;
        background: url(../img/icon01.svg) no-repeat left 19px bottom 25px / auto;
    }
}

@media screen and (max-width:768px) {
    section.top_first .wrap {
        max-width: 1200px;
        width: 96%;
        margin: 0 auto;
    }

    section.top_first {
        margin: 0 auto 80px;
        padding: 80px 0 0;
    }

    section.top_first .wrap ul {
        width: 100%;
        max-width: 585px;
        margin-bottom: 20px;
        display: block;
        margin: 0 auto;
    }

    section.top_first .wrap li {
        width: calc(100% / 1);
    }

    section.top_first .wrap li p {
        padding: 15px 30px 15px 80px;
        font-size: 16px;
        min-height: 80px;
    }

    section.top_first .wrap h3 img {
        width: 476px;
    }
}

@media screen and (max-width: 520px) {
    section.top_first {
        margin: 0 auto 80px;
        padding: 0;
    }

    section.top_first .wrap h3 img {
        width: 90%;
    }
}


.campaign {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}

.campaign img {
    width: 1000px;
    max-width: 100%;
    transition: all 0.2s ease-in-out;
}

.campaign a:hover>img {
    transform: translateY(-7px);
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width:1200px) {

    .campaign img {
        width: 70%;
    }
}

@media screen and (max-width:900px) {
    .campaign {
        padding-bottom: 50px;
        padding: 0 2% 40px;
    }
}

@media screen and (max-width:768px) {
    .campaign img {
        width: auto;
    }
}


section.second {
    margin: -120px auto 0;
    position: relative;
    background: url("../img/bg02.png") no-repeat left bottom 2px/cover;
}

section.second .wrap {
    width: 100%;
    max-width: 1440px;
    padding: 200px 0 0;
    margin: 0 auto;
}

section.second .wrap h2 {
    width: 330px;
    text-align: center;
    margin: 0 auto 10px;
}

section.second .wrap h4 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
}

section.second .wrap h4 span {
    color: #E73828;
}

section.second .wrap p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

section.second .offer {
    text-align: center;
    margin-top: -35px;
}

section.second .offer img {
    width: 100%;
    margin-top: 2px;
}

@media screen and (max-width:1200px) {
    section {
        margin: 0 auto 60px;
        padding: 100px 2% 60px;
    }

    section.top_first .wrap h4 {
        background: url(../img/icon02.svg) no-repeat center top / auto 100px;
        padding-top: 100px;
    }

    section.second {
        margin: -120px auto 0;
        position: relative;
        background: url(../img/bg02.png) no-repeat left bottom 2px / cover;
        padding-bottom: 18%;
    }

    section.second .wrap {
        padding: 50px 0 0;
    }

    section.second .offer {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    section {
        margin: 0 auto 60px;
        padding: 80px 2% 30px;
    }

    section .wrap {
        margin-bottom: 60px;
    }

    section.second {
        margin: -80px auto -25px;
        padding-bottom: 80px;
    }

    section.top_first .wrap h2 {
        text-align: center;
        margin-bottom: 10px;
        width: 90%;
    }


    section.top_first .wrap h3 {
        text-align: center;
        margin: 0 auto 10px;
    }

    section.top_first .wrap h4 {
        font-size: 18px;
        background: url(../img/icon02.svg) no-repeat center top / auto 50px;
        margin-bottom: 30px;
        padding-top: 60px;
    }
}

@media screen and (max-width:768px) {
    section.second .wrap {
        width: 100%;
        max-width: 1440px;
        padding: 20px 0 0;
        margin: 0 auto;
    }

    section.second .wrap h4 {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    section.second .wrap p {
        font-size: 14px;
    }

    section.second {
        padding-bottom: 37%;
    }

    section.second .wrap h2 {
        width: 250px;
        text-align: center;
        margin: 0 auto 10px;
    }
}



section.works {
    text-align: center;
    margin: 50px auto;
}

section.works img {
    width: 50%;
    max-width: 100%;
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width:1200px) {
    section.works {
        margin: 50px auto;
        padding: 0 2%;
    }

    section.works img {
        width: 70%;
    }
}

@media screen and (max-width:768px) {
    section.works {
        text-align: center;
        margin: 60px auto 40px;
        padding: 0 2%;
    }

    section.works img {
        width: auto;
    }
}



section.voice {
    width: 100%;
    margin: 0 auto;
    padding: 100px 2% 80px;
    text-align: center;
}

section.voice.style02 {
    width: 100%;
    margin: 0 auto;
    padding: 100px 2% 80px;
    text-align: center;
    background-color: #FDF3EB;
}

section.voice h2 {
    margin-bottom: 40px;
    width: 330px;
    margin: 0 auto 40px;
}

section .voice_box {
    width: 100%;
    max-width: 900px;
    gap: 40px;
    margin: 0 auto;
    align-items: center;
}

section .voice_box:nth-child(1) {
    margin-bottom: -20px;
}

section .voice_box img {
    max-width: 100%;
    width: 85%;
}

section .voice_box img.v_icon {
    max-width: 100%;
    width: 20%;
}

section .voice_box img.shadow {
    box-shadow: 0 10px 25px 0 rgba(125, 101, 82, .07);
}

@media screen and (max-width:1200px) {
    section .voice_box {
        width: 80%;
        max-width: inherit;
        gap: 0;
        justify-content: center;
        margin: 0 auto 20px;
    }

    section .voice_box img {
        max-width: 90%;
        width: auto;
    }
}

@media screen and (max-width:768px) {
    section.voice {
        width: 100%;
        margin: 0 auto;
        padding: 80px 2%;
        text-align: center;
    }

    section.voice h2 {
        margin-bottom: 0;
        text-align: center;
        width: 250px;
    }

    section.voice h2 img {
        margin: 0 auto;
    }

    section.voice .wrap {
        margin: 0;
    }

    section .voice_box {
        width: 100%;
        max-width: inherit;
        gap: 0;
        margin: 0 auto;
    }

    section .voice_box img {
        max-width: 100%;
        width: auto;
        margin-bottom: -30px;
    }
}

section.advantage {
    width: 100%;
    background-image: linear-gradient(180deg, #D15019, #E73828);
    padding: 100px 0 140px;
    margin: 0 auto;
}

section.advantage h2 {
    margin-bottom: 40px;
    text-align: center;
}

section.advantage .box {
    max-width: 1200px;
    margin: 0 auto 60px;
}

section.advantage h3 {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    padding: .5em 0 .5em 100px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0 auto 20px;
}

section.advantage .box:nth-child(1) h3 {
    background: url(../img/icon_n1.svg) no-repeat left center / auto;
}

section.advantage .box:nth-child(2) h3 {
    background: url(../img/icon_n2.svg) no-repeat left center / auto;
}

section.advantage .box:nth-child(3) h3 {
    background: url(../img/icon_n3.svg) no-repeat left center / auto;
}

section.advantage ul {
    gap: 2%;
    margin: 0 auto;
    width: 100%;
}

section.advantage li {
    background: #fff;
    border-radius: 10px;
    padding: 20px 2.5%;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
}

section.advantage .works {
    text-align: center;
    margin: 0 auto;
}

section.advantage .works img {
    width: 50%;
    max-width: 100%;
    transition: all 0.2s ease-in-out;
}


@media screen and (max-width:1200px) {
    section.advantage {
        width: 100%;
        background-image: linear-gradient(180deg, #D15019, #E73828);
        padding: 80px 2%;
        margin: 0 auto;
    }

    section.advantage .works img {
        width: 70%;
    }
}

@media screen and (max-width:768px) {
    section.advantage .wrap {
        margin-bottom: 0;
    }

    section.advantage .box {
        margin: 0 auto 40px;
    }

    section.advantage h2 {
        margin-bottom: 10px;
    }

    section.advantage h2 img {
        margin: 0 auto;
    }

    section.advantage h3 {
        font-size: 24px;
        font-weight: 600;
        padding: .5em 0 .5em 85px;
        margin: 0 auto 15px;
    }

    section.advantage ul {
        gap: 10px;
        margin: 0 auto;
        width: 100%;
        flex-direction: column;
    }

    section.advantage li {
        border-radius: 5px;
        padding: 10px 2%;
        font-size: 16px;
    }

    section.advantage .works img {
        width: auto;
    }

    section.advantage .works {
        text-align: center;
        margin: -40px auto 0;
    }
}

@media screen and (max-width: 520px) {
    section.advantage h3 {
        font-size: 20px;
        padding: 1em 0 .5em 85px;
        margin: 0 auto 10px;
        letter-spacing: 0;
    }

    section.advantage li {
        padding: 10px 4%;
        font-size: 14px;
        line-height: 1.2;
    }
}

section.problem {
    width: 100%;
    margin: 0 auto;
}

section.problem {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #FAFAFA;
    padding-bottom: 10px;
}

section.problem .problem_icon {
    margin-top: -70px;
    width: 50%;
}

section.problem h2 {
    width: 666px;
    margin: 0 auto 30px;
}

section.problem .wrap {
    margin: -30px auto 60px;
    text-align: center;
    align-items: center;
}

section.problem .wrap .problem_txt:nth-child(2) {
    margin-top: 60px;
}

section.problem .wrap img.problem_txt {
    width: calc(1200px/ 3);
}

@media screen and (max-width:1400px) {
    section.problem .problem_icon {
        width: 80%;
    }

    section.problem .wrap img.problem_txt {
        width: calc(100%/ 3);
    }
}

@media screen and (max-width:1200px) {
    section.problem .problem_icon {
        margin-top: -150px;
    }
}

@media screen and (max-width:768px) {
    section.problem .wrap img.problem_txt {
        width: 70%;
        margin: 0 auto;
    }

    section.problem .wrap {
        margin: -30px auto 0;
    }

    section.problem h2 {
        width: 90%;
        margin: 0 auto 10px;
    }

}

@media screen and (max-width:520px) {
    section.problem .wrap img.problem_txt {
        width: 100%;
    }
}



section.CTA .offer {
    text-align: center;
    margin-top: -35px;
}

section.CTA .offer img {
    width: 100%;
    margin-top: 2px;
}

section.CTA.style02 {
    padding: 50px 0 0;
}

section.CTA.style02 .offer img {
    width: 100%;
    margin-top: -10px;
}

section.CTA.style02 .offer img {
    margin-bottom: -10px;
}


@media screen and (max-width:900px) {
    section.CTA.style02 .offer img {
        margin-top: 30px;
    }
}


@media screen and (max-width:768px) {
    section.CTA.style02 {
        padding: 10px 2% 42%;
        text-align: center;
        margin: 0 auto;
        background: url(../img/bg03.svg) no-repeat left top / cover;
        position: relative;
    }

    section.CTA.style02 .offer img {
        margin-top: 40px;
    }

    section.CTA.style02 .offer img {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}


section.service {
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 0;
}

section.service .wrap {
    text-align: center;
}

section.service h2 {
    text-align: center;
    width: 330px;
    margin: 0 auto 20px;
}

section.service h3 {
    text-align: center;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #2649A1;
}

section.service .service_bottom {
    width: 100%;
    background-color: #F5F5F5;
    padding: 50px 2%;
    margin-top: 50px;
}

section.service .service_bottom h4 {
    position: relative;
    color: #2649A1;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 3px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
    padding-bottom: 20px;
}

section.service .service_bottom h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3.5px;
    background-color: #2649A1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

section.service .service_bottom ul {
    max-width: 1200px;
    margin: 0 auto;
}

section.service .wrap img {
    width: 50%;
}

section.service .be-af img {
    width: calc(1200px/ 2);
}

@media screen and (max-width:1400px) {

    section.service .wrap ul li img {
        max-width: 100%;
    }
}

@media screen and (max-width:1200px) {

    section.service .wrap img {
        width: 70%;
    }

    section.service .be-af img {
        width: calc(80%/ 2);
    }
}

@media screen and (max-width:768px) {
    section.service {
        padding: 80px 0 0;
    }

    section.service h2 {
        text-align: center;
        width: 250px;
        margin: 0 auto;
    }

    section.service h2 img {
        margin: 0 auto;
    }

    section.service h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    section.service .be-af {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }


    section.service .be-af img {
        width: 80%;
    }

    section.service .service_bottom .fl {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
    }

    section.service .service_bottom .fl li {
        width: calc(100%/3);

    }

    section.service .service_bottom h4 {
        font-size: 24px;
        margin-bottom: 20px;
        font-style: italic;
        padding-bottom: 20px;
    }
}

@media screen and (max-width:768px) {
    section.service .service_bottom h4 {
        font-size: 18px;

    }
}

section.merit {
    width: 100%;
    margin: 0 auto;
    padding: 150px 0;
    background: url(../img/bg04.svg) no-repeat left bottom / 100%;
    text-align: center;
}

section.merit h2 {
    width: 70%;
    max-width: 485px;
    margin: 0 auto 30px;
}

section.merit h2 img {
    text-align: center;
}

section.merit h3 {
    text-align: center;
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #E73828;
}

section.merit ul {
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
}


@media screen and (max-width:1200px) {
    section.price {
        margin-bottom: 0;
    }
}

@media screen and (max-width:768px) {
    section.merit {
        margin: 0 auto;
        padding: 80px 0;
        background: url(../img/bg04.svg) no-repeat left bottom / auto;
    }

    section.merit h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:520px) {
    section.merit h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

section.price {
    text-align: center;
    padding: 150px 0 100px;
    background: url(../img/bg05.svg) no-repeat left bottom / auto;
}

section.price h2 {
    width: 330px;
    margin: 0 auto;
}

section.price .wrap01,
section.price .wrap02 {
    max-width: 1300px;
    margin: 0 auto;
}

section.price .wrap01 img,
section.price .wrap02 img {
    width: calc(1300px/ 3);
}

section.price p.add {
    max-width: 1300px;
    margin: -15px auto 10px;
    text-align: right;
    font-size: 12px;
    font-weight: 300;

}

section.price h3 {
    font-size: 28px;
    text-align: center;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #222;
}

section.price h3 span {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #222;
    margin-top: 10px;
    font-style: normal;
}

section.price h4 {
    position: relative;
    font-weight: 600;
    font-size: 34px;
    color: #E73828;
    font-style: italic;
    text-align: center;
    padding-top: 80px;
}

section.price h4::after {
    content: '';
    position: absolute;
    background: url(../img/icon_06.svg) no-repeat left bottom / auto;
    width: 28px;
    height: 58px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

section.price p.txt {
    max-width: 1300px;
    margin: 30px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

section.price p.txt span {
    font-weight: 600;
}

section.price .campaign {
    margin-top: 50px;
}

section.price img.p_icon {
    width: 735px;
}

@media screen and (max-width:1400px) {
    section.price h3 {
        margin-bottom: 20px;
    }

    section.price .wrap01 img,
    section.price .wrap02 img {
        width: calc(100%/3);
    }
}

@media screen and (max-width:1300px) {

    section.price .wrap01,
    section.price .wrap02 {
        justify-self: center;
    }

    section.price img.p_icon {
        width: 70%;
    }
}

@media screen and (max-width:768px) {
    section.price {
        padding: 0 2%;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 60px;
    }

    section.price .wrap01 img,
    section.price .wrap02 img,
    section.price img.p_icon {
        width: 100%;
    }

    section.price h2 {
        width: 250px;
        margin: 0 auto;
    }

    section.price h3 {
        padding: 0 2%;
        font-size: 20px;
        margin-bottom: -15px;
    }


    section.price h3 span {
        display: inline-block;
        font-size: 14px;
    }

    section.price h4 {
        font-size: 20px;
        padding-top: 80px;
        margin-bottom: -10px;
    }

    section.price p.txt {
        max-width: 90%;
        margin: 10px auto;
        font-size: 16px;
        line-height: 1.8;
    }
}


@media screen and (max-width:520px) {
    section.price p.txt {
        margin: -15px auto 15px;
        font-size: 14px;
        line-height: 1.4;
    }
}

/* modal */
.layer {
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s linear, visibility 1s linear, z-index 1s linear;
}

.layer.is-open {
    z-index: 999;
    opacity: 1;
    visibility: visible;
}

.layer.is-open .modal {
    opacity: 1;
    visibility: visible;
}

.modal__button-wrap {
    position: absolute;
    right: 40px;
    top: 40px;
    display: inline-flex;
}

.close-button {
    position: relative;
    padding: 0;
    border: transparent;
    cursor: pointer;
}

.close-button span {
    width: 25px;
    height: 2px;
    background: #333;
    display: inline-block;
    position: absolute;
    left: calc(50% - 12px);
    top: 50%;
    border-radius: 20px;
}

.close-button span:nth-child(1) {
    transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
}


.modal {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    min-width: 440px;
    opacity: 0;
    visibility: hidden;
    transition: visibility .2s linear, opacity .4s linear;
}

.modal__inner {
    margin-top: 15%;
    margin-bottom: 125px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
    border-radius: 30px;
    display: block;

}

.modal__contents {
    max-width: 100%;
    margin: 0 auto;
    overflow: scroll;
}

.modal__content {
    padding: 100px 0 50px;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;

}

.modal__button-area {
    max-width: 843px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 17px;
    padding-top: 15px;
}

.modal__contents .modal_h2 {
    color: #333;
}

.modal__contents ul {
    justify-content: space-evenly;
}

.modal__contents li {
    width: calc(92% / 3);
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 40px;
    padding: 2%;
}


@media screen and (max-width:520px) {
    .modal__contents li {
        width: calc(92% / 2);
        font-size: 14px;
        line-height: 120%;
        margin-bottom: 10px;
        padding: 2% 3%;
    }
}

@media (max-width: 520px) {
    .button {
        width: 90%;
        height: 70px;
        font-size: 18px;
    }
}

/* swiper */
.firestation {
    padding: 100px 0 0;
    margin: 0 auto -3px;
}

.firestation h2 {
    width: 744px;
    text-align: center;
    margin: 0 auto 30px;
}

.swiper-wrapper {
    width: 100%;
    transition-timing-function: linear;
}

.swiper {
    margin-bottom: 60px;
}

.swiper-slide {
    width: auto;
    text-align: center;
}

@media (max-width: 768px) {
    .firestation {
        padding: 60px 0 0;
    }

    .firestation h2 {
        width: 90%;
    }
}

/* FAQ */

section.faq {
    width: 100%;
    max-width: 100%;
    padding: 150px 0 100px;
    margin: 0 auto;
    border-top: 2px solid #2649A1;
    background: url("../img/i_fap01.png") no-repeat top 60px left 33% / 200px, url("../img/i_fap02.png") no-repeat bottom -9px right 5% / 282.2px;
}

.faq_wrap {
    margin: 0 auto 80px;
    padding: 0 2%;

}

section.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    margin: 0 auto;
}

.accordion-006 {
    max-width: 980px;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 30px 2em 30px 2em;
    transition: rotate .3s;
    border-bottom: 2px solid #2649A1;
    transition: .2s;
}

.accordion-006:hover {
    background-color: #F3F3F3;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    transition: .2s;
}

.accordion-006[open] summary {
    color: #2649A1;
}


.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 2px;
    height: .9em;
    border-radius: 5px;
    background-color: #333;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 0;
    rotate: 90deg;
}

.accordion-006 summary::after {
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.accordion-006 .inner {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 0 0;
    color: #333;
    transition: transform .5s, opacity .5s;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: rotate .3s;
}

.accordion-006[open] .inner {
    transform: none;
    opacity: 1;
}

section.faq summary,
.accordion-006 .inner {
    position: relative;
}

.accordion-006 .inner {
    margin-top: 30px;
}

section.faq .inner p {
    margin-bottom: 10px;
    line-height: 160%;
    font-size: 16px;
}

section.faq .inner ul {
    margin: 10px 0;
}

section.faq .inner li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 15px;
    line-height: 160%;
}

section.faq .inner li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #333;
}

@media screen and (max-width:1200px) {
    section.faq {
        background: url("../img/i_fap01.png") no-repeat top 60px left 20% / 200px, url("../img/i_fap02.png") no-repeat bottom -9px right 5% / 235px;
    }
}

@media screen and (max-width:768px) {
    section.faq {
        padding: 80px 0 0;
        background: url("../img/i_fap01.png") no-repeat top 20px left/ 165px;
    }

    .accordion-006 {
        padding: 20px 1em;
    }

    .accordion-006 summary {
        font-size: 16px;
    }

    section.faq .question::before {
        width: 30px;
        height: 30px;
        left: -55px;
        top: -6px;
        background: url(../img/icon08.svg) center center / 30px no-repeat;
    }

    section.faq .inner::before {
        width: 30px;
        height: 30px;
        left: -55px;
        top: 0;
        background: url(../img/icon09.svg) center center / 30px no-repeat;
    }

    .accordion-006 .inner {
        margin-top: 1em;
        padding: 0 1em 0 0px;
    }

    section.faq .inner p {
        margin-bottom: 0;
        line-height: 160%;
        font-size: 14px;
    }

    section.faq h2 {
        width: 250px;
    }
}

@media screen and (max-width:520px) {

    section.faq h2 {
        width: 180px;
    }

    section.faq {
        background: url(../img/i_fap01.png) no-repeat top 20px left / 120px;
    }

}

#Movie {
    position: fixed;
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 999;
}

#Movie a {
    display: block;
    z-index: 999;
    transition: 0.3s;
    right: -5px;
}

@media screen and (max-width:768px) {
    #Movie a {
        width: 170px;
    }
}


footer {
    width: 100%;

    height: auto;
    background-color: #2649A1;
    margin: 0 auto;
    text-align: center;
}

footer .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

footer a,
footer small {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

footer a {
    text-decoration: underline;
}


@media screen and (max-width:768px) {
    footer .wrap {
        width: 90%;
        padding: 30px 0 80px;
    }

    footer a,
    footer small {
        font-size: 12px;
        font-weight: 500;
    }

}