@charset "utf-8";

/* ================================================
    初期化設定
================================================ */

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

caption,
th {
    text-align: left;
}

ol,
ul {
    list-style: none;
}

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

img,
abbr,
acronym,
fieldset {
    border: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* ================================================
    全体の構造設定
================================================ */

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
    /*font-family: 'Noto Serif JP', serif;*/
    color: #333333;
    padding: 0px;
    margin: 0px;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.05em;
    overflow: hidden;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #ffffff;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #333333;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-decoration: none;
}

p{
    text-align: justify;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* ラッパー
------------------------------------------------ */


/* ヘッダー
------------------------------------------------ */
#headTop {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

#mainHeader {
    position: fixed;
    top: -100px;
    width: 100%;
    z-index: 99;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: top 0.4s ease;
}
body.scrolled #headTop {
    display: none;
}
body.scrolled #mainHeader {
    top: 0;
}

.l-head-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
    padding: 10px 0;
}
.p-head-logo-top{
    max-width: 418px;
}
.c-head-main-fv{
    max-width: 710px;
    width: 100%;
}
.c-head-t{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.c-head-b ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-head-b ul li{
    text-align: center;
}
.c-head-b ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
}
.c-head-b ul li a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00DBED;
    transition: width 0.3s ease;
}
.c-head-b ul li a:hover{
    opacity: 1;
}
.c-head-b ul li a:hover::after {
    width: 100%;
}
.c-head-b ul li a span {
    display: block;
    font-family: "Oswald", sans-serif;
    color: #00DBED;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
}
.c-head-tel-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-head-tel p{
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.p-head-tel p::before{
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(./images/icon_tel.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
}
.p-head-inf p span{
    display: block;
    color: #fff;
    font-size: 1.1rem;
}
.c-head-fv-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-head-fv-btn{
    width: 160px;
    border-radius: 33px;
    text-align: center;
    padding: 7px 0;
}
.p-head-fv-btn-backA{
    margin-right: 10px;
    background-color: #C1A100;
}
.p-head-fv-btn-backB{
    background-color: #06C755;
}
.p-head-fv-btn p{
    font-weight: bold;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}
.p-head-fv-btn-backA:hover{
    background-color: #FFF;
    opacity: 1;
}
.p-head-fv-btn-backB:hover{
    background-color: #FFF;
    opacity: 1;
}
.p-head-fv-btn.p-head-fv-btn-backA:hover p{
    color: #C1A100;
}
.p-head-fv-btn.p-head-fv-btn-backB:hover p{
    color: #06C755;
}

#mainHeader{
    background-color: #fff;
}
.l-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: calc((100% - 1200px) / 2);
    box-sizing: border-box;
}
.p-head-logo{
    max-width: 253px;
}
.c-head-main{
    max-width: 920px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.c-head-list{
    max-width: 700px;
    width: 100%;
    margin-right: 15px;
}
.c-head-list ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-head-list ul li {
    text-align: center;
}
.c-head-list ul li a {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
}
.c-head-list ul li a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00B2C1;
    transition: width 0.3s ease;
}
.c-head-list ul li a:hover {
    opacity: 1;
}
.c-head-list ul li a:hover::after {
    width: 100%;
}
.c-head-list ul li a span {
    display: block;
    font-family: "Oswald", sans-serif;
    color: #00B2C1;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
}
.c-head-btn-block{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.p-head-btn{
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-head-btn-backA{
    background-color: #C1A100;
}
.p-head-btn-backB{
    background-color: #06C755;
}
.p-head-btn p{
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.l-pc-head{
    display: block;
}

.l-sp-head{
    display: none;
}
.header {
    width: 100%;
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.active .header{
    background-color: #FFF;
}
.scrolled .header{
    background-color: #FFF;
}
.p-logo-sp-black{
    display: none;
}
.p-logo-sp-white{
    display: block;
}
.active .p-logo-sp-black{
    display: block;
}
.active .p-logo-sp-white{
    display: none;
}
.scrolled .p-logo-sp-black{
    display: block;
}
.scrolled .p-logo-sp-white{
    display: none;
}
.header__inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
    box-sizing: border-box;
}
/* ヘッダーのロゴ部分 */
.header__title {
    width: 210px;
}
.header__title img {
    width: 100%;
    height: 100%;
}
.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: ease .4s;
    margin-top: 55px;
    background-color: #333333;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
}
.nav__items{
    margin-bottom: 30px;
}
.nav__items li {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 20px 10px 15px;
    border-bottom: solid 1px #707070;
    box-sizing: border-box;
}
.nav__items li:last-child {
    margin-bottom: 0;
}
.nav__items li a {
    font-weight: bold;
    color: #FFF;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    position: relative;
}
.nav__items li a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(./images/btn_icon1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
}
.nav__items li a span{
    font-family: "Oswald", sans-serif;
    color: #00DBED;
    font-size: 1.4rem;
    margin-left: 15px;
}
.c-nav_bottom{
    max-width: 276px;
    margin: auto;
}
.c-nav_bottom p{
    color: #FFF;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 10px;
}
.c-nav_btn{
    font-weight: bold;
    max-width: 276px;
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 33px;
}
.c-nav_btn:last-child{
    margin-bottom: 0;
}
.p-nav_btn1{
    background-color: #FFF;
}
.p-nav_btn2{
    color: #FFF;
    background-color: #C1A100;
}
.p-nav_btn3{
    color: #FFF;
    background-color: #06C755;
}
.p-nav_btn1{
    font-size: 2.2rem;
    color: #00B2C1;
    font-family: "Oswald", sans-serif;
    display: flex;
    align-items: center;
    font-weight: normal;
}
.p-nav_btn1::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(./images/icon_tel_sp.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 15px;
}
.p-nav_btn2{
    font-size: 1.8rem;
    color: #FFF;
}
.p-nav_btn3{
    font-size: 1.8rem;
    color: #FFF;
}
/* ハンバーガーメニュー */
.header__hamburger {
    width: 48px;
    height: 100%;
    cursor: pointer;
}
.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}
/* ハンバーガーメニューの線 */
.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: relative;
    transition: ease .4s;
    display: block;
}
.active .hamburger span{
    background-color: #00B2C1;
}
.scrolled .hamburger span {
    background-color: #00B2C1;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}


.nav-items {
}

@media screen and (max-width: 1220px) {
    .l-head{
        margin-left: 20px;
    }
}
@media screen and (max-width: 1025px) {
    .l-pc-head{
        display: none;
    }
    .l-sp-head{
        display: block;
    }
}
/* フッター
------------------------------------------------ */
.footer-sub{
    background-image: url(./images/footer_sub_back.png);
    height: 523px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-sub-inner{
    max-width: 1000px;
    margin: auto;
}
.footer-sub-text{
    margin-bottom: 38px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
}
.footer-sub-text::before{
    content: "";
    position: absolute;
    width: 166px;
    height: 100px;
    background-image: url(./images/footer_sub1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 45px;
}
.footer-sub-text::after{
    content: "";
    position: absolute;
    width: 212px;
    height: 268px;
    background-image: url(./images/footer_sub2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
}
.footer-sub-text p{
    color: #fff;
    font-size: 4.8rem;
    font-weight: bold;
    text-align: center;
}
.footer-sub-text p span{
    font-size: 2.4rem;
    font-family: "Oswald", sans-serif;
    display: block;
}
.c-footer-sub-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-footer-sub-btn{
    max-width: 480px;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 5px #fff;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px 0;
    box-sizing: border-box;
}
.p-footer-sub-btn-backA{
    background-color: #C1A100;
}
.p-footer-sub-btn-backB{
    background-color: #06C755;
}
.p-footer-sub-btn-backA::before{
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(./images/icon_mail.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.p-footer-sub-btn-backB::before{
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(./images/icon_line.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.p-footer-sub-btn p{
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.p-footer-sub-btn-backA:hover{
    border: solid 5px #B49F2D;
    background-color: #FFF;
    opacity: 1;
}
.p-footer-sub-btn-backB:hover{
    border: solid 5px #06C755;
    background-color: #FFF;
    opacity: 1;
}
.p-footer-sub-btn-backA:hover::before{
    background-image: url(./images/icon_mail_hover.svg);
}
.p-footer-sub-btn-backB:hover::before{
    background-image: url(./images/icon_line_hover.svg);
}
.p-footer-sub-btn.p-footer-sub-btn-backA:hover p{
    color: #B49F2D;
}
.p-footer-sub-btn.p-footer-sub-btn-backB:hover p{
    color: #06C755;
}

.footer{
    background-color: #404040;
    padding: 70px 20px 15px;
    box-sizing: border-box;
}
.footer-inner{
    max-width: 1000px;
    margin: auto;
}
.footer-con{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-con-l{
    border-right: solid 1px #fff;
    max-width: 625px;
    width: 100%;
    margin-right: 5%;
}
.p-footer-logo{
    max-width: 418px;
    margin-bottom: 10px;
}
.c-footer-inf p{
    color: #fff;
    font-size: 1.4rem;
}
.footer-con-r{
    width: 32%;
}
.footer-con-r ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-con-r ul li{
    width: 50%;
    margin-bottom: 10px;
}
.footer-con-r ul li a{
    font-size: 1.4rem;
    color: #fff;
}
.footer-map{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 270px;
    margin-bottom: 70px;
}
.c-footer-map{
    width: 60%;
    height: 100%;
}
.c-footer-map iframe{
    border: 0;
    width: 100%;
    height: 270px;
}
.c-footer-map-img img{
    height: 270px;
}
.p-fotter-copy{
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
}

.p-fotter-sub-img-sp{
    display: none;
}
@media screen and (max-width: 900px) {
    .footer-sub{
        height: auto;
        padding: 20px 20px 40px;
        box-sizing: border-box;
    }
    .p-fotter-sub-img-sp{
        display: block;
        text-align: center;
        width: 80%;
        margin: auto;
    }
    .footer-sub-text{
        padding-top: 10px;
    }
    .footer-sub-text::before{
        display: none;
    }
    .footer-sub-text::after{
        display: none;
    }
    .c-footer-sub-btn{
        display: block;
    }
    .p-footer-sub-btn{
        width: 100%;
        margin: 0 auto 20px;
        height: 120px;
        padding: 0;
    }
    .footer-con{
        display: block;
        margin-bottom: 25px;
    }
    .footer-sub-text p{
        font-size: 3rem;
    }
    .footer-sub-text p span{
        font-size: 2rem;
    }
    .p-footer-sub-btn p{
        text-align: left;
    }
    .footer-con-l{
        width: 100%;
        margin-right: 0;
        border-right: none;
        border-bottom: solid 1px #FFF;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .c-footer-inf{
        max-width: 290px;
        margin: auto;
    }
    .footer-con-r{
        width: 100%;
    }
    .footer-map{
        display: block;
        height: auto;
        margin-bottom: 60px;
    }
    .c-footer-map{
        width: 100%;
    }
    .c-footer-map {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
    .c-footer-map::before {
        content: '';
        display: block;
        padding-top: 100%;
    }
    .c-footer-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .c-footer-map-img{
        width: 100%;
    }
    .c-footer-map-img img{
        height: auto;
    }
}

/* ファーストビュー
------------------------------------------------ */
.l-fv{
}
.p-fv-slider{
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: calc(760 / 1400 * 100%);
    height: 0;
}
.p-fv-slider-1{
    background-image: url(./images/fv1_pc.jpg);
}
.p-fv-slider-2{
    background-image: url(./images/fv2_pc.jpg);
}
.p-fv-slider-3{
    background-image: url(./images/fv3_pc.jpg);
}
.c-fv-badges{
    position: relative;
    z-index: 1;
    margin-top: -119px;
}
.p-fv-list{
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-fv-list li{
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background-color: #fff;
    border: solid 7px #00B2C1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.p-fv-list li::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    height: 110px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-fv-list-icon1::after{
    background-image: url(./images/badge1.png);
}
.p-fv-list-icon2::after{
    background-image: url(./images/badge2.png);
}
.p-fv-list-icon3::after{
    background-image: url(./images/badge3.png);
}
.p-fv-list-icon4::after{
    background-image: url(./images/badge4.png);
}
.p-fv-list li p{
    font-size: 2.6rem;
    font-weight: bold;
    color: #E62121;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
}
.p-badges-textA{
    display: block;
    font-size: 6.8rem;
}
.p-badges-textB{
    display: block;
    font-size: 7.2rem;
    font-family: "Oswald", sans-serif;
    font-weight: normal;
}
@media screen and (max-width: 768px) {
    .p-fv-list li p {
        font-size: 2.2rem;
    }
    .p-badges-textA{
        font-size: 5.2rem;
    }
    .p-badges-textB{
        font-size: 5.6rem;
    }
    .p-fv-list li::after {
        width: 150px;
        height: 82px;
    }
    .p-fv-slider {
        padding-top: calc(680 / 390 * 100%);
    }
    .p-fv-slider-1{
        background-image: url(./images/fv1_sp.jpg);
    }
    .p-fv-slider-2{
        background-image: url(./images/fv2_sp.jpg);
    }
    .p-fv-slider-3{
        background-image: url(./images/fv3_sp.jpg);
    }
}

/* メイン
------------------------------------------------ */
.l-w1200{
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.l-w1000{
    max-width: 1040px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.l-intro{
    margin-bottom: 70px;
}
.p-intro-ttl{
    font-family: "Oswald", sans-serif;
    font-size: 19vw;
    color: #00B2C1;
    opacity: 0.2;
    text-align: center;
    line-height: 1.2;
}
.c-intro-text-block{
    position: relative;
    margin-top: -30px;
    margin-bottom: 55px;
    padding: 0 20px;
    box-sizing: border-box;
}
.c-intro-text-block::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 560px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./images/intro_img1.png);
}
.c-intro-text-block::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 560px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./images/intro_img2.png);
}
.p-intro-text{
    text-align: center;
    font-weight: bold;
    font-size: 2.6rem;
    text-shadow: 0 0 8px #fff, 0 0 8px #fff;
    position: relative;
    z-index: 1;
}
.p-intro-list{
    max-width: 575px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.p-intro-list li{
    font-weight: bold;
    font-size: 3.6rem;
    text-align: center;
    position: relative;
    margin-top: 90px;
}
.p-intro-list li span{
    display: block;
    font-size: 2.6rem
}
.p-intoro-icon1{
    color: #00B2C1;
}
.p-intoro-icon2{
    color: #06C755;
}
.p-intoro-icon3{
    color: #C1A100;
}
.p-intro-list li::before{
    content: "";
    display: block;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-intoro-icon1::before{
    background-image: url(./images/intro_icon1.svg);
}
.p-intoro-icon2::before{
    background-image: url(./images/intro_icon2.svg);
}
.p-intoro-icon3::before{
    background-image: url(./images/intro_icon3.svg);
}

.l-top-con-l{
    position: relative;
    margin-right: calc((100% - 1300px) / 2);
    margin-bottom: 60px;
}
.l-top-con-r{
    position: relative;
    margin-left: calc((100% - 1300px) / 2);
    margin-bottom: 60px;
}
@media screen and (max-width: 1320px) {
    .l-top-con-l{
        margin-right: 0;
        padding-right: 20px;
    }
    .l-top-con-r{
        margin-left: 0;
        padding-left: 20px;
    }
}
.c-top-ttl{
    font-size: 10rem;
    font-family: "Oswald", sans-serif;
    opacity: 0.2;
    line-height: 1.24;
    color: #00B2C1;
}
.l-top-con-l .c-top-ttl{
    text-align: right;
}
.l-top-con-r .c-top-ttl{
    text-align: left;
}
.l-inner-r{
    max-width: 1100px;
    margin-left: auto;
    padding: 60px 100px 60px 20px;
    box-sizing: border-box;
    background-color: rgba(0, 178, 193, 0.9);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    border-radius: 40px;
}
.l-inner-l{
    max-width: 1100px;
    margin-right: auto;
    padding: 60px 20px 50px 100px;
    box-sizing: border-box;
    background-color: rgba(0, 178, 193, 0.9);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    border-radius: 40px;
}
.c-top-con-img-block-l{
    position: absolute;
    left: 0;
    top: 35px;
}
.c-top-con-img-block-r{
    position: absolute;
    right: 0;
    top: 35px;
}
.p-top-con-img1{
    max-width: 600px;
    max-height: 600px;
    width: 42.86vw;
    height: 42.86vw;
    border-radius: 20px;
    background-image: url(./images/top_img1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}
.p-top-con-img2{
    max-width: 380px;
    max-height: 255px;
    width: 27.14vw;
    height: 18.21vw;
    border-radius: 20px;
    background-image: url(./images/top_img2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
}
.p-top-con-img3{
    max-width: 600px;
    max-height: 300px;
    width: 42.86vw;
    height: 21.43vw;
    border-radius: 20px;
    background-image: url(./images/top_img3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}
.p-top-con-img4{
    max-width: 500px;
    max-height: 280px;
    width: 35.71vw;
    height: 20vw;
    border-radius: 20px;
    background-image: url(./images/top_img4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: auto;
    margin-bottom: 20px;
}
.p-top-con-img5{
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    border-radius: 20px;
    background-image: url(./images/top_img5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-top-con-img6{
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    border-radius: 20px;
    background-image: url(./images/top_img6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-top-con-img7{
    max-width: 250px;
    max-height: 250px;
    width: 17.86vw;
    height: 17.86vw;
    background-image: url(./images/top_img7.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 7.14vw;;
}
.p-top-con-img8{
    max-width: 250px;
    max-height: 250px;
    width: 17.86vw;
    height: 17.86vw;
    background-image: url(./images/top_img8.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-top-con-img9{
    max-width: 250px;
    max-height: 250px;
    width: 17.86vw;
    height: 17.86vw;
    background-image: url(./images/top_img9.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
}
.p-top-con-img10{
    max-width: 250px;
    max-height: 250px;
    width: 17.86vw;
    height: 17.86vw;
    background-image: url(./images/top_img10.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.c-top-con-text-l{
    max-width: 540px;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.c-top-con-text-r{
    max-width: 540px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.p-top-ttl{
    font-size: 6.4rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}
.p-top-ttl-sub{
    font-size: 4.8rem;
    font-weight: bold;
    color: #F4DA4B;
}
.count-up{
    font-size: 15.2rem;
    font-family: "Oswald", sans-serif;
    font-weight: normal;
    line-height: 1;
}
.p-top-ttl-sub-dec1{
    font-size: 6rem;
}
.p-top-ttl-sub-dec2{
    display: block;
}
.p-top-ttl-sub-dec3{
    position: relative;
    display: block;
}
.p-top-ttl-sub-dec4{
    left: 233px;
    top: 0;
    line-height: 1;
    font-size: 9rem;
    position: absolute;
}
.p-top-ttl-sub-dec5{
    left: 233px;
    bottom: 0;
    line-height: 1.2;
    font-size: 6rem;
    position: absolute;
}
.p-top-text-dec1{
    margin-top: 40px;
}
.p-top-text-block .p-top-text-dec3{
    margin-bottom: 40px;
}
.p-top-text-block p{
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
}
.p-top-text-block p.p-top-text-dec2{
    margin-top: 30px;
    margin-bottom: 40px;
}
.c-top-btn-block{
    display: flex;
    align-items: center;
}
.p-top-btn-text{
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    color: #fff;
    margin-right: 25px;
}
.l-slider-wrap{
    max-width: 876px;
    margin: auto;
    position: relative;
}
.swiper2 {
    width: 100%;
    padding: 45px 0 60px;
    box-sizing: border-box;
    overflow: hidden;
}
.swiper2 .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}
.swiper2 img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.swiper-button-prev,
.swiper-button-next {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px !important;
    height: 32px !important;
}
.p-swiper-btn.swiper-button-prev {
    background-image: url('./images/arrow_prev.svg');
    left: -50px;
}
.p-swiper-btn.swiper-button-next {
    background-image: url('./images/arrow_next.svg');
    right: -50px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.c-btnA{
    border: solid #fff 5px;
    color: #fff;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    height: 72px;
    width: 100%;
    max-width: 320px;
    border-radius: 35px;
    padding-left: 35px;
    box-sizing: border-box;
}
.c-btnA::after{
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background-image: url(./images/btn_icon1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
}
.c-btnA:hover{
    opacity: 1;
    background-color: #FFF;
    color: #00B2C1;
}
.c-btnA:hover::after{
    background-image: url(./images/btn_icon1_hover.svg);
}

.c-btnA.p-btn-back1:hover{
    color: #009366;
}
.c-btnA.p-btn-back1:hover::after{
    background-image: url(./images/btn_icon1_hover1.svg);
}
.c-btnA.p-btn-back2:hover{
    color: #C1A100;
}
.c-btnA.p-btn-back2:hover::after{
    background-image: url(./images/btn_icon1_hover2.svg);
}

.c-btnB{
    border: solid #00B2C1 5px;
    color: #00B2C1;
    font-size: 2.4rem;
    font-family: "Oswald", sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    height: 72px;
    width: 100%;
    max-width: 320px;
    border-radius: 35px;
    padding-left: 35px;
    box-sizing: border-box;
}
.c-btnB::after{
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background-image: url(./images/btn_icon1_hover.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
}
.c-btnB:hover{
    opacity: 1;
    background-color: #00B2C1;
    color: #FFF;
}
.c-btnB:hover::after{
    background-image: url(./images/btn_icon1.svg);
}

.l-top-bttom{
    background-color: #F7F6F0;
    padding: 100px 0 120px;
}
.l-top-bottom-inr{
    display: flex;
    justify-content: space-between;
}
.c-top-bottom-block{
    width: 48%;
}
.c-top-bottom-block h2{
    font-size: 4.8rem;
    font-weight: bold;
    margin-bottom: 55px;
    text-align: center;
}
.c-top-bottom-block h2 span{
    display: block;
    font-size: 2.4rem;
    color: #00B2C1;
    font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 1150px) {
    .l-slider-wrap{
        width: 80%;
    }
}
@media screen and (max-width: 1000px) {
    .p-fv-list{
        flex-wrap: wrap;
        margin: 0 20px;
    }
    .c-fv-list-block{
        width: 50%;
        margin-bottom: 55px;
    }
    .p-fv-list li{
        width: 100%;
        max-width: 176px;
        height: 176px;
        margin: 0 auto ;
    }
}
.p-intro-img-sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .l-top-bttom{
        padding: 60px 0 80px;
    }
    .p-intro-text {
        font-size: 2rem;
    }
    .p-intro-list{
        padding: 0 20px;
        box-sizing: border-box;
    }
    .p-intro-list li {
        margin-top: 74px;
        font-size: 3rem;
    }
    .p-intro-list li span{
        font-size: 2.2rem;
    }
    .p-intro-list li::before{
        top: -74px;
        width: 74px;
        height: 74px;
    }
    .c-intro-text-block{
        margin-top: -70px;
        margin-bottom: 40px;
    }
    .c-intro-text-block::before{
        display: none;
    }
    .c-intro-text-block::after{
        display: none;
    }
    .p-intro-img-sp{
        display: block;
        margin-top: 40px;
    }
    .p-intro-img-sp img{
        width: 100%;
    }
    .c-top-con-img-block-l{
        position: relative;
        top: -40px;
    }
    .c-top-con-img-block-r{
        position: static;
    }
    .l-inner-l.l-inner-l-sp1{
        padding: 156px 20px 40px 20px;
    }
    .l-inner-l.l-inner-l-sp2{
        padding: 215px 20px 40px 20px;
    }
    .p-top-con-img1{
        width: 350px;
        height: 350px;
        margin-left: -60px;
    }
    .p-top-con-img2{
        width: 223px;
        height: 150px;
        margin-left: auto;
    }
    .p-top-con-img7{
        width: 124px;
        height: 124px;
        margin-left: -60px;
    }
    .p-top-con-img3{
        width: 352px;
        height: 176px;
        position: absolute;
        right: 0;
        top: 80px;
    }
    .p-top-con-img4{
        margin-top: 186px;
        width: 295px;
        height: 165px;
        margin: 0 auto 10px;
    }
    .p-top-con-img8{
        width: 124px;
        height: 124px;
        margin: auto;
    }
    .p-top-con-img5{
        width: 352px;
        height: 235px;
        margin-left: -60px;
        margin-bottom: 20px;
    }
    .p-top-con-img9{
        width: 124px;
        height: 124px;
        margin: auto;
    }
    .p-top-con-img6{
        width: 352px;
        height: 235px;
        position: absolute;
        right: 0;
        top: 80px;
    }
    .p-top-con-img10{
        width: 124px;
        height: 124px;
        margin: 0 auto 20px;
    }
    .p-top-con-flex{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    .l-inner-r{
        padding: 0 20px 40px 20px;
    }
    .l-inner-r.p-recruit-inr{
        padding: 290px 20px 40px 20px;
    }
    .l-inner-l{
        padding: 0 20px 40px 20px;
    }
    .p-intro-ttl{
        font-size: 14.2rem;
        line-height: 1.1;
    }
    .l-top-con-l{
        padding-left: 40px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .l-top-con-r{
        padding-left: 20px;
        padding-right: 40px;
        margin-bottom: 40px;
    }
    .c-top-ttl{
        font-size: 6rem;
        margin-bottom: 45px;
    }
    .p-top-ttl{
        font-size: 4rem;
    }
    .p-top-ttl-sub{
        font-size: 3rem;
    }
    .count-up{
        font-size: 10rem;
    }
    .p-top-ttl-sub-dec1{
        font-size: 3.6rem;
    }
    .p-top-ttl-sub-dec4{
        font-size: 5rem;
        left: 150px;
    }
    .p-top-ttl-sub-dec5{
        font-size: 3.6rem;
        left: 150px;
    }
    .p-top-text-block p{
        font-size: 1.4rem;
    }
    .p-top-btn-text{
        font-size: 3.2rem;
    }
    .l-top-bottom-inr{
        display: block;
    }
    .c-top-bottom-block{
        width: 100%;
        margin-bottom: 70px;
    }
    .c-top-bottom-block:last-of-type{
        margin-bottom: 0;
    }
    .c-top-bottom-block h2{
        font-size: 3rem;
        margin-bottom: 40px;
    }
    .c-top-bottom-block h2 span{
        font-size: 2rem;
    }
    .c-top-btn-block{
        display: block;
    }
    .c-btnA{
        background-color: #FFF;
        color: #00B2C1;
        font-size: 1.4rem;
    }
    .c-btnA::after{
        background-image: url(./images/btn_icon1_hover.svg);
    }
    .c-btnA.p-btn-back1,.c-btnA.p-btn-back2{
        color: #fff;
    }
    .c-btnA.p-btn-back1::after,.c-btnA.p-btn-back2::after{
        background-image: url(./images/btn_icon1.svg);
    }
    .c-btnB{
        background-color: #00B2C1;
        color: #FFF;
    }
    .c-btnB::after{
        background-image: url(./images/btn_icon1.svg);
    }
    .p-swiper-btn.swiper-button-prev {
        left: -40px;
    }
    .p-swiper-btn.swiper-button-next {
        right: -40px;
    }
    .p-intro-list li.p-intoro-icon2{
        text-align: left;
    }
}

/* 下層ページ
------------------------------------------------ */
.l-back-gray{
    background-color: #F7F6F0;
}
.l-back-blue{
    background-color: #00B2C1;
}
.l-back-white{
    background-color: #FFFFFF;
}
.l-page-ttl{
    margin-top: 80px;
}
.c-page-ttl-block{
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto 60px;
    border-left: solid 5px #00B2C1;
    position: relative;
    box-sizing: border-box;
}
.c-page-ttl-block.p-single-ttl{
    margin: 0 auto;
}
.p-casestudy-single-ttl.c-page-ttl-block{
    margin: 0 auto;
}
.p-page-ttl{
    font-family: "Oswald", sans-serif;
    font-size: 20rem;
    color: #00B2C1;
    opacity: 0.2;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    line-height: 1;
    white-space: nowrap;
}
.p-page-pb{
    padding-bottom: 150px;
}
.p-page-pb2{
    padding-bottom: 100px;
}
.c-page-ttl-block h3{
    position: relative;
    font-size: 4.8rem;
    text-align: center;
    padding-top: 90px;
    font-weight: bold;
}
.c-page-ttl-block p{
    position: relative;
    font-size: 6.4rem;
    text-align: center;
    font-weight: bold;
    z-index: 1;
}
.p-ttl-sub-pt{
    padding-top: 170px;
}
.c-page-ttl-block p span{
    position: relative;
    display: inline-block;
}
.c-page-ttl-block p span::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 7px;
    height: 30px;
    width: 100%;
    background-color: #FFD800;
    z-index: -1;
}
.l-page-sec{
    position: relative;
}
.l-page-sec::before{
    content: "";
    display: block;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 180px;
    height: 180px;
}
.c-page-ttl-sec{
    margin-bottom: 60px;
}
.c-page-ttl-sec h2{
    font-size: 4.8rem;
    font-weight: bold;
    text-align: center;
}
.c-page-ttl-sec h3{
    font-size: 2.4rem;
    text-align: center;
    color: #00B2C1;
    font-family: "Oswald", sans-serif;
}
.c-page-ttl-sec.p-price-ttl h2{
    color: #fff;
}
.c-page-ttl-sec.p-price-ttl h3{
    color: #fff;
}
@media screen and (max-width: 1240px) {
    .c-page-ttl-block.p-single-ttl{
        margin: 0 20px;
    }
    .c-page-ttl-block{
        margin: 0 20px 60px;
    }
}
@media screen and (max-width: 1100px) {
    .p-page-ttl.p-car-ttl{
        font-size: 18vw;
    }
}
@media screen and (max-width: 768px) {
    .c-page-ttl-block{
        margin: 0 20px 40px;
        padding-left: 20px;
    }
    .l-page-ttl{
        margin-top: 55px;
    }
    .l-page-sec::before{
        width: 124px;
        height: 124px;
        top: -62px;
    }
    .c-page-ttl-sec{
        margin-bottom: 40px;
    }
    .c-page-ttl-sec h2{
        font-size: 3rem;
    }
    .c-page-ttl-sec h3{
        font-size: 2rem;
    }
    .c-page-ttl-block p span::after{
        bottom: -3px;
        height: 20px;
    }
    .p-page-ttl{
        font-size: 8rem;
        top: 0;
        left: 20px;
        transform: unset;
        -webkit-transform: unset;
        -ms-transform: unset;
        white-space: nowrap;
    }
    .c-page-ttl-block h3{
        font-size: 3rem;
        text-align: left;
        padding-top: 55px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .c-page-ttl-block p{
        font-size: 4rem;
        text-align: left;
        line-height: 1.3;
    }
    .p-ttl-sub-pt{
        padding-top: 90px;
    }
}

/* 修理・板金・塗装
------------------------------------------------ */
.l-reason{
    padding: 100px 0 130px;
}
.c-reason-top{
    margin-bottom: 100px;
}
.c-reason-top p{
    text-align: center;
    font-weight: bold;
    font-size: 4.8rem;
}
.c-reason-top h2{
    text-align: center;
    font-weight: bold;
    font-size: 8rem;
    position: relative;
}
.c-reason-top h2 .p-reason-top-dec1{
    font-size: 9.4rem;
    font-family: "Oswald", sans-serif;
}
.c-reason-top h2 .p-reason-top-dec2{
    font-size: 6.4rem;
}
.c-reason-top h2::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    height: 31px;
    width: 589px;
    background-image: url(./images/reason_img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.c-reason-list{
    max-width: 1000px;
    margin: auto;
}
@media screen and (max-width: 1040px) {
    .c-reason-list{
        padding: 0 20px;
        box-sizing: border-box;
    }
}
.c-reason-list ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c-reason-list ul li{
    width: 23.8%;
    margin-bottom: 65px;
    max-width: 238px;
    min-width: 238px;
}
.p-reason{
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 75px;
}
.p-reason::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    height: 110px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-reason1::after{
    background-image: url(./images/badge1.png);
}
.p-reason2::after{
    background-image: url(./images/badge2.png);
}
.p-reason3::after{
    background-image: url(./images/badge3.png);
}
.p-reason4::after{
    background-image: url(./images/badge4.png);
}
.p-reason5::after{
    background-image: url(./images/badge5.png);
}
.p-reason6::after{
    background-image: url(./images/badge6.png);
}
.p-reason7::after{
    background-image: url(./images/badge7.png);
}
.p-reason8::after{
    background-image: url(./images/badge8.png);
}
.p-reason::before{
    display: block;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 4.6rem;
    font-family: "Oswald", sans-serif;
    color: #00B2C1;
}
.p-reason1::before{
    content: "1";
}
.p-reason2::before{
    content: "2";
}
.p-reason3::before{
    content: "3";
}
.p-reason4::before{
    content: "4";
}
.p-reason5::before{
    content: "5";
}
.p-reason6::before{
    content: "6";
}
.p-reason7::before{
    content: "7";
}
.p-reason8::before{
    content: "8";
}
.p-reason h3{
    font-size: 2.6rem;
    font-weight: bold;
    color: #E62121;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
}
.p-reason-textA{
    display: block;
    font-size: 6.8rem;
}
.p-reason-textB{
    display: block;
    font-size: 7.2rem;
    font-family: "Oswald", sans-serif;
    font-weight: normal;
}
.p-reason-textC{
    font-size: 6.4rem;
}
.p-reason-textD{
    font-size: 3.2rem;
}
.p-reason-textE{
    font-size: 4.8rem;
    display: block;
}
.p-reason-textF{
    font-size: 3.1rem;
    display: block;
}
.c-reason-list ul li p{
    font-size: 1.6rem;
    text-align: center;
}

.p-casestudy1-icon::before{
    background-image: url(./images/casestudy1_icon.png);
}
.p-flow1-icon::before{
    background-image: url(./images/flow1_icon.png);
}
.p-facility-icon::before{
    background-image: url(./images/facility_icon.png);
}
.p-flow2-icon::before{
    background-image: url(./images/flow2_icon.png);
}
.p-casestudy2-icon::before{
    background-image: url(./images/casestudy2_icon.png);
}
.p-qa1-icon::before{
    background-image: url(./images/qa_icon.png);
}
.l-casestudy1{
    padding-top: 90px;
    margin-bottom: 230px;
}
.l-flow1{
    padding-top: 90px;
    padding-bottom: 140px;
}
.l-facility{
    padding-top: 100px;
    padding-bottom: 170px;
}
.l-flow2{
    padding-top: 90px;
    padding-bottom: 170px;
}
.l-casestudy2{
    padding-top: 110px;
    padding-bottom: 210px;
}
.c-casestudy2-btn-block{
    display: flex;
    justify-content: center;
}
.l-qa1{
    padding-top: 90px;
    padding-bottom: 110px;
}

.l-casestudy1-wrap{
    overflow-x: hidden;
}
.l-casestudy1-con{
    position: relative;
    margin-bottom: 80px;
}
.c-casestudy1-ttl-block{
    margin-bottom: 50px;
}
.p-casestudy1-sub{
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
}
.p-casestudy1-ttl{
    font-size: 6.4rem;
    font-weight: bold;
    color: #F4DA4B;
}
.p-casestudy1-text{
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 40px;
}
.p-casestudy1-text span{
    font-size: 1.6rem;
    color: #F4DA4B;
    font-weight: bold;
}
.p-case-lb{
    font-family: "Oswald", sans-serif;
    font-size: 10rem;
    color: #fff;
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    left: 10px;
}
.p-case-rt{
    font-family: "Oswald", sans-serif;
    font-size: 10rem;
    color: #fff;
    opacity: 0.4;
    position: absolute;
    top: 0;
    right: 10px;
}
.p-case-img{
    display: block;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}
.p-case-img1{
    background-image: url(./images/case_img1.png);
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    left: 0;
    top: 0;
}
.p-case-img2{
    background-image: url(./images/case_img2.png);
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    right: 0;
    bottom: 0;
}
.p-case-img3{
    background-image: url(./images/case_img3.png);
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    left: 0;
    top: 100px;
}
.p-case-img4{
    background-image: url(./images/case_img4.png);
    max-width: 600px;
    max-height: 550px;
    width: 42.86vw;
    height: 39.29vw;
    right: 0;
    bottom: 35px;
}
.p-case-img5{
    background-image: url(./images/case_img5.png);
    max-width: 600px;
    max-height: 550px;
    width: 42.86vw;
    height: 39.29vw;
    left: 0;
    top: 30px;
}

.l-facility-flex{
    display: flex;
    justify-content: space-between;
}
.c-facility-thumb-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 48%;
}
.c-facility-thumb-list li{
    width: 32%;
    margin-bottom: 2%;
    min-height: 156px;
    cursor: pointer;
}
.c-thumb-box{
    background-color: #FFF;
    padding-bottom: 5px;
    box-sizing: border-box;
    height: 100%;
}
.p-facility-icon-img{
    max-width: 156px;
    width: 100%;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
}
.p-facility-icon1{
    background-image: url(./images/facility_img1.png);
}
.p-facility-icon2{
    background-image: url(./images/facility_img2.png);
}
.p-facility-icon3{
    background-image: url(./images/facility_img3.png);
}
.p-facility-icon4{
    background-image: url(./images/facility_img4.png);
}
.p-facility-icon5{
    background-image: url(./images/facility_img5.png);
}
.p-facility-icon6{
    background-image: url(./images/facility_img6.png);
}
.p-facility-icon7{
    background-image: url(./images/facility_img7.png);
}
.is-active .c-thumb-box{
    background-color: #00B2C1;
}
.c-thumb-box p{
    font-size: 1.4rem;
    color: #00B2C1;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    bottom: -10px;
}
.is-active .c-thumb-box p{
    color: #FFF;
}
.c-facility-display{
    width: 45%;
    order: 1;
}
.c-facility-display p{
    text-align: center;
    margin-top: 25px;
    font-weight: bold;
    font-size: 2.6rem;
}

.c-flow1-list ul li{
    position: relative;
    display: flex;
    padding-bottom: 40px;
}
.c-flow1-list ul li.p-flex-center{
    position: relative;
    display: flex;
    padding-bottom: 40px;
}
.c-flow1-list ul li::before{
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 5px;
    background-color: #A8E5EA;
    left: 107px;
    top: 5px;
    z-index: -1;
}
.c-flow1-list ul li:last-child::before{
    display: none;
}
.c-flow1-flex{
    display: flex;
}
.p-flow1-num{
    font-family: "Oswald", sans-serif;
    font-size: 5.2rem;
    color: #00B2C1;
    margin-right: 40px;
    width: 26px;
}
.p-flow1-inr-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #00B2C1;
    border: solid 5px #A8E5EA;
    margin-right: 40px;
    position: relative;
}
.p-flow1-inr-icon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-flow1-icon1::before{
    background-image: url(./images/flow1_icon1.svg);
    width: 45px;
    height: 46px;
}
.p-flow1-icon2::before{
    background-image: url(./images/flow1_icon2.svg);
    width: 52px;
    height: 58px;
}
.p-flow1-icon3::before{
    background-image: url(./images/flow1_icon3.svg);
    width: 46px;
    height: 38px;
}
.p-flow1-icon4::before{
    background-image: url(./images/flow1_icon4.svg);
    width: 49px;
    height: 52px;
}
.p-flow1-icon5::before{
    background-image: url(./images/flow1_icon5.svg);
    width: 56px;
    height: 43px;
}
.p-flow2-icon1::before{
    background-image: url(./images/flow2_icon1.svg);
    width: 42px;
    height: 42px;
}
.p-flow2-icon2::before{
    background-image: url(./images/flow2_icon2.svg);
    width: 36px;
    height: 51px;
}
.p-flow2-icon3::before{
    background-image: url(./images/flow2_icon3.svg);
    width: 51px;
    height: 51px;
}
.p-flow2-icon4::before{
    background-image: url(./images/flow2_icon4.svg);
    width: 80px;
    height: 80px;
}
.p-flow2-icon5::before{
    background-image: url(./images/flow2_icon5.svg);
    width: 59px;
    height: 33px;
}
.p-flow3-icon1::before{
    background-image: url(./images/flow3_icon1.svg);
    width: 53px;
    height: 54px;
}
.p-flow3-icon2::before{
    background-image: url(./images/flow3_icon2.svg);
    width: 59px;
    height: 68px;
}
.p-flow3-icon3::before{
    background-image: url(./images/flow3_icon3.svg);
    width: 50px;
    height: 48px;
}
.p-flow1-text-flex{
    display: flex;
    justify-content: space-between;
}
.p-text-block h3{
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.p-text-block p{
    font-size: 1.6rem;
}
.c-flow1-img-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.p-flow1-text.p-flow1-text-flex .p-text-block{
    margin-right: 40px;
}
.p-flow1-img{
    max-width: 267px;
    height: 178px;
    width: calc((100% / 3 ) - 10px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-flow1-img:last-child{
    width: calc(100% / 3);
}
.p-flow1-img-block{
    width: 267px;
    height: 178px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-flow1-img1{
    background-image: url(./images/flow1_img1.jpg);
}
.p-flow1-img2{
    background-image: url(./images/flow1_img2.jpg);
}
.p-flow1-img3{
    background-image: url(./images/flow1_img3.jpg);
}
.p-flow1-img4{
    background-image: url(./images/flow1_img4.jpg);
}
.p-flow1-img5{
    background-image: url(./images/flow1_img5.jpg);
}
.p-flow1-img6{
    background-image: url(./images/flow1_img6.jpg);
}
.p-flow1-img7{
    background-image: url(./images/flow1_img7.jpg);
}


.c-flow2-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.p-flow2-btn{
    max-width: 400px;
    width: 48%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 20px;
    box-sizing: border-box;
}
.p-flow2-btn-backA{
    background-color: #C1A100;
    border: solid 5px #C1A100;
}
.p-flow2-btn-backB{
    background-color: #06C755;
    border: solid 5px #06C755;
}
.p-flow2-btn-backA::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(./images/icon_mail.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.p-flow2-btn-backB::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(./images/icon_line.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.p-flow2-btn p{
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.p-flow2-btn-backA:hover{
    border: solid 5px #C1A100;
    background-color: #FFF;
    opacity: 1;
}
.p-flow2-btn-backB:hover{
    border: solid 5px #06C755;
    background-color: #FFF;
    opacity: 1;
}
.p-flow2-btn-backA:hover::before{
    background-image: url(./images/icon_mail_hover.svg);
}
.p-flow2-btn-backB:hover::before{
    background-image: url(./images/icon_line_hover.svg);
}
.p-flow2-btn.p-flow2-btn-backA:hover p{
    color: #B49F2D;
}
.p-flow2-btn.p-flow2-btn-backB:hover p{
    color: #06C755;
}


.l-w-casestudy1-r{
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
}
.l-w-casestudy1-l{
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
    .l-w-casestudy1-r{
        padding: 0 20px 0 40px;
    }
    .l-w-casestudy1-l{
        padding: 0 40px 0 20px;
    }
}
@media screen and (max-width: 768px) {
    .l-reason{
        padding: 60px 0 90px;
    }
    .l-casestudy1{
        padding-top: 64px;
        margin-bottom: 140px;
    }
    .l-casestudy1-con{
        margin-bottom: 40px;
    }
    .l-flow1{
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .l-facility{
        padding-top: 74px;
        padding-bottom: 132px;
    }
    .l-flow2{
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .l-casestudy2{
        padding-top: 110px;
        padding-bottom: 180px;
    }
    .l-qa1{
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .c-reason-top{
        margin: 0 20px 40px;
    }
    .c-reason-top p{
        font-size: 3rem;
    }
    .c-reason-top h2{
        font-size: 5.7rem;
    }
    .c-reason-top h2 .p-reason-top-dec1{
        font-size: 6.7rem;
    }
    .c-reason-top h2 .p-reason-top-dec2{
        font-size: 4.5rem;
    }
    .c-reason-top h2::after{
        height: 31px;
        width: 365px;
    }
    .p-reason{
        width: 176px;
        height: 176px;
        margin-bottom: 60px;
    }
    .p-reason::after{
        width: 150px;
        height: 82.5px;
    }
    .p-reason::before {
        font-size: 4rem;
    }
    .p-reason h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .p-reason-textA{
        font-size: 5.2rem;
    }
    .p-reason-textB{
        font-size: 5.6rem;
    }
    .p-reason-textC{
        font-size: 4.8rem;
    }
    .p-reason-textD{
        font-size: 2.2rem;
    }
    .p-reason-textE{
        font-size: 3.5rem;
    }
    .p-reason-textF{
        font-size: 2.6rem;
    }
    .c-reason-list ul li{
        width: 50%;
        margin-bottom: 55px;
        min-width: unset;
    }
    .c-reason-list ul li p{
        font-size: 1.4rem;
        text-align: left;
    }
    .c-flow1-img-flex{
        display: block;
    }
    .p-flow1-text-flex{
        display: block;
    }
    .p-flow1-img{
        width: 224px;
        height: 149px;
        margin-bottom: 10px;
    }
    .p-flow1-img-block{
        width: 224px;
        height: 149px;
    }
    .p-flow1-img:last-child{
        width: 224px;
        height: 149px;
        margin-bottom: 0;
    }
    .l-facility-flex{
        display: block;
    }
    .c-facility-display{
        width: 100%;
    }
    .c-facility-thumb-list{
        width: 100%;
    }
    .c-facility-thumb-list li{
        min-height: 114px;
    }
    .c-facility-display p{
        text-align: center;
        margin-top: 25px;
        margin-bottom: 40px;
        font-weight: bold;
        font-size: 2.2rem;
    }
    .p-facility-icon-img{
        max-width: 114px;
        height: 73px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .c-thumb-box p{
        font-size: 1.2rem;
        height: 34px;
        bottom: 0;
    }
    .p-casestudy1-sub{
        font-size: 2.2rem;
    }
    .p-casestudy1-ttl{
        font-size: 4rem;
        line-height: 1.3;
    }
    .p-casestudy1-text{
        font-size: 1.4rem;
    }
    .p-casestudy1-text span{
        font-size: 1.4rem;
    }
    .p-flow1-num{
        font-size: 4rem;
        margin-right: 20px;
        width: 26px;
    }
    .p-flow1-inr-icon{
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    .p-flow1-icon1::before{
        width: 33.75px;
        height: 34.5px;
    }
    .p-flow1-icon2::before{
        width: 39.06px;
        height: 43.77px;
    }
    .p-flow1-icon3::before{
        width: 35.06px;
        height: 29px;
    }
    .p-flow1-icon4::before{
        width: 37.28px;
        height: 39.56px;
    }
    .p-flow1-icon5::before{
        width: 42.56px;
        height: 32.44px;
    }
    .p-flow2-icon1::before{
        background-image: url(./images/flow2_icon1.svg);
        width: 31px;
        height: 31px;
    }
    .p-flow2-icon2::before{
        background-image: url(./images/flow2_icon2.svg);
        width: 27px;
        height: 38.25px;
    }
    .p-flow2-icon3::before{
        background-image: url(./images/flow2_icon3.svg);
        width: 38.74px;
        height: 38.76px;
    }
    .p-flow2-icon4::before{
        background-image: url(./images/flow2_icon4.svg);
        width: 58.5px;
        height: 58.5px;
    }
    .p-flow2-icon5::before{
        background-image: url(./images/flow2_icon5.svg);
        width: 44.35;
        height: 25.17px;
    }
    .p-flow3-icon1::before{
        background-image: url(./images/flow3_icon1.svg);
        width: 39.87px;
        height: 40.76px;
    }
    .p-flow3-icon2::before{
        background-image: url(./images/flow3_icon2.svg);
        width: 44.42px;
        height: 51.24px;
    }
    .p-flow3-icon3::before{
        background-image: url(./images/flow3_icon3.svg);
        width: 40.78px;
        height: 40.32px;
    }
    .c-flow1-list ul li::before{
        left: 79px;
    }
    .p-text-block h3{
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .p-text-block p{
        font-size: 1.4rem;
    }
    .c-flow2-btn{
        display: block;
    }
    .p-flow2-btn{
        width: 100%;
    }
    .p-flow2-btn p{
        text-align: left;
        font-size: 1.8rem;
    }
    .p-flow2-btn.p-flow2-btn-backA{
        margin-bottom: 20px;
    }
    .p-case-lb{
        font-size: 6rem;
        position: static;
        line-height: 1.3;
    }
    .p-case-rt{
        font-size: 6rem;
        position: static;
        text-align: left;
        line-height: 1.3;
    }
    .l-inner-r.p-casestudy1-pt1{
        padding: 235px 20px 40px 20px;
    }
    .l-inner-l.p-casestudy1-pt1{
        padding: 235px 20px 40px 20px;
    }
    .l-inner-r.p-casestudy1-pt2{
        padding: 323px 20px 40px 20px;
    }
    .l-inner-l.p-casestudy1-pt2{
        padding: 323px 20px 40px 20px;
    }
    .p-case-img1{
        width: 352px;
        height: 235px;
        left: 0;
        top: 0;
    }
    .p-case-img2{
        width: 352px;
        height: 235px;
        right: unset;
        left: 0;
        top: 0;
        bottom: unset;
    }
    .p-case-img3{
        width: 352px;
        height: 235px;
        left: unset;
        top: 0;
        right: 0;
    }
    .p-case-img4{
        width: 352px;
        height: 323px;
        left: unset;
        top: 0;
        right: unset;
        left: 0;
        bottom: unset;
    }
    .p-case-img5{
        width: 352px;
        height: 323px;
        left: unset;
        top: 0;
        left: unset;
        right: 0;
    }
    .c-casestudy1-ttl-block{
        margin-bottom: 25px;
    }
    .p-flow1-text.p-flow1-text-flex .p-text-block{
        margin-right: 0;
    }
}
/* 車検・整備
------------------------------------------------ */
.l-coupon{
    padding-top: 100px;
    padding-bottom: 180px;
}
.l-price{
    padding-top: 110px;
    padding-bottom: 100px;
}
.l-flow3{
    margin-top: 175px;
    padding-top: 90px;
    padding-bottom: 165px;
}
.l-qa2{
    padding-top: 100px;
    padding-bottom: 110px;
}
.p-price-icon::before{
    background-image: url(./images/price_icon.png);
}
.p-flow3-icon::before{
    background-image: url(./images/flow3_icon.png);
}

.c-coupon-con{
    border: solid 5px #E62121;
    max-width: 900px;
    margin: auto;
    box-sizing: border-box;
}
.c-coupon-flex{
    display: flex;
    padding: 0 35px 0 27px;
    box-sizing: border-box;
    justify-content: space-between;
}
.c-coupon-block-l{
    width: 37%;
    max-width: 300px;
    position: relative;
}
.c-coupon-block-l::before{
    content: "";
    display: block;
    position: absolute;
    background-image: url(./images/coupon_back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 330px;
    height: 462px;
    top: -17px;
    left: -17px;
}
.c-coupon-block-l h2{
    padding-top: 45px;
    font-size: 3.6rem;
    font-weight: bold;
    color: #FFF;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.c-coupon-block-l h3{
    font-size: 4.8rem;
    font-weight: bold;
    color: #FFEC00;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.c-coupon-block-l h3 span{
    font-size: 7rem;
    font-weight: normal;
    font-family: "Oswald", sans-serif;
}
.c-coupon-block-r{
    width: 62%;
    max-width: 515px;
}
.c-coupon-block-r ul li{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #BCBCBC;
}
.c-coupon-block-r ul li:first-child{
    padding-top: 20px;
}
.c-coupon-block-r ul li:last-child{
    border-bottom: none;
}
.c-coupon-list{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.c-coupon-text-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-coupon-text-block::before{
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: #00B2C1;
    margin-right: 20px;
}
.p-coupon-num1::before{
    content: "1";
}
.p-coupon-num2::before{
    content: "2";
}
.p-coupon-num3::before{
    content: "3";
}
.p-coupon-num4::before{
    content: "4";
}
.p-coupon-num5::before{
    content: "5";
}
.c-coupon-text{
    position: relative;
}
.c-coupon-text h4{
    font-size: 2.6rem;
    font-weight: bold;
    color: #E62121;
}
.c-coupon-text h4 span{
    font-size: 2rem;
}
.p-coupon-price p{
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 4rem;
    color: #E62121;
}
.p-coupon-price p span{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.6rem;
}
.c-coupon-bottom{
    background-color: #FFEC00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 60px;
    box-sizing: border-box;
}
.p-coupon-bootom-img{
    width: 215px;
    height: 140px;
    background-image: url(./images/coupon_btm_img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.c-coupon-bottom-text{
    order: 1;
    line-height: 1.3;
}
.p-coupon-bottom-text1{
    font-size: 3.6rem;
    font-weight: bold;
    color: #E62121;
}
.p-coupon-bottom-text2{
    font-size: 4.8rem;
    font-weight: bold;
    color: #E62121;
}

.l-slider-wrap-price{
    max-width: 1000px;
    margin: 0 auto 40px;
    position: relative;
}
.swiper3{
    overflow: hidden;
}
.c-price-block{
    background-color: #FFF;
}
.p-price-block-top{
    border-bottom: solid 1px #BCBCBC;
    padding: 10px;
    box-sizing: border-box;
    height: 311px;
}
.p-price-block-top h4{
    color: #FFF;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 5px;
    box-sizing: border-box;
}
.p-price-block-top h4.p-price-ttl1{
    background-color: #009366;
}
.p-price-block-top h4.p-price-ttl2{
    background-color: #C1A100;
}
.p-price-block-top h4.p-price-ttl3{
    background-color: #AE60B4;
}
.p-price-block-top h4.p-price-ttl4{
    background-color: #00B2C1;
}
.p-price-block-top h4.p-price-ttl5{
    background-color: #E04B79;
}
.p-price-block-top-img img{
    margin-bottom: 10px;
}
.p-price-block-top-img{
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.p-price-block-top-img1{
    background-image: url(./images/price_img1.png);
}
.p-price-block-top-img2{
    background-image: url(./images/price_img2.png);
}
.p-price-block-top-img3{
    background-image: url(./images/price_img3.png);
}
.p-price-block-top-img4{
    background-image: url(./images/price_img4.png);
}
.p-price-block-top-img5{
    background-image: url(./images/price_img5.png);
}
.p-price-block-bottom{
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.c-price-text-flex{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.p-price-text1{
    font-weight: bold;
}
.p-price-text2{
    font-weight: bold;
    font-size: 2.6rem;
    font-family: "Oswald", sans-serif;
}
.p-price-text2 span{
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
}
.p-price-text3{
    font-weight: bold;
    font-size: 2rem;
    color: #E62121;
}
.p-price-text4{
    font-weight: bold;
    font-size: 3.2rem;
    color: #E62121;
    font-family: "Oswald", sans-serif;
}
.p-price-text4 span{
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
}
.c-price-text{
    margin-bottom: 35px;
}
.c-price-text p{
    font-size: 1.4rem;
    color: #fff;
}
.c-price-credit{
    padding: 14px;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 80px;
}
.c-price-credit-flex{
    max-width: 730px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-price-credit-l p{
    font-size: 2.6rem;
    font-weight: bold;
    color: #00B2C1;
}
.p-price-credit-r img{
    max-width: 417px;
}
.c-price-bottom{
    max-width: 660px;
    margin: auto;
}
.c-price-bottom p{
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 35px;
    font-weight: bold;
    text-align: center;
}
.c-price-btn-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-btn-back1{
    background-color: #009366;
    padding-left: 110px;
}
.p-btn-back2{
    background-color: #C1A100;
    padding-left: 110px;
}

@media screen and (max-width: 1110px) {
    .l-slider-wrap-price{
        width: 85%;
    }
}
@media screen and (max-width: 1040px) {
    .l-slider-wrap-price{
        margin: 0 auto 40px;
    }
}
@media screen and (max-width: 940px) {
    .c-coupon-con{
        margin: 0 20px;
    }
}
.p-pc1{
    display: block;
}
@media screen and (max-width: 917px) {
    .p-pc1{
        display: none;
    }
    .c-coupon-flex{
        display: block;
        padding: 0 20px;
    }
    .c-coupon-block-l{
        width: 100%;
        max-width: unset;
        margin-bottom: 55px;
    }
    .c-coupon-block-l::before{
        background-image: url(./images/coupon_back_sp.png);
        width: 360px;
        height: 265px;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    .c-coupon-block-l h2{
        padding-top: 20px;
        font-size: 2.6rem;
    }
    .c-coupon-block-l h3{
        font-size: 3.6rem;
    }
    .c-coupon-block-l h3 span{
        font-size: 6rem;
    }
    .c-coupon-block-r{
        width: 100%;
        max-width: unset;
    }
    .c-coupon-bottom{
        display: block;
        padding: 20px 40px 0;
    }
    .p-coupon-bottom-text1 {
        font-size: 2.6rem;
        text-align: center;
    }
    .p-coupon-bottom-text2 {
        font-size: 3.6rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .p-coupon-bootom-img {
        width: 160px;
        height: 104px;
        margin: auto;
    }
}
@media screen and (max-width: 768px) {
    .l-coupon{
        padding-top: 60px;
        padding-bottom: 140px;
    }
    .l-price{
        padding-top: 84px;
        padding-bottom: 80px;
    }
    .l-flow3{
        margin-top: 130px;
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .l-qa2{
        padding-top: 74px;
        padding-bottom: 100px;
    }

    .c-coupon-text h4{
        font-size: 2.2rem;
        margin-bottom: 10px;
        white-space: nowrap;
    }
    .c-coupon-text h4 span{
        font-size: 1.8rem;
    }
    .p-coupon-text-sp{
        position: absolute;
        white-space: nowrap;
    }
    .p-coupon-text-sp2{
        margin-top: 40px;
    }
    .c-coupon-text p{
        font-size: 1.4rem;
    }
    .p-coupon-price p{
        line-height: 1.1;
    }
    .l-slider-wrap-price{
        width: 73%;
        margin: 0 auto 40px;
    }
    .c-price-credit{
        margin-bottom: 60px;
    }
    .c-price-credit-flex{
        display: block;
    }
    .c-price-text p{
        font-size: 1.2rem;
    }
    .p-price-credit-l p{
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .p-price-credit-r img{
        max-width: 100%;
    }
    .c-price-bottom p{
        font-size: 2.2rem;
        white-space: nowrap;
    }
    .c-price-btn-flex{
        display: block;
    }
    .c-btnA.p-btn-back1{
        padding-left: 40px;
        margin-bottom: 20px;
        max-width: unset;
    }
    .c-btnA.p-btn-back2{
        padding-left: 40px;
        max-width: unset;
    }
    .c-coupon-text-block::before{
        margin-right: 10px;
    }
    .p-coupon-price p span{
        font-size: 1.8rem;
    }
    .p-price-block-top p{
        font-size: 1.4rem;
    }
    .c-price-text-flex{
        font-size: 1.4rem;
    }
    .p-price-text2 span{
        font-size: 1.4rem;
    }
    .p-price-text3{
        font-size: 1.8rem;
    }
    .c-price-bottom p{
        font-size: 2rem;
    }
}
/* 会社概要
------------------------------------------------ */
.l-about{
    padding-top: 90px;
    padding-bottom: 180px;
}
.l-group{
    padding-top: 90px;
    padding-bottom: 190px;
}
.l-company{
    padding-top: 90px;
    padding-bottom: 100px;
}
.p-about-icon::before{
    background-image: url(./images/about_icon.png);
}
.p-group-icon::before{
    background-image: url(./images/group_icon.png);
}
.p-company-icon::before{
    background-image: url(./images/company_icon.png);
}

.l-about-con h4{
    text-align: center;
    font-weight: bold;
    font-size: 2.6rem;
    margin-bottom: 40px;
}
.l-about-con p{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.l-group-con{
    max-width: 870px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: auto;
}
.c-group-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.c-group-block-l{
    width: 41%;
}
.c-group-block-l h4{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.c-group-block-l ul li{
    font-size: 1.6rem;
}
.c-group-block-l ul li:first-child{
    color: #E62121;
}
.c-group-block-r{
    max-width: 500px;
    width: 62.5%;
}

.c-company-con{
    max-width: 890px;
    padding: 0 20px;
    margin: auto;
    box-sizing: border-box;
}
.c-company-con{
    max-width: 890px;
    padding: 0 20px;
    margin: auto;
    box-sizing: border-box;
}
.c-company-con ul li{
    border-bottom: solid 1px #BCBCBC;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.c-company-table{
    display: flex;
    align-items: flex-start;
}
.p-company-head{
    font-weight: bold;
    font-size: 1.6rem;
    color: #00B2C1;
    width: 18.8%;
}
.p-company-body{
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
.l-about{
    padding-top: 64px;
    padding-bottom: 142px;
}
.l-group{
    padding-top: 64px;
    padding-bottom: 142px;
}
.l-company{
    padding-top: 64px;
    padding-bottom: 100px;
}
    .l-about-con h4{
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-align: left;
    }
    .l-about-con p{
        text-align: left;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .c-group-flex{
        display: block;
    }
    .c-group-block-l{
        width: 100%;
        max-width: 285px;
        margin: 0 auto 40px;
    }
    .c-group-block-l h4{
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .c-group-block-l ul li{
        font-size: 1.4rem;
    }
    .c-group-block-r{
        width: 100%;
        max-width: unset;
    }
.p-company-head {
    font-size: 1.4rem;
    width: 35%;
}
.p-company-body {
    font-size: 1.4rem;
    width: 65%;
}
}

/* 採用情報
------------------------------------------------ */
.l-occupation{
    padding-top: 90px;
    padding-bottom: 190px;
}
.l-flow4{
    padding-top: 90px;
    padding-bottom: 190px;
}
.l-message{
    padding-top: 90px;
    padding-bottom: 120px;
}
.p-occupation-icon::before{
    background-image: url(./images/occupation_icon.png);
}
.p-flow4-icon::before{
    background-image: url(./images/flow4_icon.png);
}
.p-message-icon::before{
    background-image: url(./images/message_icon.png);
}

.c-occupation-con{
    position: relative;
    padding-top: 80px;
    margin-bottom: 100px;
}
.c-occupation-con:last-child{
    margin-bottom: 0;
}
.c-occ-img{
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 600px;
    max-height: 400px;
    width: 42.86vw;
    height: 28.57vw;
    left: 0;
    top: 0;
    z-index: 1;
}
.p-occ-img1{
    /*background-image: url(./images/occ_img1.png);*/
	background-image: url(./images/occ_img1_2.jpg);
}
.p-occ-img2{
   /* background-image: url(./images/occ_img2.png);*/
	background-image: url(./images/occ_img2_2.jpg);
}
.p-occ-img3{
    /*background-image: url(./images/occ_img3.png);*/
	background-image: url(./images/occ_img3_2.jpg);
}
.c-occ-inr{
    max-width: 1100px;
    margin: 0 auto 40px;
}
.p-occ-ttl-sub{
    font-size: 2.6rem;
    font-weight: bold;
    color: #FFF;
}
.p-occ-ttl{
    font-size: 6.4rem;
    font-weight: bold;
    color: #F4DA4B;
    margin-bottom: 30px;
}
.p-occ-text{
    font-size: 1.6rem;
    color: #FFF;
    padding-bottom: 30px;
}
.p-occ-dec{
    font-family: "Oswald", sans-serif;
    font-size: 10rem;
    opacity: 0.4;
    position: absolute;
    left: 5px;
    bottom: 0;
    color: #FFF;
}
.occ-content ul li{
    border-bottom: solid 1px #BCBCBC;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.occ-content ul li:last-child{
    margin-bottom: 0;
}
.c-occ-flex{
    display: flex;
}
.c-occ-list-head{
    font-weight: bold;
    color: #00B2C1;
    font-size: 1.6rem;
    margin-right: 20px;
    width: 140px;
}
.c-occ-list-body{
    font-size: 1.6rem;
    width: calc(100% - 140px);
}

.c-flow4-con{
}
.c-flow4-con ul li{
    margin-bottom: 45px;
}
.c-flow4-con ul li:last-child{
    margin-bottom: 0;
}
.c-flow4-flex{
    display: flex;
}
.p-flow4-head{
    font-family: "Oswald", sans-serif;
    margin-right: 60px;
    font-size: 3.2rem;
    font-weight: bold;
    color: #00B2C1;
}
.p-flow4-head.p-flow4-head2{
    margin-right: 35px;
}
.p-flow4-body h4{
    font-size: 2.6rem;
    font-weight: bold;
}
.p-flow4-body p{
    font-size: 1.6rem;
}

.c-message-con{
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.c-message-con p{
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}
.c-message-bottom{
    max-width: 700px;
    margin: auto;
    padding: 40px 0;
    box-sizing: border-box;
    background-color: #fff;
}
.c-message-bottom h4{
    font-size: 2.6rem;
    font-weight: bold;
    color: #00B2C1;
    text-align: center;
    margin-bottom: 20px;
}
.c-message-bottom p{
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}
.p-message-name{
    margin-bottom: 20px;
}
.p-message-contact{
    line-height: 2;
}
/* アコーディオン（採用情報）
------------------------------------------------ */
.occ-content {
    display: none;
}
.accordion li{
    margin-bottom: 10px;
}
.occ-header {
    background-color: #FFD900;
    border: solid 4px #00B2C1;
    padding: 13px 45px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.occ-header::after{
    content: '';
    position: absolute;
    width: 48px;
    height:48px;
    right: 50px;
    background-image: url(./images/occ_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.occ-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.occ-header.active::after{
    transform:rotate(0deg);
}
.occ-header p{
    color: #00B2C1;
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
    width: 100%;
}
.occ-content {
    background-color: #FFF;
    padding: 60px 75px;
    box-sizing: border-box;
}

@media screen and (max-width: 1160px) {
    .c-occ-inr{
        margin: 0 20px 40px 40px;
    }
}
@media screen and (max-width: 768px) {
    .l-occupation{
        padding-top: 64px;
        padding-bottom: 142px;
    }
    .l-flow4{
        padding-top: 64px;
        padding-bottom: 142px;
    }
    .l-message{
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .c-occupation-con{
        padding-top: 40px;
    }
    .c-occ-img{
        width: 353px;
        height: 235px;
        left: 0;
        top: 0;
    }
    .p-recruit-inr .c-top-con-text-r{
        margin-left: 0;
    }
    .p-occ-ttl-sub{
        font-size: 2.2rem;
    }
    .p-occ-ttl{
        font-size: 3.6rem;
        margin-bottom: 20px;
    }
    .p-occ-ttl.p-occ-ttl1{
        margin-bottom: 0;
    }
    .p-occ-text{
        font-size: 1.4rem;
        padding-bottom: 0;
    }
    .p-occ-dec{
        font-size: 6rem;
        left: 20px;
        bottom: unset;
        top: 195px;
    }
    .occ-header{
        padding: 13px 20px;
    }
    .occ-header p{
        font-size: 2.2rem;
        text-align: left;
    }
    .occ-content {
        padding: 40px 20px;
    }
    .occ-content ul li {
        padding-bottom: 15px;
    }
    .c-occ-list-head {
        font-size: 1.4rem;
        width: 100px;
        margin-right: 20px;
    }
    .c-occ-list-body {
        font-size: 1.4rem;
        width: calc(100% - 120px);
    }
    .p-flow4-head{
        font-size: 2.6rem;
        margin-right: 35px;
    }
    .p-flow4-body h4 {
        font-size: 2.2rem;
    }
    .p-flow4-body p{
        font-size: 1.4rem;
        margin-top: 5px;
    }
    .c-message-con p {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: left;
    }
    .c-message-bottom{
        margin: 0 20px;
    }
    .c-message-bottom h4{
        font-size: 2rem;
    }
    .c-message-bottom p{
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .c-message-bottom p{
        font-size: 1.4rem;
    }
    .occ-header::after{
        right: 20px;
    }
}
/* 一覧（お知らせ）
------------------------------------------------ */
.l-news{
    padding: 100px 0 120px;
    box-sizing: border-box;
}
.p-post-list-item{
    margin-bottom: 10px;
}
.c-news-link{
    padding: 15px 25px;
    background-color: #FFF;
    border-radius: 20px;
    border: solid 5px #fff;
    box-sizing: border-box;
}
.c-news-link:hover{
    opacity: 1;
    border: solid 5px #00B2C1;
}
.c-post-flex-top{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.p-post-date{
    margin-right: 5px;
    font-size: 1.4rem;
}
.p-post-cat{
    background-color: #00B2C1;
    color: #FFF;
    font-size: 1.3rem;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.p-post-ttl{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.p-news{
    font-size: 1.4rem;
}
.c-post-flex-bottom{
    display: flex;
    justify-content: space-between;
}
.c-post-bottom{
}
.c-post-bottom .p-news-link{
    margin-top: 10px;
    text-align: right;
}
.p-news-link{
    font-size: 1.4rem;
    color: #00B2C1;
    white-space: nowrap;
    display: flex;
    align-items: flex-end;
}

.c-pagenation .wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.c-pagenation .current{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: solid 2px #00B2C1 !important;
    background-color: #00B2C1;
    color: #FFF;
    padding: 0 !important;
    margin: 0 5px;
    box-sizing: border-box;
    font-weight: bold;
}
.c-pagenation .page.larger,.c-pagenation .page.smaller{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: solid 2px #00B2C1 !important;
    background-color: #FFF;
    color: #00B2C1;
    margin: 0 5px;
    padding: 0 !important;
    box-sizing: border-box;
    font-weight: bold;
}

.p-archive-none{
    text-align: center;
    font-weight: bold;
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .l-news{
        padding: 60px 0 100px;
    }
    .c-post-flex-bottom{
        display: block;
    }
    .p-news{
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .p-news-link{
        text-align: right;
    }
}
/* 一覧（事例紹介）
------------------------------------------------ */
.l-casestudy-archive{
    padding-top: 90px;
}
.l-casestudy-inr{
    max-width: 1040px;
    padding: 0 20px 120px;
    margin: auto;
    box-sizing: border-box;
}
.p-category-filter-text{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
}
.p-category-filter {
    max-width: 823px;
    margin: 0 auto 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-btn{
    border: solid 3px #00B2C1;
    background-color: #FFF;
    color: #00B2C1;
    padding: 5px 28px;
    box-sizing: border-box;
    font-size: 2.6rem;
    font-weight: bold;
    border-radius: 30px;
    margin: 0 5px 10px 5px;
}
.filter-btn.is-active{
    background-color: #00B2C1;
    color: #FFF;
}

.c-casestudy-archive{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c-casestudy-archive::after{
    content: "";
    display: block;
    width: 30%;
}
.p-casestudy-archive-item{
    width: 30%;
    margin-bottom: 45px;
}
.p-post-thumb{
    margin-bottom: 10px;
}
.cat-label{
    background-color: #00B2C1;
    color: #FFF;
    font-size: 1.4rem;
    padding: 2px 10px;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 10px;
}
.p-casestudy-archive-ttl {
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 10px;
    overflow: hidden;
}
.p-casestudy-archive-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #00B2C1;
    transition: width 0.3s ease, right 0.3s ease;
}
.p-casestudy-archive-item-link:hover{
    opacity: 1;
}
.p-casestudy-archive-item-link:hover .p-casestudy-archive-ttl::after {
    width: 100%;
}

.l-casestudy-inr .c-pagenation .wp-pagenavi{
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .l-casestudy-inr{
        padding: 0 20px 100px;
    }
    .l-casestudy-archive{
        padding-top: 62px;
    }
    .p-category-filter-text{
        font-size: 1.4rem;
    }
    .c-casestudy-archive{
        display: block;
    }
    .p-casestudy-archive-item{
        width: 100%;
        margin-bottom: 35px;
    }
    .p-post-thumb img{
        width: 100%;
    }
    .p-category-filter{
        justify-content: space-between;
        margin: 0 auto 60px;
    }
    .filter-btn{
        width: 49%;
        padding: 5px 20px;
        border-radius: 30px;
        margin: 0 0 10px 0;
        text-align: center;
        height: 83px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
    }
}

/* 記事
------------------------------------------------ */
.l-single{
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 50px 50px 60px 50px;
}
.l-single img{
    margin-bottom: 40px;
}
.c-single-flex{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.p-single-title{
    font-weight: bold;
    font-size: 2.6rem;
    margin-bottom: 40px;
}
.p-single-thumbnail{
    margin-bottom: 40px;
}
.c-single-btn-block{
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-btn-back{
    border: solid #00B2C1 5px;
    background-color: #FFF;
    height: 64px;
    width: 100%;
    max-width: 220px;
    border-radius: 33px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-btn-back p{
    color: #00B2C1;
    font-weight: bold;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-btn-back p::before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 12px solid #00B2C1;
    margin-right: 20px;
}
.c-btn-back:hover{
    background-color: #00B2C1;
    opacity: 1;
}
.c-btn-back:hover p{
    color: #FFF;
}
.c-btn-back:hover p::before{
    border-right: 12px solid #FFF;
}

@media screen and (max-width: 1040px) {
    .l-single{
        margin: 0 20px 40px;
    }
}
@media screen and (max-width: 768px) {
    .l-single{
        padding: 40px 20px;
    }
    .p-single-title{
        font-size: 2.2rem;
    }
    .p-single-content p{
        font-size: 1.4rem;
    }
    .c-btn-back p{
        color: #FFF;
        font-size: 1.4rem;
    }
    .c-btn-back p::before{
        content: "";
        border-right: 12px solid #FFF;
    }
    .c-btn-back{
        background-color: #00B2C1;
    }
}

/* お問い合わせ
------------------------------------------------ */
.l-contact{
    padding: 0 0 100px;
    box-sizing: border-box;
}

.c-form-step-list {
    display: flex;
    margin: 0 auto 60px;
    padding: 0;
    gap: 0;
    justify-content: center;
    max-width: 900px;
    margin-inline: auto;
}
/* ステップ1つずつの基本スタイル */
.c-form-step-list .step {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 28px;
    flex: 1;
    list-style: none;
    background-color: #BCBCBC;
    text-align: center;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: bold;
    clip-path: polygon(
        0% 0%,
        calc(100% - 28px) 0%,
        100% 50%,
        calc(100% - 28px) 100%,
        0% 100%,
        28px 50%
    );
    margin: 0 -10px;
}
/* 左端：入力 */
.c-form-step-list .step:first-child {
    clip-path: polygon(
        0% 0%,
        calc(100% - 28px) 0%,
        100% 50%,
        calc(100% - 28px) 100%,
        0% 100%
    );
    margin-left: 0;
    padding-left: 0;
}
/* 右端：完了 */
.c-form-step-list .step:last-child {
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 100%,
        0% 100%,
        28px 50%
    );
    margin-right: 0;
    padding-right: 0;
}
/* 現在のステップを強調 */
.c-form-step-list .step.is-current {
    background-color: #00B2C1;
    color: #fff;
}
.p-contact-top-text{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 60px;
}

.l-contact-con{
    background-color: #FFF;
    padding-top: 40px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.l-contact-con1{
    background-color: #FFF;
    padding-top: 40px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.l-contact-con ul{
    max-width: 800px;
    margin: 0 auto;
}
.l-contact-con ul li{
    margin-bottom: 40px;
}
.l-contact-con1 ul li{
    margin-bottom: 10px;
}
.l-contact-con1 ul li:last-child{
    margin-bottom: 0;
}
.c-contact-list{
    display: flex;
}
.c-contact-list1{
    display: flex;
}
.c-contact-list2{
    display: flex;
}
.p-contact-list-center{
    align-items: center;
}
.p-contact-label{
    min-width: 140px;
    margin-right: 20px;
    color: #00B2C1;
    font-weight: bold;
    font-size: 1.6rem;
}
.must{
    font-weight: bold;
    font-size: 1.2rem;
    color: #E62121;
}
.p-contact-search-btn{
    color: #00B2C1;
    border-bottom: solid 1px #00B2C1;
    cursor: pointer;
    line-height: 1.1;
    display: inline-block;
}
.p-contact-input{
    width: calc(100% - 160px);
    margin-bottom: 10px;
}
.p-contact-input-inr1{
    margin-bottom: 10px;
}
.p-contact-input input{
    width: 100%;
    padding: 10px 7px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #BCBCBC;
    font-size: 1.6rem;
    color: #333333;
}
.p-contact-input select{
    padding: 10px 7px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #BCBCBC;
    font-size: 1.6rem;
    min-width: 200px;
}
select.pref.is-placeholder {
    color: rgba(51, 51, 51, 0.7);
}
select.pref:not(.is-placeholder) {
    color: #333333;
}
.p-contact-input textarea{
    width: 100%;
    padding: 10px 7px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #BCBCBC;
    font-size: 1.6rem;
    color: #333333;
    height: 140px;
}

.l-contact-bottom{
    max-width: 800px;
    margin: auto;
}
.l-privacy{
    padding: 100px 0 120px;
}
.p-contact-privacy-ttl{
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 2.6rem;
}
.c-contact-privacy{
    margin-bottom: 40px;
}
.c-contact-privacy-inr{
    height: 400px;
    overflow-y: auto;
    border: solid 1px #BCBCBC;
}
.wrap_privacy_policy{
    padding: 35px;
    box-sizing: border-box;
}
.l-privacy .wrap_privacy_policy{
    padding: 0;
}
.p-privacy-text{
    margin-bottom: 40px;
}
.profile_h3_policy{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
	margin-top: 40px;
}
.profile_h4_policy{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.contens_policy p{
    margin-bottom: 20px;
}
.p-consent-check{
    text-align: center;
    margin-bottom: 40px;
}
.p-consent-check .mwform-checkbox-field label{
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-consent-check .mwform-checkbox-field input{
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.c-contact-btn-block{
    text-align: center;
}
.p-contact-btn{
    cursor: pointer;
    background-color: #FFF;
    border: solid 5px #00B2C1;
    border-radius: 33px;
    box-sizing: border-box;
    height: 64px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all .4s;
    position: relative;
}
.p-contact-btn input{
    width: 100%;
    height: 100%;
    border-radius: 33px;
    cursor: pointer;
    align-items: center;
    color: #00B2C1;
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1.6rem;
    transition: all .4s;
}
.p-contact-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #00B2C1;
    transition: all .4s;
    position: absolute;
    right: 35px;
}
.p-contact-btn:hover{
    background-color: #00B2C1;
    opacity: 1;
    transition: all .4s;
}
.p-address{
    margin-top: 5px;
}
.c-confirm .p-address{
    display: none;
}
.c-confirm .mt10{
    margin-top: 0;
}
.c-confirm .p-contact-search-btn{
    display: none;
}
.c-confirm .p-contact-btn{
    border: solid 5px #E62121;
}
.c-confirm .p-contact-btn input{
    color: #E62121;
}
.c-confirm .p-contact-btn::after {
    border-left: 12px solid #E62121;
}
.c-confirm .p-contact-btn:hover{
    background-color: #E62121;
}
.p-contact-btn:hover input{
    color: #FFF;
    transition: all .4s;
}
.p-contact-btn:hover::after{
    border-left: 12px solid #FFF;
    transition: all .4s;
}

.l-contact-comp{
    padding-top: 90px;
    margin-top: 110px;
}
.l-contact-comp .p-contact-search-btn{
    display: none;
}
.p-contact-icon::before{
    background-image: url(./images/contact_icon.png);
}
.p-contact-comp-text{
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-align: center;
}
.c-contact-comp-bottom{
    background-color: #FFF;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}
.p-contact-comp-bottom-text{
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    color: #00B2C1;
}

@media screen and (max-width: 880px) {
    .l-contact-con ul{
        margin: 0 20px 60px;
    }
}
@media screen and (max-width: 880px) {
    .l-contact-con1 .l-contact-bottom{
        padding: 0 20px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 768px) {
    .l-privacy{
        padding: 60px 0 100px;
    }
    .c-form-step-list{
        margin: 0 auto 40px;
    }
    .p-contact-top-text{
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    .l-contact-con{
        padding: 40px 20px 80px;
    }
    .c-contact-list{
        display: block;
    }
    .c-contact-list1{
        display: block;
    }
    .p-contact-label.p-right{
        text-align: left;
    }
    .l-contact-con ul{
        margin: 0 auto 60px;
    }
    .l-contact-con ul li{
        margin-bottom: 20px;
    }
    .p-contact-label{
        min-width: 70px;
        margin-right: 10px;
        font-size: 1.4rem;
    }
    .p-contact-input{
        width: 100%;
    }
    .p-contact-input input{
        font-size: 1.4rem;
    }
    .p-contact-input select{
        font-size: 1.4rem;
        width: 100%;
        min-width: 200px;
    }
    .p-contact-input textarea{
        height: 200px;
        font-size: 1.4rem;
    }
    .p-contact-privacy-ttl{
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .mwform-checkbox-field-text{
        font-size: 1.4rem;
    }
    .p-privacy-text{
        font-size: 1.4rem;
    }
    .profile_h3_policy{
        font-size: 1.8rem;
    }
    .profile_h4_policy{
        font-size: 1.4rem;
    }
    .p-contact-btn{
        background-color: #00B2C1;
    }
    .p-contact-btn input{
        color: #FFF;
        font-size: 1.4rem;
    }
    .p-contact-btn::after {
        border-left: 12px solid #FFF;
    }
    .c-confirm .p-contact-btn{
        border: solid 5px #E62121;
        background-color: #E62121;
    }
    .c-confirm .p-contact-btn input{
        color: #FFF;
    }
    .c-confirm .p-contact-btn::after {
        border-left: 12px solid #FFF;
    }
    .p-contact-comp-text{
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: left;
    }
    .p-contact-comp-bottom-text{
        font-size: 2rem;
    }
    .p-address{
        font-size: 1.4rem
    }
    .wrap_privacy_policy{
        padding: 20px;
    }
    .p-contact-search-btn{
        font-size: 1.4rem;
    }
}
/* 見積もり
------------------------------------------------ */
.l-estimate-inr{
    margin: auto;
}
.c-estimate-block{
    border-bottom: solid 1px #00B2C1;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.c-estimate-block-inr{
    max-width: 840px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: auto;
}
.c-estimate-block h4{
    font-size: 2.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.c-estimate-block h4 span{
    display: block;
    font-size: 5.2rem;
    font-family: "Oswald", sans-serif;
    color: #00B2C1;
    margin-right: 35px;
    font-weight: normal;
}
.p-estimate-img1{
    background-image: url(./images/estimate_img1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 644px;
    height: 386px;
    margin: 0 auto 40px;
}
.p-estimate-img2{
    background-image: url(./images/estimate_img2.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
}
.p-estimate-img3{
    background-image: url(./images/estimate_img3.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
}
.p-estimate-label{
    min-width: 180px;
    margin-right: 20px;
    color: #00B2C1;
    font-size: 1.6rem;
    font-weight: bold
}
.p-estimate-img-flex{
    display: flex;
    margin-bottom: 40px;
}
.p-estimate-img-block{
    margin-right: 20px;
}
.p-estimate-img-block:last-child{
    margin-right: 0;
}
.p-estimate-text{
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.p-estimate-file{
    margin-bottom: 10px;
}
.p-estimate-input input {
    width: 100%;
    padding: 10px 7px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #BCBCBC;
    font-size: 1.6rem;
    color: #333333;
}
.p-estimate-textarea textarea {
    width: 100%;
    padding: 10px 7px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #BCBCBC;
    font-size: 1.6rem;
    color: #333333;
    height: 140px;
}
@media screen and (max-width: 768px) {
    .c-estimate-block h4{
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    .c-estimate-block h4 span{
        font-size: 4rem;
    }
    .p-estimate-img1{
        width: 100%;
        height: 188px;
        margin: 0 auto 20px;
    }
    .p-estimate-img-flex{
        display: block;
    }
    .p-estimate-img-block{
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .p-estimate-img-block p{
        font-size: 1.4rem;
    }
    .p-estimate-img2{
        width: 100%;
        height: 209px;
    }
    .p-estimate-img3{
        width: 100%;
        height: 209px;
    }
    .p-estimate-label{
        font-size: 1.4rem;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .p-estimate-text{
        font-size: 1.4rem;
    }
    .p-estimate-input input {
        font-size: 1.4rem;
    }
    .p-estimate-textarea textarea {
        font-size: 1.4rem;
        height: 200px;
    }
}


/* ADD
------------------------------------------------ */

.p-yellow{
    color: #F4DA4B;
}
.p-block{
    display: block;
}
.p-relative{
    position: relative;
}
.p-flex-center{
    align-items: center;
}
.p-right{
    text-align: right;
}
.b {
    font-weight: bold;
}

.center {
    text-align: center;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt75 {
    margin-top: 75px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt120 {
    margin-top: 120px;
}

.mt125 {
    margin-top: 125px;
}

.mb10{
    margin-bottom: 10px;
}

.mb30{
    margin-bottom: 30px !important;
}

.mb40{
    margin-bottom: 40px;
}

.mb85 {
    margin-bottom: 85px;
}

.pb275{
    padding-bottom: 275px;
}

.clear {
    clear: both;
}

.flo-l {
    float: left;
}

.flo-r {
    float: right;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f21 {
    font-size: 21px;
}

.f24 {
    font-size: 24px;
}


.p-pc{
    display: block;
}
.p-sp{
    display: none;
}
.p-sp1{
    display: none;
}
@media screen and (max-width: 768px) {
    .p-pc{
    display: none;
    }
    .p-sp{
        display: block;
    }
    .p-sp1{
        display: inline;
        padding-left: 21px;
    }
}
/* アコーディオン（よくある質問）
------------------------------------------------ */
.accordion-content {
    display: none;
}
.accordion li{
    margin-bottom: 10px;
}
.accordion-header {
    background-color: #FFF;
    padding: 30px 40px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.accordion-header::before,
.accordion-header::after{
    position:absolute;
    content:'';
    width:24px;
    height:5px;
    margin:auto;
    background:#00B2C1;
    right: 25px;
}
.accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.accordion-header.active::after{
    transform:rotate(0deg);
}
.accordion-content {
    background-color: #FFF;
    padding: 0 40px 30px 40px;
    box-sizing: border-box;
}
.accordion-header span,
.accordion-content span{
    padding-left: 55px;
    position: relative;
    display: flex;
    align-items: center;
}
.accordion-header span::before{
    position: absolute;
    content:"Q";
    left: 0;
    color: #00B2C1;
    font-size: 2.6rem;
    font-family: "Oswald", sans-serif;
}
.accordion-content span::before{
    position: absolute;
    content:"A";
    left: 0;
    color: #E62121;
    font-size: 2.6rem;
    font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 768px) {
    .accordion-header {
        padding: 20px 20px 25px 20px;
        font-size: 1.4rem;
    }
    .accordion-content{
        font-size: 1.4rem;
        padding: 0 20px 25px 20px;
    }
    .accordion-header::before, .accordion-header::after{
        right: 20px;
    }
    .accordion-header span, .accordion-content span{
        padding-left: 40px;
        padding-right: 60px;
    }
}

@media screen and (max-width: 400px) {
    .p-intro-ttl{
        font-size: 13rem;
    }
    .p-intro-text{
        font-size: 1.8rem;
    }
    .p-intro-list li{
        font-size: 2.8rem;
    }
    .p-top-ttl{
        font-size: 3.6rem;
    }
    .p-top-ttl-sub{
        font-size: 2.6rem;
    }
    .c-page-ttl-sec h2{
        font-size: 2.8rem;
    }
    .c-top-ttl{
        font-size: 5.8rem;
    }
    .p-top-ttl-sub-dec4{
        top: 7px;
    }
    .p-top-ttl-sub-dec5{
        font-size: 3rem;
        bottom: 8px;
    }
    .c-page-ttl-block h3{
        font-size: 2.6rem;
    }
    .c-page-ttl-block p{
        font-size: 3.2rem;
    }
    .c-reason-top h2{
        font-size: 5rem;
    }
    .c-reason-list ul li{
        width: 49.5%;
    }
    .p-reason{
        width: 170px;
        height: 170px;
    }
    .c-reason-list ul li p{
        font-size: 1.2rem;
        margin: 0 3px;
    }
    .p-flow1-num{
        margin-right: 10px;
    }
    .p-flow1-inr-icon{
        margin-right: 10px;
    }
    .p-text-block h3{
        font-size: 1.8rem;
    }
    .c-coupon-text-block::before {
        margin-right: 5px;
    }
    .p-coupon-price p{
        font-size: 3.4rem;
    }
    .p-coupon-bottom-text2{
        font-size: 3.4rem;
    }
    .l-about-con h4{
        font-size: 2rem;
    }
    .p-occ-ttl{
        font-size: 3.2rem;
    }
    .p-flow4-body h4{
        font-size: 2rem;
    }
    .p-flow2-btn p{
        font-size: 1.6rem;
    }
    .c-btnA{
        height: 62px;
    }
    .c-btnB{
        height: 62px;
    }
    .c-btnA::after{
        width: 40px;
        height: 40px;
        right: 6px;
    }
    .c-btnB::after{
        width: 40px;
        height: 40px;
        right: 6px;
    }
    .p-casestudy1-ttl{
        font-size: 3.8rem;
    }
    .filter-btn{
        font-size: 2rem;
        padding: 5px 15px;
    }
    .c-occ-list-head{
        width: 90px;
        margin-right: 10px;
    }
    .c-occ-list-body{
        width: calc(100% - 100px);
    }
}