@charset "utf-8";
/* ===================================================
	Base CSS
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;600;900&display=swap');

.zen_old_min {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

:root {
	--break: 1920;
    --color-base: #91826e;
    --color-gr01: #00aa78;
    --color-gr02: #e6fff0;
}
@media(min-width: 768px) and (max-width: 1599px) {
    :root {
		--break: 1599;
    }
}
@media(min-width: 768px) and (max-width: 1299px) {
    :root {
		--break: 1299;
    }
}
@media(max-width:767px) {
        :root {
		--break: 750;
    }
}
@media(max-width:600px) {
        :root {
		--break: 580;
    }
}
@media(max-width:480px) {
        :root {
		--break: 480;
    }
}

html {
	scroll-behavior: smooth;
}
body {
	min-height: 100vh; background: #fff; color: var(--color-base);
    font-size: clamp(1rem,1.45vw,0.94rem); line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	-webkit-text-size-adjust: 100%; position: relative;
	font-feature-settings: "palt"; letter-spacing: 0.1em;
    font-variant-east-asian: proportional-width;
}

header,
nav,
footer,
section,
h1,
h2,
h3,
h4,
h5,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
img,
a { box-sizing: border-box; }
a { color: #000; text-decoration: none; transition: opacity 0.5s ease; }
h1,
h2,
h3,
h4,
h5 { font-weight: 500; }

#lineup-font-size-sampler { bottom: 0; left: 0;}
iframe[name="google_conversion_frame"] { position: absolute; bottom: 0; left: 0;}

.ofi { object-fit: cover;}
.v_rl{ writing-mode: vertical-rl; font-feature-settings: "palt" 0;}
.sp, .tab { display: none;}
.inner { width: 1320px; max-width: 90%; margin: 0 auto; }

@media screen and (hover: hover) and (min-width: 769px) {
	a:hover { opacity: 0.7; }
}
@media screen and (min-width: 769px) {
	.tel-link { pointer-events: none; }
}
@media screen and (max-width: 960px) {
	.tab { display: block;}
}
@media screen and (max-width: 768px) {
	.sp { display: block;}
	.pc { display: none !important;}
}
@media screen and (max-width: 420px) {
	body { font-size: min(4.26vw,1rem); }
}


/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 1.66rem;
}
header h1 {
	width: clamp(250px,23.4vw, 300px);
	line-height: 1;
}

.section-title {
	font-size: 2.16rem;
	letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
	header {
		padding: 0.8rem;
	}
	header h1 {
		width: min(46vw,250px);
	}
	.section-title {
		font-size: 1.6rem;
	}
}


/* ---------------------------------------------------
	Common Parts
------------------------------------------------------ */
.cmn_tit {
    line-height: 1.33;
    font-size: 281%;
    font-weight: 600;
    text-align: center;
}

/* accordion */
.acc_contents {
    position: relative;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
.acc_contents > .wrap {
    overflow: hidden;
}
.acc_tit.active+.acc_contents {
    grid-template-rows: 1fr;
}

@media screen and (max-width: 768px) {
    .cmn_tit {
        font-size: 200%;
    }
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
.main-visual {
    position: relative;
    width: 100%;
}
.main-visual .ofi {
    width: 100%;
}
.main-txt {
    position: absolute;
    top: 60%;
    left: max(4%, calc(50% - 660px));
    transform: translateY(-50%);
    font-size: min(5vw,60px);
    font-weight: 600;
    color: #fff;
}

/* 右下の丸いボタン */
.cv-button {
	position: fixed;
    top: 5rem;
    right: 5%;
	z-index: 11;
    display: flex;
    align-items: center;
    width: min(16.73vw,200px);
    height: min(16.73vw,200px);
    line-height: 2.2;
    letter-spacing: 0.12em;
    border-radius: 50%;
    font-size: min(2vw,25px);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(0deg, rgba(0, 210, 160, 1), rgba(0, 170, 120, 1));
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, background-image 0.3s, color 0.3s;
}
.cv-button>span {
    width: 100%;
    margin-top: -0.25rem;
}
.cv-button .lg {
    display: block;
    font-size: 160%;
    line-height: 1;
}
.cv-button:hover {
    transform: translateY(0.25rem);
    opacity: 1;
    color: #000;
    background-image: linear-gradient(0deg, rgba(230, 255, 240, 1), rgba(0, 239, 170, 1));
    box-shadow: none;
}

@media (max-width: 768px) {
    .main-visual .ofi {
        min-height: 380px;
        object-position: 65% 0%;
    }
    .main-txt {
        top: auto;
        bottom: 4vw;
        transform: translate(0);
        font-size: min(6.6vw, 40px);
    }
    .cv-button {
        right: 2%;
        top: 1rem;
        width: min(35vw, 140px);
        height: min(35vw, 140px);
        font-size: min(4.8vw, 1rem);
        line-height: 1.5;
    }
}


/* ---------------------------------------------------
    #sec01
------------------------------------------------------ */
#sec01 {
    padding: 90px 0;
}
.lead_txt {
    margin-top: 1rem;
    line-height: 1.8;
}
#sec01 .type_col {
    display: flex;
    gap: 2vw;
    margin-top: 2rem;
}
#sec01 .type_col .tit {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    border-radius: 0.5rem;
    font-size: 125%;
    color: #fff;
    background-color: var(--color-gr01);
}
#sec01 .type_col>dl {
    display: flex;
    gap: 1.5vw;
}
#sec01 .type_col>dl>div {
    position: relative;
    flex: 1;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem 3rem;
    background-color: #faf5eb;
}
#sec01 .type_col>dl>div::after {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    content: '';
    display: block;
}
#sec01 .type_col>dl>div:nth-child(1):after {
    right: 2rem;
    width: 2rem;
    height: 3.75rem;
    background: url(../img/sec01_il01_2x.webp)no-repeat center/contain;
}
#sec01 .type_col>dl>div:nth-child(2):after {
    right: 1rem;
    width: 3.56rem;
    height: 4rem;
    background: url(../img/sec01_il02_2x.webp)no-repeat center/contain;
}
#sec01 .type_col>dl>div:nth-child(3):after {
    right: -0.33rem;
    bottom: 0.5rem;
    width: 2.68rem;
    height: 2.62rem;
    background: url(../img/sec01_il03_2x.webp)no-repeat center/contain;
}
#sec01 .type_col dt {
    font-size: 115%;
    text-align: center;
}
#sec01 .type_col dd {
    margin-top: 1rem;
    line-height: 1.8;
    text-align: justify;
}
#sec01 .sub_txt {
    margin-top: 2rem;
    color: var(--color-gr01);
    text-align: center;
}
#sec01 .sub_txt .lg {
    font-size: 175%;
    font-weight: 600;
}
#sec01 .sub_txt .lg span {
    display: block;
}
#sec01 .sub_txt .cap {
    margin-top: 0.5rem;
    font-size: 90%;
}
#sec01 .sub_txt .cap a {
    margin-right: 0.25em;
    font-weight: 700;
    color: var(--color-gr01);
}

@media screen and (max-width: 768px) {
    #sec01 {
        padding: 9vw 0;
    }
    #sec01 .type_col {
        flex-direction: column;
    }
    #sec01 .type_col .tit {
        writing-mode: horizontal-tb;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 110%;
    }
    #sec01 .type_col>dl {
        flex-direction: column;
        gap: 2vw;
    }
    #sec01 .type_col>dl>div {
        padding: 1.5rem 1.5rem 2rem;
    }
    #sec01 .type_col>dl>div:nth-child(1):after,
    #sec01 .type_col>dl>div:nth-child(2):after,
    #sec01 .type_col>dl>div:nth-child(3):after {
        max-height: min(10vw,3.75rem);
    }
    #sec01 .sub_txt {
        text-align: left;
    }
    #sec01 .sub_txt .lg {
        text-align: center;
    }
}


/* ---------------------------------------------------
    #sec02
------------------------------------------------------ */
#sec02 {
    padding: 90px 0 70px;
    background-color: var(--color-gr02);
}
#sec02 .inspection {
    display: flex;
    gap: 1.5vw;
    margin-top: 2rem;
}
#sec02 [class^="check_"] {
    flex: 1;
    border-radius: 0.5rem;
    background-color: #fff;
}
#sec02 [class^="check_"] .photo .ofi {
    width: 100%;
    aspect-ratio: 71 / 25;
    border-radius: 10px 10px 0 0;
}
#sec02 .check_3 .photo .ofi {
    object-position: 0 80%;
}
#sec02 [class^="check_"] dl {
    position: relative;
    padding: 2rem;
}
#sec02 [class^="check_"] dt {
    font-size: 115%;
    text-align: center;
}
#sec02 [class^="check_"] .num {
    position: absolute;
    top: 1.8rem;
    left: -0.5rem;
    z-index: 1;
    max-width: 3.75vw;
}
#sec02 [class^="check_"] dd {
    margin-top: 1rem;
    line-height: 1.8;
    text-align: justify;
}
#sec02 .sub_txt {
    margin-top: 2rem;
    text-align: center;
}
#sec02 .sub_txt .lg {
    padding-bottom: 0.75rem;
    background: url(../img/drawing_2x.webp)no-repeat 50% 100%/100%;
    font-size: 225%;
    font-weight: 600;
    color: var(--color-gr01);
}

@media screen and (max-width: 768px) {
    #sec02 {
        padding: 9vw 0 7vw;
    }
    #sec02 .inspection {
        flex-direction: column;
        gap: 1rem;
    }
    #sec02 [class^="check_"] dl {
        padding: 1.5rem 1.5rem 2rem;
    }
    #sec02 [class^="check_"] .num {
        top: max(22px,1rem);
        max-width: max(40px,7.5vw);
    }
    #sec02 .sub_txt {
        text-align: left;
    }
    #sec02 .sub_txt .lg {
        font-size: 200%;
    }
}


/* ---------------------------------------------------
    #sec03
------------------------------------------------------ */
#sec03 {
    padding: 100px 0;
}
#sec03 .flow_col {
    list-style: none;
    position: relative;
    margin-top: 2rem;
}
#sec03 .flow_col::before {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background-color: var(--color-gr01);
}
#sec03 .flow_col .inner {
    position: relative;
    border-radius: 0.5rem;
    padding: 2rem 5rem;
    background-color: var(--color-gr02);
}
#sec03 .flow_col .inner:not(:last-of-type) {
    margin-bottom: 1.5vw;
}
#sec03 .flow_col .num {
    position: absolute;
    left: -1.25rem;
    z-index: 1;
    max-width: 6.4vw;
}
#sec03 .flow_name {
    font-size: 125%;
}
#sec03 .flow_item>dd {
    margin-top: 1rem;
    font-size: 110%;
    line-height: 1.8;
}
#sec03 .flow_item .box_1 {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    background-color: #fff;
    color: var(--color);
}
#sec03 .flow_item .box_1>* {
    border: 2px solid var(--color);
    padding: 0.5rem 1rem;
    text-align: center;
}
#sec03 .flow_item .box_1 .price {
    color: #fff;
    background-color: var(--color);
}
#sec03 .flow_item .box_1+.sub_item {
    margin-top: 1.5rem;
}
#sec03 .sub_item {
    border-radius: 0.5rem;
    padding: 1.5rem 2rem 2rem;
    background-color: #fff;
}
#sec03 .sub_item dt {
    font-size: 110%;
    text-align: center;
}
#sec03 .sub_item>dt {
    margin-bottom: 1em;
}
#sec03 .sub_item dd {
    text-align: justify;
}
#sec03 .sub_list {
    display: flex;
    gap: 1.5vw;
}
#sec03 .sub_list>li {
    flex: 1;
}
#sec03 .sub_list .image {
    border-radius: 0.5rem;
    overflow: hidden;
}
#sec03 .sub_list .image img {
    width: 100%;
}
#sec03 .sub_list dt {
    padding: 1rem 0 0.5rem;
}
#sec03 .sub_item+p {
    margin-top: 1rem;
}

@media screen and (min-width: 769px) {
    #sec03 .flow_item .box_1>* {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    #sec03 {
        padding: 10vw 0;
    }
    #sec03 .flow_col .inner {
        padding: 2rem;
    }
    #sec03 .flow_col .inner:not(:last-of-type) {
        margin-bottom: 1rem;
    }
    #sec03 .flow_col .num {
        max-width: max(60px, 9vw);
        top: -0.5rem;
        left: -0.9rem;
    }
    #sec03 .flow_name {
        font-size: 110%;
        text-align: center;
    }
    #sec03 .flow_item>dd {
        font-size: 100%;
    }
    #sec03 .flow_item .box_1 {
        flex-direction: column;
    }
    #sec03 .sub_item {
        padding: 1.5rem 1.5rem 2rem;
    }
    #sec03 .sub_item>dt {
        margin-bottom: 0.75rem;
    }
    #sec03 .sub_list {
        flex-direction: column;
        gap: 2rem;
    }
    #sec03 .sub_list dt {
        padding: 0.5rem 0;
    }
    #sec03 .sub_item dd {
        margin-top: 0;
    }
}


/* ---------------------------------------------------
    #sec04
------------------------------------------------------ */
.list_dots {
    line-height: 1.75;
}
.list_dots li::before {
    content: '●';
}

#sec04 {
    padding: 90px 0;
    background-color: var(--color-gr02);
}
#sec04 .list_dots {
    margin-top: 2rem;
    border-radius: 0.5rem;
    padding: 3.5rem 5rem;
    background-color: #fff;
}
#sec04 .list_dots li+li {
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    #sec04 {
        padding: 9vw 0;
    }
    #sec04 .list_dots {
        padding: 2rem;
    }
}


/* ---------------------------------------------------
    #sec05
------------------------------------------------------ */
#sec05 {
    padding: 90px 0;
}
#sec05 .faq_col {
    margin-top: 2rem;
}
#sec05 .faq_col>div {
    border-radius: 0.5rem;
    background-color: #faf5eb;
}
#sec05 .faq_col>div:not(:last-child) {
    margin-bottom: 1.5vw;
}
#sec05 .faq_col .acc_tit {
    position: relative;
    padding: 2rem 5rem;
    font-size: 110%;
    text-align: center;
}
#sec05 .faq_col .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.9rem;
    z-index: 1;
    max-width: 6vw;
}
#sec05 .faq_col .acc_tit .open {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 245, 235, 1));
    box-shadow: 0 3px 6px rgba(145, 130, 110, 0.75);
}
#sec05 .faq_col .acc_tit .open::before,
#sec05 .faq_col .acc_tit .open::after {
    content: '';
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: var(--color-base);
}
#sec05 .faq_col .acc_tit .open::after {
    position: absolute;
    top: 50%;
    transform: rotate(90deg) translate(-1px, 1px);
    transition: transform 0.3s;
}
_::-webkit-full-page-media, _:future, :root #sec05 .faq_col .acc_tit .open::after {
    /* Safari */
    transform: rotate(90deg) translate(-1px, 0px);
}
#sec05 .faq_col .acc_tit.active .open {
    background-image: linear-gradient(0deg, rgba(175, 160, 140, 1), rgba(145, 130, 110, 1));
}
#sec05 .faq_col .acc_tit.active .open::before,
#sec05 .faq_col .acc_tit.active .open::after {
    background-color: #fff;
}
#sec05 .faq_col .acc_tit.active .open::after {
    transform: rotate(180deg) translate(1px, 1px);
}
_::-webkit-full-page-media, _:future, :root #sec05 .faq_col .acc_tit.active .open::after {
    /* Safari */
    transform: rotate(180deg) translate(0,1px);
}
#sec05 .faq_col .acc_tit.active+.acc_contents {
    position: relative;
    padding: 0 5rem 2rem;
}
#sec05 .faq_col .acc_contents .icon {
    opacity: 0;
}
#sec05 .faq_col .acc_tit.active+.acc_contents .icon {
    opacity: 1;
}
#sec05 .faq_col .acc_contents {
    padding: 0 5rem;
    line-height: 1.8;
}
#sec05 .faq_col dd .icon {
    top: 40%;
}

@media screen and (max-width: 768px) {
    #sec05 {
        padding: 9vw 0;
    }
    #sec05 .faq_col .icon {
        max-width: max(40px, 7.5vw);
    }
    #sec05 .faq_col .acc_tit {
        padding: 1.25rem 2.75rem 1.25rem 2.5rem;
        font-size: 100%;
    }
    #sec05 .faq_col .acc_tit .open {
        right: 1rem;
        width: min(5.5vw,2rem);
        height: min(5.5vw,2rem);
    }
    #sec05 .faq_col .acc_tit .open::before,
    #sec05 .faq_col .acc_tit .open::after {
        width: 48%;
    }
    #sec05 .faq_col .acc_contents {
        padding: 0 2.75rem;
        font-size: 94%;
    }
    #sec05 .faq_col .acc_tit.active+.acc_contents {
        padding: 0 2.75rem 2rem;
    }
}


/* ---------------------------------------------------
    #sec06
------------------------------------------------------ */
#sec06 {
    padding: 90px 0;
    background-color: #faf5eb;
    text-align: center;
}
#sec06 .cmn_tit {
    display: block;
}
#sec06 p:last-child {
    margin-top: 1rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    #sec06 {
        padding: 9vw 0;
        text-align: left;
    }
    #sec06 .cmn_tit {
        font-size: 155%;
    }
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
[class^="cmn_btn_"] {
    display: block;
    padding: 1rem;
    font-size: 137%;
    color: var(--color-base);
    box-shadow: 0 4px 4px -1px rgba(145, 130, 110, 0.5);
    text-align: center;
    transition: background-image 0.5s, color 0.5s;
}
.cmn_btn_01 {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(250, 245, 235, 1));
}
.cmn_btn_02 {
    color: #fff;
    background-image: linear-gradient(0deg, rgba(175, 160, 140, 1), rgba(145, 130, 110, 1));
}
@media screen and (hover: hover) and (min-width: 769px) {
    [class^="cmn_btn_"]:hover {
        opacity: 1;
    }
    .cmn_btn_01:hover {
        color: #fff;
        background-image: linear-gradient(0deg, rgba(175, 160, 140, 1), rgba(145, 130, 110, 1));
    }
    .cmn_btn_02:hover {
        color: var(--color-base);
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(250, 245, 235, 1));
    }
}

#footer {
    padding-top: 100px;
}
#footer .logo {
    display: block;
    width: min(37.25vw, 596px);
    margin: 0 auto;
}
.ft_image {
    display: flex;
    gap: 10px min(1.25vw, 20px);
    margin-top: 70px;
}
.ft_image>* {
    flex: 1;
}
.ft_image [class^="img_"] .ofi {
    aspect-ratio: 13 / 6;
}
.ft_image .img_1 {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}
.ft_image .img_1 .ofi {
    aspect-ratio: 650 / 621;
}
.ft_image .img_1 ul {
    position: absolute;
    right: min(1.875vw, 30px);
    bottom: min(1.875vw, 30px);
    z-index: 1;
    display: flex;
    gap: 0 1.5vw;
    color: #fff;
}
.ft_image .img_1 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(12vw,120px);
    height: min(12vw,120px);
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(78, 71, 62, 0.2);
    font-size: min(1.85vw,1.15rem);
    line-height: 1;
}
.ft_image .img_1 .md {
    font-size: 110%;
}
.ft_image .img_1 .lg {
    position: relative;
    bottom: -0.25rem;
    font-size: 175%;
    font-weight: 600;
}
.ft_image .img_2 div {
    border-radius: 0.5rem;
    overflow: hidden;
}
.ft_image .img_2 div:last-child {
    margin-top: min(1.25vw, 20px);
}
.ft_add {
    display: flex;
    gap: 1.5vw;
    margin-top: 70px;
}
.ft_add [class^="box_"] {
    flex: 1;
}
.ft_add .cmn_btn_02 {
    margin-top: 1.5vw;
}

.table_wrap {
    margin-top: 1.5vw;
}
.table_wrap table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.table_wrap th,
.table_wrap td {
	vertical-align: middle;
}
.table_wrap th {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-base);
	font-weight: 500;
}
.table_wrap th:first-child {
    width: 33%;
    text-align: left;
}
.table_wrap td {
    padding: 15px 0px;
    border-bottom: 1px solid var(--color-base);
}
.table_wrap .note {
    margin-top: 10px;
}

address {
    text-align: center;
}
.map_wrap {
    position: relative;
    z-index: 1;
    margin-top: 1.5vw;
}
.map_wrap .cmn_btn_01 {
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
    gap: 0 0.75rem;
	padding: 0.6rem;
    font-size: 105%;
    left: 1.5rem;
    top: 1.5rem;
}
.map_wrap .cmn_btn_01::before,
.map_wrap .cmn_btn_01::after {
    content: "";
    display: block;
    transition: background 0.5s;
}
.map_wrap .cmn_btn_01::before {
    width: 1.1rem;
    height: 1.1rem;
    background: url(../img/pin.svg)no-repeat center/contain;
}
.map_wrap .cmn_btn_01::after {
    width: 0.9rem;
    height: 0.9rem;
    background: url(../img/tri_r.svg)no-repeat center/contain;
}
.map_wrap .google_map {
	position: relative;
    width: 100%;
	height: 343px;
    overflow: hidden;
}
.map_wrap .google_map iframe {
	width: 100%;
    max-width: 100%;
    margin-top: calc(-170 / var(--break) * 100vw);
    height: calc(100% + calc(340 / var(--break) * 100vw));
}
#footer .copy {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 90px 0;
    font-size: 90%;
}

@media screen and (hover: hover) and (min-width: 769px) {
    .map_wrap .cmn_btn_01:hover::before {
        background: url(../img/pin_wh.svg)no-repeat center/contain;
    }
    .map_wrap .cmn_btn_01:hover::after {
        background: url(../img/tri_r_wh.svg)no-repeat center/contain;
    }
}
@media (max-width: 768px) {
    [class^="cmn_btn_"] {
        font-size: 115%;
    }
    #footer {
        padding-top: 10vw;
    }
    #footer .logo {
        width: min(90%, 400px);
    }
    .ft_image {
        margin-top: 30px;
    }
    .ft_image .img_1 li {
        border-width: 1px;
        font-size: min(2.4vw, 1rem);
        width: max(60px, 15vw);
        height: max(60px, 15vw);
    }
    .ft_image .img_1 .md {
        font-size: 90%;
    }
    .ft_image .img_1 .lg {
        font-size: 150%;
    }
    .ft_add {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 5vw;
    }
    .ft_add .cmn_btn_02 {
        margin-top: 1rem;
    }
	.map_wrap .cmn_btn_01 {
		left: 10px;
		top: 10px;
		font-size: 100%;
	}
    .map_wrap .google_map {
        height: 240px;
    }
	.map_wrap .google_map iframe{
		margin-top: calc(-150 / var(--break) * 100vw);
		height: calc(100% + calc(300 / var(--break) * 100vw));
	}
    #footer .copy {
        padding: 8vw 0;
        line-height: 1.8;
    }
}
