@charset "utf-8";


/* 共通項 */

:root {
    --color-theme:       #459176;
    --color-light-theme: #6fb8a8;
    --fg-color:          #333;
    --bg-color-body:     #999
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-gothic: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    --font-mincho: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-alphabet: 'Roboto', 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    --max-width: 1600px;
    --text-white-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s;
}

@media ( hover: hover ) {
    a:hover {
        opacity: 0.5;
    }
}

section {
    position: relative;
}

ul, p {
    margin: 1.5em 0;
    line-height: 1.5;
}

.big {
    font-size: 1.2rem;
}

.small {
    font-size: 0.8rem;
}

.bold {
    font-weight: 900;
}

.theme {
    color: var(--color-theme);
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.red {
    color: #d60000;
}

.pc {
    display: none;
}

.sp {
    display: block;
}

@media ( min-width: 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    transform: scale( 0.5, 0.5 );
    transition: 1.0s;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    transform: scale( 1.0, 1.0 );
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: 1.0s;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: 1.0s;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    font-size: clamp( 15px, 2.5vw, 30px );;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: clamp( 15px, 2.5vw, 30px );;;
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: clamp( 16px, 1.6vw, 20px );
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    background: var(--bg-color-body);
    opacity: 0.0;
    animation: anim-fadeIn 1.0s ease 0s forwards;
}

@keyframes anim-fadeIn {
    0%   { opacity: 0.0 }
    100% { opacity: 1.0 }
}


/**
 * SP用設定
 */
@media ( width < 768px ) {
    header {
        position: sticky;
        top: 0;
        width: 100%;
        height: 60px;
        background: #fffc;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 90;
    }
    header .logo {
        display: block;
        padding: 10px 20px;
        width: auto;
        height: 100%;
    }
    header .logo img {
        width: auto;
        height: 100%;
    }
    header .sp-menu-area {
        position: relative;
        width: 80px;
        height: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    header .sp-menu-area #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0.0;
    }
    header .sp-menu-area .sp-menu-label {
        position: relative;
        display: block;
        width: 28px;
        aspect-ratio: 1 / 1;
    }
    header .sp-menu-area .sp-menu-label .sp-menu-icon {
        position: absolute;
        top: calc( 50% - 1px );
        left: 0;
        width: 100%;
        height: 3px;
        background: rgb( 92, 210, 204 );
        border-radius: 2px;
        transition: background ease-out 0.5s;
    }
    header .sp-menu-area .sp-menu-label .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgb( 92, 210, 204 );
        border-radius: 2px;
        transition: transform ease-out 0.5s;
    }
    header .sp-menu-area .sp-menu-label .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgb( 92, 210, 204 );
        border-radius: 2px;
        transition: transform ease-out 0.5s;
    }
    header .sp-menu-area #sp-menu-check:checked + .sp-menu-label .sp-menu-icon {
        background: transparent;
    }
    header .sp-menu-area #sp-menu-check:checked + .sp-menu-label .sp-menu-icon::before {
        transform: translateY( 8px ) rotate( 45deg );
    }
    header .sp-menu-area #sp-menu-check:checked + .sp-menu-label .sp-menu-icon::after {
        transform: translateY( -8px ) rotate( -45deg );
    }
    header .sp-menu-area .sp-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100vw;
        height: calc( 100vh + 6px - 60px - 60px ); /* ヘッダー60px + フッター60px */
        background: #f5f2eb;
        overflow-y: auto;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform ease-out 0.5s;
        z-index: 99;
    }
    header .sp-menu-area #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }
    header .sp-menu-area .sp-menu-text {
        display: block;
        color: rgb( 92, 210, 204 );
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    header .sp-menu-area .sp-menu-text::before {
        content: "MENU";
    }
    header .sp-menu-area #sp-menu-check:checked ~ .sp-menu-text::before {
        content: "CLOSE";
    }
    header .sp-menu-area .sp-menu .icon {
        margin: 2.0vw auto 1.0vw;
        width: 32px;
        height: auto;
    }
    header .sp-menu-area .sp-menu .title {
        margin: 0.1em 0;
        color :#02b2bf;
        font-size: 4.8vw;
        text-align: center;
    }
    header .sp-menu-area .sp-menu .menus {
        margin: 2.0vw auto;
        width: calc( 100% - 4.0vw );
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2.0vw;
    }
    header .sp-menu-area .sp-menu .menus .menu {
        margin: 0;
        padding: 1.0vw 0;
        display: block;
        width: calc( ( 100% - 4.0vw ) / 3.0 );
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    header .sp-menu-area .sp-menu .menus .menu .icon {
        width: 60px;
        height: 40px;
    }
    header .sp-menu-area .sp-menu .menus .menu .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .sp-menu-area .sp-menu .menus .menu .text {
        font-size: 3.2vw;
        text-align: center;
    }
    header .sp-menu-area .sp-menu .menus + .icon {
        margin-top: 4.0vw;
    }
    header .sp-menu-area .sp-menu .pic {
        margin: 6.0vw auto;
        width: 90%;
    }
    header .sp-menu-area .sp-menu .btns {
        margin: 6.0vw auto;
        width: 90%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
    header .sp-menu-area .sp-menu .btns .btn {
        width: 48%;
    }
    header .sp-menu-area .sp-menu .btns .btn img {
        width: 100%;
    }

    .mv {
        position: relative;
        margin: 0 auto;
        width: 100%;
        max-width: var(--max-width);
        height: 160px;
        background: var(--wpr-bg-52c6ab09-a70c-4976-9e4d-bea4634e4cd4) no-repeat center / cover;
    }
    .mv h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        color: #fff;
        font-size: min(calc(56 / 768 * 100vw), 56px);
        font-weight: 700;
        text-align: center;
        text-shadow:
            0 0 0.4em #0006,
            0 0 0.4em #0006,
            0 0 0.4em #0006,
            0 0 0.4em #0006;
    }

    .gnavi {
        position: absolute;
        top: 68px;
        left: 0;
        margin: 0;
        width: 100%;
        display: none;
    }
    .gnavi .wrap {
        margin: 0 auto;
        padding: 0 calc( 80 * min( 100vw, 1600px ) / 1600 );
        width: max-content;
        background: #fffc;
        box-shadow: 5px 5px 8px #b8b6b4b3;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        transition: all 0.5s;
    }
    .gnavi .wrap a {
        display: block;
        padding: 1.6em 0;
        color: rgb( 2, 178, 191 );
        font-size: calc( 18 * min( 100vw, 1600px ) / 1600 );
        font-weight: 700;
        height: 100%;
    }
    .gnavi-fixed {
        position: fixed;
        top: 0;
        margin: 0 auto;
        padding: 0 calc( 80 * min( 100vw, 1600px ) / 1600 );
        width: 100%;
        background: #fffe;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        transform: translateY( -160px );
        transition: transform 0.5s;
        z-index: 99;
        display: none;
    }
    .gnavi-fixed.show {
        transform: translateY( 0 );
    }
    .gnavi-fixed a {
        display: block;
        padding: 1.6em 0;
        color: rgb( 2, 178, 191 );
        font-size: calc( 18 * min( 100vw, 1600px ) / 1600 );
        font-weight: 700;
        height: 100%;
    }

    .common-btn {
        color: #fff;
        font-size: 4.0vw;
        line-height: 1.0;
        background: linear-gradient( to right, #008cce, #05b1bf );
        border-radius: 5px;
        box-shadow: 3px 3px 3px #c6c4c480;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    @media ( hover: hover ) {
        .common-btn:hover {
            color: #fff;
        }
    }
    .common-btn.tel::before {
        content: "";
        margin: 0 0.4em 0 0;
        width: 1.0em;
        height: 1.0em;
        background: var(--wpr-bg-063b23db-e702-4869-b1d0-801140c82554) no-repeat center / contain;
    }        
    .common-btn.web::before {
        content: "";
        margin: 0 0.4em 0 0;
        width: 1.0em;
        height: 1.0em;
        background: var(--wpr-bg-4e4098fe-8366-4bd2-9a60-5e4f9ba27c66) no-repeat center / contain;
    }

    .breadcrumbs {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 90%;
        font-size: 3.6vw;
    }

    .single-main {
        margin: 0 auto;
        width: 96%;
    }
    .single-main {
        margin: 0 auto;
        width: 96%;
    }

    .single-main .ceramic-bnr{
        margin: 2vw auto 2vw;
        width: 77%;
    }

    .single-main h2 {
        margin: 8.0vw auto 4.0vw;
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: left;
        background: linear-gradient( to right, #00b3c2, #69cbd0 );
    }

    .single-main h3 {
        margin: 8.0vw auto 4.0vw;
        padding: 0.25em 0.5em;
        color: var(--fg-color);
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        border-left: 5px solid #00b3c2;
    }

    .single-main p {
        margin: 1.0em 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: 1.8;
    }

    .single-main .single-list {
        margin: 6.0vw auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw;
    }
    .single-main .single-list .single-item {
        width: 100%;
    }
    .single-main .single-list .single-item .pic {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .single-main .single-list .single-item .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .single-main .single-list .single-item .cats {
        margin: 2.0vw 0 1.0vw;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.0vw;
    }
    .single-main .single-list .single-item .cats .cat {
        padding: 0.2em 1.0em;
        color: #fff;
        font-size: 3.0vw;
        background: #05b1bf;
    }
    .single-main .single-list .single-item h3 {
        margin: 0.5em 0 0.2em;
        color: #05b1bf;
        font-size: 4.0vw;
        font-weight: 700;
    }
    .single-main .single-list .single-item .date {
        margin: 0.2em 0 0.5em;
        font-size: 3.0vw;
        font-weight: 600;
    }
    .single-main .single-list .single-item p {
        margin: 0.5em 0;
        font-size: 3.6vw;
    }
    .single-main .single-list .single-item .single-detail {
        position: relative;
        display: block;
        margin: 1.0em auto;
        padding: 1.0em 0;
        width: 90%;
        max-width: 280px;
        font-size: 3.6vw;
        font-weight: 600;
        text-align: center;
        border: 2px solid #05b1bf;
        border-radius: 4.0em;
    }
    .single-main .single-list .single-item .single-detail::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 10%;
        width: 0.6em;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #05b1bf;
        border-bottom: 2px solid #05b1bf;
        transform: translateY( -50% ) rotate( -45deg );
    }


    .contact {
        padding: 8.0vw 0 6.0vw;
    }
    .contact strong {
        margin: 0 auto;
        padding: 0 0 0.5em;
        width: 100%;
        max-width: 1000px;
        color: #1d4552;
        font-size: 6.0vw;
        font-family: var(--font-mincho);
        font-weight: 500;
        text-align: center;
        text-shadow: var(--text-white-shadow);
        border-bottom: 1px solid #b7b7b7;
		display:block;
    }
    .contact .catch {
        margin: 1.0em 0;
        font-size: 3.6vw;
        text-align: center;
    }
    .contact .btns {
        margin: 4.0vw auto;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 5.0vw 0;
    }
    .contact .btns .common-btn {
        width: 100%;
        aspect-ratio: 5 / 1;
        font-size: 5.0vw;
    }
    .contact .logo {
        margin: min( 60px, 3.75vw ) auto;
        width: 80%;
        max-width: 393px;
        display: none;
    }
    .contact .info {
        margin: 4.0vw auto;
        width: 90%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    .contact .info .left {
        width: 100%;
    }
    .contact .info .left dl {
        padding: 2.0vw 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .contact .info .left dl + dl {
        border-top: 1px solid #ccc;
    }
    .contact .info .left dl dt {
        width: 12.0vw;
        color: #05b1bf;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
    }
    .contact .info .left dl dd {
        padding: 0 0 0 1.0em;
        width: calc( 100% - 12.0vw );
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
    }
    .contact .info .left dl dd .small {
        font-size: 3.2vw;
    }
    .contact .info .right {
        width: 100%;
    }
    .contact .map {
        margin: min( 40px, 2.5vw ) auto 0;
        width: 100%;
        max-width: 1000px;
    }
    .contact .map iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
    }

    footer {
        padding: 0;
        height: 60px;
    }
    footer .links-flex {
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        display: none;
    }
    footer .links-flex .link {
        width: 18%;
        display: flex;
        flex-direction: column;
    }
    footer .links-flex .link .head {
        color: #05b1bf;
    }
    footer .links-flex .btns {
        width: 316px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: min( 40px, 2.4vw ) 0;
    }
    footer .common-btn {
        width: 320px;
        height: 94px;
    }
    footer .fixed-right {
        display: none;
    }
    footer .fixed-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55px;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        z-index: 90;
    }
    footer .fixed-bottom .common-btn {
        width: 50%;
        height: 100%;
        border-radius: 0;
        transition: filter ease-out 0.5s;
    }
    footer .fixed-bottom .common-btn + .common-btn {
        border-left: 1px solid #fff;
    }
    @media ( hover: hover ) {
        footer .fixed-bottom .common-btn:hover {
            filter: brightness( 200% );
            opacity: 1.0;
        }
    }
}


/**
 * PC用設定
 */
@media ( width >= 768px ) {
    header {
        display: none;
    }

    .mv {
        position: relative;
        margin: 0 auto;
        width: 100%;
        max-width: var(--max-width);
        height: 400px;
        background: var(--wpr-bg-61e74100-31d1-4cb2-99cb-5035e34729fd) no-repeat center / cover;
    }
    .mv h1 {
        position: absolute;
        top: 55%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: calc( 40 * clamp( 1200px, 100vw, 1600px ) / 1600 );
        font-weight: 700;
        text-align: center;
        text-shadow:
            0 0 0.4em #0006,
            0 0 0.4em #0006,
            0 0 0.4em #0006,
            0 0 0.4em #0006;
    }

    .gnavi {
        position: absolute;
        top: 68px;
        left: 0;
        margin: 0;
        width: 100%;
    }
    .gnavi .wrap {
        margin: 0 auto;
        padding: 0 calc( 80 * min( 100vw, 1600px ) / 1600 );
        width: max-content;
        background: #fffc;
        box-shadow: 5px 5px 8px #b8b6b4b3;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        transition: all 0.5s;
    }
    .gnavi .wrap a {
        display: block;
        padding: 1.6em 0;
        color: rgb( 2, 178, 191 );
        font-size: calc( 18 * min( 100vw, 1600px ) / 1600 );
        font-weight: 700;
        height: 100%;
    }
    .gnavi-fixed {
        position: fixed;
        top: 0;
        margin: 0 auto;
        padding: 0 calc( 80 * min( 100vw, 1600px ) / 1600 );
        width: 100%;
        background: #fffe;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        transform: translateY( -160px );
        transition: transform 0.5s;
        z-index: 99;
    }
    .gnavi-fixed.show {
        transform: translateY( 0 );
    }
    .gnavi-fixed a {
        display: block;
        padding: 1.6em 0;
        color: rgb( 2, 178, 191 );
        font-size: calc( 18 * min( 100vw, 1600px ) / 1600 );
        font-weight: 700;
        height: 100%;
    }

    .common-btn {
        color: #fff;
        font-size: min( 24px, 2.0vw );
        line-height: 1.0;
        background: linear-gradient( to right, #008cce, #05b1bf );
        border-radius: 5px;
        box-shadow: 3px 3px 3px #c6c4c480;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    @media ( hover: hover ) {
        .common-btn:hover {
            color: #fff;
        }
    }
    .common-btn.tel::before {
        content: "";
        margin: 0 0.4em 0 0;
        width: 1.0em;
        height: 1.0em;
        background: var(--wpr-bg-063b23db-e702-4869-b1d0-801140c82554) no-repeat center / contain;
    }        
    .common-btn.web::before {
        content: "";
        margin: 0 0.4em 0 0;
        width: 1.0em;
        height: 1.0em;
        background: var(--wpr-bg-4e4098fe-8366-4bd2-9a60-5e4f9ba27c66) no-repeat center / contain;
    }

    .breadcrumbs {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 90%;
        max-width: 1200px;
        font-size: calc( 18 * min( 100vw, 1200px ) / 1200 );
    }

    .single-main {
        margin: 0 auto;
        width: 96%;
        max-width: 960px;
    }

    .single-main .common {
        margin: calc( 40 * min( 100vw, 960px ) / 960 ) auto;
        width: 90%;
        max-width: 960px;
    }

    .single-main .ceramic-bnr{
        margin: 10px auto calc( 40 * min( 100vw, 960px ) / 960 ) ;
        width: 100%;
        max-width: 600px;
    }

    .single-main .eyecatch {
        margin: 0 auto calc( 80 * min( 100vw, 960px ) / 960 );
        width: 100%;
        max-width: 640px;
    }
    .single-main .eyecatch > img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .single-main h2 {
        margin: calc( 40 * min( 100vw, 960px ) / 960 ) auto calc( 40 * min( 100vw, 960px ) / 960 );
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: calc( 25 * min( 100vw, 960px ) / 960 );
        font-weight: 700;
        text-align: left;
        background: linear-gradient( to right, #00b3c2, #69cbd0 );
    }

    .single-main h3 {
        margin: calc( 40 * min( 100vw, 960px ) / 960 ) auto calc( 40 * min( 100vw, 960px ) / 960 );
        padding: 0.25em 0.5em;
        color: var(--fg-color);
        font-size: calc( 22 * min( 100vw, 960px ) / 960 );
        font-weight: 700;
        text-align: left;
        border-left: 5px solid #00b3c2;
    }

    .single-main p {
        margin: 1.0em 0;
        padding: 0;
        color: var(--fg-color);
        font-size: calc( 16 * min( 100vw, 960px ) / 960 );
        font-weight: 400;
        text-align: left;
        line-height: 1.8;
    }

    .single-main p > img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
    }

    .single-main .single-list {
        margin: calc( 40 * min( 100vw, 960px ) / 960 ) auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: calc( 20 * min( 100vw, 960px ) / 960 );
    }
    .single-main .single-list .single-item {
        width: calc( ( 100% - ( 40 * min( 100vw, 960px ) / 960 ) ) / 3.0 );
    }
    .single-main .single-list .single-item .pic {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .single-main .single-list .single-item .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .single-main .single-list .single-item .cats {
        margin: calc( 20 * min( 100vw, 960px ) / 960 ) 0 calc( 10 * min( 100vw, 960px ) / 960 );
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: calc( 4 * min( 100vw, 960px ) / 960 );
    }
    .single-main .single-list .single-item .cats .cat {
        padding: 0.2em 1.0em;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 960px ) / 960 );
        background: #05b1bf;
    }
    .single-main .single-list .single-item h3 {
        margin: 0.5em 0 0.2em;
        color: #05b1bf;
        font-size: calc( 19 * min( 100vw, 960px ) / 960 );
        font-weight: 700;
    }
    .single-main .single-list .single-item .date {
        margin: 0.2em 0 0.5em;
        font-size: calc( 14 * min( 100vw, 960px ) / 960 );
        font-weight: 600;
    }
    .single-main .single-list .single-item p {
        margin: 0.5em 0;
        font-size: calc( 15 * min( 100vw, 960px ) / 960 );
    }
    .single-main .single-list .single-item .single-detail {
        position: relative;
        display: block;
        margin: 1.0em auto;
        padding: 1.0em 0;
        width: 90%;
        max-width: 280px;
        font-size: calc( 15 * min( 100vw, 960px ) / 960 );
        font-weight: 600;
        text-align: center;
        border: 2px solid #05b1bf;
        border-radius: 4.0em;
    }
    .single-main .single-list .single-item .single-detail::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 10%;
        width: 0.6em;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #05b1bf;
        border-bottom: 2px solid #05b1bf;
        transform: translateY( -50% ) rotate( -45deg );
    }


    .contact {
        padding: min( 80px, 5.0vw ) 0 min( 40px, 2.5vw );
    }
    .contact strong {
        margin: 0 auto;
        padding: 0 0 0.5em;
        width: 100%;
        max-width: 1000px;
        color: #1d4552;
        font-size: min( 40px, 2.5vw );
        font-family: var(--font-mincho);
        font-weight: 500;
        text-align: center;
        text-shadow: var(--text-white-shadow);
        border-bottom: 1px solid #b7b7b7;
				display:block;
    }
    .contact .catch {
        margin: 1.0em 0;
        font-size: min( 24px, 1.5vw );
        text-align: center;
    }
    .contact .btns {
        margin: min( 20px, 1.25vw ) auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 min( 80px, 5.0vw );
    }
    .contact .btns .common-btn {
        width: 50%;
        max-width: 380px;
        height: 112px;
        font-size: min( 30px, 1.875vw );
    }
    .contact .logo {
        margin: min( 60px, 3.75vw ) auto;
        width: 80%;
        max-width: 393px;
    }
    .contact .info {
        margin: min( 20px, 1.25vw ) auto;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 min( 40px, 2.5vw );
    }
    .contact .info .left {
        width: 50%;
    }
    .contact .info .left dl {
        padding: min( 10px, 0.83vw ) 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .contact .info .left dl + dl {
        border-top: 1px solid #ccc;
    }
    .contact .info .left dl dt {
        width: min( 100px, 8.33vw );
        color: #05b1bf;
        font-size: min( 20px, 1.67vw );
        font-weight: 500;
        text-align: center;
    }
    .contact .info .left dl dd {
        padding: 0 0 0 1.0em;
        width: calc( 100% - min( 100px, 8.33vw ) );
        font-size: min( 20px, 1.67vw );
        font-weight: 500;
        text-align: left;
    }
    .contact .info .left dl dd .small {
        font-size: min( 16px, 1.33vw );
    }
    .contact .info .right {
        width: 50%;
    }
    .contact .map {
        margin: min( 40px, 2.5vw ) auto 0;
        width: 100%;
        max-width: 1000px;
    }
    .contact .map iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
    }

    footer {
        padding: min( 120px, 7.5vw ) 0 min( 40px, 2.5vw );
        background: var(--wpr-bg-850286ba-54c1-46d9-ada1-cb386d07a9d1) no-repeat top center / cover;
    }
    footer .links-flex {
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    footer .links-flex .link {
        width: 18%;
        display: flex;
        flex-direction: column;
        gap: min( 8px, 0.5vw ) 0;
    }
    footer .links-flex .link .head {
        color: #05b1bf;
    }
    footer .links-flex .btns {
        width: 316px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: min( 40px, 2.4vw ) 0;
    }
    footer .common-btn {
        width: 320px;
        height: 94px;
    }
    footer .fixed-right {
        position: fixed;
        top: 50%;
        right: 0;
        width: auto;
        height: 80.0vh;
        max-width: 110px;
        max-height: 394px;
        opacity: 0.0;
        transform-origin: right center;
        transform: translateY( -50% ) scaleX( 0.0 );
        transition: transform 0.01s ease-out 0.5s, opacity ease-out 0.5s;
        z-index: 99;
    }
    .fixed-right.show {
        opacity: 1.0;
        transform: translateY( -50% ) scaleX( 1.0 );
        transition: scale ease-out 0.01s, opacity ease-out 0.5s;
    }
    .fixed-right a {
        display: block;
        margin: 1px 0;
        height: 50%;
        max-height: 196px;
    }
    .fixed-right a img {
        display: block;
        width: 100%;
        height: 100%;
    }
    footer .fixed-bottom {
        display: none;
    }
}
