@charset "UTF-8";

/* ----------------------------初期設定---------------------------- */
* {
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
}

/* PCとスマートフォンでの<input type="date"/>のスタイルをリセット */
input[type="date"] {
    appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    /* その他のスタイル指定 */
  }

body {
    font: 17px/1.5 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 0.05em;
    background-color: #F7F7F7;
}

img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.wrapper {
    width: 100%;
    max-width: 699px;
    margin: 0 auto;
    overflow: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

p {
    vertical-align: baseline;
}

.red {
    color: #DA0301;
}

.yellow {
    color: #FFF24D;
}

@media screen and (max-width:699px) {
    .wrapper {
        width: 100%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .wrapper {
        display: block;
        position: relative;
        max-width: 700px;
        margin-right: auto;
        margin-left: auto;
        background-color: #fff;
        overflow: hidden;
    }
}

/* ヘッダー */
header {
    width: 100%;
    max-width: 699px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 5px 5px #d5e8eb;
}

header>img {
    width: 45%;
}

header>a {
    width: 50%;
}

header>a:hover{
    opacity: 0.7;
}

@media screen and (max-width:699px) {
    header {
        padding: 5px 10px;
    }
}

/* フッター */
footer {
    width: 100%;
    max-width: 699px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #099BEE;
    color: #fff;
    text-align: left;
}

footer img {
    width: 80%;
    margin: 0 auto 40px;
}

.foo_ttl {
    font-weight: bold;
    border-bottom: 2px solid #fff;
    font-size: 24px;
    margin-top: 40px;
}

footer p {
    font-size: 20px;
    margin-bottom: 10px;
}

@media screen and (max-width:699px){
    footer {
        padding: 35px 20px;
    }
    footer img {
        margin: 0 auto 25px;
    }
    .foo_ttl {
        font-size: 20px;
        margin-top: 20px;
    }
    footer p {
        font-size: 14px;
    }
}

/* ----------------------------3冠---------------------------- */
.award {
    background-image: url(../img/award_bg_sp.jpg);
    padding: 70px 30px;
}

.award img {
    box-shadow: 5px 5px 10px #d9e2e9;
}

@media screen and (max-width:699px){
    .award {
        padding: 35px 20px;
    }
}

/* ----------------------------CTAエリア---------------------------- */
.cta {
    background-color: #099BEE;
    padding: 60px 30px;
}

.time_area {
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta>.balloon {
    color: #099BEE;
    background-color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    font-size: 23px;
    width: 88%;
    border-radius: 8px;
    padding: 8px 10px 5px;
    margin-bottom: 30px;
    position: relative;
}

.cta>.balloon:after {
    content: '';
    border-top: 13px solid #fff !important;
    border: 15px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -52%;
    right: 50%;
    transform: translateX(50%);
}

.cta a {
    margin-bottom: 10px;
    display: block;
}

.cta a:hover{
    opacity: 0.7;
}

.cta>img {
    margin-top: 30px;
}

@media screen and (max-width:699px){
    .cta {
        padding: 35px 20px;
    }
    .time_area {
        font-size: 19px;
        letter-spacing: 0.03em;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .cta>.balloon {
        font-size: 13.5px;
        letter-spacing: 0.03em;
        width: 98%;
        border-radius: 8px;
        padding: 5px 0;
        margin-bottom: 20px;
        position: relative;
        letter-spacing: 0.1em;
    }
    
    .cta>.balloon:after {
        bottom: -58%;
        border-top: 8px solid #fff !important;
        border: 10px solid transparent;
    }
    
    .cta>img {
        margin-top: 16px;
    }
}

/* 光るアニメーション */
.shiny{
    overflow: hidden;
    position: relative;
    border-radius: 100px;
}

.shiny::after{
    content:'';
    position:absolute;
    top:-100px;
    left:-100px;
    width:50px;
    height:50px;
    background-image:linear-gradient(100deg, rgba(255,255,255,0)10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);

    /*アニメーション*/
    animation-name:shiny;
    animation-duration:3s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
}

@keyframes shiny {
	0% {
		transform: scale(0) rotate(25deg);
		opacity: 1;
	}
	
	50% {
		transform: scale(1) rotate(25deg);
		opacity: 1;
	}
	
	100% {
		transform: scale(50) rotate(25deg);
		opacity: 0;
	}
}

/* ----------------------------トラブル---------------------------- */
.trouble {
    background-image: url(../img/trouble_bg_sp.jpg);
    padding: 70px 30px;
    height: 930px;
    overflow: hidden;
    background-position: bottom;
    background-size: cover;
}

.trouble_flx {
    display: flex;
    margin: 30px auto;
}

.trouble_flx>img {
    width: 33%;
}


@media screen and (max-width:699px){
    .trouble {
        padding: 35px 20px;
        height: 500px;
    }
    .trouble_flx {
        display: flex;
        margin: 20px auto;
    }
}

/* ----------------------------悪徳業者---------------------------- */
.caution {
    background-image: url(../img/caution_bg_sp.jpg);
    background-size: 100%;
    padding: 35px 0;
}

.caution_inner {
    background-color: #FFF88D;
    padding: 50px 30px;
}

.caution_inner>.ttl {
    width: 85%;
    margin: 0 auto;
    transform: translateX(3%);
}

.caution_inner>p {
    font-size: 26px;
    color: #003463;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

@media screen and (max-width:699px){
    .caution {
        padding: 20px 0;
    }
    .caution_inner {
        background-color: #FFF88D;
        padding: 25px 20px;
    }
    .caution_inner>.ttl {
        width: 90%;
    }
    .caution_inner>p {
        font-size: 15px;
        margin-top: 17px;
        line-height: 1.3;
    }
}

.point {
    background-color: #fff;
    margin-top: 20px;
}

.point>.point_ttl {
    background-color: #003463;
    color: #fff;
    font-weight: bold;
    font-size: 27px;
    text-align: center;
    padding: 10px;
}

.point_box {
    padding: 25px;
    position: relative;
}

.point_box>img {
    position: absolute;
    width: 10%;
    top: 7%;
    left: 7%;
}

.point_box_ttl {
    background-color: #003463;
    color: #fff;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 10px;
    padding-top: 12px;
    position: relative;
}

.point_box_ttl:after {
    content: '';
    border-top: 12px solid #003463 !important;
    border: 15px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
    display: block;
    z-index: 100;
}

.point_box_txt {
    margin-top: 10px;
    color: #003463;
    font-size: 22px;
    padding: 10px;
    line-height: 1.5;
}

.point_box_txt>.un {
    font-weight: bold;
    background: linear-gradient(to bottom, #fff 0%, #fff 82%, #003463 82%, #003463 88%, #fff 88%, #fff 100%);
}

@media screen and (max-width:699px){
    .point {
        margin-top: 17px;
    }
    .point>.point_ttl {
        font-size: 17px;
        padding: 5px;
    }
    .point_box {
        padding: 15px;
        padding-bottom: 12px;
    }
    .point_box_ttl {
        font-size: 14px;
        letter-spacing: 0.03em;
        border-radius: 15px;
        padding: 7px;
        padding-top: 8px;
    }
    .point_box_ttl:after {
        border-top: 8px solid #003463 !important;
        border: 10px solid transparent;
        bottom: -16px;
    }
    .point_box>img {
        width: 11%;
        top: 8%;
        left: 5%;
    }
    .point_box_txt {
        font-size: 14px;
        letter-spacing: 1.1;
        margin-top: 4px;
        padding: 5px;
    }
    .point_box_txt>.un {
        font-weight: bold;
    }
    ::-webkit-full-page-media, :future, :root .point_box_txt>.un {
        background: linear-gradient(to bottom, #fff 0%, #fff 90%, #003463 90%, #003463 100%) !important;
    }
}

/* ポイント2 */
.point_box.sec,
.point_box.third {
    margin-top: -25px;
}

.point_box.sec>img {
    position: absolute;
    width: 9%;
    top: 0;
    left: 8%;
}

/* ポイント3 */
.point_box.third>img {
    position: absolute;
    width: 9%;
    top: 3%;
    left: 8%;
}

@media screen and (max-width:699px){
    .point_box.sec,
    .point_box.third {
    margin-top: -15px;
    }
    .point_box.third{
        padding-bottom: 12px;
    }
    .point_box.sec .point_box_ttl,
    .point_box.third .point_box_ttl{
        padding: 10px 7px;
    }
    .point_box.sec>img {
        width: 10%;
        top: 3%;
        left: 7%;
    }
    .point_box.third>img {
        width: 11%;
        top: 4%;
        left: 7%;
    }
}

/* ----------------------------作業料金一覧---------------------------- */
.price {
    background-image: url(../img/price_bg_sp.jpg);
    background-size: cover;
    padding: 70px 30px 40px;
}

.price_flx {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price_box {
    background-color: #fff;
    width: 49%;
    border-radius: 20px;
    margin-bottom: 2%;
    box-shadow: 5px 5px 5px #AFE6EC;
}

.price_box_inner {
    padding: 25px;
}

.trouble_list {
    list-style: none;
    font-size: 23px;
    margin-top: 20px;
    letter-spacing: 0.04em;
}

.trouble_list>li {
    background-image: url(../img/check.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 30px;
    padding-left: 40px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.price .anno{
    text-align: right;
    font-size: 14px;
    color: #414141;
}

@media screen and (max-width:699px){
    .price {
        padding: 35px 20px 17px;
    }
    .price_flx {
        gap: 3%;
    }
    .price_box {
        border-radius: 7px;
        margin-bottom: 3%;
        width: 48.5%;
    }
    .price_box_inner {
        padding: 13px;
        padding-bottom: 8px;
    }
    .trouble_list {
        font-size: 14px;
        margin-top: 12px;
    }
    .trouble_list>li {
        background-size: auto 13px;
        padding-left: 20px;
        line-height: 1.2;
        letter-spacing: 0.02em;
        margin-bottom: 5px;
    }
    .price .anno{
        font-size: 7px;
    }
}

/* ----------------------------対応メーカー---------------------------- */
.maker{
    background-color: #fff;
    padding: 70px 0;
}

.maker>.ttl{
    padding: 0 30px;
}

.slider:first-of-type{
    margin-top: 30px;
}

.slider img{
    width:80%;
}

.maker>p{
    text-align: center;
    font-weight: bold;
    color: #414141;
    font-size: 23px;
    margin-top: 30px;
}

@media screen and (max-width:699px){
    .maker {
        padding: 35px 0;
    }
    .maker>.ttl{
        padding: 0 20px;
    }
    .maker>p{
        font-size: 14.5px;
        margin-top: 20px;
    }
}

/* ----------------------------理由---------------------------- */
.reason {
    background-image: url(../img/reason_bg_sp.jpg);
    background-size: cover;
    padding: 70px 30px;
    margin-bottom: -120px;
}

.reason_box{
    margin-top: 50px;
    position: relative;
}

@media screen and (max-width:699px){
    .reason  {
        padding: 35px 20px;
        margin-bottom: -20px;
    }
    .reason_box{
        margin-top: 30px;
    }
}

.reason_box>img{
    z-index: 2;
    position: relative;
}

.reason_box>.number{
    position: absolute;
    top: 280px;
    left: 14%;
    z-index: 3;
    background-color: #fff;
    color: #099BEE;
    font-size: 24px;
    font-weight: bold;
    padding: 4px 15px 2px;
    border-radius: 50px;
}

.reason_box_inner{
    transform: translate(8%, -27%);
}

.reason_ttl{
    background-color: #099BEE;
    color: #fff;
    font-weight: bold;
    font-size: 32px;
    position: relative;
    padding: 160px 40px 20px;
    line-height: 1.3;
}

.reason_ttl .main{
    color: #FFF449;
    font-size: 58px;
}

.reason_txt{
    background-color: #CEEDFF;
    padding: 20px 60px 40px 40px;
    border-radius: 0 0 0 30px;
    font-size: 24px;
    color: #414141;
}

@media screen and (max-width:699px){
    .reason_box>.number{
        font-size: 15px;
        padding: 4px 10px;
        top: 145px;
    }
    ::-webkit-full-page-media, :future, :root .reason_box>.number{
        top: 152px;
    }
    .reason_box_inner{
        transform: translate(8%, -14%);
    }    
    .reason_ttl{
        padding: 45px 25px 10px;
        font-size: 20px;
    }
    ::-webkit-full-page-media, :future, :root .reason_box:last-child .reason_ttl{
        padding: 52px 25px 10px;
    }
    .reason_ttl .main{
        font-size: 32px;
    }
    .reason_txt{
        font-size: 15px;
        padding: 15px 40px 15px 25px;
        border-radius: 0 0 0 10px;
    }
}


/* 偶数のボックス */
.reason_box.even>.reason_box_inner{
    transform: translate(-8%, -27%);
}

.reason_box.even>.number{
    left: 40px !important;
}

.reason_box.even .reason_ttl{
    padding: 160px 90px 20px;
}

.reason_box.even .reason_txt{
    padding: 20px 20px 40px 90px;
    border-radius: 0 0 30px 0;
}

@media screen and (max-width:699px){
    .reason_box.even>.reason_box_inner{
        transform: translate(-8%, -14%);
    }
    .reason_box.even>.number{
        left: 20px !important;
    }
    .reason_box.even .reason_ttl{
        padding: 50px 50px 10px;
    }
    .reason_box.even .reason_txt{
        padding: 15px 25px 15px 50px;
        border-radius: 0 0 10px 0;
    }
}

/* transformで空いた余白を埋める */
.reason_box:nth-of-type(2),
.reason_box:nth-of-type(4){
    margin-top: -100px;
}

.reason_box:nth-of-type(3),
.reason_box:last-of-type{
    margin-top: -110px;
}

@media screen and (max-width:699px){
    .reason_box:nth-of-type(2),
    .reason_box:nth-of-type(4){
    margin-top: -10px;
    }
    .reason_box:nth-of-type(3),
    .reason_box:last-of-type{
    margin-top: -15px;
}
}

/* ----------------------------他社との違い---------------------------- */
.hikaku{
    background-image: url(../img/hikaku_bg_sp.jpg);
    background-size: cover;
    padding-bottom: 50px;
}

.hikaku>.ttl{
    transform: translateY(-15px);
}

.hikaku>p{
    text-align: center;
    color: #414141;
    font-size: 20px;
}

.scroll{
    overflow: auto;
}

.scroll img{
    width: 950px !important;
    padding: 10px 30px 20px;
}

@media screen and (max-width:699px){
    .hikaku{
        padding-bottom: 20px;
    }
    .hikaku>p{
        font-size: 14px;
    }
    .scroll img{
        width: 500px !important;
    }
}

/* ----------------------------流れ---------------------------- */
.flow{
    background-image: url(../img/flow_bg_sp.jpg);
    background-size: cover;
    padding: 60px 30px;
}

.flow>.ttl{
    margin-bottom: 30px;
}

.step_flx{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.step_flx>img{
    width: 13%;
    margin-left: 20px;
    margin-top: 8px;
}

.step_ttl{
    font-weight: bold;
    font-size: 30px;
    color: #414141;
    text-indent: 0.1em;
    margin-bottom: 10px;
}

.step_txt{
    background-color: #C4EAFF;
    padding: 20px;
    padding-left: 23px;
    font-size: 23px;
    border-radius: 10px;
}

@media screen and (max-width:699px){
    .flow {
        padding: 35px 20px;
    }
    .flow>.ttl{
        margin-bottom: 20px;
    }
    .step_flx{
        gap: 10px;
        margin-top: 15px;
    }
    .step_flx>img{
        width: 14%;
        margin-left: 5px;
        margin-top: 5px;
    }
    .step_ttl{
        font-size: 16.5px;
        letter-spacing: 0.01em;
        margin-bottom: 5px;
    }
    .step_txt{
        padding: 15px;
        font-size: 13.5px;
    }
}

/* ----------------------------お客様の声---------------------------- */
.voice{
    background-image: url(../img/voice_bg_sp.jpg);
    background-size: cover;
    padding: 70px 30px 0;
}

.voice>.ttl{
    margin-bottom: 20px;
}

.voice_box{
    border-radius: 20px;
    width: 560px;
    margin: 20px;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
}

.voice_txt{
    padding: 25px;
    font-size: 24px;
    color: #414141;
}

@media screen and (max-width:699px){
    .voice {
        padding: 35px 20px 20px;
    }
    .voice>.ttl{
        margin-bottom: 0px;
    }
    
    .voice_box{
        border-radius: 10px;
        width: 300px;
        background: linear-gradient(to bottom, transparent 0%, transparent 40%, #fff 40%, #fff 100%);
    }
    .voice_txt{
        padding: 15px 18px;
        font-size: 15px;
        color: #414141;
    }
}

/* ----------------------------対応エリア---------------------------- */
.area{
    background-image: url(../img/area_bg_sp.jpg);
    background-size: cover;
    padding: 70px 0 80px;
}

.area_inner{
    padding: 0 30px;
}

.map{
    width: 85%;
    margin-top: 40px;
    transform: translateX(8%);
}

.area_box{
    position: relative;
    background-color: #FFF0C9;
    margin-top: 30px;
}

.staff{
    position: absolute;
    width: 25%;
    left: 5%;
    bottom: 15%;
}

.area_txt{
    padding: 35px 40px 25px 220px;
}

.area_flx{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.area_flx>.first{
    margin-right: 50%;
    transform: translateX(50%);
}

.area_flx>div{
    width: 49%;
    color: #fff;
    background-color: #099BEE;
    margin-bottom: 2%;
    border-radius: 50px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

.stay{
    font-size: 34px;
    text-indent: 0.3em;
    font-weight: bold;
    color: #FF8802;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

@media screen and (max-width:699px){
    .area{
        padding: 35px 0 45px;
    }
    .area_inner{
        padding: 0 20px;
    }
    .map{
        margin-top: 20px;
    }
    .area_box{
        margin-top: 15px;
    }
    .area_txt{
        padding: 15px 20px 15px 120px;
    }
    .area_flx>div{
        font-size: 18px;
        padding: 5px 0;
    }
    .stay{
        font-size: 18.5px;
        letter-spacing: 0.01em;
        margin-top: 5px;
    }
    ::-webkit-full-page-media, :future, :root .stay{
        font-size: 20px;
        letter-spacing: 0.005em;
    }
}

/* ----------------------------QA---------------------------- */
.qa{
    background-color: #D9F7FF;
    padding: 70px 30px 30px;
}

.qa>.ttl{
    margin-bottom: 20px !important;
}

.qa_flx{
    display: flex;
    gap: 20px;
    align-items: center;
}

.qa_flx02{
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 40px;
}

.qa_flx>img,
.qa_flx02>img{
    width: 8%;
}

.question{
    font-size: 30px;
    color: #099BEE;
    font-weight: bold;
}

.qa_arrow{
    margin-left: 25px;
}

.answer{
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    font-size: 24px;
    color: #414141;
}

@media screen and (max-width:699px){
    .qa{
        padding: 35px 20px 15px;
    }
    .qa_flx{
        gap: 10px;
    }
    
    .qa_flx02{
        gap: 5px;
        margin-bottom: 20px;
    }
    .qa_flx>img{
        width: 9%;
    }
    .qa_flx02>img{
        width: 6%;
    }
    .question{
        font-size: 17px;
        letter-spacing: 0.02em;
    }
    .qa_arrow{
        margin-left: 14px;
    }
    .answer{
        font-size: 14px;
        border-radius: 10px;
        padding: 10px 15px;
    }
}

/* ----------------------------お問合せフォーム---------------------------- */
.form{
    background-color: #fff;
    padding: 70px 30px;
    position: relative;
}

.form_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.form>h2,
#contact{
    position: relative;
    z-index: 2;
}

.form>h2{
    width: 55%;
    margin: 0 auto;
}

@media screen and (max-width:699px){
    .form{
        padding: 40px 20px;
    }
}