@charset "UTF-8";

#outlook a {
    padding: 0;
}

body {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

/*****************
common
*****************/
:root {
    --darkBlue: #1F2C5C;
    --blue: #1D50A2;
    --lightBlue: #059DDE;
    --orange: #FEA750;
    --white: #FFF;
    --yellow: #FFF100;
    --markerYellow: #F4E575;
}

body {
    width: 100% !important;
    margin: 0 auto;
    padding: 0;
    background: var(--white);
    font-family: "Noto Sans JP", sans-serif;
}

html {
    font-size: 62.5%;
    font-weight: 700;
    line-height: 1.5;
    color: var(--darkBlue);
    text-align: center;
}

a:hover {
    opacity: 0.75;
}

img {
    border: 0 none;
    outline: 0 none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

span {
    color: var(--lightBlue);
}

/* font-weight */
.fw5 {
    font-weight: 500;
}

.fw7 {
    font-weight: 700;
}

/* margin-top */
.mt2 {
    margin-top: 2%;
}

.mt3 {
    margin-top: 3%;
}

.mt5 {
    margin-top: 5%;
}

.mt6 {
    margin-top: 6%;
}

.mt8 {
    margin-top: 8.5%;
}

.mt11 {
    margin-top: 11%;
}

.mb5 {
    margin-bottom: 5%;
}

.ps_2 {
    padding: 0 2%;
}

/* text-align */
.txt_l {
    text-align: left;
}

.txt_r {
    text-align: right;
}

.txt_wh {
    color: var(--white);
}

.txt_bl {
    color: #3f5491;
}

.btn {
    display: block;
    background-color: var(--orange);
    color: var(--white);
    font-size: clamp(1.18rem, 3.7vw, 2.44rem);
    font-weight: 500;
    border-radius: 50px;
    padding: 3% 0 3.5%;
    margin: 6.5% 12% 0;
    position: relative;
}

.btn::before,
.btn::after {
    content: "";
    width: 3.5%;
    height: 3.5%;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--white);
    position: absolute;
    right: 7%;
}

.btn::before {
    top: 41.5%;
    transform: rotate(45deg);
}

.btn::after {
    bottom: 41.5%;
    transform: rotate(-45deg);
}

.btn:hover {
    color: var(--white) !important;
}

/*****************
mainContent
*****************/
.mainContent {
    max-width: 750px;
    margin: 0 auto;
}

/* コンテンツ */
.article {
    padding: 6% 3.3% 7%;
    background-color: color-mix(in srgb, var(--lightBlue) 20%, var(--white));
}

.section {
    padding: 2% 4% 7%;
    background-color: var(--white);
    /* border-radius: 18px; */
    margin-top: 8%;
}

.section:first-of-type {
    margin-top: 0;
}

/* .section:not(:first-of-type) {
    opacity: 0;
} */

.section__title img {
    width: 78.5%;
    margin-bottom: -2.5%;
}

.section__title h2 {
    font-size: clamp(2.1rem, 6.6vw, 4.4rem);
    line-height: 1.4;
    padding: 5% 5% 4.2%;
    border: 3.5px solid var(--darkBlue);
}

.section__title span {
    display: block;
    font-size: clamp(1.85rem, 5.8vw, 3.85rem);
    color: var(--darkBlue);
    letter-spacing: -0.2rem;
}

.section__desc {
    font-size: clamp(1.3rem, 3.9vw, 2.6rem);
    /* line-height: 1.3; */
    margin-top: 5%;
}

.section__desc2 {
    margin-top: 2% !important;
}

.section__desc h2 {
    font-size: clamp(1.85rem, 5.8vw, 3.85rem);
}

.section__desc h3 {
    font-size: clamp(1.6rem, 4.8vw, 3.4rem);
    padding: 0 2% 0 1%;
    /* color: var(--darkBlue); */
    line-height: 1.8;
}

/* h3装飾 */
.highlight_text {
    display: inline-block;
    /* 背景をテキスト幅に合わせる */
    background: linear-gradient(transparent 70%, #ffec00 30%);
    /* 黄色帯 */
    background-repeat: no-repeat;
    background-size: 100% 1.5em;
    /* テキストより太めに調整 */
    background-position: 0 50%;
    /* テキスト中央に帯を配置 */
    color: #fea750;
    /* 文字色 */
    text-shadow:
        3px 0 #fff,
        -3px 0 #fff,
        0 3px #fff,
        0 -3px #fff,
        2px 2px #fff,
        -2px 2px #fff,
        2px -2px #fff,
        -2px -2px #fff;
    /* -webkit-text-stroke: 1px #fff;       */
    /* 白い縁取り（主要ブラウザ対応） */
    /* text-stroke: 1px #fff;               */
    /* 将来対応用 */
}

/* フェードアップ */
.section.fadeUp:not(:first-of-type) {
    opacity: 1;
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* pin */
.pin_area {
    background-color: #92e3ff;
    padding: 1.5% 0 1%;
    margin-top: 1%;
    position: relative;
}

.pin_area::before {
    display: block;
    content: '';
    background: url(../img/pin.png) no-repeat top left / cover;
    width: 6.5%;
    height: 52%;
    position: absolute;
    top: -33%;
    left: 41%;
}

.pin_area img {
    width: 6.5%;
    position: absolute;
    top: -33%;
    left: 40%;
}

.deatil__item__text {
    margin-top: 5.5%;
}

.content_img {
    width: 60%;
    transform: translate(30%);
}

.mt0 {
    margin-top: -7%;
}

.deatil__item__text span {
    font-size: clamp(1.92rem, 6vw, 3.9rem);
    /* color: var(--orange); */
    font-weight: 700;
}

.deatil__item--work .deatil__item__text img {
    width: 60%;
    margin-top: 8.5%;
}

.deatil__item .notes .p2 {
    font-size: 1rem;
    font-weight: 500;
}

/* problem */
.problem_bg {
    background-image: url(/img/sec1_logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Price */
.section--price .section__desc .p1 {
    display: inline-block;
    background-color: color-mix(in srgb, var(--yellow) 30%, var(--white));
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.4rem;
}

.section--price .section__desc .p2 span {
    color: var(--orange);
    font-size: clamp(1.92rem, 6vw, 3.9rem);
    line-height: 1.2;
}

.section--work .section__title h2 {
    font-size: clamp(2.3rem, 7.2vw, 4.8rem);
}

.deatil__item--time .deatil__item__text span {
    margin: 0 2%;
}

.deatil__item--time .deatil__item__text img {
    width: 90%;
    margin-top: 7%;
}

.deatil__item--time .notes .p2 {
    display: inline-block;
}

/* kaikae */
.bg_darkBlue {
    background-color: var(--darkBlue);
    padding: 3%;
}

.bg_kaikae_top {
    background: linear-gradient(color-mix(in srgb, var(--lightBlue) 20%, var(--white))70%, var(--darkBlue) 30%);
}

.kaikae_ttl {
    font-size: clamp(1.7rem, 5.3vw, 4rem);
    color: #FFF;
}

.section--kaikae {
    /* font-size: clamp(1.92rem, 6vw, 3.9rem); */
    padding: 1% 2% 5%;
}

.lupe {
    display: flex;
    align-items: center;
    background-size: 60% 1.5em;
    background-position: 0 50%;
    padding: 0 2% 0 2%;
}

.lupe_img {
    width: 1.1em;
    /* 画像の大きさを調整 */
    height: auto;
    transform: translateY(-12%);
}

.kaikae_h3s h3 {
    font-size: clamp(1.4rem, 4.4vw, 3.4rem);
}

.kaikae_h2 h2 {
    font-size: clamp(1.7rem, 5.3vw, 3.85rem);
}

.or_mt2 {
    margin-top: 2%;
}

.arrow_down {
    width: 10.5%;
}

.deatil__item--repair .p1 {
    font-weight: 500;
    margin-top: 5%;
}

.deatil__item--repair .p1 span {
    font-weight: 700;
    font-size: clamp(1.6rem, 5vw, 3.2rem);
    color: var(--darkBlue);
    margin-left: 3%;
}

.deatil__item--repair .notes {
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    text-align: right;
    margin-right: 8%;
}

.service__item--service01 p:last-of-type img {
    width: 92%;
}

.service__item--service02 .p1 {
    margin-left: 8%;
}

.service__item--service02 strong {
    font-size: clamp(3.5rem, 11vw, 7.3rem);
}

.service__item--service02 span {
    display: block;
    color: var(--orange);
    font-weight: 700;
    font-size: clamp(1.76rem, 5.5vw, 3.6rem);
    margin-top: -3%;
}

.service__item--service02 p:last-of-type img {
    width: 89%;
}

.service__item--service03 {
    padding: 2% 0 9.5%;
}

.service__item--service03 .icon {
    top: -9.5%;
}

.service__item--service03 .p1 {
    text-align: center;
    line-height: 1.4;
}

.service__item--service03 .p1 span {
    font-size: clamp(1.76rem, 5.5vw, 3.6rem);
    color: var(--lightBlue);
}

.more .p1 {
    line-height: 0.5;
    margin-top: 11%;
}

.more .p1 span {
    font-size: clamp(1.76rem, 5.5vw, 3.6rem);
    color: var(--lightBlue);
    margin-left: 0;
}

.more .p2 span {
    display: inline-block;
    font-weight: 700;
    line-height: 1.3;
    color: var(--lightBlue);
    background-color: color-mix(in srgb, var(--yellow) 32%, var(--white));
}

.more strong {
    color: var(--orange);
    font-size: clamp(4.16rem, 13vw, 8.58rem);
}

.more .p3 {
    letter-spacing: -0.15rem;
    font-size: clamp(1rem, 2.9vw, 1.9rem);
    margin-top: 6%;
}

.more .p3 span {
    font-size: clamp(1.3rem, 4vw, 2.64rem);
    display: block;
}

.more p:last-of-type img {
    width: 50%;
    margin-top: -16%;
}

.deatil__item--installation .deatil__item__text b {
    font-weight: 700;
    font-size: clamp(1.6rem, 5vw, 3.3rem);
}

.deatil__item--installation .notes {
    text-align: right;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 500;
    margin-right: 11%;
}

.deatil__item--installation .deatil__item__text:last-of-type span {
    display: inline;
    margin-right: 1%;
}

.section__btn::before,
.section__btn::after {
    right: 5%;
}

/* sale */
.section--sale {
    border-radius: 18px;
}

.section--sale .section__desc .p1 {
    font-size: clamp(1.6rem, 5vw, 3.3rem);
}

.or_mt0 {
    margin-top: 0%;
}

.btn_bl {
    background-color: var(--lightBlue);
}

.p_plus3 {
    font-size: clamp(0.9rem, 2.5vw, 1.7rem);
}

/*****************
ボタン
*****************/
/* ページトップボタン */
.pageTop {
    position: fixed;
    right: 1%;
    z-index: 99;
    opacity: 0;
    /*はじめは非表示*/
    transform: translateY(80px);
}

.pageTop a {
    border-radius: 5px;
    background-color: var(--blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageTop a img {
    width: 60%;
}

/* 上に上がる動き */
.pageTop.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下に下がる動き */
.pageTop.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(300px);
    }
}

/******** タブレット ********/
@media (661px < width) {

    address,
    small {
        font-size: 1.3rem;
        margin-top: 8px;
    }
}


/******** PC ********/
@media (999px < width) {

    .mainContent {
        margin: 0 auto;
    }
}

@media (1299px < width) {

    .mainContent {
        margin: 0 auto;
    }

    .pageTop {
        width: 3vw;
        height: 3vw;
        right: 3%;
    }

    .pageTop::before {
        width: 1.5vw;
        height: 1.5vw;
        border-top: 0.4vw solid var(--white);
        border-right: 0.4vw solid var(--white);
    }
}

@media (1439px < width) {

    .mainContent {
        margin: 0 auto;
    }
}