@charset "utf-8";

@font-face {
    font-family: "MyYuGothicM";
    font-weight: normal;

    src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
    /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
    font-family: "MyYuGothicM";
    font-weight: bold;

    src: local("YuGothic-Bold"), local("Yu Gothic");
    /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
/* ==========================================================================
   Base
========================================================================== */
html {
    font-size: 62.5%;
}
body {
    letter-spacing: 0;

    color: #1e1e1e;

    font-family: MyYuGothicM, YuGothic, sans-serif;
    font-size: 16px;
    /* font-weight: 200; */
    line-height: 1.8;
}

.inner {
    width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.all-wrap {
    display: block;

    min-width: 1366px;
}
main {
    position: relative;
    min-height: 100vh;
}

.is-hidden {
    display: none !important;
}
@media print, screen and (max-width: 768px) {
    body.fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .inner {
        width: 90vw;
        margin: 0 auto;
        padding: 0 5vw;
    }

    .all-wrap {
        min-width: 100%;
    }
}

/* text
========================================================================== */
.tb-rl {
    -ms-writing-mode: tb-rl;

    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* link
========================================================================== */
a {
    display: inline-block;

    /* transition: 0.3s ease-in-out; */
    text-decoration: none;

    color: #1e1e1e;
}

a:hover {
    opacity: 0.7;
}
a img {
    transition: 0.5s ease-in-out;
}
a:hover img {
    opacity: 0.6;
}

/* button
========================================================================== */
.btn {
    position: relative;

    overflow: hidden;

    cursor: pointer;
}
.btn::after {
    position: absolute;

    content: "";

    background-repeat: no-repeat;

    /*display: block;*/
    background-position: 100% 50%;
    background-size: auto 100%;
}

.btn .thick {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    height: 100%;

    transition: 0.3s ease-in-out;

    border: 1px solid #b7975a;
    background-color: #b7975a;
}
.btn:hover .thick {
    /* background-color: #fff; */
    opacity: 0.6;
}
/* 角のヘベル */
.btn .thick:before,
.btn .thick:after,
.btn .circle:before,
.btn .circle:after {
    position: absolute;

    display: block;

    width: 14px;
    height: 14px;

    content: "";

    border: 1px solid #b7975a;
    border-radius: 50%;
    background-color: #ffffff;
}
.btn.bg-white .thick:before,
.btn.bg-white .thick:after,
.btn.bg-white .circle:before,
.btn.bg-white .circle:after {
    background-color: #ffffff;
}
.btn.bg-beige .thick:before,
.btn.bg-beige .thick:after,
.btn.bg-beige .circle:before,
.btn.bg-beige .circle:after {
    background-color: #fcf8f0;
}
.btn.bg-gray .thick:before,
.btn.bg-gray .thick:after,
.btn.bg-gray .circle:before,
.btn.bg-gray .circle:after {
    background-color: #f7f7f7;
}
.btn .thick:before {
    top: -8px;
    left: -8px;
}
.btn .thick:after {
    top: -8px;
    right: -8px;
}
.btn .circle:before {
    right: -8px;
    bottom: -8px;
}
.btn .circle:after {
    bottom: -8px;
    left: -8px;
}

.btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.btn-s {
    width: 251px;
    height: 50px;

    transition: 0.3s ease-in-out;
}

.btn-s::after {
    top: 0;
    bottom: 0;
    right: 12.6px;

    margin: auto 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);

    transition: 0.3s ease-in-out;
}

.btn-s a {
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
}

.btn-m {
    width: 498px;
    height: 50px;

    background-image: url(../images/btn-m_bg.svg);
    background-repeat: no-repeat;

    /*background-size: cover;*/
    background-size: contain;
}
.btn-m::after {
    top: 37%;
    right: 12.6px;

    width: 6.8px;
    height: 13.6px;

    background-image: url(../images/arrow_s.svg);
}
.btn-m a {
    font-size: 16px;
    line-height: 1.8;
    /*padding: 14px 0 15px;*/
    /*border: 1px solid #B7975A;*/
}

.btn-l {
    height: 95.59px;

    transition: 0.3s ease-in-out;

    /*width: 463.97px;*/

    border: 1px solid #b7975a;
}

.btn-l::after {
    top: 0;
    right: 29.7px;
    bottom: 0;

    margin: auto 0;
    width: 18px;
    height: 18px;
    border-top: 1px solid #b7975a;
    border-right: 1px solid #b7975a;
    transform: rotate(45deg);

    transition: 0.3s ease-in-out;
}
.btn-l:hover {
    background-color: #b7975a;
}
.btn-l:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.btn-l a {
    justify-content: flex-start;

    font-size: 25px;
    line-height: 2.08;
}
.btn-l:hover a {
    opacity: 1;
    color: #ffffff;
}

.btn-l a::before {
    width: 39.2px;

    content: "";
}
@media print, screen and (max-width: 768px) {
    .btn-s {
        width: 53.3vw;
        height: 10.6vw;
    }
    .btn-s::after {
        right: 12.6px;
    }
    .btn-s a {
        font-size: 14px;
    }

    .btn-m {
        width: 53vw;
        height: 10.6vw;

        background-image: url(../images/btn-s_bg.svg);
        background-size: cover;
    }
    .btn-m::after {
        top: 37%;
        right: 12.6px;

        width: 6.8px;
        height: 13.6px;

        background-image: url(../images/arrow_s.svg);
    }
    .btn-m a {
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-l {
        height: 10.6vw;
    }
    .btn-l::after {
        right: 3vw;

        width: 2.6vw;
        height: 2.6vw;
    }
    .btn-l a {
        font-size: 14px;
    }

    .btn-l a::before {
        width: 5vw;
    }
}

.anc-s {
    height: 44px;

    border: 1px solid #707070;
}

.anc-s::after {
    right: 12.8px;

    width: 13.6px;
    height: 6px;

    top: 35%;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #b7975a;
    border-right: 1px solid #b7975a;
    transform: rotate(45deg);

    transition: 0.3s ease-in-out;
}
.anc-s:hover::after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.anc-s a {
    justify-content: flex-start;

    font-size: 20px;
}

.anc-s a::before {
    width: 13.5px;

    content: "";
}
@media print, screen and (max-width: 768px) {
    .anc-s a {
        font-size: 14px;
    }
}

/* img
========================================================================== */
img {
    width: 100%;
    height: auto;

    vertical-align: bottom;
}

/* display
========================================================================== */
.pc {
    display: block;
}
.sp {
    display: none;
}
@media print, screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/* etc
========================================================================== */
.ttl_icn {
    background: url(../images/icn-kamon.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 42px auto;
}

.ttl_hr {
    display: flex;
    align-items: center;
}
.ttl_hr:before,
.ttl_hr:after {
    flex-grow: 1;

    height: 1px;

    content: "";

    background-color: #959595;
}

.ttl_hr:before {
    margin-right: 19.8px;
}

.ttl_hr:after {
    margin-left: 19.8px;
}

.flex-reverse {
    flex-direction: row-reverse;
}

/* ==========================================================================
   header
========================================================================== */
/* 追従にするなら、z-indexは3桁にする（ページ内の追従が別にあるので） */
header {
    z-index: 100;

    padding: 0 60px;

    position: -webkit-sticky;

    position: sticky;
    top: 0;

    background: #ffffff;
}
header .head-inner {
    position: relative;
    z-index: 99;

    display: block;

    height: 80px;
}
header .head-inner.open nav {
    display: none;
}
header .head-inner::before,
header .head-inner::after {
    clear: both;

    content: "";
}
header h1,
header .h-logo {
    float: left;

    margin-top: 13px;
}
header .menu-wrap {
    display: flex;
    justify-content: flex-end;
}
header nav {
    font-family: YuMincho, "Yu Mincho", serif;
    font-size: clamp(1.3rem, 1.24vw, 1.7rem);
    font-weight: 500;
    display: flex;
}

header nav ul {
    display: flex;

    padding: 27.5px 0;
}
header nav ul.lang {
    align-items: center;
    line-height: 1.2;
}
header nav ul.lang li {
    font-size: clamp(1.1rem, 0.95vw, 1.3rem);
}

header nav ul li:not(:last-child) {
    margin-right: 19.5px;

    border-right: 1px solid #3e3e3e;
}
header nav ul li a {
    /*margin-right: 29.5px;*/
    margin-right: 19.5px;
}
header nav ul li:last-child a {
    margin-right: 45px;
}
@media print, screen and (max-width: 768px) {
    header {
        padding: 0 4vw;
    }
    header .head-inner {
        width: 100%;
        height: 13.6vw;
    }

    header h1,
    header .h-logo {
        width: 33.832vw;
        margin-top: 1.8vw;
    }

    header .menu-wrap nav {
        display: none;
    }
}

/* icn-menu
========================================================================== */
header .icn-menu {
    position: relative;

    display: block;

    width: 34px;
    height: 26.37px;
    margin: 26.8px 0;

    cursor: pointer;
}
header .icn-menu span {
    position: absolute;

    width: 100%;
    height: 1px;

    /*left: 50%;*/

    transition: 0.3s ease-in-out;

    border-bottom: 2px solid #1e1e1e;
    background: transparent;
}

header .icn-menu span:nth-child(1) {
    top: 0;
}
header .icn-menu span:nth-child(2) {
    top: 43%;
}
header .icn-menu span:nth-child(3) {
    bottom: 0;
}
header .icn-menu.active span:nth-of-type(1) {
    top: 12px;
    left: 0;

    transform: rotate(-45deg);
}
header .icn-menu.active span:nth-of-type(2) {
    opacity: 0;
}
header .icn-menu.active span:nth-of-type(3) {
    top: 12px;
    left: 0;

    transform: rotate(45deg);
}
@media print, screen and (max-width: 768px) {
    header .icn-menu {
        width: 6.3vw;
        height: 5.2vw;
        margin: 4.1vw 0;
    }
}

/* hamburger-menu
========================================================================== */
header .hamburger-wrap {
    position: absolute;
    z-index: 90;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    min-width: 1366px;
    height: auto;

    /*max-height: 100vh;*/

    background: #fdfdfd;
}

header .hamburger-wrap .inner {
    padding: 136px 0 50px;
    width: 100%;
}
header .hamburger-wrap .hamburger-box {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto;
    position: relative;
    min-width: 774px;
    width: 56.65%;
}
header .hamburger-wrap .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 69.7%;
    /* max-width: 540px; */
    font-family: YuMincho, "Yu Mincho", serif;
}
header .hamburger-wrap .main-nav .title-wrap {
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 4.8%;
}
header .hamburger-wrap .main-nav h4 {
    font-size: clamp(1.7rem, 1.9vw, 2.6rem);
    color: #b7975a;
    display: inline-block;
    background-color: #FFF;
    padding: 0 1em;
    position: relative;
    z-index: 1;
}
header .hamburger-wrap .main-nav h4 span {
    font-size: clamp(1.6rem, 1.6vw, 2.3rem);
}
header .hamburger-wrap .main-nav .menu-line {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: calc(100% - 14px);
    height: 1px;
    margin: auto auto;

    border-top: 1px solid #b7975a;
}
header .hamburger-wrap .main-nav .menu-line::before {
    position: absolute;
    z-index: 10;
    top: -5px;
    left: -7px;

    width: 7.23px;
    height: 9.45px;

    content: "";
    transform: rotateZ(90deg);

    background: url(../images/ttl-line-icn.svg);
    background-repeat: no-repeat;
    background-position: top;
}
header .hamburger-wrap .main-nav .menu-line::after {
    position: absolute;
    z-index: 10;
    top: -5px;
    right: -7px;

    width: 7.23px;
    height: 9.45px;

    content: "";
    transform: rotateZ(270deg);

    background: url(../images/ttl-line-icn.svg);
    background-repeat: no-repeat;
    background-position: top;
}

header .hamburger-wrap .main-nav .menu-box {
    width: 47.3%;
    border: 1px solid #b7975a;
    padding: 0 0 4.5%;
    box-sizing: border-box;
}
header .hamburger-wrap .main-nav .menu-box h5 {
    text-align: center;
    color: #FFF;
    background-color: #b7975a;
    font-size: clamp(1.5rem, 1.53vw, 2.1rem);
}
header .hamburger-wrap .main-nav .menu-box .menu-link {
    margin: 9.7% 11.7% 0;
}
header .hamburger-wrap .main-nav .menu-box.know .menu-link {
    margin: 6.3% 9% 0;
    font-size: clamp(1.5rem, 1.53vw, 2.1rem);
}
header .hamburger-wrap .main-nav .menu-box .menu-link a {
    font-size: clamp(1.5rem, 1.53vw, 2.1rem);
}
header .hamburger-wrap .main-nav .menu-box.know .menu-link a {
    font-size: clamp(1.5rem, 1.46vw, 2.0rem);
}
header .hamburger-wrap .main-nav .menu-box .menu-link a span {
    font-size: clamp(1.0rem, 0.87vw, 1.2rem);
    margin-left: 1em;
}
header .hamburger-wrap .main-nav .menu-box .menu-link ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
header .hamburger-wrap .main-nav .menu-box .menu-link ul li {
    line-height: 1.2;
    margin-bottom: 0.3em;
}
header .hamburger-wrap .main-nav .menu-box .menu-link ul li a {
    font-size: clamp(1.2rem, 1.09vw, 1.5rem);
}
header .hamburger-wrap .main-nav .menu-box .menu-link ul li + li {
    border-left: 1px solid #b7975a;
    margin-left: 0.7em;
    padding-left: 0.7em;
}
header .hamburger-wrap .main-nav .menu-box .menu-link ul li.no-border {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    opacity: 0.4;
}
header .hamburger-wrap .main-nav .menu-box .menu-link.line {
    border-bottom: 1px solid #B7975A;
}
header .hamburger-wrap .main-nav .menu-box.know .menu-link.inquiry {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B7975A;
    width: 23.63%;
    height: 3.3em;
}

header .hamburger-wrap .sub-nav {
    width: 23.63%;
}
header .hamburger-wrap .sub-nav dl.menu01 {
    width: 100%;
}
header .hamburger-wrap .sub-nav dl dt {
    font-size: clamp(1.6rem, 1.75vw, 2.4rem);
    margin-bottom: 1em;
    letter-spacing: 0.08em;
    font-family: YuMincho, "Yu Mincho", serif;
    color: #000;
}
header .hamburger-wrap .sub-nav dl dt img {
    width: 20px;
    vertical-align: middle;
    margin-right: 0.5em;
}
header .hamburger-wrap .sub-nav dl dd {
    line-height: 1.8;;
}
header .hamburger-wrap .sub-nav dl dd + dd {
    margin-top: 1.4em;
    font-size: clamp(1.25rem, 1.1vw, 1.6rem);
}

header .hamburger-wrap .sub-nav dl dd a {
    position: relative;

    width: 100%;

    font-size: clamp(1.25rem, 1.1vw, 1.6rem);
    font-weight: bold;
}
header .hamburger-wrap .sub-nav dl dd a::after {
    position: absolute;
    top: 34%;
    right: 0;

    width: 6px;
    height: 13px;

    content: "";

    background-image: url(../images/arrow_s-black.svg);
    background-repeat: no-repeat;

    /*display: block;*/
    background-position: 100% 50%;
    background-size: auto 100%;
}
header .hamburger-wrap .other-nav {
    margin-left: 211px;
}
header .hamburger-wrap .other-nav li {
    width: 290px;
}
header .hamburger-wrap .other-nav li + li {
    margin-top: 21px;
}
header .hamburger-wrap .other-nav li p {
    margin-top: 11px;

    text-align: center;
}
header .hamburger-wrap .social {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 70.2px;
}

header .hamburger-wrap .social li:not(:last-child) {
    margin-right: 30px;
}
header .hamburger-wrap .social li img {
    height: 32px;
    width: auto;
}
@media print, screen and (max-width: 768px) {
    header .hamburger-wrap {
        min-width: 100%;
        padding-bottom: 5.3vw;
        max-height: 100vh;
        overflow: scroll;
    }

    header .hamburger-wrap .inner {
        width: 100vw;
        padding: 19.8vw 0 24.48vw;
    }
    header .hamburger-wrap .hamburger-box {
        display: block;

        padding: 0;
        min-width: 100%;
        width: 100%;
    }

    header .hamburger-wrap .main-nav {
        width: 100%;
    }
    header .hamburger-wrap .main-nav .title-wrap {
        margin-bottom: 3.1vw;
    }
    header .hamburger-wrap .main-nav h4,
    header .hamburger-wrap .main-nav h4 span {
        font-size: 4.5vw;
        background-color: inherit;
    }
    header .hamburger-wrap .main-nav .menu-line {
        border: none;
        width: 8.5em;
    }

    header .hamburger-wrap .main-nav .menu-box {
        width: 100%;
        border-right: none;
        border-left: none;
        padding: 0;
        box-sizing: border-box;
    }
    header .hamburger-wrap .main-nav .menu-box.know {
        display: flex;
        flex-wrap: wrap;
    }
    header .hamburger-wrap .main-nav .menu-box h5 {
        font-size: 5.3vw;
        padding: 1.5vw 0;
        width: 100%;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link {
        text-align: center;
        border-bottom: 1px solid #B7975A;
        box-sizing: border-box;
        margin: 0;
    }
    header .hamburger-wrap .main-nav .menu-box.know .menu-link {
        margin: 0;
        font-size: 5vw;
        width: 50%;
    }
    header .hamburger-wrap .main-nav .menu-box.know .menu-link:first-of-type,
    header .hamburger-wrap .main-nav .menu-box.know .menu-link:nth-of-type(3),
    header .hamburger-wrap .main-nav .menu-box.know .menu-link:nth-of-type(6),
    header .hamburger-wrap .main-nav .menu-box.know .menu-link:nth-of-type(8) {
        border-right: 1px solid #B7975A;
    }
    header .hamburger-wrap .main-nav .menu-box.know .menu-link:nth-of-type(8) {
        border-bottom: none;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link a {
        width: 100%;
        font-size: 5.3vw;
        padding: 2.8vw 0 1.4vw;
        letter-spacing: -0.01em;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }
    header .hamburger-wrap .main-nav .menu-box.know .menu-link a {
        font-size: 5vw;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link a span {
        display: block;
        font-size:3.7vw;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link ul {
        justify-content: space-between;
        background-color: #F1EADE;
        border-top: 1px dotted #B7975A;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link ul li {
        margin-bottom: 0;
        text-align: center;
        width: calc(100% / 3);
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link ul li a {
        font-size:4.5vw;
        margin-left: 0;
        width: 100%;
        padding: 2.6vw 0 3.2vw;
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link ul li + li,
    header .hamburger-wrap .main-nav .menu-box .menu-link ul li.no-border {
        border-left: 1px dotted #b7975a;
        margin-left: 0;
        padding-left: 0;
        box-sizing: border-box;
        width: calc(100% / 3);
    }
    header .hamburger-wrap .main-nav .menu-box .menu-link.line {
        display: none;
    }
    header .hamburger-wrap .main-nav .menu-box.know .menu-link.inquiry {
        position: relative;
        display: block;
        border: none;
        width: 50%;
        height: auto;
    }

    header .hamburger-wrap .sub-nav {
        width: 100%;
        margin-top: 6.7vw;
    }
    header .hamburger-wrap .sub-nav dl {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    header .hamburger-wrap .sub-nav dl dt {
        font-size: 5.8vw;
        margin-bottom: 5.8vw;
        letter-spacing: 0;
        width: 100%;
        text-align: center;
        background: none;
    }
    header .hamburger-wrap .sub-nav dl dt img {
        width: 5.4vw;
        margin-right: 1.9vw;
    }
    header .hamburger-wrap .sub-nav dl dd,
    header .hamburger-wrap .sub-nav dl dd + dd {
        width: 40.3vw;
        margin-top: 0;
    }
    header .hamburger-wrap .sub-nav dl dd:nth-of-type(n + 3) {
        margin-top: 4.2vw;
    }

    header .hamburger-wrap .sub-nav dl dd a {
        font-size: 3.9vw;
        padding-left: 0;
    }
    header .hamburger-wrap .sub-nav dl dd a::after {
        top: 22%;
    }

    header .hamburger-wrap .social {
        margin-top: 12.2vw;
    }

    header .hamburger-wrap .social li:not(:last-child) {
        margin-right: 8.4vw;
    }
}

/* ==========================================================================
   パンくずリスト
========================================================================== */
.breadcrumb__list {
    width: 1127px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 11;
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
}
.breadcrumb__list li {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}
.breadcrumb__list .breadcrumb__item + .breadcrumb__item::before {
    content: " > ";
    margin: 0 0.25rem;
}
@media print, screen and (max-width: 768px) {
    .breadcrumb__list {
        width: 90vw;
        bottom: 3vw;
    }
    .breadcrumb__list li {
        font-size: 12px;
    }
}

/* ==========================================================================
   footer
========================================================================== */

footer {
    /* margin: 100px 0 0; */
    margin: 0;
    padding: 48.3px 0 26.5px;

    color: #ffffff;
    background: #505050;
}

footer .foot-inner {
    position: relative;

    width: 87.8%;
    max-width: 1200px;
    margin: 0 auto;
}

footer a {
    color: #ffffff;
}

footer .footer-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
}
footer .foot-address h1 img {
    width: 172px;
}
footer .foot-address .contact {
    margin-top: 20px;
}
footer .foot-address .contact a {
    text-decoration: underline;

    font-size: 14px;
}
footer .foot-address address {
    margin-top: 16.5px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.75;
}
footer .foot-address address .tels {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
footer .foot-address address .tels .tel-box {
    display: flex;

    margin-right: 10px;
}
footer .foot-address address .tels .tel-box:last-of-type {
    margin-right: 0;
}

footer .foot-link {
    display: flex;
    justify-content: space-between;

    max-width: 690px;
    width: 57.5%;
    /* margin-left: 120px; */
}
footer .foot-link dl dt {
    margin-bottom: 16px;

    font-size: 15px;
}

footer .foot-link dl dd {
    letter-spacing: 0.1em;

    font-size: 12px;
    line-height: 2;
    line-height: 1.83;
}

footer .foot-link dl dd.child::before {
    content: "-";
}
footer .foot-link dl dd.child a + a::before {
    content: " / ";
}
footer .foot-link dl dd.ryotei + dd.child a:last-of-type {
    opacity: 0.5;
}

footer .social {
    /* position: absolute;
    top: 202px;
    right: 0;
    left: 0; */

    display: flex;
    justify-content: space-around;

    width: 13.925%;
    max-width: 167.1px;
    margin: 3.2% auto 0;
}
footer .social li img {
    height: 23px;
    width: auto;
}

footer .copy {
    margin: 1.1% 0 0;

    text-align: center;
    letter-spacing: 00.01em;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
}
@media print, screen and (max-width: 768px) {
    footer {
        /* margin-top: 26.6vw; */
        padding: 7.1vw 0 0;
    }
    footer .foot-inner {
        width: 100%;
    }
    footer a {
        width: 100%;
    }

    footer .footer-wrap {
        display: block;

        width: 88vw;
        margin: 0 auto;
    }
    footer .foot-address h1 {
        width: 55.288vw;
        margin: 0 auto 3.84vw;

        text-align: center;
    }
    footer .foot-address address {
        /* width: 60vw; */
        margin: 0 auto 6.8vw;

        text-align: center;

        font-size: 12px;
    }
    footer .foot-address address .tels {
        justify-content: center;
    }
    footer .social {
        position: absolute;
        top: 34.8vw;
        left: 0;
        right: 0;

        width: 54.9vw;
        margin: 0 auto;
    }

    footer .foot-link {
        display: block;

        width: 100%;
        margin-left: 0;
        margin-top: 24.6vw;
    }
    footer .foot-link dl {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

        margin-right: 0;
        margin-bottom: 7.3vw;
    }
    footer .foot-link dl dt {
        width: 100%;
        margin-bottom: 2.6vw;

        text-align: center;

        background-color: #606060;

        font-size: 13px;
        line-height: 2;
    }

    footer .foot-link dl dd {
        width: 47.2%;

        letter-spacing: 0;

        border-bottom: 1px solid #ffffff;

        font-size: 15px;
        line-height: 2.4;
    }
    footer .foot-link dl dd.long {
        width: 100%;
        text-align: center;
    }
    footer .foot-link dl dd.online_store {
        border-bottom-style: dotted;
    }
    footer .foot-link dl dd.child {
        width: 100%;
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        margin-bottom: 2vw;
    }
    footer .foot-link dl dd.child a {
        display: inline-block;
        width: 26.4vw;
        border-bottom: 1px solid #FFF;
        text-align: center;
    }

    footer .foot-link dl dd.child::before,
    footer .foot-link dl dd.child a + a::before {
        display: none;
    }

    footer .copy {
        margin: 7.3vw 0 0;
        padding-bottom: 7.3vw;

        text-align: center;

        font-size: 12px;
        font-weight: 700;
    }
}
