@charset "UTF-8";
/* --------------------------------------------------------------- */
/* CSSカスタムプロパティ */
/* --------------------------------------------------------------- */
:root {
    --scrollbar: 0px;
    --100vw: 100vw;
    --vw: calc(var(--100vw) / 100);
    --theme-color: #e5915a;
    --accent-color: #93c562;
    --light-color: #f3f7ff;
    --light-accent-color: #fffaeb;
    --roboto-condensed: "Roboto Condensed", sans-serif;
}

@media print {
    :root {
        --100vw: 1920px !important;
    }
}
/* --------------------------------------------------------------- */
/* common-btn */
/* --------------------------------------------------------------- */
/* type01 */
.common-btn.type01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 235px;
    height: 54px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background-color: var(--theme-color);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    transition: ease 0.2s opacity, ease 0.2s box-shadow;
}
@media screen and (max-width: 767px) {
    .common-btn.type01 {
        width: 180px;
        height: 44px;
        font-size: 14px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .common-btn.type01:hover {
        opacity: 0.5;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    }
}
.common-btn.type01::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .common-btn.type01::after {
        width: 6px;
        height: 6px;
    }
}

/* --------------------------------------------------------------- */
/* common-title */
/* --------------------------------------------------------------- */
/* type01 */
/* type02 */
.common-title.type02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 253px;
    background-color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-title.type02 {
        height: 100px;
    }
}
.common-title.type02::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/common-title-type02-bg.png);
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
}
.common-title.type02 h1,
.common-title.type02 p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.08em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .common-title.type02 h1,
    .common-title.type02 p {
        font-size: 18px;
    }
}
.common-title.type02 h1::after,
.common-title.type02 p::after {
    content: "";
    display: block;
    margin-top: 16px;
    width: 60px;
    height: 3px;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .common-title.type02 h1::after,
    .common-title.type02 p::after {
        margin-top: 12px;
        width: 44px;
        height: 2px;
    }
}

#topicpath {
    padding-top: 14px;
}
#topicpath ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
#topicpath ol li {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 28px;
    text-align: left;
    color: #434343;
    white-space: nowrap;
}
#topicpath ol li:not(:first-child) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 8px;
}
#topicpath ol li:not(:first-child)::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 6px;
    height: 6px;
    border-top: solid 1px var(--theme-color);
    border-right: solid 1px var(--theme-color);
    transform: rotate(45deg);
}

/* type03 */
.common-title.type03 {
    padding: 20px 20px 20px 17px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.08em;
    text-align: left;
    color: #000;
    background-color: var(--light-color);
    border-left: solid 7px var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-title.type03 {
        padding: 14px 20px 14px 17px;
        font-size: 18px;
        border-width: 4px;
    }
}

/* ------------------------------------------- */
/* common-parts */
/* ------------------------------------------- */
#hasSideBar .w980 {
    display: flex;
}
@media screen and (max-width: 767px) {
    #hasSideBar .w980 {
        flex-direction: column;
    }
}
#hasSideBar .sideBar {
    flex-shrink: 0;
    margin-right: 30px;
    width: 230px;
}
@media screen and (max-width: 767px) {
    #hasSideBar .sideBar {
        margin-bottom: 80px;
        margin-right: 0;
        width: 100%;
    }
}
#hasSideBar .rightContents {
    flex-shrink: 1;
    flex-grow: 1;
    min-width: 0;
}
@media screen and (max-width: 767px) {
    #hasSideBar .rightContents {
        width: 100%;
    }
}

.common-side-menu {
    padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .common-side-menu {
        display: none;
    }
}
.common-side-menu .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: var(--theme-color);
}
.common-side-menu .list {
    border-right: solid 1px var(--theme-color);
    border-left: solid 1px var(--theme-color);
}
.common-side-menu .list li {
    border-bottom: solid 1px var(--theme-color);
}
.common-side-menu .list li a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 14px 0 14px 15px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
    transition: ease 0.2s opacity;
}
@media (hover: hover) and (pointer: fine) {
    .common-side-menu .list li a:hover {
        opacity: 0.5;
    }
}
.common-side-menu .list li a::before {
    content: "";
    display: block;
    margin-right: 5px;
    width: 14px;
    height: 14px;
    background-color: var(--theme-color);
    border-radius: 50%;
}
.common-side-menu .list li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin-top: auto;
    margin-bottom: auto;
    width: 3px;
    height: 3px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
}

.common-price-list .set:not(:first-child) {
    margin-top: 100px;
}
.common-price-list .set .info {
    display: flex;
    align-items: stretch;
    background-color: #f6f6f6;
}
@media screen and (max-width: 660px) {
    .common-price-list .set .info {
        flex-direction: column-reverse;
    }
}
.common-price-list .set .info .text-area {
    padding-top: 39px;
    padding-bottom: 39px;
    padding-left: 43px;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .info .text-area {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .info .text-area {
        padding-top: 0;
        padding-right: 20px;
    }
}
.common-price-list .set .info .text-area .title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: left;
    color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-price-list .set .info .text-area .title {
        font-size: 18px;
        line-height: 26px;
    }
}
.common-price-list .set .info .text-area .text {
    margin-top: 16px;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .info .text-area .text {
        margin-top: 14px;
        font-size: 14px;
        line-height: 22px;
    }
}
.common-price-list .set .info .pht-area {
    flex-shrink: 0;
    position: relative;
    width: 450px;
    min-height: 290px;
}
@media screen and (max-width: 1024px) {
    .common-price-list .set .info .pht-area {
        width: 360px;
    }
}
@media screen and (max-width: 767px) {
    .common-price-list .set .info .pht-area {
        width: 280px;
        min-height: 160px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .info .pht-area {
        width: 100%;
        height: auto;
        min-height: auto;
    }
}
.common-price-list .set .info .pht-area::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    z-index: 1;
    width: 109px;
    background: linear-gradient(to right, #f6f6f6 0%, #f6f6f6 50%, rgba(246, 246, 246, 0) 100%);
}
@media screen and (max-width: 1024px) {
    .common-price-list .set .info .pht-area::before {
        width: 80px;
    }
}
@media screen and (max-width: 767px) {
    .common-price-list .set .info .pht-area::before {
        top: auto;
        right: 0;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to top, #f6f6f6 0%, #f6f6f6 50%, rgba(246, 246, 246, 0) 100%);
    }
}
.common-price-list .set .info .pht-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.common-price-list .set .detail {
    padding-top: 48px;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail {
        padding-top: 30px;
    }
}
.common-price-list .set .detail .main .top {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .main .top {
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .detail .main .top {
        text-align: left;
    }
}
.common-price-list .set .detail .main .top .large {
    font-size: 22px;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .main .top .large {
        font-size: 18px;
    }
}
.common-price-list .set .detail .main .bottom {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: center;
    color: #000;
    text-decoration: underline;
    text-decoration-color: #fff096;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 19px;
    text-underline-offset: -10px;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .main .bottom {
        margin-top: 6px;
        font-size: 20px;
        line-height: 30px;
        text-decoration-thickness: 14px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .detail .main .bottom {
        text-align: left;
    }
}
.common-price-list .set .detail .main .bottom .color {
    color: var(--accent-color);
}
.common-price-list .set .detail .main .bottom .large {
    font-family: "Roboto";
    font-weight: bold;
    font-size: 50px;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .main .bottom .large {
        font-size: 32px;
    }
}
.common-price-list .set .detail .sub {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 20px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .sub {
        font-size: 12px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .detail .sub {
        text-align: left;
    }
}
.common-price-list .set .detail .box {
    margin: 25px auto 0;
    padding: 26px 98px;
    width: 704px;
    max-width: 100%;
    background-color: var(--light-color);
    border: solid 2px var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .box {
        padding: 30px 60px;
    }
}
@media screen and (max-width: 660px) {
    .common-price-list .set .detail .box {
        padding: 30px 20px;
    }
}
.common-price-list .set .detail .box .text {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 28px;
    text-align: left;
    color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .box .text {
        font-size: 14px;
        line-height: 22px;
    }
}
.common-price-list .set .detail .name {
    margin-top: 40px;
    text-align: center;
}
.common-price-list .set .detail .name .title {
    display: inline-block;
    position: relative;
    margin-bottom: 9px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .name .title {
        font-size: 18px;
        line-height: 26px;
    }
}
.common-price-list .set .detail .name .title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -25px;
    width: 3px;
    height: 30px;
    background-color: var(--theme-color);
    transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .name .title::before {
        left: -20px;
        height: 25px;
    }
}
.common-price-list .set .detail .name .title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 3px;
    height: 30px;
    background-color: var(--theme-color);
    transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .name .title::after {
        right: -20px;
        height: 25px;
    }
}
.common-price-list .set .detail .name .text {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-price-list .set .detail .name .text {
        font-size: 16px;
        line-height: 26px;
    }
}
.common-price-list .set .detail .name .text .color {
    color: var(--theme-color);
}

#yoyakuBox {
    margin-right: auto;
    margin-bottom: 86px;
    margin-left: auto;
    width: 720px;
    max-width: 100%;
}
@media screen and (max-width: 767px) {
    #yoyakuBox {
        margin-bottom: 80px;
    }
}
#yoyakuBox .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background-color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    #yoyakuBox .section-title {
        padding: 12px 20px;
        height: auto;
        font-size: 18px;
        line-height: 24px;
    }
}
#yoyakuBox .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 40px;
    text-align: center;
    border-top: solid 1px var(--theme-color);
    /* border-right: solid 1px var(--theme-color); */
    border-left: solid 1px var(--theme-color);
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
    }
}
#yoyakuBox .item:last-child {
    border-right: solid 1px var(--theme-color);
}
#yoyakuBox .item .title {
    margin-bottom: 16px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    #yoyakuBox .item .title {
        font-size: 16px;
    }
}
#yoyakuBox .item .text {
    margin-bottom: 18px;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    #yoyakuBox .item .text {
        font-size: 14px;
        line-height: 22px;
    }
}
#yoyakuBox .item .text p:not(:first-child) {
    margin-top: 24px;
}
#yoyakuBox .item .small-btn {
    margin-top: auto;
    margin-bottom: 0;
    height: 41px;
    transition: ease 0.2s opacity;
}
@media (hover: hover) and (pointer: fine) {
    #yoyakuBox .item .small-btn:hover {
        opacity: 0.5;
    }
}
#yoyakuBox .item {
    width: 100%;
}

#yoyakuBox .item .net {
    width: 50%;
}

#yoyakuBox .item .line {
    width: 50%;
}

#yoyakuBox .item.line .title {
    /* margin-bottom: 37px; */
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.line .title {
        margin-bottom: 16px;
    }
}
#yoyakuBox .item.line .line-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.line .line-content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
}
#yoyakuBox .item.line .line-content .text-area {
    text-align: left;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.line .line-content .text-area {
        text-align: center;
    }
}
#yoyakuBox .item.line .line-content .text-area .text {
    text-align: left;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.line .line-content .text-area .text {
        text-align: center;
    }
}
#yoyakuBox .item.line .line-content .pht-area {
    margin-left: 78px;
    width: 176px;
}
@media screen and (max-width: 1024px) {
    #yoyakuBox .item.line .line-content .pht-area {
        margin-left: 30px;
        width: 120px;
    }
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.line .line-content .pht-area {
        margin-top: 20px;
        margin-left: 0;
    }
}
#yoyakuBox .item.line .small-btn img {
    height: 100%;
}

#yoyakuBox .item.net .small-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    background-color: var(--accent-color);
    border-radius: 6px;
}
#yoyakuBox .item.net .small-btn img {
    margin-right: 6px;
    width: 17px;
}
#yoyakuBox .item.net .small-btn span {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 19px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}

#yoyakuBox .item.tel {
    border-bottom: solid 1px var(--theme-color);
}

#yoyakuBox .item.tel .title {
    margin-bottom: 11px;
}
#yoyakuBox .item.tel .tel-yoyaku {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    #yoyakuBox .item.tel .tel-yoyaku {
        flex-direction: column;
    }
}
#yoyakuBox .item.tel .tel-yoyaku .telnum {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}
@media screen and (max-width: 1024px) {
    #yoyakuBox .item.tel .tel-yoyaku .telnum {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
#yoyakuBox .item.tel .tel-yoyaku .telnum img {
    margin-right: 8px;
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.tel .tel-yoyaku .telnum img {
        width: 20px;
        height: 20px;
    }
}
#yoyakuBox .item.tel .tel-yoyaku .telnum span {
    font-family: var(--roboto-condensed);
    font-weight: bold;
    font-size: 38px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.tel .tel-yoyaku .telnum span {
        font-size: 26px;
    }
}
#yoyakuBox .item.tel .tel-yoyaku .tel-text .main {
    margin-bottom: 4px;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.tel .tel-yoyaku .tel-text .main {
        font-size: 12px;
    }
}
#yoyakuBox .item.tel .tel-yoyaku .tel-text .sub {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 500px) {
    #yoyakuBox .item.tel .tel-yoyaku .tel-text .sub {
        font-size: 10px;
    }
}

#flow {
    padding-bottom: 155px;
}
@media screen and (max-width: 767px) {
    #flow {
        padding-bottom: 80px;
    }
}
#flow .common-title.type03 {
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    #flow .common-title.type03 {
        margin-bottom: 50px;
    }
}
#flow .flow-list {
    margin: 0 auto;
    width: 810px;
    max-width: 100%;
}
#flow .flow-list li {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 40px 27px 40px 54px;
    border: solid 2px var(--theme-color);
}
@media screen and (max-width: 767px) {
    #flow .flow-list li {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 660px) {
    #flow .flow-list li {
        flex-direction: column;
    }
}
#flow .flow-list li:not(:first-child) {
    margin-top: 30px;
}
#flow .flow-list li:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: -32px;
    right: 0;
    bottom: 100%;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 2px;
    background-color: var(--theme-color);
}
#flow .flow-list li .text-area .title {
    margin-bottom: 20px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: #000;
}
#flow .flow-list li .text-area .title .num {
    color: var(--theme-color);
}
#flow .flow-list li .text-area .text p {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: #000;
}
#flow .flow-list li .pht-area {
    flex-shrink: 0;
    margin-left: 35px;
    width: 204px;
    max-width: 100%;
}
@media screen and (max-width: 660px) {
    #flow .flow-list li .pht-area {
        margin-top: 30px;
        margin-left: 0;
    }
}
.common-news-tab-group {
    padding-top: 76px;
    padding-bottom: 30px;
}
.common-news-tab-group .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.common-news-tab-group .inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 198px;
    height: 38px;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 30px;
    text-align: center;
    color: var(--theme-color);
    border: solid 2px var(--theme-color);
    border-radius: 19px;
}
@media screen and (max-width: 767px) {
    .common-news-tab-group .inner a {
        padding-right: 1em;
        padding-left: 1em;
        width: auto;
        font-size: 13px;
    }
}
.common-news-tab-group .inner a:not(:first-child) {
    margin-left: 24px;
}
@media screen and (max-width: 767px) {
    .common-news-tab-group .inner a:not(:first-child) {
        margin-left: 20px;
    }
}
.common-news-tab-group .inner a.active {
    pointer-events: none;
    color: #fff;
    background-color: var(--theme-color);
}
.common-news-tab-group.new {
    padding-bottom: 56px;
}
.common-news-tab-group.new .inner {
    flex-wrap: wrap;
}
.common-news-tab-group.new .inner a {
    margin-right: 12px;
    margin-bottom: 10px;
    margin-left: 12px;
}
@media screen and (max-width: 767px) {
    .common-news-tab-group.new .inner a {
        margin-right: 10px;
        margin-left: 10px;
    }
}
.common-news-tab-group.new .inner a:not(:first-child) {
    margin-left: 12px;
}
@media screen and (max-width: 767px) {
    .common-news-tab-group.new .inner a:not(:first-child) {
        margin-left: 10px;
    }
}

.common-voice-list li {
    display: flex;
    align-items: flex-start;
    padding: 58px 60px;
    border: solid 2px var(--theme-color);
}
@media screen and (max-width: 767px) {
    .common-voice-list li {
        flex-direction: column;
        padding: 30px 20px;
    }
}
.common-voice-list li .text-area {
    flex-grow: 1;
}
.common-voice-list li .text-area .main {
    margin-bottom: 18px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 29px;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-voice-list li .text-area .main {
        font-size: 18px;
        line-height: 26px;
    }
}
.common-voice-list li .text-area .main .color {
    color: var(--accent-color);
}
@media screen and (max-width: 767px) {
    .common-voice-list li .text-area .main br {
        display: none;
    }
}
.common-voice-list li .text-area .text,
.common-voice-list li .text-area .name {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 26px;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 767px) {
    .common-voice-list li .text-area .text,
    .common-voice-list li .text-area .name {
        font-size: 13px;
        line-height: 24px;
    }
}
.common-voice-list li .pht-area {
    flex-shrink: 0;
    margin-left: 60px;
    width: 358px;
}
@media screen and (max-width: 1024px) {
    .common-voice-list li .pht-area {
        margin-left: 30px;
        width: 240px;
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .common-voice-list li .pht-area {
        margin-top: 30px;
        margin-left: 0;
    }
}
.common-voice-list li .pht-area img {
    width: 100%;
}
.common-voice-list li:not(:first-child) {
    margin-top: 30px;
}

.common-voice-list.home li {
    background-color: #fff;
    border: none;
}

.common-voice-list.menu li {
    padding: 58px 28px;
}
@media screen and (max-width: 1024px) {
    .common-voice-list.menu li {
        flex-direction: column;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 1024px) {
    .common-voice-list.menu li .text-area .main br {
        display: none;
    }
}
.common-voice-list.menu li .pht-area {
    margin-left: 30px;
    width: 240px;
    max-width: 100%;
}
@media screen and (max-width: 1024px) {
    .common-voice-list.menu li .pht-area {
        margin-top: 30px;
        margin-left: 0;
    }
}

/* --------------------------------------------------------------- */
/* 全体 */
/* --------------------------------------------------------------- */
body.fixed {
    position: fixed;
    right: 0;
    left: 0;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    border-top: solid 3px var(--theme-color);
}
header .header-inner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1098px;
    height: 100px;
}
@media screen and (max-width: 1118px) {
    header .header-inner {
        width: calc(100% - 40px);
    }
}
@media screen and (max-width: 767px) {
    header .header-inner {
        align-items: center;
        height: 50px;
    }
}
header .header-inner .header-left-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .header-inner .header-left-area .header-logo {
    /* width: 188px; */
    width: 430px;
}
@media screen and (max-width: 1024px) {
    header .header-inner .header-left-area .header-logo {
        /* width: 142px; */
        width: 324.7872340426px;
    }
}
@media screen and (max-width: 767px) {
    header .header-inner .header-left-area .header-logo {
        /* width: 115px; */
        width: 263.0319148936px;

        img {
            max-width: 65%;
        }
    }
}
header .header-inner .header-left-area .header-logo a {
    width: 100%;
    height: 100%;
    transition: ease 0.2s opacity;
}
@media (hover: hover) and (pointer: fine) {
    header .header-inner .header-left-area .header-logo a:hover {
        opacity: 0.5;
    }
}
/* header .header-inner .header-left-area .header-logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
} */
header .header-inner .hamburger-contents .hamburger-contents-inner {
    display: flex;
    justify-content: flex-end;
    padding-top: 22px;
    height: 77px;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav {
    position: fixed;
    top: 100px;
    right: 0;
    left: 0;
    height: 40px;
    background-color: #fff;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li {
    position: relative;
    height: 100%;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li:not(:first-child) {
    margin-left: 36px;
}
@media screen and (max-width: 1024px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li:not(:first-child) {
        margin-left: 18px;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li a {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
    transition: ease 0.2s color;
}
@media (hover: hover) and (pointer: fine) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li a:hover {
        color: var(--theme-color);
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list {
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: absolute;
    top: 40px;
    left: 0;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li {
    margin: 0;
    height: auto;
    background-color: #fff;
    border: solid 1px var(--theme-color);
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li:not(:last-child) {
    border-bottom: transparent;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li a {
    padding: 13px 19px;
    width: 100%;
    height: 100%;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
    white-space: nowrap;
    transition: ease 0.2s color, ease 0.2s background-color;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li a:hover {
    color: var(--theme-color);
    background-color: var(--light-color);
}
header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li:hover .sub-list {
    visibility: visible;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    border-right: solid 1px #bebebe;
}
@media screen and (max-width: 1024px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area {
        padding-right: 16px;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area a {
    width: 48px;
    height: 48px;
    transition: ease 0.2s opacity;
}
@media (hover: hover) and (pointer: fine) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area a:hover {
        opacity: 0.5;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area a:not(:last-child) {
    margin-right: 15px;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area {
    padding-right: 22px;
    padding-left: 22px;
    border-right: solid 1px #bebebe;
}
@media screen and (max-width: 1024px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area {
        padding-right: 16px;
        padding-left: 16px;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .tags {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 6px;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .tags p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 8px;
    padding-left: 8px;
    height: 24px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
    background-color: #e5915a;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .tags p:not(:first-child) {
    margin-left: 5px;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .telnum {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .telnum img {
    margin-right: 6px;
    width: 22px;
    height: 22px;
    -o-object-fit: contain;
    object-fit: contain;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .telnum span {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area {
    padding-left: 22px;
}
@media screen and (max-width: 1024px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area {
        padding-left: 16px;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 217px;
    height: 55px;
    background-color: #93c562;
    transition: ease 0.2s opacity;
}
@media screen and (max-width: 1080px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn {
        width: auto;
    }
}
@media (hover: hover) and (pointer: fine) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn:hover {
        opacity: 0.5;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .icon {
    display: block;
    position: relative;
    margin-right: 10px;
    width: 33px;
    height: 33px;
    background-color: #fff;
    border-radius: 50%;
}
@media screen and (max-width: 1080px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .icon {
        margin: 10px;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mask-image: url(../img/icon-pc.svg);
    mask-size: 18px 12px;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../img/icon-pc.svg);
    -webkit-mask-size: 18px 12px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: var(--accent-color);
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .text {
        display: none;
    }
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .text .small {
    margin-bottom: 2px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
}
header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn .text .large {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
}
@media screen and (max-width: 767px) {
    header .header-inner .hamburger-contents {
        position: fixed;
        top: 50px;
        bottom: 0;
        right: -100%;
        padding-top: 30px;
        background-color: #fff;
        overflow: auto;
        transition: ease 0.2s right;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 0;
        padding-right: 20px;
        padding-bottom: 80px;
        padding-left: 20px;
        width: 100%;
        height: auto;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav {
        position: static;
        width: 100%;
        height: auto;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li {
        width: 100%;
        border-bottom: solid 1px #bebebe;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li:first-child {
        border-top: solid 1px #bebebe;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li:not(:first-child) {
        margin-left: 0;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li a {
        padding-top: 14px;
        padding-bottom: 14px;
        width: 100%;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list {
        visibility: visible;
        position: static;
        padding-left: 30px;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li {
        border: none;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li a {
        padding-top: 8px;
        padding-right: 0;
        padding-bottom: 8px;
        padding-left: 0;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li a:hover {
        color: #000;
        background-color: #fff;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .header-nav ul li .sub-list li:last-child a {
        padding-bottom: 14px;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area {
        order: 3;
        justify-content: center;
        margin-top: 30px;
        padding-right: 0;
        width: 100%;
        border-right: none;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .sns-area a {
        width: 44px;
        height: 44px;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area {
        order: 2;
        margin-top: 30px;
        border-right: none;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .tel-area .tags {
        justify-content: center;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area {
        order: 1;
        margin-top: 30px;
        padding-left: 0;
        width: 100%;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .btn-area .btn {
        width: 100%;
    }
    header .header-inner .hamburger-contents .hamburger-contents-inner .common-side-menu-wrapper {
        order: 4;
        margin: 0 auto;
        width: 230px;
    }
}
@media screen and (max-width: 767px) {
    header .header-inner .hamburger-icon {
        cursor: pointer;
        position: relative;
        width: 50px;
        height: 50px;
    }
    header .header-inner .hamburger-icon span {
        display: block;
        position: absolute;
        left: 12px;
        width: 26px;
        height: 2px;
        background-color: var(--theme-color);
    }
    header .header-inner .hamburger-icon span:nth-child(1) {
        top: 16px;
        transform-origin: top left;
        transition: ease 0.2s transform;
    }
    header .header-inner .hamburger-icon span:nth-child(2) {
        top: 24px;
    }
    header .header-inner .hamburger-icon span:nth-child(3) {
        top: 32px;
        transform-origin: bottom left;
        transition: ease 0.2s transform;
    }
}

@media screen and (max-width: 767px) {
    .menu-on header .header-inner {
        padding-right: var(--scrollbar);
    }
    .menu-on header .header-inner .hamburger-contents {
        right: 0;
    }
    .menu-on header .header-inner .hamburger-contents .hamburger-contents-inner {
        padding-right: calc(20px + var(--scrollbar));
    }
    .menu-on header .header-inner .hamburger-icon span:nth-child(1) {
        top: 15px;
        transform: rotate(45deg);
    }
    .menu-on header .header-inner .hamburger-icon span:nth-child(2) {
        display: none;
    }
    .menu-on header .header-inner .hamburger-icon span:nth-child(3) {
        top: 33px;
        transform: rotate(-45deg);
    }
}
main {
    margin-top: 140px;
}
@media screen and (max-width: 767px) {
    main {
        margin-top: 53px;
    }
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#reservation {
    position: relative;
    padding-top: 57px;
    padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
    #reservation {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
#reservation::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color);
    mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-mask-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
}
#reservation .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.08em;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    #reservation .section-title {
        font-size: 20px;
    }
}
#reservation .section-title::after {
    content: "";
    display: block;
    margin-top: 16px;
    width: 45px;
    height: 5px;
    background-color: #000;
}
@media screen and (max-width: 767px) {
    #reservation .section-title::after {
        margin-top: 12px;
        width: 36px;
        height: 4px;
    }
}
#reservation .section-text {
    margin-top: 16px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    #reservation .section-text {
        font-size: 14px;
        line-height: 22px;
    }
}
#reservation .group {
    display: flex;
    justify-content: space-between;
    margin-top: 39px;
}
@media screen and (max-width: 1024px) {
    #reservation .group {
        flex-wrap: wrap;
        justify-content: center;
    }
}
#reservation .group .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    width: calc((100% - 44px) / 3);
    background-color: #fff;
    border: solid 2px transparent;
    transition: ease 0.2s background-color, ease 0.2s border-color;
}
@media screen and (max-width: 1024px) {
    #reservation .group .item {
        margin-right: 11px;
        margin-left: 11px;
        width: calc((100% - 44px) / 2);
    }
    #reservation .group .item:not(:nth-child(1)):not(:nth-child(2)) {
        margin-top: 22px;
    }
}
@media screen and (max-width: 767px) {
    #reservation .group .item {
        margin-right: 0;
        margin-left: 0;
        padding: 15px 10px;
        width: 100%;
    }
    #reservation .group .item:not(:nth-child(1)) {
        margin-top: 22px;
    }
}
@media (hover: hover) and (pointer: fine) {
    #reservation .group .item:hover {
        background-color: var(--light-color);
        border-color: var(--theme-color);
    }
}
#reservation .group .item .icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 11px;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    #reservation .group .item .icon {
        width: 36px;
        height: 36px;
    }
}
#reservation .group .item .text .sub {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: var(--theme-color);
}
#reservation .group .item .text .main {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 767px) {
    #reservation .group .item .text .main {
        font-size: 16px;
    }
}
#reservation .group .item:not(.line) .icon {
    background-color: var(--theme-color);
}
#reservation .group .item:not(.line) .icon img {
    filter: invert(1);
}
#reservation .group .item.pc .icon img {
    width: 28px;
}
@media screen and (max-width: 767px) {
    #reservation .group .item.pc .icon img {
        width: 20px;
    }
}
#reservation .group .item.line .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#reservation .group .item.tel .icon img {
    width: 22px;
}
@media screen and (max-width: 767px) {
    #reservation .group .item.tel .icon img {
        width: 16px;
    }
}
#reservation .group .item.tel .text .main {
    font-family: var(--roboto-condensed);
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
}

footer {
    background-color: #f6f6f6;
}
footer .head {
    padding-top: 53px;
    padding-bottom: 30px;
}
footer .head .set {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    footer .head .set {
        justify-content: center;
    }
}
footer .head .set .left .footer-logo {
    mix-blend-mode: multiply;
    margin-bottom: 20px;
    /* width: 189px; */
    /* width: 430px; */
    transition: ease 0.2s opacity;
}
@media screen and (max-width: 767px) {
    footer .head .set .left .footer-logo {
        /* width: 140px; */
        width: 324.7872340426px;
    }
}
@media (hover: hover) and (pointer: fine) {
    footer .head .set .left .footer-logo:hover {
        opacity: 0.5;
    }
}
footer .head .set .left .footer-logo img {
    width: 100%;
}
footer .head .set .left .address {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 22px;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 767px) {
    footer .head .set .left .address {
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
}
footer .head .set .right .footer-nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    footer .head .set .right .footer-nav {
        display: none;
    }
}
footer .head .set .right .footer-nav ul:not(:last-child) {
    margin-right: 70px;
}
footer .head .set .right .footer-nav ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
footer .head .set .right .footer-nav ul li::before {
    content: "";
    display: block;
    margin-right: 8px;
    width: 10px;
    height: 2px;
    background-color: var(--theme-color);
}
footer .head .set .right .footer-nav ul li a {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: left;
    color: #000;
}
@media (hover: hover) and (pointer: fine) {
    footer .head .set .right .footer-nav ul li a:hover {
        text-decoration: underline;
    }
}
footer .head .link-area {
    padding-top: 34px;
    text-align: right;
}
@media screen and (max-width: 767px) {
    footer .head .link-area {
        text-align: center;
    }
}
footer .head .link-area a {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 22px;
    text-align: left;
    color: #000;
    border-bottom: solid 1px #000;
    transition: ease 0.2s color, ease 0.2s border-color;
}
@media screen and (max-width: 375px) {
    footer .head .link-area a {
        font-size: 10px;
        line-height: 22px;
    }
}
@media (hover: hover) and (pointer: fine) {
    footer .head .link-area a:hover {
        color: var(--theme-color);
        border-color: var(--theme-color);
    }
}
footer .head .link-area a::after {
    content: "";
    display: block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
    transition: ease 0.2s border-color;
}
@media (hover: hover) and (pointer: fine) {
    footer .head .link-area a:hover::after {
        border-color: var(--theme-color);
    }
}
footer .foot {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    background-color: var(--theme-color);
}
@media screen and (max-width: 767px) {
    footer .foot {
        height: 30px;
    }
}
footer .foot .copyright {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 22px;
    text-align: left;
    color: #fff;
}
@media screen and (max-width: 767px) {
    footer .foot .copyright {
        font-size: 10px;
        line-height: 20px;
    }
}
footer .sp-fixed-contact-area {
    /* padding-bottom: 30px; */
}
footer .sp-fixed-contact-area.fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
footer .sp-fixed-contact-area .box-title {
    padding-top: 3px;
    padding-bottom: 3px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background-color: var(--theme-color);
}
footer .sp-fixed-contact-area .box-content {
    border: solid 1px var(--theme-color);
}
footer .sp-fixed-contact-area .box-content .head-area {
    display: flex;
}
footer .sp-fixed-contact-area .box-content .head-area .line {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 9px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 8px;
    width: 50%;
    background-color: #e2f6e3;
}
footer .sp-fixed-contact-area .box-content .head-area .line::after {
    content: "";
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: 5px;
    height: 5px;
    border-top: solid 2px #06c755;
    border-right: solid 2px #06c755;
    transform: rotate(45deg);
}
footer .sp-fixed-contact-area .box-content .head-area .line img {
    margin-right: 8px;
    width: 25px;
    height: 25px;
}
footer .sp-fixed-contact-area .box-content .head-area .line .title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
}
footer .sp-fixed-contact-area .box-content .head-area .net {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 9px;
    padding-right: 16px;
    padding-bottom: 11px;
    padding-left: 8px;
    width: 50%;
    background-color: var(--light-accent-color);
}
footer .sp-fixed-contact-area .box-content .head-area .net::after {
    content: "";
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: 5px;
    height: 5px;
    border-top: solid 2px var(--accent-color);
    border-right: solid 2px var(--accent-color);
    transform: rotate(45deg);
}
footer .sp-fixed-contact-area .box-content .head-area .net .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    width: 25px;
    height: 25px;
    background-color: var(--accent-color);
    border-radius: 5px;
}
footer .sp-fixed-contact-area .box-content .head-area .net .icon img {
    width: 12px;
}
footer .sp-fixed-contact-area .box-content .head-area .net .title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
}
footer .sp-fixed-contact-area .box-content .foot-area {
    padding-top: 8px;
    padding-bottom: 11px;
    text-align: center;
    background-color: #fff;
}
footer .sp-fixed-contact-area .box-content .foot-area a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--roboto-condensed);
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;
}
footer .sp-fixed-contact-area .box-content .foot-area a::before {
    content: "";
    display: block;
    margin-right: 6px;
    width: 18px;
    height: 18px;
    background-color: var(--theme-color);
    mask-image: url(../img/icon-tel.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../img/icon-tel.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}
footer .sp-fixed-contact-area .box-content .foot-area .note {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 12px;
    text-align: center;
    color: #000;
}
footer .sp-fixed-contact-area .box-content .foot-area .note + .note {
    margin-top: 6px;
}
footer .sp-fixed-contact-area .box-content .foot-area .note.red {
    color: #c40000;
}

/* --------------------------------------------------------------- */
/* pc / sp */
/* --------------------------------------------------------------- */
@media screen and (min-width: 768px) {
    .pc-off {
        display: none !important;
    }
}
@media print {
    .pc-off {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .sp-off {
        display: none !important;
    }
}
br.br {
    display: none;
}

@media screen and (max-width: 375px) {
    br.u375 {
        display: inline;
    }
}
@media screen and (max-width: 500px) and (min-width: 376px) {
    br.u500 {
        display: inline;
    }
}
@media screen and (max-width: 660px) and (min-width: 501px) {
    br.u660 {
        display: inline;
    }
}
@media screen and (max-width: 767px) and (min-width: 661px) {
    br.u767 {
        display: inline;
    }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
    br.u1024 {
        display: inline;
    }
}
/* --------------------------------------------------------------- */
/* inner config */
/* --------------------------------------------------------------- */
.inner {
    margin-left: auto;
    margin-right: auto;
}

.w980 {
    width: 980px;
}

@media screen and (max-width: 1040px) {
    .w980 {
        width: calc(100% - 60px);
    }
}
.w780 {
    width: 780px;
}

@media screen and (max-width: 840px) {
    .w780 {
        width: calc(100% - 60px);
    }
}
/* added by jo: */
/* @media screen and (min-width: 768px) {
  .horizontal {
    display: flex;
  }
}

@media screen and (min-width: 768px) {

  .item.line,
  .item.net {
    width: 50%;
  }
}

.item.net {
  border-bottom: none !important;
}

@media screen and (min-width: 768px) {
  .item.net {
    border-left: none !important;
  }
} */ /*# sourceMappingURL=common.css.map */

.line-contact {
    display: flex;

    @media screen and (max-width: 840px) {
        flex-direction: column;
    }
}

.item.line {
    @media screen and (max-width: 840px) {
        border-right: solid 1px var(--theme-color);
    }
}
