/* =================================
 Reset / Base
================================= */


/* Reset
---------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

input[type=button],
input[type=submit] {
    -webkit-appearance: none;
}


/* base
---------------------------------------------------------- */

* {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
    overflow: auto;
}

@media screen and (max-width: 767px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

body {
    position: relative;
    z-index: 0;
    width: 100%;
    line-height: 2;
    background-color: #fff;
    color: #665241;
    font-family: "Zen Maru Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    body {
        min-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

img {
    border-style: none;
    display: block;
    vertical-align: bottom;
    width: 100%;
    height: auto;
}

picture {
    display: block;
}

a,
a img,
button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a:link {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:active {
    color: inherit;
}

@media screen and (min-width: 768px) {
    a:hover {
        opacity: 0.8;
    }
}


/* =================================
 common
================================= */


/* device
---------------------------------------------------------- */

.u-only_sp {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .u-only_sp {
        display: block !important;
    }
}

.u-only_pc {
    display: block !important;
}

@media screen and (max-width: 767px) {
    .u-only_pc {
        display: none !important;
    }
}

@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}


/* layout
---------------------------------------------------------- */

.l-cont_l {
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-cont_l {
        max-width: 1320px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .l-cont_l {
        width: calc(100% - 40px);
    }
}

.l-cont_m {
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-cont_m {
        max-width: 1240px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .l-cont_m {
        width: calc(100% - 40px);
    }
}

.l-cont_s {
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-cont_s {
        max-width: 1140px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .l-cont_s {
        width: calc(100% - 40px);
    }
}

.l-cont_ss {
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .l-cont_ss {
        max-width: 980px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .l-cont_ss {
        width: calc(100% - 40px);
    }
}


/* =================================
 header
================================= */

.l-header {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 108px;
    padding: 10px 10px 0 40px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .l-header {
        height: 60px;
        padding: 10px 20px 0;
    }
}

.l-header_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.l-header_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header_logo_img {
    width: 261px;
}

@media screen and (max-width: 767px) {
    .l-header_logo_img {
        width: 180px;
    }
}

.l-header_logo_img a {
    display: block;
}

.l-header_logo_ico {
    width: 130px;
    height: 38px;
    line-height: 1;
    margin-left: 18px;
    padding-top: 10px;
    border-radius: 20px;
    background-color: #05a65d;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .l-header_logo_ico {
        width: 95px;
        height: 30px;
        padding-top: 8px;
    }
}

.l-header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header_contact_tel {
    margin-right: 47px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-header_contact_tel {
        margin-right: 20px;
    }
}

.l-header_contact_tel a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header_contact_tel a img {
    width: 26px;
    margin: 0 16px 0 0;
}

.l-header_contact_tel_num {
    font-family: "Fredoka", sans-serif;
    line-height: 1;
    color: #05a65d;
    font-weight: 500;
    font-size: 58px;
    font-size: 5.8rem;
    letter-spacing: normal;
}

.l-header_contact_mail {
    width: 90px;
    height: 90px;
    margin-right: 9px;
    border-radius: 12px;
    overflow: hidden;
}

.l-header_contact_mail a {
    display: block;
    height: 100%;
    padding-top: 24px;
    background: url(../img/bg_header_contact.webp) center/cover no-repeat;
}

.l-header_contact_mail a img {
    width: 30px;
    margin: 0 auto;
}

.l-header_contact_mail_txt {
    line-height: 1;
    margin-top: 9px;
    color: #b59771;
    font-weight: 700;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.l-header_menu {
    position: relative;
    z-index: 1002;
    width: 90px;
    height: 90px;
    background: url(../img/bg_menu_btn.webp) center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .l-header_menu {
        width: 60px;
        height: 60px;
    }
}

.l-header_menu span {
    position: absolute;
    z-index: 0;
    left: 50%;
    width: 28px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

@media screen and (max-width: 767px) {
    .l-header_menu span {
        width: 25px;
    }
}

.l-header_menu span:nth-child(1) {
    top: 28px;
}

@media screen and (max-width: 767px) {
    .l-header_menu span:nth-child(1) {
        top: 19px;
    }
}

.l-header_menu span:nth-child(2) {
    top: 40px;
}

@media screen and (max-width: 767px) {
    .l-header_menu span:nth-child(2) {
        top: 27px;
    }
}

.l-header_menu_txt {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 24px;
    width: 100%;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .l-header_menu_txt {
        bottom: 14px;
        font-size: 10px;
        font-size: 1rem;
    }
}

.l-header_menu.active span {
    top: 32px;
}

@media screen and (max-width: 767px) {
    .l-header_menu.active span {
        top: 23px;
    }
}

.l-header_menu.active span:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.l-header_menu.active span:nth-child(2) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}

.l-header_gnav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    padding: 0 0 0 40px;
    background-color: #fdfdf7;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    pointer-events: none;
}

@media screen and (min-width: 768px) {
    .l-header_gnav {
        max-width: 620px;
    }
}

@media screen and (max-width: 767px) {
    .l-header_gnav {
        width: 100%;
        padding: 0 0 0 20px;
    }
}

.l-header_gnav.open {
    right: 0;
    opacity: 1;
    pointer-events: inherit;
}

.l-header_gnav_scroll {
    height: 100vh;
}

.l-header_gnav_scroll [data-simplebar] {
    z-index: 0;
}

.l-header_gnav .simplebar-content {
    padding: 110px 100px 120px 0 !important;
}

@media screen and (max-width: 767px) {
    .l-header_gnav .simplebar-content {
        padding: 80px 20px 140px 0 !important;
    }
}

.l-header_gnav .simplebar-track {
    background: #05a65d;
}

.l-header_gnav .simplebar-track.simplebar-vertical {
    width: 3px;
}

.l-header_gnav .simplebar-track .simplebar-scrollbar::before {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 3px;
    background: #05a65d;
}

.l-header_gnav .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

.l-header_gnav_list li {
    border-bottom: 1px dashed #05a65d;
}

.l-header_gnav_list li a {
    display: block;
    line-height: 1.6;
    padding: 15px 0;
    font-weight: 700;
    color: #05a65d;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_list li a {
        padding: 10px 0;
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.l-header_gnav_btm {
    margin: 40px auto 0;
}

@media screen and (min-width: 768px) {
    .l-header_gnav_btm {
        width: 90%;
        max-width: 390px;
    }
}

.l-header_gnav_btm_tel,
.l-header_gnav_btm_mail {
    width: 100%;
    height: 85px;
    border-radius: 55px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_btm_tel,
    .l-header_gnav_btm_mail {
        height: 75px;
    }
}

.l-header_gnav_btm_tel a,
.l-header_gnav_btm_mail a {
    height: 100%;
}

.l-header_gnav_btm_tel a {
    display: block;
    padding-top: 14px;
    background: url(../img/bg_info_tel.webp) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_btm_tel a {
        padding-top: 10px;
    }
}

.l-header_gnav_btm_tel_txt {
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_btm_tel_txt {
        margin-bottom: 8px;
    }
}

.l-header_gnav_btm_tel_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.l-header_gnav_btm_tel_link img {
    width: 20px;
    margin: 0 10px 0 0;
}

.l-header_gnav_btm_tel_link_num {
    font-family: "Fredoka", sans-serif;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: normal;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_btm_tel_link_num {
        font-size: 32px;
        font-size: 3.2rem;
    }
}

.l-header_gnav_btm_mail {
    margin-top: 20px;
}

.l-header_gnav_btm_mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 4px;
    background: url(../img/bg_info_form.webp) center/cover no-repeat;
}

.l-header_gnav_btm_mail a img {
    width: 30px;
    margin: 0 15px 0 0;
}

.l-header_gnav_btm_mail_txt {
    line-height: 1;
    color: #b59771;
    font-weight: 700;
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    .l-header_gnav_btm_mail_txt {
        font-size: 20px;
        font-size: 2rem;
    }
}

.l-header.scroll-in .l-header_menu {
    position: fixed;
    top: 10px;
    right: 20px;
}


/* =================================
 footer
================================= */

.l-footer_main {
    position: relative;
    z-index: 0;
    padding: 16px 0 142px;
    background: url(../img/bg_footer.webp) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
    .l-footer_main {
        padding: 10px 0 70px;
    }
}

.l-footer_main::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 432px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
}

@media screen and (max-width: 767px) {
    .l-footer_main::before {
        height: 200px;
    }
}

.l-footer_grid {
    padding-top: 80px;
}

@media screen and (min-width: 768px) {
    .l-footer_grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_grid {
        padding-top: 40px;
    }
}

.l-footer_grid_left_logo {
    width: 260px;
}

.l-footer_grid_left_add {
    line-height: 1.8;
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_left_add {
        margin-top: 20px;
    }
}

.l-footer_grid_left_tel {
    margin-top: 29px;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_left_tel {
        margin-top: 20px;
    }
}

.l-footer_grid_left_tel a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-footer_grid_left_tel a img {
    width: 18px;
    margin: 4px 6px 0 0;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_left_tel a img {
        width: 12px;
        margin: 2px 4px 0 0;
    }
}

.l-footer_grid_left_tel_num {
    line-height: 1;
    color: #009552;
    font-family: "Fredoka", sans-serif;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: -0.03em;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_left_tel_num {
        font-size: 26px;
        font-size: 2.6rem;
    }
}

@media screen and (min-width: 768px) {
    .l-footer_grid_right {
        width: 47%;
        max-width: 600px;
    }
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
    .l-footer_grid_right {
        width: 55%;
        max-width: unset;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_grid_right {
        margin-top: 30px;
    }
}

.l-footer_grid_right_tbl {
    width: 100%;
    line-height: 1;
    border-top: 1px solid #bfa772;
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
    .l-footer_grid_right_tbl {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.l-footer_grid_right_tbl tr {
    border-bottom: 1px solid #bfa772;
}

.l-footer_grid_right_tbl th,
.l-footer_grid_right_tbl td {
    padding: 15px 0;
    text-align: center;
}

@media screen and (max-width: 1440px) {
    .l-footer_grid_right_tbl th,
    .l-footer_grid_right_tbl td {
        padding: 10px 0;
    }
}

.l-footer_grid_right_tbl th {
    width: 10%;
    font-weight: 500;
}

.l-footer_grid_right_tbl th:last-of-type {
    width: 15%;
}

.l-footer_grid_right_tbl td {
    color: #c09932;
}

.l-footer_grid_right_tbl_head {
    width: 25%;
    color: #665241 !important;
    font-family: "Fredoka", sans-serif;
    text-align: left !important;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_right_tbl_head {
        padding: 8px 0 8px 5px;
    }
}

.l-footer_grid_right_tbl_txt {
    line-height: 1.5;
    margin-top: 12px;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .l-footer_grid_right_tbl_txt {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.l-footer_map {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .l-footer_map {
        height: 200px;
        border-radius: 12px;
    }
}

.l-footer_map iframe {
    width: 100%;
    height: 100%;
}

.l-footer_copyright {
    line-height: 1;
    margin-top: 50px;
    font-size: 10px;
    font-size: 1rem;
    text-align: right;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    .l-footer_copyright {
        margin-top: 20px;
        font-size: 10px;
        font-size: 1rem;
    }
}

.l-footer_fixed {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .l-footer_fixed {
        padding: 15px 20px 0;
        border-radius: 30px 30px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed {
        height: 60px;
    }
}

.l-footer_fixed.hide {
    opacity: 0;
    pointer-events: none;
}

@media screen and (min-width: 768px) {
    .l-footer_fixed_cont {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1101px) {
    .l-footer_fixed_logo {
        width: 261px;
    }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_logo {
        width: 190px;
    }
}

.l-footer_fixed_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 1101px) {
    .l-footer_fixed_inner {
        width: 670px;
    }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_inner {
        width: 530px;
    }
}

.l-footer_fixed_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 80px);
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_block {
        width: calc(100% - 60px);
    }
}

.l-footer_fixed_tel,
.l-footer_fixed_mail {
    width: 290px;
}

@media screen and (min-width: 768px) {
    .l-footer_fixed_tel,
    .l-footer_fixed_mail {
        border-radius: 35px;
        overflow: hidden;
    }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_tel,
    .l-footer_fixed_mail {
        width: 49%;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_tel,
    .l-footer_fixed_mail {
        width: 50%;
    }
}

.l-footer_fixed_tel a,
.l-footer_fixed_mail a {
    height: 70px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_tel a,
    .l-footer_fixed_mail a {
        height: 60px;
    }
}

.l-footer_fixed_tel a {
    display: block;
    padding-top: 12px;
    background-image: url(../img/bg_info_tel.webp);
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_tel a {
        padding-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_tel a {
        padding-top: 20px;
    }
}

.l-footer_fixed_tel_ttl {
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_tel_ttl {
        font-size: 10px;
        font-size: 1rem;
    }
}

.l-footer_fixed_tel_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.l-footer_fixed_tel_cont img {
    width: 16px;
    margin: 0 8px 0 0;
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_tel_cont img {
        width: 12px;
        margin: 0 6px 0 0;
    }
}

.l-footer_fixed_tel_num {
    line-height: 1;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: normal;
}

@media screen and (max-width: 1100px) {
    .l-footer_fixed_tel_num {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

.l-footer_fixed_mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(../img/bg_info_form.webp);
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_mail a {
        padding-bottom: 3px;
    }
}

.l-footer_fixed_mail a img {
    width: 32px;
    margin: 4px 12px 0 0;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_mail a img {
        width: 28px;
        margin: 4px 10px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_mail a img {
        width: 22px;
        margin: 3px 6px 0 0;
    }
}

.l-footer_fixed_mail_txt {
    line-height: 1;
    color: #b59771;
    font-weight: 700;
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .l-footer_fixed_mail_txt {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_mail_txt {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.l-footer_fixed_pagetop {
    position: relative;
    z-index: 0;
    width: 70px;
    height: 70px;
    background: url(../img/bg_pagetop.webp) center/cover no-repeat;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .l-footer_fixed_pagetop {
        border-radius: 50%;
        overflow: hidden;
    }
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_pagetop {
        width: 60px;
        height: 60px;
    }
}

.l-footer_fixed_pagetop_img {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 29px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .l-footer_fixed_pagetop_img {
        width: 22px;
    }
}

.thanks .l-footer_fixed {
    position: absolute;
    display: block;
}

@media screen and (max-width: 767px) {
    .l-header_logo {
        width: 68.1395vw;
    }
}