@charset "UTF-8";

/*
Theme Name: child
Theme URI:
Description:
Template: twentytwentyone
Author: makesview
Author URI: https://makes-view.co.jp/
Version: 1.0.0
*/

:root {
    --main-color: #0068B6;
    --point-color: #F29600;
    --black-color: #333;
    --line-color: #06C755;
    --contact-color: #FFB100;
    --yellow-light: #FFFCF5;
    --blue-light: #F5FBFF;
}

html,
button,
input,
select,
textarea,
body {
    font-family: "GenShinGothic", sans-serif;
    font-weight: 500;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    min-width: 1340px;
}

.wrap {
    width: 1140px;
    margin: 0 auto;
}

.wrap.mid {
    width: 1240px;
}

.wrap.lr {
    width: 1340px;
}

@font-face {
    font-family: "GenShinGothic";
    src: url("./fonts/GenShinGothic-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "GenShinGothic";
    src: url("./fonts/GenShinGothic-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "GenShinGothic";
    src: url("./fonts/GenShinGothic-Heavy.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "Avenir";
    src: url("./fonts/Avenir-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Avenir";
    src: url("./fonts/Avenir-Heavy.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Avenir";
    src: url("./fonts/Avenir-Black.ttf") format("truetype");
    font-weight: 900;
}


.f_en {
    font-family: "Avenir", sans-serif;
}

.f_line {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 800;
}

.no_tel {
    color: var(--black-color) !important;
    pointer-events: none;
    display: block;
}

.site-common_btn.center {
    width: fit-content;
    margin: 0 auto;
}

.site-common_btn .btn {
    display: grid;
    place-content: center;
    width: 270px;
    min-block-size: 60px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .05em;
    font-weight: 700;
    border-radius: 100vmax;
    transition: all .3s;
}

.site-common_btn .btn:hover {
    background-color: #fff;
    color: var(--main-color);
}

/* ヘッダー */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 26px 3.4vw 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    z-index: 100;
    min-width: 1340px;
}

.main-header .inner {
    display: flex;
    gap: 0 5.7vw;
    justify-content: space-between;
}

.main-header .logo {
    margin-top: 14px;
}

.main-header .logo a {
    display: block;
    width: 187px;
    line-height: 1;
}

.main-header .logo a img {
    width: 100%;
}

.main-header_cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 25px;
}

.main-header_cont .box {
    flex-shrink: 0;
}

.main-header_info {
    display: flex;
    align-items: baseline;
    gap: 0 8px;
}

.main-header_info .tel {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: var(--black-color);
    padding-left: 29px;
    background-image: url(./image/icon_tel.svg);
    background-repeat: no-repeat;
    background-size: 23px;
    background-position: left 13%;
    pointer-events: none;
}

.main-header_info .time {
    font-size: 13px;
    letter-spacing: 0em;
}

.main-header_nav ul {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 8px;
}

.main-header_nav ul li {
    flex-shrink: 0;
}

.main-header_nav ul li .link {
    display: block;
    padding-inline: 15px;
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .03em;
    font-weight: 900;
    color: var(--black-color);
    position: relative;
}

.main-header_nav ul li:first-child .link {
    padding-inline: 0 15px;
}

.main-header_nav ul li .link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: 6px;
    background-color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.main-header_nav ul li:first-child .link::before {
    left: 0;
    transform: translateX(0%);
}

.main-header_nav ul li .link:hover::before {
    opacity: 1;
    visibility: visible;
}

.main-header_nav ul li .link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #E6E6E6;
}

.main-header_nav ul li:last-child .link::after {
    display: none;
}

.main_header_btn {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.main_header_btn .btn {
    display: grid;
    place-content: center;
    width: 220px;
    min-block-size: 60px;
    border-radius: 6px;
    background-color: var(--contact-color);
    font-size: 15px;
    letter-spacing: .01em;
    color: #fff;
    padding-left: 25px;
    background-image: url(./image/icon_mail.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 17px center;
    transition: all .3s;
}

.main_header_btn .btn.line {
    background-color: var(--line-color);
    background-image: url(./image/icon_line.svg);
    background-repeat: no-repeat;
    background-size: 29px;
    background-position: 14px center;
}

.main_header_btn .btn:hover {
    opacity: .8;
}

.common-site_title.center {
    text-align: center;
}

.common-site_title .en {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .07em;
    font-weight: 700;
    color: var(--main-color);
}

.common-site_title .title {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
}

/* トップ　ファーストビュー */
.top-fv {
    margin-top: 110px;
    overflow: hidden;
}

.top-fv .slick-track,
.top-fv .slick-list.draggable {
    height: 100%;
}

.fv-slider_area .fv-slider,
.fv-slider_grid {
    height: calc(100vh - 110px);
}

.fv-slider_area .fv-slider {
    position: relative;

    display: flex;
    align-items: flex-end;
}

.fv-slider_area .fv-slider .img {
    position: absolute;
    inset: 0;
}

.fv-slider_area .fv-slider .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #b1ddff, transparent);
    mix-blend-mode: multiply;
}

.fv-slider_area .fv-slider .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-fv_cont {
    position: relative;
    z-index: 1;
    margin: 0 0 60px 50px;
}

.fv-text_box .text {
    font-size: 52px;
    letter-spacing: .1em;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
}

.fv-text_box .text .size {
    font-size: 82px;
    letter-spacing: .13em;
    color: #D8EEFF;
}

.fv-text_box .text .small {
    font-size: 22px;
    letter-spacing: .23em;
}

.fv-text_box .catch {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .26em;
    font-weight: 700;
    color: #fff;
}

.fv-text_box .catch .big {
    font-size: 50px;
    letter-spacing: .08em;
}

.fv-text_box .catch .size {
    font-size: 38px;
    letter-spacing: .08em;
}

.top-fv_cont .h1_text {
    background-color: var(--main-color);
    font-size: 24px;
    line-height: 1;
    letter-spacing: .99em;
    color: #fff;
    font-weight: 700;
    width: fit-content;
    padding: .45em .7em .3em 1.5em;
    margin-top: .6em;
}

.fv-slider_grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
}

.fv-slider_grid .item_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fv-slider_grid .item_box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 85%;
    height: 90%;
    background-color: rgba(255, 255, 255, .2);
    z-index: 1;
}

.fv-slider_grid .item_box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 91%;
    height: 93.5%;
    border: 2px solid #fff;
    z-index: 1;
}

.fv-slider_grid .item_box .img {
    position: absolute;
    inset: 0;
}

.fv-slider_grid .item_box .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .6));
    mix-blend-mode: multiply;
}

.fv-slider_grid .item_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-slider_grid .item_box .cont {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 5.5vw;
}

.fv-slider_grid .item_box .cont .title {
    display: grid;
    -webkit-writing-mode: vertical-rl;
    font-feature-settings: "palt";
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 38px;
    line-height: 1;
    letter-spacing: .5em;
    font-weight: 900;
    color: #fff;
    -webkit-line-box-contain: glyphs;
}

.fv-slider_grid .item_box .cont .title .bg {
    background-color: var(--main-color);
    height: fit-content;
    display: inline-block;
    padding: .4em .3em .1em;
}

.fv-slider_grid .item_box:nth-child(3) .cont .ttl_box {
    /* display: flex;
    flex-direction: row-reverse;
    gap: 0 .2em; */
}

.fv-slider_grid .item_box:nth-child(3) .cont .title {
    letter-spacing: .15em;
    margin-left: 20px;
}

.fv-slider_grid .item_box:nth-child(3) .cont .title .bg {
    margin-left: -.8em;
}

.fv-slider_grid .item_box .cont .text_box {
    margin-top: auto;
}

.fv-slider_grid .item_box .cont .en {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
}

.fv-slider_grid .item_box .cont .text {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .05em;
    color: #fff;
}

.fv-slider_grid .item_box .btn {
    margin-top: 51px;
}

.fv-slider_grid .item_box .btn .link {
    border-radius: 100vmax;
    border: 1px solid #fff;
    width: 180px;
    min-block-size: 48px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: .14em;
    font-weight: 700;
    color: #fff;
    display: grid;
    place-content: center;
}

/* トップ　エイトドアのサービス */
.top-service_sec {
    padding-top: 108px;
}

.service-item_cont {
    margin-top: 20px;
}

.service-item_cont ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
}

.service-item_cont ul li .link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 230px;
    z-index: 1;
    transition: all .3s;
}

.service-item_cont ul li .link:hover {
    opacity: .8;
}

.service-item_cont ul li .link::before {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
}

.service-item_cont ul li:nth-child(1) .link::before {
    background: linear-gradient(to bottom, #7FB8E3 0%, #FFF 70%, transparent 100%);
}

.service-item_cont ul li:nth-child(2) .link::before {
    background: linear-gradient(to top, #FACB80 0%, #FFF 70%, transparent 100%);
}

.service-item_cont ul li:nth-child(3) .link::before {
    background: linear-gradient(to top, #000 0%, #FFF 70%, transparent 100%);
}

.service-item_cont ul li .img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.service-item_cont ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item_cont ul li .box {
    height: 100%;
    position: relative;
}

.service-item_cont ul li .catch {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: .09em;
    font-weight: 900;
}

.service-item_cont ul li .catch .size {
    font-size: 22px;
    letter-spacing: .18em;
}

.service-item_cont ul li .catch .big {
    font-size: 36px;
}

.service-item_cont ul li .label {
    font-size: 20px;
    line-height: 1;
    letter-spacing: .17em;
    color: #fff;
    font-weight: 900;
    padding: .5em .7em;
    width: fit-content;
}

.service-item_cont ul li:nth-child(1) .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item_cont ul li:nth-child(1) .catch {
    margin: 11px 0 0 20px;
}

.service-item_cont ul li:nth-child(1) .label {
    background-color: var(--main-color);
    margin: 0 0 20px auto;
}

.service-item_cont ul li:nth-child(2) .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item_cont ul li:nth-child(2) .catch {
    margin: 0 0 20px 20px;
}

.service-item_cont ul li:nth-child(2) .label {
    background-color: var(--point-color);
    margin: 0 20px 0 auto;
    padding: .7em .5em;
    width: 40px;
    line-height: 1.2;
}

.service-item_cont ul li:nth-child(3) .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item_cont ul li:nth-child(3) .catch {
    margin: 0 0 20px 46px;
    line-height: .9;
}

.service-item_cont ul li:nth-child(3) .label {
    background-color: #fff;
    color: var(--black-color);
    margin: 20px auto 0 0;
}

.top-service_list {
    margin-top: 104px;
    padding-block: 103px 123px;
    background-color: var(--yellow-light);
    background-image: repeating-linear-gradient(280deg, #fffaed, #fffaed 35px, transparent 35px, transparent 65px);
}

.top-service_title {
    display: flex;
    align-items: first baseline;
    gap: 0 20px;
}

.top-service_title .en {
    width: 60px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    font-size: 33px;
    line-height: 1;
    letter-spacing: .07em;
    color: #fff;
    font-weight: 900;
    background-color: var(--point-color);
    border-radius: 100%;
}

.top-service_title .title {
    font-size: 34px;
    letter-spacing: .12em;
    font-weight: 900;
}

.service-list_box {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 76px;
}

.service-image_box {
    position: relative;
    z-index: 1;
    height: 434px;
}

.service-image_box .img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.service-image_box .img img {
    width: 100%;
}

.service-image_box .label {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 900;
    letter-spacing: .12em;
    padding: .3em .76em;
    width: fit-content;
}

.service-image_box:first-child .label {
    background-color: var(--main-color);
}

.service-image_box:last-child .label {
    background-color: var(--point-color);
}

.service-list_btn .link {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: grid;
    place-content: center;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .0em;
    font-weight: 900;
    color: var(--black-color);
    position: absolute;
    z-index: 1;
    background-color: #fff;
}

.service-list_btn .link::before {
    border-radius: 100%;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100px;
    height: 100px;
    background-color: #fefefe80;
    mix-blend-mode: screen;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.service-list_btn .link:hover::before {
    width: 120px;
    height: 120px;
    opacity: 1;
    visibility: visible;
}

.service-image_box:last-child .service-list_btn .link:nth-child(3):hover::before {
    width: 100px;
    height: 100px;
}

.service-image_box:first-child .service-list_btn .link:nth-child(1) {
    top: 28px;
    right: 110px;
}

.service-image_box:first-child .service-list_btn .link:nth-child(2) {
    bottom: 124px;
    left: 0;
}

.service-image_box:first-child .service-list_btn .link:nth-child(3) {
    bottom: 20px;
    right: 20px;
}

.service-image_box:last-child .service-list_btn .link:nth-child(1) {
    bottom: 100px;
    left: 57px;
}

.service-image_box:last-child .service-list_btn .link:nth-child(2) {
    bottom: 173px;
    right: 151px;
}

.service-image_box:last-child .service-list_btn .link:nth-child(3) {
    bottom: 80px;
    right: 35px;
    width: 80px;
    height: 80px;
    font-size: 14px;
}

.service-list_item {
    margin-top: 92px;
}

.service-list_item .title {
    font-size: 24px;
    letter-spacing: .12em;
    font-weight: 900;
    text-align: center;
}

.service-list_item ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 33px;
    margin-top: 40px;
}

.service-list_item ul li .link {
    position: relative;
    display: block;
}

.service-list_item ul li .link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 307px;
    background: url(./image/illust_door.webp) center center / cover no-repeat;
    z-index: 2;
}

.service-list_item ul li.coming .link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 307px;
    background: url(./image/comingsoon_img.webp) center center / cover no-repeat;
    z-index: 1;
}

.service-list_item ul li .link .img {
    position: relative;
    overflow: hidden;
    padding: 15px 0 0 20px;
}

.service-list_item ul li .link .img img {
    width: 150px;
    height: 276px;
    object-fit: cover;
    transition: all .3s;
}

.service-list_item ul li .link:hover .img img {
    scale: 1.1;
}

.service-list_item ul li .link .head {
    text-align: center;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 900;
    color: var(--black-color);
    margin-top: 25px;
}

.service-list_item ul li.coming .link {
    display: grid;
    place-content: center;
    height: 100%;
}

.service-list_item ul li .link .img.coming {
    width: 199px;
    rotate: -11deg;
    position: relative;
    z-index: 1;
    padding: 0;
}

.service-list_item ul li .link .img.coming img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-list_item ul li.coming .link:hover .img img {
    scale: 1;
}

/* CTAセクション */
.common-cta_area {
    margin-top: 62px;
    border-radius: 20px;
    border: 3px solid var(--black-color);
    background-color: #fff;
    padding: 44px 50px;
}

.common-cta_area .catch {
    text-align: center;
    font-size: 26px;
    letter-spacing: .05em;
    font-weight: 900;
}

.common-cta_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 25px;
    margin-top: 15px;
}

.common-cta_item {
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
    padding: 13px 20px 20px;
}

.common-cta_item .text {
    text-align: center;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 900;
}

.common-cta_item .tel {
    width: fit-content;
    display: block;
    margin: 4px auto 0;
    padding-left: 35px;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 900;
    color: var(--black-color);
    background-image: url(./image/icon_tel.svg);
    background-repeat: no-repeat;
    background-size: 27px;
    background-position: left 14%;
    pointer-events: none;
}

.common-cta_item .time {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 3px;
}

.common-cta_item .btn {
    background-color: var(--contact-color);
    min-block-size: 60px;
    border-radius: 6px;
    width: 290px;
    display: flex;
    align-items: center;
    padding-left: 60px;
    font-size: 15px;
    letter-spacing: .01em;
    color: #fff;
    background-image: url(./image/icon_mail.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 20px center;
    transition: all .3s;
    position: relative;
}

.common-cta_item .btn.line {
    background-color: var(--line-color);
    background-image: url(./image/icon_line.svg);
    background-repeat: no-repeat;
    background-size: 29px;
    background-position: 14px center;
    padding-left: 50px;
}

.common-cta_item .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 8px;
    height: 14px;
    background: url(./image/btn_arrow.svg) center center / contain no-repeat;
}

.common-cta_item .btn:hover {
    opacity: .8;
}

/* トップ　実績紹介 */
.top-works_sec {
    padding-block: 115px 0;
}

.top-works_sec .title_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.top-works_sec .tab-area ul {
    display: flex;
    gap: 0 10px;
}

.top-works_sec .tab-area ul .tab {
    background-color: #FAFAFA;
    border: 2px solid #EDEDED;
    border-radius: 6px;
    width: 160px;
    min-block-size: 40px;
    display: grid;
    place-content: center;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .07em;
    font-weight: 700;
    /* cursor: pointer; */
}

.top-works_sec .tab-area ul .tab.is_active {
    background-color: var(--main-color);
    color: #fff;
}

.tab-area_box {
    margin-top: 30px;
}

.tab-area_box .tab_item {
    display: none;
}

.tab-area_box .tab_item.show {
    display: block;
}

.common_archive_list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

.common_archive_list ul li .link {
    display: block;
}

.common_archive_list ul li .link .img {
    border-radius: 6px;
    overflow: hidden;
}

.common_archive_list ul li .link .img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: all .3s;
}

.common_archive_list ul li .link:hover .img img {
    scale: 1.1;
}

.common_archive_list ul li .link .text_box {
    margin-top: .7em;
}

.common_archive_list ul li .link .title {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .05em;
    font-weight: 900;
    color: var(--black-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 45px;
}

.common_archive_list ul li .link .cat {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 700;
    background-color: var(--main-color);
    width: fit-content;
    border-radius: 5px;
    padding: .5em 1em;
    margin-top: 20px;
}

.common_archive_list ul li .link .date {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0em;
    color: #BCBCBC;
    font-weight: 700;
    margin-top: 20px;
}

.tab-area_box .site-common_btn {
    margin: 36px auto 0;
}

/* トップ　会社概要 */
.top-company_sec {
    padding-block: 103px 143px;
}

.top-company_cont {
    display: flex;
    align-items: center;
    gap: 0 77px;
}

.top-company_box {
    position: relative;
}

.top-company_box::before {
    content: '';
    position: absolute;
    bottom: 70px;
    right: -20px;
    width: 639px;
    height: 179px;
    background: url(./image/deco_wave.webp) center center / contain no-repeat;
    rotate: -31deg;
    z-index: -1;
}

.top-company_cont .img {
    width: 452px;
    flex-shrink: 0;
}

.top-company_cont .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-company_cont .text_box {
    margin-top: 22px;
}

.top-company_cont .text_box .text {
    font-size: 16px;
    letter-spacing: .07em;
    font-weight: 700;
}

.top-company_btn {
    margin-top: 32px;
}

.top-company_btn .btn {
    width: 200px;
    min-block-size: 60px;
    display: grid;
    place-content: center;
    background-color: #fff;
    border: 1px solid var(--black-color);
    border-radius: 100vmax;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 700;
    color: #333;
    transition: all .3s;
}

.top-company_btn .btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* フッター */
.main-footer {
    padding-block: 59px 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3) 0%, rgba(159, 213, 255, .58) 150%);
}

.footer-logo {
    text-align: center;
}

.footer-logo a {
    width: 288px;
    display: inline-block;
}

.footer-logo a img {
    width: 100%;
}

.main-footer .address {
    text-align: center;
    font-size: 14px;
    letter-spacing: .07em;
    margin-top: 24px;
}

.main-footer .map_link {
    margin: 10px auto 0;
    width: fit-content;
    border-radius: 100vmax;
    background-color: var(--main-color);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .05em;
    display: grid;
    place-content: center;
    font-size: 14px;
    letter-spacing: .05em;
    font-weight: 700;
    color: #fff;
    padding: .4em 1.7em;
    transition: all .3s;
}

.main-footer .map_link:hover {
    opacity: .7;
}

.main-footer_nav ul {
    margin-top: 38px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.main-footer_nav ul li .link {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0em;
    color: var(--black-color);
    padding-inline: 20px;
    white-space: nowrap;
    border-left: 1px solid #C7C7C7;
    transition: all .3s;
}

.main-footer_nav ul li:first-child .link {
    padding-inline: 0 20px;
    border-left: none;
}

.main-footer_nav ul li:last-child .link {
    padding-inline: 20px 0;
}

.main-footer_nav ul li .link:hover {
    opacity: .6;
}

.main-footer_info {
    margin-top: 50px;
}

.main-footer_info .tel {
    text-align: center;
    display: block;
    pointer-events: none;
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 500;
    color: var(--black-color);
}

.main-footer_info .time {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0em;
}

.main-footer_sub {
    margin-top: 37px;
}

.main-footer_sub .sub_menu ul {
    display: flex;
    justify-content: center;
    gap: 0 10px;
}

.main-footer_sub .sub_menu ul li .menu {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .07em;
    line-height: 1;
    color: var(--black-color);
    position: relative;
    transition: all .3s;
}

.main-footer_sub .sub_menu ul li .menu:hover {
    opacity: .8;
}

.main-footer_sub .sub_menu ul li:not(:last-child) .menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 1px;
    height: 100%;
    background-color: var(--black-color);
}

.main-footer_sub .copyright {
    display: block;
    text-align: center;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 40px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 500;
}

/* PC固定ページ 共通設定 */
.common_page_main {
    padding-block: 100px;
    margin-block: 110px 1em;
    background: linear-gradient(-90deg, #b1ddff, transparent), url(./image/common_page_img.webp) center center / cover no-repeat;
}

.common_page_main .title_box .sub_title {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    letter-spacing: .1em;
    color: #fff;
    font-weight: 700;
    background-color: var(--main-color);
    width: fit-content;
    padding: .4em 1em .2em;
    margin-bottom: .3em;
    border-radius: 5px;
}

.common_page_main .title_box .title {
    font-size: 40px;
    letter-spacing: .08em;
    font-weight: 900;
    line-height: 1.5;
    color: #fff;
}

.common_page_wrap {
    padding-block: 80px 150px;
}

.not_found .text {
    text-align: center;
}

.reserve_text {
    text-align: center;
    font-size: 30px;
}

/* パンくず */
.breadcrumb {
    font-size: 12px;
    letter-spacing: .08em;
    text-align: right;
}

.breadcrumb a {
    text-decoration: none;
    color: #AFAFAF;
}

.single-post {
    margin-top: 150px;
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
    color: #3E3E3E;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    margin-block: 0 3.8em;
}

.contact_form_disc .text {
    font-size: 16px;
    margin-block: 0 1em;
}

.contact_form_disc .caution {
    font-size: 14px;
}

.common_contact_form .form_box {
    margin-block: 0 50px;
}

.common_contact_form .form_box dl {
    display: grid;
    grid-template-columns: 26.5% 1fr;
    align-items: center;
    gap: 80px;
}

.common_contact_form .form_box dl.start {
    align-items: flex-start;
}

.common_contact_form .form_box dl+dl {
    margin-block: 1.6em 0;
}

.common_contact_form .form_box dl dt {
    display: flex;
    align-items: center;
    gap: 1.3em;
    font-size: 16px;
    letter-spacing: .08em;
    font-weight: 700;
    padding-inline: 0 0.5em;
    position: relative;
}

.common_contact_form .form_box dl dt .label {
    flex-shrink: 0;
    color: #3E3E3E;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    border-radius: 100vmax;
    padding: 0.2em 0.9em;
}

.common_contact_form .form_box dl dt .label.hissu {
    background: #C70000;
    color: #fff;
}

.common_contact_form .form_box dl dt .label.ninni {
    background: #E0E0E0;
}

.common_contact_form .form_box dl dt::after {
    content: "";
    width: 1px;
    height: 30px;
    background: #AAA;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.common_contact_form input[type="text"],
.common_contact_form input[type="email"],
.common_contact_form #zip {
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    padding: 0.8em 1em;
}

.common_contact_form textarea {
    width: 100%;
    height: 180px;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    padding: 1em;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
}

.common_contact_form input::placeholder,
.common_contact_form textarea::placeholder {
    color: #C7C4C4;
}

.common_contact_form select {
    width: 47.5%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    padding: 1.1em 1em;
}

.common_contact_form select.empty {
    color: #C7C4C4;
}

.page_contact #btn_wrap {
    justify-content: center;
    text-align: right;
    width: 74%;
    margin: auto;
}

.page_contact #btn_wrap button {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 310px;
    line-height: 60px;
    font-size: 18px;
    font-weight: 900;
    transition: .3s;
    text-align: center;
    letter-spacing: .08em;
    margin: auto;
}

.page_contact #btn_wrap button[name="submitBack"] {
    background: #333;
    margin-top: 20px;
}

.page_contact #btn_wrap button:hover {
    opacity: .8;
}

.privacy_term_outer .privacy_term_inner {
    height: 138px;
    margin: auto;
    overflow: auto;
}

.privacy_term_outer .privacy_term_inner .privacy_index {
    font-size: 14px;
}

.privacy_term_outer .privacy_term_inner .main_text {
    font-size: 13px;
    margin-bottom: 25px;
}

.privacy_term_outer .privacy_term_inner dl dt {
    font-size: 13px;
    border-left: solid 3px #ccc;
    padding-left: 1em;
    margin-bottom: 5px;
}

.privacy_term_outer .privacy_term_inner dl dd {
    font-size: 13px;
}

.privacy_term_outer .privacy_term_inner dl+dl {
    margin-top: 30px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar {
    width: 8px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-track {
    background: transparent;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

.privacy_term_outer {
    border-top: solid 1px #e3e3e3;
    padding: 30px 0;
    border-bottom: solid 1px #e3e3e3;
    width: 60%;
    margin: 0 auto 50px;
}

.privacy_check_list .mwform-checkbox-field-text {
    padding-right: 0;
}

.privacy_check_list .error {
    font-size: 12px;
}

.privacy_term_detail {
    text-align: center;
    font-size: 13px;
    margin: 20px 0;
    position: relative;
    font-weight: 600;
}

.privacy_term_detail::after {
    content: "";
    margin: 5px auto 0;
    border: solid #333;
    border-width: 2px 2px 0 0;
    width: 10px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    rotate: 135deg;
    display: block;
}

.mw_wp_form_confirm .privacy_check_list,
.mw_wp_form_confirm .privacy_term_detail {
    display: none;
}

/* ラジオボタン デザイン */
.radio_btns,
.checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
    padding: .5em 0;
}

/* ラジオボタンを隠す */
.radio_btns input[type=radio].radio_btns__item {
    display: none;
}

.radio_btns label {
    display: inline-block;
    cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio_btns .radio_btns__item+span {
    color: #3E3E3E;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    padding-left: 2em;
    display: inline-block;
    position: relative;
}

/* 各パーツを作成 */
.radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #E6E6E6;
    background: #F8F8F8;
    border-radius: 50%;
    width: 20px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/* after上書き */
.radio_btns .radio_btns__item+span::after {
    width: 10px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0px;
    left: 5px;
    border: none;
    background: #5A5A5A;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio_btns .radio_btns__item:checked+span::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* チェックボックス デザイン */
.page_contact input[type="checkbox"] {
    /* デフォルトcheckボックス非表示*/
    display: none;
}

.mwform-checkbox-field label {
    cursor: pointer;
}

.mwform-checkbox-field-text {
    color: #3E3E3E;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    display: block;
}

.mwform-checkbox-field-text::before {
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    width: 20px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.mwform-checkbox-field-text::after {
    border-width: 3px;
    border-color: transparent transparent #333 #333;
    border-style: solid;
    width: 20px;
    aspect-ratio: 2/1;
    min-width: 0;
    margin-top: -0.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
    opacity: 1;
}

.mw_wp_form .horizontal-item {
    display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

/* サンクスページ */

.page_contact .thanks_textArea .name {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    margin-bottom: 20px;
}

.page_contact .thanks_textArea .contact_text {
    margin: 0 auto 50px;
    width: 62%;
}

.page_contact .thanks_textArea .ichiran_link {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 300px;
    line-height: 50px;
    border-radius: 4px;
    font-size: 16px;
    transition: .3s;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
}

.page_contact .thanks_textArea .ichiran_link:hover {
    opacity: .8;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
    margin-top: 10px;
}

/* ステップバー デザイン */
.page_contact .progressbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.6em;
    margin-block: 0 3em;
}

.page_contact .progressbar .item {
    color: #3E3E3E;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    position: relative;
}

.page_contact .progressbar .item+.item::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #E6E6E6;
    position: absolute;
    top: 64%;
    left: -5em;
}

.page_contact .progressbar .item .mark {
    width: 36px;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #AFAFAF;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5em;
    position: relative;
}

.page_contact .progressbar .item .mark::before {
    content: "";
    width: 41%;
    aspect-ratio: 1;
    background: #5A5A5A;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0;
}

.page_contact .progressbar .item.active .mark::before {
    opacity: 1;
}

.page_contact .progressbar .item .en {
    display: block;
    color: #A7A7A7;
    letter-spacing: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.privacy_check_list {
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.privacy_check_list .hissu {
    background: #c70200;
    color: #fff;
    padding: 2px 15px;
    font-size: 10px;
    letter-spacing: .08em;
    border-radius: 30px;
    font-weight: 600;
}

.mw_wp_form .privacy_check_list .horizontal-item {
    margin: 0;
}

/* PC固定ページ 404ページ */
#page_404 {
    text-align: center;
}

#page_404 .num {
    font-size: 100px;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#page_404 .text {
    margin-bottom: 1em;
    font-size: 16px;
}

/* PC固定ページ アーカイブページ */
/* 投稿リスト表示 */
.archive_page_list>article {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px dashed #eee;
    padding-right: 30px;
}

.archive_page_list>article:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
    border: solid #ccc;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

.archive_page_list>article .date {
    font-weight: bold;
    font-size: 80%;
    width: 100px;
}

.archive_page_list>article .content_area {
    width: calc(100% - 100px);
}

.archive_page_list>article .content_area .ttl {
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.archive_page_list>article .content_area .content {
    font-size: 80%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* wp-pagenavi base */
.wp-pagenavi {
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    color: #999;
    background-color: #FFF;
    border: solid 1px #e0e0d2;
    padding: 8px 15px;
    margin: 0 2px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.wp-pagenavi a:hover {
    color: #FFF;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.wp-pagenavi .current {
    color: #FFF;
    background-color: var(--main-color);
    border-color: var(--main-color);
    font-weight: bold;
}

/* 会社概要 */
.company_profile_sec .cont .item {
    border-top: 1px solid var(--main-color);
    padding: 0 1.3em;
}

.company_profile_sec .cont .item .inbox {
    display: flex;
    gap: 0 1em;
}

.company_profile_sec .cont .item .inbox .head {
    flex-shrink: 0;
    width: 28%;
    font-size: 20px;
    letter-spacing: .08em;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.3em 0;
}

.company_profile_sec .cont .item .inbox .text_area {
    width: 100%;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 1.5;
    padding: 1.9em 0;
}

.company_profile_sec .cont .item .map {
    width: 95%;
    height: 240px;
    margin-top: 1em;
}

.company_profile_sec .cont .item .map iframe {
    width: 100%;
    height: 100%;
    max-height: 100% !important;
}

/* 内部ページ共通設定 */
.page-title_box .jp {
    text-align: center;
    font-size: 34px;
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: .12em;
}

.page-title_box .jp .color {
    color: var(--point-color);
}

.page-title_box .jp .num {
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    color: var(--main-color);
}

/* お客様の声 */
.common-voice_sec {
    margin-top: 122px;
}

.common-voice_list {
    margin-top: 20px;
    border-bottom: 1px dashed #CECECE;
    padding-bottom: 110px;
}

.common-voice_item+.common-voice_item {
    margin-top: 20px;
}

.common-voice_item {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    background-color: #fff;
    padding: 20px;
}

.common-voice_item .item {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.common-voice_item .item .icon {
    flex-shrink: 0;
    border-radius: 100%;
    width: 110px;
    height: 100px;
}

.common-voice_item .item .icon img {
    width: 100%;
}

.common-voice_item .item .catch_box .catch {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .07em;
    font-weight: 900;
}

.common-voice_item .item .catch_box .name {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
    margin-top: .3em;
}

.common-voice_comment {
    background-color: #F5FBFF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.common-voice_comment .comment {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
}


/* よくある質問 */
.common-faq_sec {
    padding-top: 73px;
}

.common-faq_list+.common-faq_list {
    margin-top: 70px;
}

.page-sub_title {
    border-left: 4px solid var(--main-color);
    padding-left: 1em;
    font-size: 24px;
    letter-spacing: .12em;
    font-weight: 900;
    margin-bottom: .8em;
}

.common-faq_list {
    margin-top: 40px;
}

.common-faq_list dl+dl {
    margin-top: 30px;
}

.common-faq_list dl dt {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    background-color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.common-faq_list dl dt .en {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: var(--main-color);
    display: grid;
    place-content: center;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0em;
    color: #fff;
}

.common-faq_list dl dt .question {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .07em;
    font-weight: 900;
}

.common-faq_list dl dd {
    padding: 20px 15px 0;
}

.common-faq_list dl dd .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
}

/* 外壁洗浄（SKAT） */
.skat-fv_sec {
    margin-top: 110px;
    background: url(./image/skat_fv_img.webp) top center / cover no-repeat;
    padding-block: 74px 50px;
}

.skat-cont {
    display: flex;
    gap: 0 70px;
    align-items: center;
}

.skat-cont .img {
    width: 332px;
}

.skat-cont .img img {
    width: 100%;
}

.skat-cont .catch {
    width: 492px;
}

.skat-cont .catch img {
    width: 100%;
}

.skat-cont .text_box {
    margin-top: 16px;
}

.skat-cont .text_box .text {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: .05em;
    font-weight: 900;
    margin-top: 5px;
}

.skat-cont .text_box .text .color {
    color: var(--main-color);
}

.skat-cont .text_box .text.bg {
    background-color: #fff;
    display: block;
    width: fit-content;
    padding: .3em .5em;
}

.skat-cont .button {
    margin-top: 36px;
}

.skat-cont .button .btn {
    width: 330px;
    display: grid;
    place-content: center;
    min-block-size: 60px;
    border-radius: 6px;
    background-color: var(--point-color);
    font-size: 15px;
    letter-spacing: .01em;
    color: #fff;
}

.page-info_sec {
    padding-block: 106px 110px;
}

.page-info_sec .page_title {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: .12em;
    text-align: center;
    font-weight: 900;
    position: relative;
    padding-bottom: 25px;
}

.page-info_sec .page_title .color {
    color: var(--main-color);
    font-size: 44px;
}

.page-info_sec .page_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0%;
    width: 525px;
    height: 24px;
    background: url(./image/wave_line.png) center center / contain no-repeat;
}

.page-info_sec .head_box {
    margin-top: 33px;
}

.page-info_sec .head_box .text {
    text-align: center;
    font-size: 18px;
    letter-spacing: .13em;
    font-weight: 700;
}

.page-info_sec .head_box .text+.text {
    margin-top: 1em;
}

.page-info_box {
    margin-top: 48px;
}

.page-info_box .skat-name .sub {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .13em;
    font-weight: 900;
}

.page-info_box .skat-name .logo {
    width: 368px;
    margin-inline: auto;
}

.page-info_box .skat-name .logo img {
    width: 100%;
}

.page-info_box .text_box {
    margin-top: 27px;
}

.page-info_box .text_box .text {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .07em;
    font-weight: 700;
}

.common-strength_sec {
    padding-block: 90px 113px;
}

.common-strength_sec .before-box {
    margin-top: 100px;
}

.common-strength_sec .before-box ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.common-strength_sec .before-box ul li {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.common-strength_sec .before-box ul li .label {
    background-color: var(--point-color);
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: .05em;
    color: #fff;
    font-weight: 900;
    text-align: center;
    padding: .5em 1em;
}

.common-strength_sec .before-box ul li .img {
    padding: 30px 50px;
}

.common-strength_sec .before-box ul li .img img {
    width: 100%;
}

.common-border_bg {
    background-color: var(--yellow-light);
    background-image: repeating-linear-gradient(280deg, #fffaed, #fffaed 35px, transparent 35px, transparent 65px);

}

.page-strength_item {
    margin-top: 30px;
    display: flex;
    gap: 0 50px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.page-strength_item:nth-child(odd) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.page-strength_item .img {
    width: 390px;
    flex-shrink: 0;
}

.page-strength_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-strength_cont {
    padding: 53px 50px 53px 0;
}

.page-strength_item:nth-child(odd) .page-strength_cont {
    padding: 53px 0 53px 50px;
}

.page-strength_cont .title_box {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.page-strength_cont .num_box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: var(--main-color);
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    padding-block: .3em 0;
}

.page-strength_cont .num_box .text {
    font-size: 14px;
    line-height: 1;
    letter-spacing: .12em;
    font-weight: 900;
}

.page-strength_cont .num_box .text.en {
    letter-spacing: 0;
}

.page-strength_cont .num_box .num {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 900;
}


.page-strength_cont .title_box .title {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
}

.page-strength_cont .title_box .title .color {
    color: var(--main-color);
}

.page-strength_cont .text_box {
    margin-top: 27px;
}

.page-strength_cont .text_box .text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0em;
}

.page-price_sec {
    padding-block: 120px;
}

.price-item {
    margin-top: 22px;
}

.price-item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 15px;
}

.price-item ul li {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--blue-light);
}

.price-item ul li .img {
    height: 200px;
}

.price-item ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-item ul li .item_box {
    padding: 18px 20px 40px;
}

.price-item ul li .price-cont .plan {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: .12em;
    font-weight: 900;
}

.price-item ul li .price_box {
    margin-top: 8px;
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.price-item ul li .price_box .label {
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: var(--main-color);
    display: grid;
    place-content: center;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .12em;
    font-weight: 900;
    color: #fff;
}

.price-item ul li .price_box .price {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
}

.price-item ul li .price_box .price .num {
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0em;
    color: var(--main-color);
    margin-right: .1em;
}

.price-item ul li .cont_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    margin-top: .8em;
}

.price-item ul li .cont_box .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: last baseline;
    gap: 0 20px;
    border-bottom: 2px dotted var(--black-color);
    padding-bottom: .2em;
}

.price-item ul li .cont_box .info .text {
    font-size: 15px;
    letter-spacing: .12em;
    font-weight: 700;
}

.price-item ul li .cont_box .info .item {
    font-size: 18px;
    letter-spacing: .02em;
    font-weight: 900;
}

.works-example_sec {
    padding-block: 85px 98px;
}

.works-example_sec .common_archive_list {
    margin-top: 30px;
}

.works-example_item {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
}

.works-example_item .item .img {
    height: 180px;
}

.works-example_item .item .img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-example_item .item .heading {
    margin-top: .8em;
    font-size: 18px;
    letter-spacing: .12em;
    font-weight: 900;
}

.works-example_item .item .text_box {
    margin-top: .4em;
}

.works-example_item .item .text_box .text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
}

.works-example_item .item .button {
    margin-top: 15px;
    border-radius: 100vmax;
    border: 2px solid var(--main-color);
    width: 160px;
    min-block-size: 40px;
    text-align: center;
    display: grid;
    place-content: center;
    font-size: 14px;
    letter-spacing: .05em;
    background-color: #fff;
    font-weight: 700;
    cursor: pointer;
    color: var(--main-color);
    transition: all .3s;
}

.works-example_item .item .button:hover {
    background-color: var(--main-color);
    color: #fff;
}

#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--yellow-light);
    background-image: repeating-linear-gradient(280deg, #fffaed, #fffaed 35px, transparent 35px, transparent 65px);
    z-index: 10000;
}

.modal_cont {
    position: absolute;
    background: #fff;
    padding: 94px 50px;
    width: 90%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 10px;
    display: flex;
    gap: 0 50px;
    align-items: center;
}

.modal_cont .btn_close {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: var(--main-color);
    display: grid;
    place-content: center;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.modal_cont .image_area {
    width: 502px;
    flex-shrink: 0;
}

.modal_cont .image_area .main_img {
    height: 320px;
}

.modal_cont .image_area .thumbnail {
    margin-top: 10px;
}

.modal_cont .image_area .thumbnail .slick-track {
    transform: unset !important;
    width: 100% !important;
}

.modal_cont .image_area .thumbnail .thumbnail_img {
    width: 160px !important;
    height: 100px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.modal_cont .image_area .thumbnail .slick-slide+.slick-slide {
    margin-left: 9px;
}

.modal_cont .image_area .thumbnail .thumbnail_img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(51, 51, 51, .8);
    mix-blend-mode: multiply;
    opacity: 1;
    visibility: visible;
    transition: all .3s;
}

.modal_cont .image_area .thumbnail .thumbnail_img.slick-current::before {
    opacity: 0;
    visibility: hidden;
}

.modal_cont .image_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.modal_cont .text_area .title {
    font-size: 24px;
    letter-spacing: .12em;
    font-weight: 900;
}

.modal_cont .text_area .text_box {
    margin-top: .8em;
    height: 160px;
    overflow-y: scroll;
}

.modal_cont .text_area .text_box .text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0em;
}

.modal_cont .text_area .link {
    margin-top: 52px;
    width: 310px;
    min-block-size: 60px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 6px;
    background-color: var(--point-color);
    font-size: 15px;
    letter-spacing: .01em;
    color: #fff;
}

/* 外構塗装 */
.page_exterior_painting .common_page_wrap {
    padding-block: 0 150px;
}

.page-info_item {
    display: flex;
    align-items: center;
    gap: 0 50px;
    margin-top: 50px;
}

.page-info_item .img {
    width: 480px;
    flex-shrink: 0;
}

.page-info_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-info_item .catch {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
}

.page-info_item .catch .color {
    color: var(--main-color);
    font-size: 1.2em;
}

.page-info_item .text {
    margin-top: 1em;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .05em;
}

.page-common_works {
    padding-block: 120px;
}

.page-common_works .common_archive_list {
    margin-top: 30px;
}

/* ハウスクリーニング */
.page_house-cleaning .common_page_wrap {
    padding-block: 0 150px;
}

.common-grid_sec {
    padding-block: 120px 150px;
}

.common-grid_item {
    margin-top: 30px;
}

.common-grid_item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

.common-grid_item ul li {
    background-color: var(--blue-light);
    border-radius: 10px;
    overflow: hidden;
}

.common-grid_item ul li .img {
    height: 200px;
}

.common-grid_item ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-grid_item ul li .box {
    padding: 18px 20px 40px;
}

.common-grid_item ul li .title {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: .12em;
    font-weight: 900;
    text-align: center;
    border-bottom: 2px dotted var(--main-color);
    padding-bottom: .3em;
}

.common-grid_item ul li .text_box {
    margin-top: .5em;
}

.common-grid_item ul li .text_box .text {
    font-size: 15px;
    letter-spacing: .08em;
}

/* リペア */
.page_repair .common_page_wrap {
    padding-block: 0 150px;
}

.page-heading_item {
    margin-top: 40px;
}

.page-heading_item ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
}

.page-heading_item ul li {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
}

.page-heading_item ul li .img {
    height: 180px;
}

.page-heading_item ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-heading_item ul li .text_box {
    padding: 20px;
}

.page-heading_item ul li .text_box .title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
    text-align: center;
}

.page-heading_item ul li .text_box .text {
    margin-top: .6em;
    font-size: 14px;
    letter-spacing: .02em;
}

.page-strength_cont .text_box ul {
    margin-bottom: .8em;
}

.page-strength_cont .text_box ul li+li {
    margin-top: .4em;
}

.page-strength_cont .text_box ul li {
    background-color: var(--blue-light);
    border-radius: 5px;
    padding: .3em .5em;
    font-size: 14px;
    letter-spacing: 0em;
    font-weight: 700;
}

/* フロアコーティング */
.page_floor-coating .common_page_wrap {
    padding-block: 100px 0;
}

.page_floor-coating .page-heading_sec {
    padding-bottom: 100px;
}

.heading-item_box {
    margin-top: 30px;
    background-color: var(--blue-light);
    padding: 40px;
    border-radius: 8px;
}

.heading-item_box .item_box+.item_box {
    margin-top: 20px;
}

.heading-item_box .item_box .sub_title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
    color: var(--main-color);
    border-bottom: 2px dotted var(--black-color);
    padding-bottom: .4em;
}

.heading-item_box .item_box .text_box {
    margin-top: .6em;
}

.heading-item_box .item_box .text_box .text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
}

.heading-sub_item {
    margin-top: 20px;
}

.heading-sub_item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.heading-sub_item ul li {
    width: 345px;
    flex-shrink: 0;
    background-color: #fff;
    padding: 10px;
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.heading-sub_item ul li .num_box {
    flex-shrink: 0;
    background-color: var(--main-color);
    border-radius: 5px;
    padding: .8em .5em .4em;
    color: #fff;
    text-align: center;
}

.heading-sub_item ul li .num_box .text {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0em;
}

.heading-sub_item ul li .num_box .num {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 900;
}

.heading-sub_item ul li .head {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .08em;
    font-weight: 900;
    color: var(--main-color);
}

.heading-sub_item ul li .text_box {
    margin-top: .5em;
}

.heading-sub_item ul li .text {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
}

.common-merit_sec {
    padding-block: 100px 120px;
}

.page-merit_item {
    margin-top: 50px;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
}

.page-merit_item .title {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
    padding-bottom: .3em;
    background-color: var(--point-color);
    color: #fff;
    padding: .4em 1em;
    width: fit-content;
}

.page-merit_item:nth-child(odd) .title {
    background-color: var(--main-color);
}

.page-merit_item .head_box {
    margin-top: 18px;
    background-color: var(--yellow-light);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.page-merit_item:nth-child(odd) .head_box {
    background-color: var(--blue-light);
}

.page-merit_item .head_box .icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 100%;
    padding: 30px;
    background-color: #fff;
    border: 2px solid #ccc;
    display: grid;
    place-content: center;
}

.page-merit_item .head_box .icon img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.page-merit_item .head_box .catch {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: .08em;
    font-weight: 900;
}

.page-merit_item .head_box .text_box {
    margin-top: 1em;
}

.page-merit_item .head_box .text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .08em;
}

.page-merit_item .item_box {
    margin-top: 30px;
}

.page-merit_item .item_box ul li+li {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #ccc;
}

.page-merit_item .item_box ul li .label {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
    border-left: 4px solid var(--point-color);
    padding-left: .7em;
}

.page-merit_item:nth-child(odd) .item_box ul li .label {
    border-color: var(--main-color);
}

.page-merit_item .item_box ul li .text_area {
    margin-top: .6em;
}

.page-merit_item .item_box ul li .text_area .text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
}

/* 水回りコーティング */
.page_water-coating .common-grid_item ul {
    grid-template-columns: repeat(4, 1fr);
}

.page_water-coating .common_page_wrap {
    padding-block: 0;
}

.page_water-coating .heading-sub_item ul li {
    gap: 0 20px;
    align-items: center;
}

.page_water-coating .heading-sub_item ul li .text_box {
    margin-top: 0;
}

.page_water-coating .heading-sub_item ul li .head {
    font-size: 26px;
}

.page_water-coating .heading-sub_item ul li .head .small {
    font-size: .7em;
}

.page_water-coating .heading-sub_item ul li .text {
    font-size: 16px;
}

.item-flex_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
    margin-top: 50px;
}

.item-flex_box .case {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.item-flex_box .case .img {
    position: relative;
    height: 180px;
}

.item-flex_box .case .img:not(:last-child)::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 28px;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    background-color: var(--main-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.item-flex_box .case .img img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-flex_box .case .img .label {
    position: absolute;
    top: 10px;
    left: 0;
    width: fit-content;
    height: auto;
    background-color: var(--main-color);
    padding: .4em 1em;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    font-weight: 900;
}

.item-flex_box .case .img.after .label {
    background-color: var(--point-color);
}

/* 窓ガラスフィルム */
.window-film_sec .page-strength_item {
    background-color: var(--blue-light);
}

.common-heading_box {
    margin-top: 26px;
}

.common-heading_box .catch {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
}

.common-heading_box .text_box {
    margin-top: 16px;
}

.common-heading_box .text_box .text {
    font-size: 16px;
    letter-spacing: .08em;
}

.promise-item_box {
    margin-top: 80px;
}

.price-free_item,
.film-price_box {
    margin-top: 80px;
}

.price-free_item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
    margin-top: 30px;
}

.price-free_item ul li {
    background-color: var(--point-color);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    padding: 40px;
}

.price-free_item ul li .label {
    background-color: #fff;
    border-radius: 100vmax;
    color: var(--point-color);
    width: fit-content;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: 900;
    margin: 0 auto;
    padding: .3em 1em;
}

.price-free_item ul li .price {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    font-weight: 900;
    text-align: center;
    margin-top: 1em;
}

.price-free_item ul li .price.size {
    font-size: 50px;
}

.price-free_item ul li .price .num {
    font-size: 80px;
    line-height: 1;
    margin-right: .1em;
}

.page_window-film .price-item ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page_window-film .price-item ul li .price_box {
    flex-direction: column;
    align-items: flex-start;
    gap: .7em 0;
    margin-top: 16px;
}

.page_window-film .price-item ul li .price_box .label {
    font-size: 13px;
    width: fit-content;
    height: fit-content;
    padding: .6em 1em;
}

.common-flow_sec {
    padding-block: 120px;
    margin-top: 120px;
}

.common-flow_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 25px;
    position: relative;
    z-index: 1;
}

.common-flow_list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
    height: 3px;
    border-bottom: 3px dotted #ccc;
    z-index: -1;
}

.common-flow_list .item {
    flex-shrink: 0;
    width: 230px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);

}

.common-flow_list .item .img {
    height: 150px;
}

.common-flow_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-flow_list .item .en {
    background-color: var(--point-color);
    color: #fff;
    width: fit-content;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 900;
    padding: .4em 1em;
    margin-top: -15px;
    position: relative;
}

.common-flow_list .item .title {
    padding: .8em 15px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .08em;
    font-weight: 700;
}

.common-flow_list .sub {
    text-align: center;
    background-color: var(--main-color);
    border-radius: 100%;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0em;
    font-weight: 900;
    color: #fff;
    display: grid;
    place-content: center;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.page_window-film .common-cta_area {
    margin-top: 0;
}



@media (max-width: 750px) {
    .wrap {
        max-width: 90%;
    }

    a[href $='.pdf']::before {
        width: 7vw;
        height: 8vw;
        margin-right: 2.5vw;
    }

    a[href $='.pdf']:hover {
        text-decoration: underline;
    }

    body {
        font-size: 13px;
        padding-top: 70px;
        min-width: 100%;
    }

    /*  SP追従 */
    .sp-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 100;
    }

    .sp-fixed .text {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: .05em;
        font-weight: 900;
        color: #fff;
        background-color: var(--contact-color);
        border-radius: 100vmax;
        padding: .65em 1.8em;
        text-align: center;
        width: fit-content;
        margin: 0 auto 6px;
        position: relative;
    }

    .sp-fixed .text::before {
        content: '';
        position: absolute;
        bottom: -9px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 10px;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
        background-color: var(--contact-color);
    }

    .sp-fixed_item {
        background-color: #FFFAF2;
        padding: 2vw 5vw;
    }

    .sp-fixed_item ul {
        display: grid;
        grid-template-columns: auto 1fr 1fr;
        gap: 0 5px;
    }

    .sp-fixed_item ul li .tel {
        background-color: var(--main-color);
        display: block;
        border-radius: 6px;
        padding: 14px;
    }

    .sp-fixed_item ul li .tel img {
        width: 100%;
    }

    .sp-fixed_item ul li .link {
        display: grid;
        place-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: .01em;
        color: #fff;
        background-color: var(--contact-color);
        min-block-size: 60px;
        border-radius: 6px;
    }

    .sp-fixed_item ul li .link.line {
        background-color: var(--line-color);
    }

    /* SPヘッダー */
    #sp_header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
        z-index: 1000;
        height: 70px;
        padding: 20px;
    }

    #sp_header .logo a {
        display: inline-block;
        width: 158px;
    }

    #sp_header .logo img {
        width: 100%;
    }

    .site-common_btn .btn {
        width: 60vw;
        min-block-size: 13vw;
        font-size: 4vw;
    }

    .site-common_btn .btn:hover {
        background-color: var(--main-color);
        color: #fff;
    }

    .common-site_title .en {
        font-size: 4.3vw;
    }

    .common-site_title .title {
        font-size: 6vw;
    }

    /* トップ　ファーストビュー */
    .top-fv {
        margin-top: 0;
    }

    .fv-slider_area .fv-slider,
    .fv-slider_grid {
        height: calc(100vh - 70px);
    }

    .fv-slider_area .fv-slider {
        align-items: flex-start;
    }

    .top-fv_cont {
        margin: 20vw 0 0 5vw;
    }

    .fv-text_box .text {
        font-size: 7vw;
    }

    .fv-text_box .text .size {
        font-size: 12vw;
    }

    .fv-text_box .text .small {
        font-size: 4.8vw;
    }

    .fv-text_box .catch {
        font-size: 7vw;
        line-height: 1.4;
    }

    .fv-text_box .catch .big {
        font-size: 8vw;
    }

    .fv-text_box .catch .size {
        font-size: 5.5vw;
    }

    .top-fv_cont .h1_text {
        font-size: 4.3vw;
        letter-spacing: .7em;
    }

    .fv-slider_grid {
        grid-template-columns: repeat(2, 50vw);
    }

    .fv-slider_grid .item_box::before {
        width: 91%;
        height: 93.5%;
    }

    .fv-slider_grid .item_box::after {
        width: 91%;
        height: 93.5%;
    }

    .fv-slider_grid .item_box .cont {
        padding-block: 10vw 8vw;
    }

    .fv-slider_grid .item_box .cont .title {
        font-size: 4.8vw;
    }

    .fv-slider_grid .item_box .cont .title .bg {
        width: 8vw;
    }

    .fv-slider_grid .item_box .cont .en {
        font-size: 3.5vw;
        line-height: 1.2;
        margin-bottom: 2vw;
        display: inline-block;
    }

    .fv-slider_grid .item_box .cont .text {
        font-size: 3.4vw;
        line-height: 1.4;
    }

    .fv-slider_grid .item_box .btn {
        display: none;
    }

    .fv-slider_grid .item_box:nth-child(1) .cont .text_box {
        margin-top: 10vw;
    }

    .fv-slider_grid .item_box:nth-child(2) .cont .text_box {
        margin-top: 10vw;
    }

    .fv-slider_grid .item_box:nth-child(4) .cont .text_box {
        margin-top: 15vw;
    }

    /* トップ　エイトドアのサービス */
    .top-service_sec {
        padding-top: 15vw;
    }

    .service-item_cont {
        margin-top: 5vw;
    }

    .service-item_cont ul {
        grid-template-columns: repeat(1, 100%);
        gap: 3vw 0;
    }

    .service-item_cont ul li .link {
        height: 53vw;
    }

    .service-item_cont ul li .link:hover {
        opacity: 1;
    }

    .service-item_cont ul li .catch {
        font-size: 4.3vw;
    }

    .service-item_cont ul li .catch .size {
        font-size: 5vw;
    }

    .service-item_cont ul li .catch .big {
        font-size: 6.8vw;
    }

    .service-item_cont ul li .label {
        font-size: 4.8vw;
    }

    .service-item_cont ul li:nth-child(1) .catch {
        margin: 3vw 0 0 6vw;
    }

    .service-item_cont ul li:nth-child(1) .label {
        margin: 0 0 3vw auto;
    }

    .service-item_cont ul li:nth-child(2) .box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-item_cont ul li:nth-child(2) .catch {
        margin: 0 0 3vw 6vw;
    }

    .service-item_cont ul li:nth-child(2) .label {
        margin: 0 6vw 0 auto;
        width: 10vw;
    }

    .service-item_cont ul li:nth-child(3) .catch {
        margin: 0 0 6vw 15vw;
        line-height: 1.1;
    }

    .service-item_cont ul li:nth-child(3) .label {
        margin: 6vw auto 0;
    }

    .top-service_list {
        margin-top: 18vw;
        padding-block: 12vw;
        background-image: repeating-linear-gradient(275deg, #fffaed, #fffaed 10px, transparent 10px, transparent 23px);
    }

    .top-service_title {
        flex-direction: column;
        align-items: center;
        gap: 5vw 0;
    }

    .top-service_title .en {
        width: 10vw;
        font-size: 5vw;
    }

    .top-service_title .title {
        font-size: 6.3vw;
        text-align: center;
        line-height: 1.4;
    }

    .service-list_box {
        margin-top: 8vw;
        grid-template-columns: repeat(1, 100%);
        gap: 8vw 0;
    }

    .service-image_box {
        height: 85vw;
    }

    .service-image_box:nth-child(2) {
        height: 72vw;
    }

    .service-image_box .img {
        inset: unset;
        bottom: 0;
    }

    .service-image_box .label {
        font-size: 4vw;
        padding: .4em 2em;
    }

    .service-list_btn .link {
        width: 21vw;
        height: 21vw;
        font-size: 3.4vw;
    }

    .service-list_btn .link::before {
        width: 26vw;
        height: 26vw;
        opacity: 1;
        visibility: visible;
    }

    .service-image_box:last-child .service-list_btn .link:nth-child(3)::before {
        width: 22vw;
        height: 22vw;
    }

    .service-image_box:first-child .service-list_btn .link:nth-child(1) {
        top: 14vw;
        right: 20vw;
    }

    .service-image_box:first-child .service-list_btn .link:nth-child(2) {
        bottom: 18vw;
        left: 3vw;
    }

    .service-image_box:first-child .service-list_btn .link:nth-child(3) {
        bottom: 2vw;
        right: 8vw;
    }

    .service-image_box:last-child .service-list_btn .link:nth-child(1) {
        bottom: 10vw;
        left: 6vw;
    }

    .service-image_box:last-child .service-list_btn .link:nth-child(2) {
        bottom: 30vw;
        right: 26vw;
    }

    .service-image_box:last-child .service-list_btn .link:nth-child(3) {
        bottom: 5vw;
        right: 2vw;
        width: 17vw;
        height: 17vw;
        font-size: 3vw;
    }

    .service-list_item {
        margin-top: 10vw;
    }

    .service-list_item .title {
        font-size: 5vw;
    }

    .service-list_item ul {
        grid-template-columns: repeat(2, 44vw);
        gap: 5vw 2vw;
        margin-top: 8vw;
    }

    .service-list_item ul li .link::before {
        height: 52vw;
    }

    .service-list_item ul li.coming .link::before {
        height: 52vw;
    }

    .service-list_item ul li .link .img {
        padding: 3vw 0 0 2vw;
    }

    .service-list_item ul li .link .img img {
        width: 27vw;
        height: 46vw;
    }

    .service-list_item ul li .link:hover .img img {
        scale: 1;
    }

    .service-list_item ul li .link .head {
        font-size: 4vw;
        margin-top: 3vw;
    }

    .service-list_item ul li .link .img.coming {
        width: 38vw;
    }

    /* CTAセクション */
    .common-cta_area {
        margin-top: 10vw;
        border-radius: 10px;
        padding: 7vw 6vw;
    }

    .common-cta_area .catch {
        font-size: 5.6vw;
    }

    .common-cta_box {
        grid-template-columns: repeat(1, 100%);
        gap: 3vw 0;
        margin-top: 3vw;
    }

    .common-cta_item {
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .common-cta_item:first-child {
        border-bottom: 2px dotted #C1C1C1;
        padding-bottom: 4vw;
        margin-bottom: 2vw;
    }

    .common-cta_item .text {
        font-size: 3.6vw;
    }

    .common-cta_item .tel {
        padding-left: 9vw;
        font-size: 8vw;
        background-size: 7vw;
        pointer-events: painted;
    }

    .common-cta_item .time {
        font-size: 3.5vw;
    }

    .common-cta_item .btn {
        min-block-size: 15vw;
        width: 76vw;
        padding-left: 14vw;
        font-size: 4vw;
        letter-spacing: .01em;
        color: #fff;
        background-size: 6vw;
        background-position: 5vw center;
    }

    .common-cta_item .btn.line {
        background-size: 8vw;
        background-position: 3vw center;
        padding-left: 13vw;
    }

    .common-cta_item .btn::before {
        right: 5vw;
        width: 3vw;
        height: 4vw;
    }

    .common-cta_item .btn:hover {
        opacity: 1;
    }

    /* トップ　実績紹介 */
    .top-works_sec {
        padding-block: 15vw 0;
    }

    .top-works_sec .title_box {
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 3vw 0;
    }

    .top-works_sec .tab-area ul {
        display: flex;
        justify-content: center;
        gap: 0 2vw;
    }

    .top-works_sec .tab-area ul .tab {
        width: 40vw;
        min-block-size: 11vw;
        font-size: 3.8vw;
    }

    .tab-area_box {
        margin-top: 6vw;
    }

    .common_archive_list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 6vw 3vw;
    }

    .common_archive_list ul li .link {
        display: block;
    }

    .common_archive_list ul li .link .img img {
        height: 30vw;
    }

    .common_archive_list ul li .link:hover .img img {
        scale: 1;
    }

    .common_archive_list ul li .link .title {
        font-size: 4vw;
        height: 12vw;
    }

    .common_archive_list ul li .link .date {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .tab-area_box .site-common_btn {
        margin: 6vw auto 0;
    }

    /* トップ　会社概要 */
    .top-company_sec {
        padding-block: 15vw;
        overflow: hidden;
    }

    .top-company_cont {
        flex-direction: column;
        gap: 0;
    }

    .top-company_box::before {
        bottom: 14vw;
        right: -9vw;
        width: 95vw;
        height: 27vw;
    }

    .top-company_cont .img {
        width: 90vw;
    }

    .top-company_box {
        margin-top: -4vw;
    }

    .top-company_cont .common-site_title {
        text-align: center;
    }

    .top-company_cont .text_box {
        margin-top: 3vw;
    }

    .top-company_cont .text_box .text {
        font-size: 3.6vw;
    }

    .top-company_btn {
        margin: 7vw auto 0;
        width: fit-content;
    }

    .top-company_btn .btn {
        width: 60vw;
        min-block-size: 14vw;
        font-size: 4vw;
        background-color: var(--main-color);
        color: #fff;
        border-color: var(--main-color);
    }

    /* フッター */
    .main-footer {
        padding-block: 10vw 18vw;
    }

    .footer-logo a {
        width: 55vw;
    }

    .main-footer .address {
        font-size: 3.5vw;
        line-height: 1.5;
        margin-top: 4vw;
    }

    .main-footer .map_link {
        display: none;
    }

    .main-footer .map {
        margin-top: 3vw;
    }

    .main-footer .map iframe {
        width: 100%;
        height: 45vw;
        border-radius: 8px;
    }

    .main-footer_info {
        margin-top: 4vw;
    }

    .main-footer_info .tel {
        font-size: 4.5vw;
        pointer-events: painted;
        width: fit-content;
        margin-inline: auto;
    }

    .main-footer_info .time {
        font-size: 3.6vw;
    }

    .main-footer_nav ul {
        flex-wrap: wrap;
        gap: 4vw 3vw;
        justify-content: flex-start;
        margin-top: 7vw;
    }

    .main-footer_nav ul li .link {
        width: 43vw;
        display: block;
        font-size: 3.8vw;
        padding-inline: 0;
        text-align: center;
        white-space: none;
        border-left: none;
        border-bottom: 1px solid var(--black-color);
        padding-bottom: 1vw;
    }

    .main-footer_nav ul li:first-child .link {
        padding-inline: 0;
        border-left: none;
    }

    .main-footer_nav ul li:last-child .link {
        padding-inline: 0;
    }

    .main-footer_nav ul li:nth-child(7) {
        width: 100%;
    }

    .main-footer_nav ul li .link:hover {
        opacity: 1;
    }

    .main-footer_sub {
        margin-top: 15vw;
    }

    .main-footer_sub .sub_menu ul {
        gap: 0 2vw;
    }

    .main-footer_sub .sub_menu ul li .menu {
        font-size: 3vw;
    }

    .main-footer_sub .sub_menu ul li:not(:last-child) .menu::before {
        right: -1vw;
    }

    .main-footer_sub .sub_menu ul li .menu:hover {
        opacity: 1;
    }

    .main-footer_sub .copyright {
        border-top: none;
        margin-top: 3vw;
        padding-top: 0;
        font-size: 2.8vw;
    }





    /* SP固定ページ 共通設定 */
    .common_page_main {
        padding-block: 20vw;
        margin-block: 0 1em;
    }

    .common_page_main .title_box .title {
        font-size: 5.7vw;
    }

    .common_page_main .title_box .sub_title {
        font-size: 3.5vw;
    }

    .common_page_wrap {
        padding-block: 10vw 20vw;
    }

    .reserve_text {
        font-size: 6vw;
    }

    /* パンくず */
    .breadcrumb {
        font-size: 3vw;
    }

    .single-post {
        margin-top: 0;
    }

    /* SP固定ページ お問い合わせ */
    .contact_form_disc {
        margin-block: 0 2em;
    }

    .contact_form_disc .text {
        font-size: 3.6vw;
        margin-block: 0 0.8em;
    }

    .contact_form_disc .caution {
        font-size: 3.1vw;
        letter-spacing: .06em;
    }

    .common_contact_form .form_box {
        margin-block: 0 10vw;
    }

    .common_contact_form .form_box dl {
        grid-template-columns: 1fr;
        gap: 0.6em;
    }

    .common_contact_form .form_box dl+dl {
        margin-block: 1.3em 0;
    }

    .common_contact_form .form_box dl dt {
        flex-direction: row-reverse;
        justify-content: space-between;
        font-size: 4.1vw;
        padding-inline: 0;
    }

    .common_contact_form .form_box dl dt .label {
        font-size: 3.1vw;
    }

    .common_contact_form .form_box dl dt::after {
        content: none;
    }

    .common_contact_form input[type="text"],
    .common_contact_form input[type="email"],
    .common_contact_form #zip {
        font-size: 3.6vw;
    }

    .common_contact_form select {
        width: 100%;
        font-size: 3.6vw;
    }

    .common_contact_form textarea {
        height: 33vw;
        font-size: 3.6vw;
    }

    .radio_btns,
    .checkboxes {
        gap: 0.5em 2.5em;
    }

    .page_contact #btn_wrap button {
        width: 83%;
        line-height: 15.5vw;
        font-size: 4.6vw;
    }

    .page_contact #btn_wrap button[name="submitBack"] {
        margin-top: 4vw;
    }

    .mwform-checkbox-field.horizontal-item {
        display: block;
    }

    .page_contact #btn_wrap {
        width: 100%;
        text-align: center;
    }

    .privacy_check_list .mwform-checkbox-field-text {
        font-size: 3.8vw;
        padding-left: 11vw;
    }

    .mw_wp_form .privacy_check_list .horizontal-item {
        margin-right: 4vw;
    }

    .privacy_check_list .hissu {
        padding: 0.3vw 4vw;
    }

    .privacy_check_list {
        margin-bottom: 6vw;
    }

    .privacy_term_detail {
        font-size: 3.4vw;
        margin: 5vw 0;
    }

    .privacy_term_outer {
        width: 96%;
        padding: 5vw 0;
    }

    .privacy_term_outer .privacy_term_inner .main_text {
        font-size: 3.4vw;
        line-height: 1.6;
        margin-bottom: 5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dt {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dd {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    .privacy_term_outer .privacy_term_inner dl+dl {
        margin-top: 7vw;
    }

    .privacy_term_detail::after {
        width: 2.5vw;
        margin: 1.5vw auto 0;
    }

    /* サンクスページ */
    .page_contact .thanks_textArea .name {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .page_contact .thanks_textArea .contact_text {
        font-size: 3.5vw;
        margin-bottom: 2em;
        width: 100%;
    }

    .page_contact .thanks_textArea .ichiran_link {
        width: 80%;
        line-height: 12vw;
        font-size: 4vw;
    }

    /* ステップバー デザイン */
    .page_contact .progressbar {
        gap: 4.5em;
        margin-block: 0 2.5em;
    }

    .page_contact .progressbar .item {
        font-size: 3.1vw;
    }

    .page_contact .progressbar .item+.item::before {
        width: 5.7vw;
        top: 63%;
        left: -3.3em;
    }

    .page_contact .progressbar .item .mark {
        width: 7.7vw;
        margin: 0 auto 0.4em;
    }

    /* SP固定ページ 404ページ */
    #page_404 .num {
        font-size: 20vw;
        line-height: 1.5;
    }

    #page_404 .text {
        font-size: 3.5vw;
    }

    /* SP投稿ページ アーカイブページ */
    .archive_page_list>article {
        padding-right: 20px;
    }

    .archive_page_list>article .date {
        width: 80px;
    }

    .archive_page_list>article .content_area {
        width: calc(100% - 80px);
    }

    .archive_page_list>article:after {
        width: 7px;
        height: 7px;
    }

    /* SP固定ページ サイトマップ */
    ul#sitemap_list li {
        margin: 0;
    }

    body #sitemap_list li a {
        font-size: 4vw;
        padding: 1vw 2vw;
        line-height: 9vw;
        margin-bottom: 1vw;
    }

    body #sitemap_list li.home-item {
        margin-bottom: 4vw;
    }

    body #sitemap_list {
        padding: 0;
    }

    /* 会社概要 */
    .company_profile_sec .cont .title_box .title {
        font-size: 6.5vw;
        margin-bottom: 0.2em;
    }

    .company_profile_sec .cont .title_box .sub_title {
        font-size: 3.6vw;
    }

    .company_profile_sec .cont .item {
        padding: 1.9em 0;
    }

    .company_profile_sec .cont .item .inbox .head {
        width: 23vw;
        font-size: 3.6vw;
        padding: 0;
    }

    .company_profile_sec .cont .item .inbox .text_area {
        font-size: 3.6vw;
        padding: 0;
    }

    .company_profile_sec .cont .item .map {
        width: 100%;
        height: 55vw;
    }

    /* 内部ページ共通設定 */
    .page-title_box .jp {
        font-size: 5.8vw;
    }

    .page-title_box .jp .num {
        font-size: 8vw;
    }

    /* お客様の声 */
    .common-voice_sec {
        margin-top: 18vw;
    }

    .common-voice_list {
        margin-top: 7vw;
        padding-bottom: 20vw;
    }

    .common-voice_item+.common-voice_item {
        margin-top: 7vw;
    }

    .common-voice_item {
        padding: 5vw;
    }

    .common-voice_item .item {
        flex-direction: column;
        gap: 5vw 0;
    }

    .common-voice_item .item .icon {
        width: 25vw;
        height: 25vw;
        margin-inline: auto;
    }

    .common-voice_item .item .catch_box .catch {
        font-size: 4.3vw;
        text-align: center;
    }

    .common-voice_item .item .catch_box .name {
        font-size: 3.6vw;
        text-align: center;
    }

    .common-voice_comment {
        padding: 5vw;
        margin-top: 5vw;
    }

    .common-voice_comment .comment {
        font-size: 3.5vw;
    }


    /* よくある質問 */
    .common-faq_sec {
        padding-top: 15vw;
    }

    .common-faq_list+.common-faq_list {
        margin-top: 10vw;
    }

    .page-sub_title {
        font-size: 4.2vw;
    }

    .common-faq_list {
        margin-top: 7vw;
    }

    .common-faq_list dl+dl {
        margin-top: 7vw;
    }

    .common-faq_list dl dt {
        padding: 3vw;
        gap: 0 3vw;
    }

    .common-faq_list dl dt .en {
        width: 10vw;
        height: 10vw;
        font-size: 5vw;
    }

    .common-faq_list dl dt .question {
        font-size: 3.8vw;
    }

    .common-faq_list dl dd {
        padding: 4vw 3vw 0;
    }

    .common-faq_list dl dd .text {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    /* 外壁洗浄（SKAT） */
    .skat-fv_sec {
        margin-top: 0;
        background: url(./image/skat_fv_img_sp.webp) top center / cover no-repeat;
        padding-block: 18vw 8vw;
    }

    .skat-cont {
        display: grid;
        gap: 0;
    }

    .skat-cont .cont {
        display: contents;
    }

    .skat-cont .img {
        width: 60vw;
        margin-left: auto;
        order: 1;
    }

    .skat-cont .catch {
        width: 90vw;
        margin-inline: auto;
    }

    .skat-cont .text_box {
        margin-top: 3vw;
    }

    .skat-cont .text_box .text {
        font-size: 4.3vw;
        margin-top: .3em;
    }

    .skat-cont .text_box .text+.text {
        margin-top: .3em;
    }

    .skat-cont .button {
        margin-top: 10vw;
        order: 2;
    }

    .skat-cont .button .btn {
        width: 90vw;
        min-block-size: 12vw;
        font-size: 3.8vw;
    }

    .page-info_sec {
        padding-block: 10vw 20vw;
    }

    .page-info_sec .page_title {
        font-size: 5.5vw;
    }

    .page-info_sec .page_title .color {
        font-size: 7vw;
    }

    .page-info_sec .page_title::before {
        width: 80vw;
        height: 8vw;
    }

    .page-info_sec .head_box {
        margin-top: 6vw;
    }

    .page-info_sec .head_box .text {
        font-size: 3.8vw;
    }

    .page-info_box {
        margin-top: 10vw;
    }

    .page-info_box .skat-name .sub {
        font-size: 3.4vw;
    }

    .page-info_box .skat-name .logo {
        width: 70vw;
    }

    .page-info_box .text_box {
        margin-top: 5vw;
    }

    .page-info_box .text_box .text {
        font-size: 3.6vw;
    }

    .common-strength_sec {
        padding-block: 10vw 18vw;
        background-image: repeating-linear-gradient(275deg, #fffaed, #fffaed 10px, transparent 10px, transparent 23px);
    }

    .common-strength_sec .before-box {
        margin-top: 18vw;
    }

    .common-strength_sec .before-box ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw;
    }

    .common-strength_sec .before-box ul li .label {
        font-size: 4.2vw;
    }

    .common-strength_sec .before-box ul li .img {
        padding: 4vw 5vw;
    }

    .common-border_bg {
        background-image: repeating-linear-gradient(275deg, #fffaed, #fffaed 10px, transparent 10px, transparent 23px);
    }

    .page-strength_item {
        margin-top: 6vw;
        flex-direction: column;
        gap: 6vw 0;
    }

    .page-strength_item:nth-child(odd) {
        flex-direction: column;
    }

    .page-strength_item .img {
        width: 100%;
        height: 45vw;
    }

    .page-strength_cont {
        padding: 0 4vw 5vw;
    }

    .page-strength_item:nth-child(odd) .page-strength_cont {
        padding: 0 4vw 5vw;
    }

    .page-strength_cont .title_box {
        gap: 0 2vw;
    }

    .page-strength_cont .num_box {
        width: 11vw;
        height: 11vw;
    }

    .page-strength_cont .num_box .text {
        font-size: 2.5vw;
    }

    .page-strength_cont .num_box .num {
        font-size: 4.3vw;
    }

    .page-strength_cont .title_box .title {
        font-size: 4.2vw;
        letter-spacing: .05em;
    }

    .page-strength_cont .text_box {
        margin-top: 3vw;
    }

    .page-strength_cont .text_box .text {
        font-size: 3.4vw;
    }

    .page-price_sec {
        padding-block: 18vw 8vw;
    }

    .price-item {
        margin-top: 7vw;
    }

    .price-item ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 0;
    }

    .price-item ul li .img {
        height: 45vw;
    }

    .price-item ul li .item_box {
        padding: 5vw;
    }

    .price-item ul li .price-cont .plan {
        font-size: 4vw;
    }

    .price-item ul li .price_box {
        margin-top: 1vw;
        gap: 0 2vw;
    }

    .price-item ul li .price_box .label {
        width: 12vw;
        height: 12vw;
        font-size: 3.8vw;
    }

    .price-item ul li .price_box .price {
        font-size: 5vw;
    }

    .price-item ul li .price_box .price .num {
        font-size: 8.3vw;
    }

    .price-item ul li .cont_box {
        gap: 0 4vw;
    }

    .price-item ul li .cont_box .info {
        gap: 0 3vw;
    }

    .price-item ul li .cont_box .info .text {
        font-size: 3vw;
    }

    .price-item ul li .cont_box .info .item {
        font-size: 4.2vw;
    }

    .works-example_sec {
        padding-block: 15vw;
    }

    .works-example_sec .common_archive_list {
        margin-top: 8vw;
    }

    .works-example_item {
        margin-top: 6vw;
        grid-template-columns: repeat(1, 1fr);
        gap: 10vw 0;
    }

    .works-example_item .item .img {
        height: 45vw;
    }

    .works-example_item .item .heading {
        font-size: 4.3vw;
    }

    .works-example_item .item .text_box .text {
        font-size: 3.6vw;
    }

    .works-example_item .item .button {
        margin: 4vw auto 0;
        width: 60vw;
        min-block-size: 12vw;
        font-size: 3.8vw;
        background-color: var(--main-color);
        color: #fff;
    }

    .modal_cont {
        padding: 10vw 5vw;
        width: 90%;
        flex-direction: column;
        gap: 8vw 0;
    }

    .modal_cont .btn_close {
        right: 0;
        top: -3vw;
        width: 10vw;
        height: 10vw;
        font-size: 6vw;
        z-index: 100;
    }

    .modal_cont .image_area {
        width: 100%;
    }

    .modal_cont .image_area .main_img {
        height: 45vw;
    }

    .modal_cont .image_area .thumbnail {
        margin-top: 2vw;
    }

    .modal_cont .image_area .thumbnail .thumbnail_img {
        width: calc(97% / 3) !important;
        height: 20vw;
    }

    .modal_cont .image_area .thumbnail .slick-slide+.slick-slide {
        margin-left: 1vw;
    }

    .modal_cont .text_area .title {
        font-size: 4.5vw;
    }

    .modal_cont .text_area .text_box {
        height: 32vw;
    }

    .modal_cont .text_area .text_box .text {
        font-size: 3.6vw;
    }

    .modal_cont .text_area .link {
        margin: 8vw auto 0;
        width: 80vw;
        min-block-size: 12vw;
        font-size: 4vw;
    }

    /* 外構塗装 */
    .page_exterior_painting .common_page_wrap {
        padding-block: 0 18vw;
    }

    .page-info_item {
        flex-direction: column;
        gap: 4vw 0;
        margin-top: 8vw;
    }

    .page-info_item .img {
        width: 100%;
        height: 45vw;
    }

    .page-info_item .catch {
        font-size: 4.2vw;
    }

    .page-info_item .text {
        font-size: 3.6vw;
    }

    .page-common_works {
        padding-block: 18vw;
    }

    .page-common_works .common_archive_list {
        margin-top: 8vw;
    }

    /* ハウスクリーニング */
    .page_house-cleaning .common_page_wrap {
        padding-block: 0 18vw;
    }

    .common-grid_sec {
        padding-block: 15vw 20vw;
    }

    .common-grid_item {
        margin-top: 8vw;
    }

    .common-grid_item ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 0;
    }

    .common-grid_item ul li .img {
        height: 45vw;
    }

    .common-grid_item ul li .box {
        padding: 5vw 4vw;
    }

    .common-grid_item ul li .title {
        font-size: 4.5vw;
    }

    .common-grid_item ul li .text_box .text {
        font-size: 3.6vw;
    }

    /* リペア */
    .page_repair .common_page_wrap {
        padding-block: 0 20vw;
    }

    .page-heading_item {
        margin-top: 8vw;
    }

    .page-heading_item ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw 2vw;
    }

    .page-heading_item ul li .img {
        height: 30vw;
    }

    .page-heading_item ul li .text_box {
        padding: 4vw;
    }

    .page-heading_item ul li .text_box .title {
        font-size: 3.8vw;
    }

    .page-heading_item ul li .text_box .text {
        font-size: 3.3vw;
    }

    .page-strength_cont .text_box ul li {
        font-size: 3.5vw;
    }

    /* フロアコーティング */
    .page_floor-coating .common_page_wrap {
        padding-block: 15vw 0;
    }

    .page_floor-coating .page-heading_sec {
        padding-bottom: 18vw;
    }

    .heading-item_box {
        margin-top: 8vw;
        padding: 6vw 4vw;
    }

    .heading-item_box .item_box+.item_box {
        margin-top: 7vw;
    }

    .heading-item_box .item_box .sub_title {
        font-size: 4vw;
    }

    .heading-item_box .item_box .text_box .text {
        font-size: 3.5vw;
    }

    .heading-sub_item {
        margin-top: 3vw;
    }

    .heading-sub_item ul {
        flex-direction: column;
        gap: 2vw 0;
    }

    .heading-sub_item ul li {
        width: 100%;
        gap: 0 2vw;
        padding: 2vw;
    }

    .heading-sub_item ul li .num_box .text {
        font-size: 3.2vw;
    }

    .heading-sub_item ul li .num_box .num {
        font-size: 4vw;
    }

    .heading-sub_item ul li .head {
        font-size: 3.5vw;
    }

    .heading-sub_item ul li .text {
        font-size: 3vw;
    }

    .common-merit_sec {
        padding-block: 15vw 18vw;
    }

    .page-merit_item {
        margin-top: 8vw;
        padding: 5vw;
    }

    .page-merit_item .title {
        font-size: 4.2vw;
    }

    .page-merit_item .head_box {
        margin-top: 4vw;
        padding: 5vw;
        gap: 0 6vw;
        flex-direction: column;
    }

    .page-merit_item .head_box .icon {
        width: 28vw;
        height: 28vw;
        padding: 5vw;
        margin: 0 auto 4vw;
    }

    .page-merit_item .head_box .icon img {
        height: 15vw;
    }

    .page-merit_item .head_box .catch {
        font-size: 4vw;
        text-align: center;
    }

    .page-merit_item .head_box .text {
        font-size: 3.4vw;
    }

    .page-merit_item .item_box {
        margin-top: 6vw;
    }

    .page-merit_item .item_box ul li .label {
        font-size: 3.8vw;
    }

    .page-merit_item .item_box ul li .text_area {
        margin-top: .8em;
    }

    .page-merit_item .item_box ul li .text_area .text {
        font-size: 3.4vw;
    }

    /* 水回りコーティング */
    .page_water-coating .common-grid_item ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .page_water-coating .common_page_wrap {
        padding-block: 0;
    }

    .page_water-coating .heading-sub_item ul li {
        gap: 0 3vw;
        justify-content: flex-start;
    }

    .page_water-coating .heading-sub_item ul li .head {
        font-size: 4.5vw;
    }

    .page_water-coating .heading-sub_item ul li .text {
        font-size: 3.6vw;
    }

    .item-flex_box {
        grid-template-columns: repeat(1, 1fr);
        gap: 7vw 0;
        margin-top: 8vw;
    }

    .item-flex_box .case {
        gap: 0 5vw;
    }

    .item-flex_box .case .img {
        height: 30vw;
    }

    .item-flex_box .case .img:not(:last-child)::before {
        width: 3vw;
        height: 7vw;
        right: -4vw;
    }

    .item-flex_box .case .img .label {
        top: 2vw;
        font-size: 3.5vw;
    }

    /* 窓ガラスフィルム */
    .common-heading_box {
        margin-top: 6vw;
    }

    .common-heading_box .catch {
        font-size: 5vw;
    }

    .common-heading_box .text_box {
        margin-top: 3vw;
    }

    .common-heading_box .text_box .text {
        font-size: 3.5vw;
    }

    .promise-item_box {
        margin-top: 12vw;
    }

    .price-free_item,
    .film-price_box {
        margin-top: 12vw;
    }

    .price-free_item ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 0;
        margin-top: 6vw;
    }

    .price-free_item ul li {
        padding: 6vw;
    }

    .price-free_item ul li .label {
        font-size: 4vw;
    }

    .price-free_item ul li .price {
        font-size: 8vw;
        margin-top: 5vw;
    }

    .price-free_item ul li .price.size {
        font-size: 10vw;
    }

    .price-free_item ul li .price .num {
        font-size: 15vw;
    }

    .page_window-film .price-item ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 0;
    }

    .page_window-film .price-item ul li .price_box {
        margin-top: 3vw;
    }

    .page_window-film .price-item ul li .price_box .label {
        font-size: 3vw;
    }

    .page_window-film .price-item ul li .price_box .price .num {
        font-size: 7.8vw;
    }

    .common-flow_sec {
        padding-block: 18vw;
        margin-top: 18vw;
    }

    .common-flow_list {
        margin-top: 6vw;
        flex-wrap: nowrap;
        gap: 0 4vw;
        overflow-x: scroll;
        padding: 1vw 1vw 2vw;
    }

    .common-flow_list::before {
        width: 300%;
        left: 2vw;
        translate: 0% -50%;
    }

    .common-flow_list .item {
        width: 57vw;
    }

    .common-flow_list .item .img {
        height: 45vw;
    }

    .common-flow_list .item .en {
        font-size: 3.5vw;
        margin-top: -3vw;
        padding: .5em 1em .3em;
    }

    .common-flow_list .item .title {
        padding: .8em 4vw 5vw;
        font-size: 3.8vw;
    }

    .common-flow_list .sub {
        font-size: 3.3vw;
        width: 20vw;
        height: 20vw;
    }

    .page_window-film .page-price_sec {
        padding-block: 18vw;
    }


}