﻿@charset "UTF-8";

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, tt, var, b, u, i, center, dl, dt, dd,
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: 16px;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

body {
    background-image: url(../Images/common/background-pc.jpg);
    background-size: auto;
    font-family: "Montserrat", YakuHanJP_Narrow, "Roboto", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 1.6rem;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #454545;
    line-height: 1.8;
    letter-spacing: 0.1em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

    overflow-x: hidden;
    transform-origin: top center;
    animation: loading 1.5s;
}
@media (max-width: 959px) {
    body {
        font-size: 1.5rem;
    }
}
@media (max-width: 559px) {
    body {
        background-image: url(../Images/common/background-sp.jpg);
        font-size: 1.4rem;
    }
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

::-moz-selection {
    background: #8B8B8B;
    color: #fff;
}

::selection {
    background: #e48cac;
    color: #fff;
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ### ヘッダ ### */
header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: transparent;
    align-items: center;
    padding: 10px 40px;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
}
    header > :first-child {
        margin-right: auto;
    }

    header.change-color {
        background-color: #f8f8f8;
        box-shadow: 0px 8px 5px -5px rgba(0,0,0,0.2);
        opacity: 0.95;
    }

a.header-logo:link,
a.header-logo:visited {
    font-family: SinaryFont;
    font-size: 36px;
    text-decoration: none;
    color: #e48cac;
}

@media (max-width: 959px) {
    header {
        padding: 10px 20px;
        height: 60px;
    }
        header.change-color {
            opacity: 1.0;
        }
    a.header-logo:link,
    a.header-logo:visited {
        font-size: 27px;
    }
}

/* ### フッター ### */
footer {
    background-color: rgb(56, 56, 56);
    margin-top: auto;
    padding: 90px 4% 30px;
    text-align: left;
    color: #ffffff;
    box-sizing: border-box;
}
@media (max-width: 559px) {
    footer {
        padding: 40px 4% 30px;
    }
}

ul.footer-items {
    width: 100%;
}
    ul.footer-items li {
        display: inline-block;
        vertical-align: top;
    }
    ul.footer-items > li:first-child {
        width: 40%;
    }
    ul.footer-items > li:last-child {
        width: 60%;
    }
@media (max-width: 959px) {
    ul.footer-items li {
        width: 100%;
    }
}
@media (max-width: 559px) {
    ul.footer-items > li:first-child,
    ul.footer-items > li:last-child {
        display: block;
        text-align: left;
        width: 100%;
    }
}

/* -- フッターロゴ -- */
.footer-logo {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    text-align: center;
    font-family: SinaryFont;
    font-size: 40px;
    color: #fff;
    height: 60px;
    line-height: 60px;
}
@media (max-width: 559px) {
    .footer-logo {
        margin: 0 auto 20px 0;
        padding: 0 16px;
        font-size: 34px;
        box-sizing: border-box;
    }
}

/* -- フッターメニュー -- */
ul.footer-menu {
    width: 100%;
}
    ul.footer-menu li {
        display: inline-block;
        margin-right: 16px;
        width: auto;
        min-width: 15%;
    }
        ul.footer-menu li a:link,
        ul.footer-menu li a:visited {
            display: inline-block;
            padding: 6px 16px;
            text-align: left;
            text-decoration: none;
            color: #ccc;
            box-sizing: border-box;
        }
@media (max-width: 959px) {
    ul.footer-menu li {
        margin-right: auto;
    }
}
@media (max-width: 559px) {
    ul.footer-menu {
        display: inline-block;
        vertical-align: top;
        width: 48%;
    }
}

ul.footer-sub-menu {
    display: flex;
    width: 100%;
    gap: 0 16px;
}
    ul.footer-sub-menu li {
        display: inline-block;
        width: auto;
    }
        ul.footer-sub-menu li a:link,
        ul.footer-sub-menu li a:visited {
            display: block;
            padding: 6px 16px;
            text-align: center;
            text-decoration: none;
            font-size: 0.8em;
            color: #ccc;
            box-sizing: border-box;
        }
@media (max-width: 959px) {
    ul.footer-sub-menu {
        display: block;
        margin-top: 20px;
        gap: initial;
    }
        ul.footer-sub-menu li {
            display: inline-block;
            width: 50%;
        }
            ul.footer-sub-menu li a:link,
            ul.footer-sub-menu li a:visited {
                text-align: left;
            }
}
@media (max-width: 559px) {
    ul.footer-sub-menu {
        display: inline-block;
        margin-top: 0;
        vertical-align: top;
        width: 50%;
    }
        ul.footer-sub-menu li {
            display: block;
            width: 100%;
        }
}

ul.footer-bottom {
    display: flex;
    margin-top: 50px;
    width: 100%;
}
    ul.footer-bottom li.footer-row-copy {
        margin-right: auto;
        text-align: left;
    }
    ul.footer-bottom li.footer-row-link {
        text-align: right;
    }
@media (max-width: 559px) {
    ul.footer-bottom {
        flex-direction: column;
        margin-top: 10px;
    }
        ul.footer-bottom li {
            display: block;
            width: 100%;
        }
            ul.footer-bottom li.footer-row-copy {
                text-align: center;
                order: 1;
            }

            ul.footer-bottom li.footer-row-link {
                margin: 30px auto;
                text-align: left;
                order: 0;
            }
}

/* -- コピーライト -- */
.copyright {
    font-size: 0.8em;
    color: #ccc;
    letter-spacing: 0px;
}

/* -- SNS -- */
.sns-menu-links a:link,
.sns-menu-links a:visited {
    display: inline-block;
    margin: 0 7px 0 0;
    color: #353535;
    width: auto;
}
.sns-menu-links a i {
    font-size: 40px;
}

.sns-footer-links a:link,
.sns-footer-links a:visited {
    display: inline-block;
    margin: 0 7px;
    color: #fff;
    width: auto;
}
.sns-footer-links a i {
    font-size: 36px;
}

/* ### メイン ### */
#main {
    margin: 0;
    padding: 60px 0 40px;
    box-sizing: border-box;
}

.page-title {
    background-color: rgb(229, 228, 223);
    margin: 20px auto;
    padding: 100px 5%;
    width: 100%;
    box-sizing: border-box;
}

.page-headline {
    position: relative;
    border-bottom: 2px solid #898989;
    padding-bottom: 10px;
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    color: #676767;
}
    .page-headline:before {
        position: absolute;
        bottom: -2px;
        background: rgb(216, 130, 155);
        content: '';
        height: 2px;
        width: 10%;
    }
@media (max-width: 559px) {
    .page-headline {
        font-size: 20px;
    }
        .page-headline:before {
            width: 20%;
        }
}

section {
    display: block;
    margin: 50px auto;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 559px) {
    section {
        margin: 50px auto 30px;
    }
}

.section-main {
    padding: 80px 10%;
    box-sizing: border-box;
}
@media (max-width: 559px) {
    .section-main {
        padding: 50px 7%;
    }
}

article {
    margin: 50px 5%;
    box-sizing: border-box;
}

/* パンくずリスト */
.breadcrumb-wrap {
    margin: 10px auto;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

ul.breadcrumb-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
    ul.breadcrumb-nav li {
        font-size: 0.9em;
    }
    ul.breadcrumb-nav li:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: 0.7em;
        content: '\f054';
        margin: 0 15px;
        color: #898989;
    }
    ul.breadcrumb-nav li:first-child:before {
        display: none;
    }
        ul.breadcrumb-nav li a:link,
        ul.breadcrumb-nav li a:visited {
            font-size: 0.95em;
        }
        ul.breadcrumb-nav li a:hover {
            text-decoration: underline;
        }
        ul.breadcrumb-nav li sup {
            vertical-align: initial;
            font-size: initial;
        }

.box {
    display: block;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 auto;
    padding: 30px 40px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    box-shadow: 8px 8px 5px -5px rgba(0,0,0,0.2);
}
@media (max-width: 559px) {
    .box {
        padding: 25px 30px;
    }
}

/* ### 共通一般 ### */
.alignLeft {
    text-align: left;
}

.alignRight {
    text-align: right;
}

.alignCenter {
    text-align: center;
}

a:link,
a:visited {
    text-decoration: none;
    color: #565656;
}

a.link-blue:link,
a.link-blue:visited {
    color: #1A0DAB;
}


.dash {
    letter-spacing: -2px;
    margin: 0 5px;
}

/* ### PC/スマホ 表示切替 ### */
.pc-only-view {
    display: inline-block;
}
@media (max-width: 959px) {
    .pc-only-view {
        display: none;
    }
}

.sp-only-view {
    display: none;
}
@media (max-width: 959px) {
    .sp-only-view {
        display: inline-block;
    }
}

/* ### 改行 ### */
.br-pc {
    display: block;
}
.br-sp {
    display: inline-block;
}
@media (max-width: 559px) {
    .br-pc {
        display: none;
    }
    .br-sp {
        display: block;
    }
}

/* ### 見出し ### */
h1 {
    margin: 0 auto;
    font-weight: 500;
    font-size: 32px;
    color: #565656;
    line-height: 1.0em;
}
@media (max-width: 959px) {
    h1 {
        font-size: 22px;
    }
}

h2 {
    display: inline-flex;
    align-items: center;
    font-size: 0.9em;
    letter-spacing: 1px;
}
    h2:before {
        border-top: 1px solid;
        margin-right: 0.5em;
        content: "";
        width: 3em;
    }

h3 {
    display: inline-flex;
    align-items: center;
    margin: 5px auto;
    font-size: 1.0em;
    letter-spacing: 1px;
}

/* ### ホバーアニメーション ### */
.line {
    position: relative;
    padding-bottom: 3px;
}
    .line::before {
        position: absolute;
        left: 0;
        bottom: 0;
        background: rgb(216, 130, 155);
        margin: auto;
        content: '';
        width: 100%;
        height: 2px;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    .line:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }

/* ### フェードイン ### */
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
  .fadein-left{
      transform: translate(-30px,0);
  }
  .fadein-right{
      transform: translate(30px,0);
  }
  .fadein-up{
      transform: translate(0,-30px);
  }
  .fadein-bottom{
      transform: translate(0,30px);
  }
  .scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }

/* ### フォント ### */
.BoldBlack {
    font-weight: bold;
    color: #151515;
}

.BoldRed {
    font-weight: bold;
    color: crimson;
}

.BoldBlue {
    font-weight: bold;
    color: mediumblue;
}

.BoldGreen {
    font-weight: bold;
    color: darkgreen;
}

.BoldGray {
    font-weight: bold;
    color: #8B8B8B;
}

/* ### シナリーフォント ### */
@font-face {
    font-family: SinaryFont;
    src: url('SINARY-Regular.eot');
}

@font-face {
    font-family: SinaryFont;
    src: url('SINARY-Regular.woff') format('woff');
}

@font-face {
    font-family: SinaryFont;
    src: url('SINARY-Regular.woff2') format('woff2');
}

@font-face {
    font-family: SinaryFont;
    src: url('SINARY-Regular.ttf') format('truetype');
}

/* ### リスト ### */
ul {
    list-style: none;
    letter-spacing: -1em;
}
    ul li {
        vertical-align: top;
        letter-spacing: 0em;
    }

dl {
    list-style: none;
    letter-spacing: -1em;
}
    dl dt, dl dd {
        vertical-align: top;
        letter-spacing: 0em;
    }

select {
    border: 1px solid #aeaeae;
    margin: 0 auto;
    padding: 7px 10px;
    font-family: 'Yu Gothic';
    font-size: 1.0em;
    box-sizing: border-box;
}
    select:focus,
    select:hover {
        cursor: pointer;
        outline: 0;
    }

/* ### テーブル ### */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-word;
}
    table th,
    table td {
        vertical-align: top;
        text-align: center;
        font-weight: normal;
        color: #565656;
    }
    table th {
        padding: 10px;
    }
@media (max-width: 559px) {
    table:not(.nobreak, .ui-datepicker-calendar) th,
    table:not(.nobreak, .ui-datepicker-calendar) td {
        display: block;
        width: 100%;
    }
    table:not(.nobreak, .ui-datepicker-calendar) th {
        padding: 10px 0 0;
    }
}

@media (max-width: 959px) {
    .scroll-wrap {
        display: block;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
        .scroll-wrap:before {
            font-family: "Font Awesome 5 Free";
            font-weight: bold;
            font-size: 0.75rem;
            color: #333C5E;
            content: "横にスクロールできます\00A0\f105";
            letter-spacing: 1px;
        }

        .scroll-wrap table {
            cursor: grab;
        }
            .scroll-wrap table:active {
                cursor: grabbing;
            }
            .scroll-wrap table.nobreak {
                min-width: 1580px;
            }
}

/* ### input ### */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"],
textarea {
    margin: 7px auto;
    border: 1px solid #aeaeae;
    font-size: 1.0em;
    font-family: sans-serif;
    outline: none;
    -webkit-transition: background 0.2s linear;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background 0.2s linear;
    width: 100%;
}
    input[type="text"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border: 1px solid rgb(216, 130, 155);
    }

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"] {
    padding: 0 10px;
    height: 38px;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
}
    input[type="text"]:-moz-read-only,
    input[type="number"]:-moz-read-only,
    input[type="tel"]:-moz-read-only,
    input[type="password"]:-moz-read-only,
    input[type="email"]:-moz-read-only {
        background: none;
        border: none;
    }
    input[type="text"]:read-only,
    input[type="number"]:read-only,
    input[type="tel"]:read-only,
    input[type="password"]:read-only,
    input[type="email"]:read-only {
        background: none;
        border: none;
    }

input[type="submit"] {
    padding: 8px 10px;
    font-family: "Montserrat", YakuHanJP_Narrow, "Roboto", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
}

input[type="checkbox"] {
    position: relative;
    top: 2px;
    background: #fff;
    border: 1px solid #151515;
    border-radius: 0;
    margin-right: 20px;
    height: 17px;
    width: 17px;
    cursor: pointer;
}
    input[type="checkbox"] + label {
        cursor: pointer;
    }

input[type="radio"] {
    position: relative;
    top: 2px;
    background: #fff;
    border: 1px solid #151515;
    margin-right: 5px;
    height: 17px;
    width: 17px;
}

input[type="text"].textbox-half {
    width: 50%;
}
input[type="text"].textbox-quarter {
    width: 25%;
}
@media (max-width: 559px) {
    input[type="text"].textbox-half,
    input[type="text"].textbox-quarter {
        width: 100%;
    }
}

textarea {
    padding: 5px 10px;
    resize: none;
    min-height: 100px;
    box-sizing: border-box;
}

::placeholder {
    color: #acacac;
}

/* 必須マーク */
.required-mark {
    color: rgb(193, 0, 0);
}

/* ### ボタン ### */
.btn-area-center {
    text-align: center;
    box-sizing: border-box;
}
    .btn-area-center a {
        margin: 0 20px;
    }
.btn-area-left {
    text-align: left;
    box-sizing: border-box;
}
.btn-area-right {
    text-align: right;
    box-sizing: border-box;
}
@media (max-width: 959px) {
    .btn-area-center,
    .btn-area-left,
    .btn-area-right {
        margin: 20px auto;
        text-align: center;
    }
        .btn-area-center a,
        .btn-area-left a,
        .btn-area-right a {
            margin-bottom: 15px;
        }
}

.btn {
    display: inline-block;
    background: none;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    color: #565656;
    box-sizing: border-box;
    transition: 0.3s;
    cursor: pointer;
}

.btn-circle {
    position: relative;
    border: 1px solid #565656;
    border-radius: 50px;
    padding: 8px 10px;
    width: 220px;
    overflow: hidden;
    z-index: 10;
}
    .btn-circle:before {
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgb(227, 141, 169);
        content: '';
        width: 0;
        height: 100%;
        transition: all 0.6s ease 0s;
        z-index: -1;
    }
    .btn-circle:hover {
        border: 1px solid rgb(227, 141, 169);
        color: #fff;
    }
    .btn-circle:hover::before {
        width: 100%;
    }

.btn-circle-action {
    background-color: rgb(227, 141, 169);
    border: 1px solid rgb(227, 141, 169);
    border-radius: 50px;
    padding: 8px 10px;
    color: #ffffff;
    width: 220px;
    transition: 0.3s;
}
    .btn-circle-action:hover {
        background-color: rgb(227, 100, 141);
        box-shadow: 6px 8px 4px -5px rgba(0,0,0,0.3);
    }

.btn-arrow-more {
    display: inline-block;
    content: url("../Images/common/btn-arrow-more-off.png");
    max-width: 220px;
    transition: 0.3s;
}
    .btn-arrow-more:hover {
        content: url("../Images/common/btn-arrow-more-on.png");
    }
@media (max-width: 559px) {
    .btn-arrow-more {
        max-width: 150px;
    }
}

.btn-arrow-all {
    display: inline-block;
    content: url("../Images/common/btn-arrow-all-off.png");
    max-width: 220px;
    transition: 0.3s;
}
    .btn-arrow-all:hover {
        content: url("../Images/common/btn-arrow-all-on.png");
    }
@media (max-width: 559px) {
    .btn-arrow-all {
        max-width: 150px;
    }
}

.btn-print {
    display: inline-block;
    border: 1px solid rgb(216, 130, 155);
    padding: 5px 10px;
    font-size: 0.8em;
    box-sizing: border-box;
}

/* ### 見出し帯 ### */
.heading-band-left-image {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 1;
}
    .heading-band-left-image img {
        max-width: 600px;
    }
@media (max-width: 959px) {
    .heading-band-left-image img {
        max-width: 350px;
    }
}
@media (max-width: 559px) {
    .heading-band-left-image {
        top: -40px;
    }
        .heading-band-left-image img {
            max-width: 200px;
        }
}

.back-gray-left {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(229, 228, 223);
    height: 350px;
    width: 85%;
    z-index: -1;
}
@media (max-width: 559px) {
    .back-gray-left {
        height: 180px;
        width: 70%;
    }
}

.back-gray-right {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(229, 228, 223);
    height: 310px;
    width: 70%;
    z-index: -1;
}
@media (max-width: 559px) {
    .back-gray-right {
        height: 370px;
        width: 80%;
    }
}

/* ### 上へ戻るボタン ### */
.pagetop {
    position: fixed;
    right: 3%;
    bottom: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
}
@media (max-width: 559px) {
    .pagetop {
        right: 5px;
        bottom: 30px;
        font-size: 1.2rem;
    }
}

.pagetop a {
    position: relative;
    display: block;
    padding: 0;
    text-decoration: none;
    transition: 0.5s;
}
    .pagetop a:hover {
        transform: translateY(-5px);
        opacity: 0.7;
    }
    .pagetop a img {
        width: 25px;
    }
@media (max-width: 559px) {
    .pagetop a img {
        width: 20px;
    }
}

.pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

/* ### アンカー ### */
.anchor {
    padding-top: 80px;
    margin-top: -80px;
}

/* ### エラーメッセージ ### */
.error-msg {
    color: rgb(193, 0, 0);
}

.error-msg-area {
    margin: 40px auto;
    padding-left: 2.3em;
    text-indent: -2.2em;
    font-weight: bold;
    color: rgb(193, 0, 0);
}
    .error-msg-area::before {
        position: relative;
        top: 3px;
        display: inline-block;
        background-image: url('../Images/Common/error-icon.png');
        background-position: center;
        background-size: contain;
        margin-right: 1.0em;
        content: "";
        height: 19px;
        width: 19px;
    }
    .error-msg-area p {
        display: inline-block;
    }

/* ### CONTACT ### */
ul.contact-items {
    display: flex;
    margin: 30px auto 0;
    width: 100%;
    max-width: 1200px;
}
    ul.contact-items li {
        display: inline-block;
        padding: 0 10px;
        vertical-align: top;
        text-align: center;
        height: 245px;
        width: calc(100% / 3);
        box-sizing: border-box;
    }
        ul.contact-items li > div {
            border: 1px solid #898989;
            padding: 60px 16px;
            height: 100%;
            box-sizing: border-box;
        }
        ul.contact-items li a:link,
        ul.contact-items li a:visited {
            display: inline-block;
            text-decoration: none;
        }
@media (max-width: 959px) {
    ul.contact-items {
        width: 80%;
    }
}
@media (max-width: 559px) {
    ul.contact-items {
        flex-direction: column;
        width: 100%;
    }
    ul.contact-items li {
        display: block;
        margin: 7px auto;
        width: 85%;
    }
        ul.contact-items li > div {
            padding: 50px 16px;
        }
        ul.contact-items li.free-dial {
            order: 1;
        }
        ul.contact-items li.faq {
            order: 0;
        }
        ul.contact-items li.members {
            order: 2;
        }
}

div.contact-heading {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.4em;
    color: #686868;
    letter-spacing: 2px;
}
@media (max-width: 559px) {
    div.contact-heading {
        font-weight: 500;
        font-size: 1.1em;
        color: #343434;
    }
}

div.contact-tel a:link,
div.contact-tel a:visited {
    font-size: 1.6em;
    color: #565656;
}
@media (max-width: 559px) {
    div.contact-tel a:link,
    div.contact-tel a:visited {
        font-size: 1.4em;
    }
}

div.contact-recep-hour {
    font-size: 13px;
}
@media (max-width: 559px) {
    div.contact-recep-hour {
        font-size: 13px;
    }
}

a.link-members:link,
a.link-members:visited {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 1.4em;
    letter-spacing: 0;
    width: 100%;
    max-width: 270px;
}
a.link-members:after {
    font-family: "Font Awesome 5 Free";
    font-size: 0.9em;
    font-weight: 600;
    content: '\00a0\f35d';
}

.link-tips {
    font-size: 14px;
}
@media (max-width: 559px) {
    .link-tips {
        font-size: 13px;
    }
}