/*
Theme Name: RHINO GYM
*/

/**
 * #.# 要素の共通スタイル設定
 *
 * 要素に共通して適用するCSS。
 */

body {
    color: #222;
    font-family: "Noto Sans JP";
}
body * {
	box-sizing: border-box;
}

a {
    color: #222;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

input[type="submit"], button[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
}

@media screen and (max-width:768px){
    body {
        font-size: 14px;
    }
}


/**
 * #.# 共通class
 *
 * フォント設定、横幅、レスポンシブ対応が可能となる共通class。
 */

/* フォント変更 */
.font-din {
	font-family: "DIN Condensed", "DIN-Condensed" !important;
}

.font-noto {
	font-family: "Noto Sans JP" !important;
}

.font-400 {
    font-weight: 400 !important;
}
.font-500 {
    font-weight: 500 !important;
}
.font-700 {
    font-weight: 700 !important;
}

/* 横幅設定 */
.wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

/* PCのみ、またはSPのみ表示 */
.view-over-769 {
    display: block;
}

.view-under-768 {
    display: none;
}

@media screen and (max-width:959px){
	.wrapper {
        width: 90%;
    }
}

@media screen and (max-width:768px){
	.view-over-769 {
	    display: none;
	}

	.view-under-768 {
		display: block;
	}
}


/**
 * #.# 汎用デザイン
 *
 * タイトルやボタン、ポイントアイコンのテンプレート
 */

/* h2 ----- セクションタイトル共通デザイン */
.title-blue {
    margin-bottom: 30px;
    text-align: center;
    font-size: 82px;
    font-family: "DIN Condensed", "DIN-Condensed";
    line-height: 1.1;
    color: #17C1B0;
}
.title-blue > span {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    display: block;
    font-size: 16px;
    font-family: "Noto Sans JP";
    color: #222;
}
.title-blue > span::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -3px;
    background: #17C1B0;
}

@media screen and (max-width:768px){
    .title-blue {
        font-size: 40px;
    }
    .title-blue span {
        font-size: 12px;
    }
}

/* タイトル ----- 文字下青、他グレーのアンダーライン */
.title-underline-blue {
	margin-bottom: 30px !important;
	padding: 0 0 5px 10px;
	position: relative;
	font-size: 22px !important;
	font-weight: 700 !important;
	border-bottom: 2px solid #EBEBEB;
}
.title-underline-blue::after {
	content: "";
	width: 180px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #17C1B0;
}

/* 文字装飾 ----- 文末に※マーク */
.text-attention {
    position: relative;
}
.text-attention::after {
    content: "※";
    position: absolute;
    top: -4px;
    right: -12px;
    font-size: 12px;
}

/* 文字装飾 ----- リンクの文字を青、アンダーライン */
.link-blue {
    color: #17C1B0 !important;
    text-decoration: underline;
    cursor: pointer;
}


/* 文字装飾 ----- リンクの文字を青、左側に右矢印 */
.link-blue-arrow {
    width: fit-content;
    margin: 10px 0 5px;
    display: block;
    border-bottom: 2px solid #17C1B0;
    color: #17C1B0;
}
.link-blue-arrow::before {
    content: "";
    margin: 0 -2px 0 2px;
    display: inline-block;;
    border: 6px solid transparent;
    border-left: 10px solid #17C1B0;
}

/* ボタン ----- 背景ブルー文字ホワイト */
/*.button-blue {
    width: fit-content;
    height: fit-content;
    padding: 5px 40px 7px;
    position: relative;
    display: block;
    background: #17C1B0;
    border-radius: 19px;
    color: #FFF;
}
.button-blue::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 19px;
    border: 0;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
} */
.button-blue {
    width: fit-content;
    height: fit-content;
    padding: 8px 35px;
    position: relative;
    display: block;
    background: #17C1B0;
    color: #FFF;
    border-right: 3px solid #0CA595;
    border-bottom: 3px solid #0CA595;
    border-radius: 30px;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .5);
}

/* ボタン ----- 背景グレー文字ホワイト */
/*.button-gray {
    width: fit-content;
    height: fit-content;
    padding: 5px 40px 7px;
    position: relative;
    display: block;
    background: #CCC;
    border-radius: 19px;
    color: #FFF;
}
.button-gray::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 19px;
    border: 0;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}*/
.button-gray {
    width: fit-content;
    height: fit-content;
    padding: 8px 35px;
    position: relative;
    display: block;
    background: #CCC;
    color: #FFF;
    border-right: 3px solid #AAA;
    border-bottom: 3px solid #AAA;
    border-radius: 30px;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .5);
}

/* ボタン ----- 背景ホワイト文字ブラック */
.button-white {
    width: fit-content;
    height: fit-content;
    padding: 8px 35px;
    position: relative;
    display: block;
    background: #FFF;
    color: #222;
    border-top: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    border-right: 3px solid #D9D9D9;
    border-bottom: 3px solid #D9D9D9;
    border-radius: 30px;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .5);
}

/* 立体ボタン ----- 背景ブルー文字ホワイト */
.button-3d-blue {
    padding: 8px 35px;
    display: inline-block;
    background: var(--accent-color,#17C1B0);
    color: #FFF;
    border: none !important;
    border-right: 3px solid #0CA595;
    border-bottom: 3px solid #0CA595;
    border-radius: 30px !important;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .5);
    transition: opacity 0.2s;
}

/* アイコン ----- 丸のなかに右矢印 */
.circle-arrow::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: 10px;
    border-radius: 50%;
    background: #17C1B0;
}
.circle-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 19px;
    border: 0;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}

/* ホバーアクション ----- ホバーすると透過 */
/* opacity 0.6 */
.hover-op06 {
    transition: opacity 0.2s;
}
.hover-op06:hover {
    opacity: 0.6;
}

/* opacity 0.8 */
.hover-op08 {
    transition: opacity 0.2s;
}
.hover-op08:hover {
    opacity: 0.8;
}

/* マーカー ----- spanタグ内の文字に蛍光マーカー */
.marker-yellow {
    background: linear-gradient(transparent 60%, #FFCE2D 50%);
}

/* スクロールバー ----- バーを青色に変化 */
.scrollbar-blue::-webkit-scrollbar {
    height: 8px;
}
.scrollbar-blue::-webkit-scrollbar-track {
    background-color: transparent;
}
.scrollbar-blue::-webkit-scrollbar-thumb {
    background-color: #8DE2DA;
    border-radius: 3px;
}

/**
 * #.# JavaScript関連
 *
 * スライドやアコーディオンなど、JSで処理するスタイル
 */

/* ---------- 写真スライド 左にスクロール ---------- */
.scroll-left-slide-wrapper {
    width: 100%;
    padding: 60px 0;
    position: relative;
}
.scroll-left-slide-wrapper ul li {
    margin: 0 10px;
}
.scroll-left-slide-wrapper img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:758px){
    .scroll-left-slide-wrapper {
        padding: 40px 0;
    }
}

/* ---------- 背景縦文字 上にスクロール ---------- */
/* ---------- ※親sectionにposition: relative;を設定する ---------- */
.bg-scroll-up-word-wrapper {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: calc(50% - 683px);
    z-index: -20;
}

.bg-scroll-up-word {
    position: absolute;
    top: 0;
    right: 0;
}
.bg-scroll-up-word p {
    height: fit-content;
    padding-bottom: 50px;
    display: block;
    font-family: "DIN Condensed", "DIN-Condensed";
    font-size: 216px;
    color: #FFF;
    line-height: 216px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    user-select: none;
    -webkit-text-stroke: 2px #B9ECE7;
}

@media screen and (max-width:1365px){
    .bg-scroll-up-word-wrapper {
        right: 0;
    }
    .bg-scroll-up-word p {
        font-size: 133px;
        line-height: 133px;
    }
}

/* ---------- アコーディオンメニュー ---------- */
.js-accordion-content {
    display: none;
}

/**
 * #.# スライド関連 共通デザイン
 *
 * スライドで使用するドット等のスタイル
 */

/* ---------- ドットデザイン ブルー ---------- */
.slide-dots-blue {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.slide-dots-blue li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #EBEBEB;
    cursor: pointer;
    transition: background-color 0.5s;
}
.slide-dots-blue li:hover {
    background-color: #17C1B0;
}
.slide-dots-blue li.slick-active {
    background-color: #17C1B0;
}
.slide-dots-blue li button {
    display: none;
}

/**
 * #.# ヘッダー
 *
 * header.phpに反映するCSS。
 */

header {
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    transition: all 0.5s;
}

/* ---------- PC スクロールしたら背景色を変更 ---------- */
.js-header-color {
    background: #FFF;
}
.js-header-color > .header-wrapper > .header-logo > a > img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
}
.js-header-color > .header-wrapper > .header-nav-wrapper > .header-nav-secondary > .header-nav-info > a {
    background: #EBEBEB;
}

.js-header-color > .header-wrapper > .header-nav-wrapper > .header-nav-primary > ul > li > a,
.js-header-color > .header-wrapper > .header-nav-wrapper > .header-nav-primary > ul > li > p {
    color: #222;
}

.header-wrapper {
    max-width: 1366px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* ---------- ロゴ ---------- */
.header-logo {
    display: contents;
}
.header-logo > a {
    margin: auto 0;
    padding: 0 20px;
    display: inline-block;
}
.header-logo > a > img {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(222deg) brightness(107%) contrast(101%);
}

/* ---------- ハンバーガーメニューボタン ---------- */
.header-hamburger-button {
    width: 74px;
    height: 60px;
    position:fixed;
    top: 0;
    right: 0;
    z-index: 20;
    display: none;
    cursor: pointer;
}
.header-hamburger-button div {
    position: relative;
}
.header-hamburger-button div span {
    width: 44px;
    height: 4px;
    position: absolute;
    right: 15px;
    display: inline-block;
    border-radius: 3px;
    background: #17C1B0;
    transition: all 0.2s;
}
.header-hamburger-button div span:nth-of-type(1) {
	top:12px;
}
.header-hamburger-button div span:nth-of-type(2) {
	top:28px;
}
.header-hamburger-button div span:nth-of-type(3) {
	top:44px;
}
.header-hamburger-button.header-hamburger-open div span:nth-of-type(1) {
	top:18px;
    right: 18px;
    transform: translateY(10px) rotate(-45deg);
}
.header-hamburger-button.header-hamburger-open div span:nth-of-type(2) {
	opacity: 0;
}
.header-hamburger-button.header-hamburger-open div span:nth-of-type(3) {
	top:38px;
    right: 18px;
    transform: translateY(-10px) rotate(45deg);
}

/* ---------- ナビ ---------- */
.header-nav-primary > ul {
    display: flex;
    flex-direction: row;
}
.header-nav-primary > ul > li {
    height: 75px;
    position: relative;
    display: inline-block;
}
.header-nav-primary > ul > li:nth-child(3) {
    width: 250px;
}
.header-nav-primary > ul > li > a,
.header-nav-primary > ul > li > p {
    width: 100%;
    height: 100%;
    padding: 0 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF;
    transition: color 0.5s;
}
.header-nav-primary > ul > li > p {
    cursor: pointer;
}
.header-nav-primary > ul > li > a > span,
.header-nav-primary > ul > li > p > span {
    display: inline-block;
    font-size: 15px;
    color: #17C1B0;
}

/* ---------- ナビホバーアニメーション ---------- */
.header-nav-primary > ul > li::before {
    content: "";
    width: 100%;
    height: 2px;
    margin: auto;
    position: absolute;
    bottom: 7px;
    background: #17C1B0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
}
.header-nav-primary > ul > li:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* ---------- ドロップダウンメニュー ---------- */
.header-dropdown-menu {
    width: 100%;
    position: absolute;
    top: 75px;
    left: 0;
    background: #FFF;
    visibility: hidden;
    transition: all 0.2s;
    opacity: 0;
}
.header-dropdown-menu li {
    width: 100%;
    height: 50px;
    display: inline-block;
    border-bottom: 1px solid #E2E2E2;
    transition: all 0.2s;
}
.header-dropdown-menu li:last-child {
    border-bottom: none;
}
.header-dropdown-menu li:hover {
    background: #E2E2E2;
}
.header-dropdown-menu li a {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.header-nav-dropdown {
    min-width: 190px;
}
.header-nav-dropdown:hover .header-dropdown-menu {
    visibility: visible;
    opacity: 1;
}
.header-external-link,
.header-shoplink,
.header-sns{
    display:none;
}

/* ---------- 会社案内 ---------- */
.header-guide{
    display: none;
}
@media screen and (max-width:1365px){
    .header-guide {
        display: block;
        width: 100%;
        padding: 10px ;
        margin-bottom: 135px;
    }
    .header-guide ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px 0;
        padding-bottom: 10px;
    }
    .header-guide ul li {
        padding: 0 10px;
        border-left: 1px solid #222;
        line-height: 1rem;
    }
    .header-guide ul li:first-child {
        border-left: none;
    }
    .header-guide ul li a {
        padding: 0 10px;
        display: inline-block;
        font-size: 14px;
        color:#222;
    }
}
@media screen and (max-width:768px){
    .header-guide {
        margin-bottom: 110px;
    }
}
/* ---------- ヘッダー上部 ---------- */
.header-nav-secondary {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1px;
}

.header-nav-info {
    height: 75px;
    display: flex;
    flex-direction: column;
}
.header-nav-info a {
    width: 175px;
    height: 50%;
    padding-left: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #FFF;
    transition: background-color 0.5s;
    transition: opacity 0.2s;
}
.header-nav-info a:hover {
    opacity: 0.8;
}
.header-nav-info a:first-child {
    margin-bottom: 1px;
}
.header-nav-info a span {
    width: calc(100% - 42px);
    display: inline-block;
    text-align: center;
}

.header-nav-join {
    width: 200px;
    height: 75px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: center;
    background: #17C1B0;
    font-size: 22px;
    color: #fff;
    transition: opacity 0.2s;
}
.header-nav-join:hover {
    opacity: 0.8;
}
.header-nav-join::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.header-nav-join span {
    display: inline-block;
    font-size: 14px;
}

@media screen and (max-width:1365px){
    header {
        position: relative;
    }

    .header-wrapper {
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        transition: background-color 0.5s;
        overflow-y: scroll;
    }
    .header-wrapper:has(.header-hamburger-open) {
        height: 100dvh;
    }

    /* ---------- ロゴ ---------- */
    .header-logo {
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 15;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FFF;
        transition: background-color 0.5s;
    }
    .header-logo:has(+ .header-hamburger-open) {
        background: #F2F2F2;
    }
    .header-logo > a {
        padding: 6px 5px 5px;
    }
    .header-logo > a > img {
        width: 66px;
        height: auto;
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
    }

    /* ---------- ハンバーガーメニューボタン ---------- */
    .header-hamburger-button {
        display: block;
    }
    
    .header-wrapper:has(.header-hamburger-open) {
        background: #F2F2F2;
    }

    .header-hamburger-open + .header-nav-wrapper {
        visibility: visible;
        opacity: 1;
    }

    /* ---------- ナビ ---------- */
    .header-nav-wrapper {
        width: 90%;
        max-width: 600px;
        margin-top: 80px;
        visibility: hidden;
        transition: all 0.3s;
        opacity: 0;
    }

    .header-nav-primary {
        margin-bottom: 50px;
        margin-top: 10px;
    }
    .header-nav-primary > ul {
        width: 100%;   
        flex-direction: column;
        align-items: flex-start;
    }
    .header-nav-primary > ul > li {
        width: 100%;
        height: fit-content;
        border-bottom: 1px solid #E2E2E2;
    }
    .header-nav-primary > ul > li:nth-child(3) {
        width: 100%;
    }
    .header-nav-primary > ul > li > a,
    .header-nav-primary > ul > li > p {
        height: 60px;
        padding: 0 10px 0 25px;
        flex-direction: column-reverse;
        align-items: flex-start;
        color: #222;
        font-size: 14px;
        line-height: 1.1;
    }

    /* アコーディオンボタンのみwidth短縮 */
    .header-nav-dropdown > a {
        width: calc(100% - 80px) !important;
    }
    
    /* リンク 右矢印 */
    .header-nav-primary > ul > li > a::before {
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        top: 16px;
        left: 5px;
        border: 0;
        border-top: 2px solid #17C1B0;
        border-right: 2px solid #17C1B0;
        transform: rotate(45deg);
    }

    /* ドロップダウンメニュー ボタン */
    .header-dropdown-button {
        width: 80px;
        height: 60px;
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        z-index: 14;
    }
    .header-dropdown-button::before {
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
        top: calc(50% - 12px);
        right: 10px;
        border-radius: 50%;
        background: #17C1B0;
    }
    .header-dropdown-button::after {
        content: "";
        width: 14px;
        height: 2px;
        position: absolute;
        top: calc(50% - 1px);
        right: 15px;
        background: #FFF;
        border-radius: 1px;
    }
    .header-nav-primary > ul > li:has(.header-dropdown-menu) > button > span {
        content: "";
        width: 2px;
        height: 14px;
        position: absolute;
        top: 23px;
        right: 21px;
        background: #FFF;
        border-radius: 1px;
    }
    .header-nav-primary > ul > li:has(.dropdown-open) > button > span {
        display: none;
    }
    .header-external-link {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .header-brandlog-link {
        display: flex;
        max-width: 300px;
        width: 90%;
        margin: 0 auto;
        gap: 10px;
        align-items: center;
    }
    .header-shoplink {
        display: block;
        line-height: 1;
        width: 100%;
        margin: 0 auto;
        padding: 15px 0;
    }
    .header-sns {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .header-sns li {
       line-height: 1;
    }
    .header-sns li a {
        display: inline-block;
    }


    /* 丸アイコン プラス */
    /*.header-nav-primary > ul > li > p::before {
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
        top: calc(50% - 12px);
        right: 10px;
        border-radius: 50%;
        background: #17C1B0;
    }
    .header-nav-primary > ul > li > p::after {
        content: "";
        width: 14px;
        height: 2px;
        position: absolute;
        top: calc(50% - 1px);
        right: 15px;
        background: #FFF;
        border-radius: 1px;
    } */
    /*.header-nav-primary > ul > li:has(.header-dropdown-menu)::after {
        content: "";
        width: 2px;
        height: 14px;
        position: absolute;
        top: 23px;
        right: 21px;
        background: #FFF;
        border-radius: 1px;
        z-index: 1001;
    } */
    
    /*.header-nav-primary > ul > li:has(.dropdown-open)::after {
        content: none;
    }*/
    .header-nav-primary > ul > li > a > span {
        font-size: 24px;
    }

    /* ---------- ナビホバーアニメーション ---------- */
    .header-nav-primary > ul > li::before {
        display: none;
    }

    /* ---------- ドロップダウンメニュー ---------- */
    .header-dropdown-menu {
        position: static;
        display: none;
        background: #F2F2F2;
        visibility: visible;
        opacity: 1;
        transition: unset;
    }
    .header-dropdown-menu li {
        height: fit-content;
        padding: 0;
        border-bottom: none;
    }
    .header-dropdown-menu li:last-child {
        margin-bottom: 7px;
    }
    .header-dropdown-menu li a {
        padding: 7px 0 7px 35px;
        font-size: 14px;
        font-weight: 500;
        color: #17C1B0;
    }

    /* ---------- ヘッダー上部 ---------- */
    .header-nav-secondary {
        width: calc(100vw - 10vw);
        max-width: 600px;
        position: fixed;
        bottom: 2dvh;
        z-index: 5;
        flex-direction: column;
        gap: 0;
    }

    .header-nav-info {
        height: fit-content;
        flex-direction: row;
    }
    .header-nav-info a {
        width: 50%;
        height: 40px;
        background: #fff;
        border: 1px solid #17C1B0;
    }
    .header-nav-info a:first-child {
        margin-bottom: 0;
        border-right: none;
    }

    .header-nav-join {
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .header-nav-join span {
        margin-bottom: -3px;
        padding: 0 14px;
    }
    
}

@media screen and (max-width:768px){
    .header-nav-join {
        height: 55px;
    }
}

/**
 * #.# フッター
 *
 * footer.phpに反映するCSS。
 */

footer {
    width: 100%;
    background: #F5F5F5;
}

/* ---------- インフォメーション ---------- */
.footer-info {
    width: 100%;
    padding: 20px 0;
    background: #FFF;
}
.footer-info ul {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-info ul li {
    width: 25%;
    border-right: 2px solid #17C1B0;
    font-size: 20px;
}
.footer-info ul li:last-child {
    width: 50%;
    border-right: none;
}
.footer-info ul li > a,
.footer-line-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ---------- ロゴ & サイトマップ ---------- */
.footer-nav {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2%;
}

/* ロゴ */
.footer-link {
    width: 23%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-link a {
    display: inline-block;
}

/* サイトマップ */
.footer-sitemap {
    width: 75%;
    padding-bottom: 80px;
    position: relative;
}
.footer-sitemap > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
    grid-auto-rows: 25px;
    grid-auto-flow: dense;
}
.footer-sitemap > ul > li:nth-child(3) {
    grid-row: span 3;
    height: 130px;
}
.footer-sitemap > ul > li:nth-child(6) {
    grid-row: span 2;
    height: 130px;
}
.footer-sitemap > ul > li {
    width: 100%;
    height: fit-content;
}
.footer-sitemap > ul > li > a {
    padding: 0 5px 0 34px;
    position: relative;
    display: inline-block;
}
.footer-sitemap > ul > li > a::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 11px);
    left: 0px;
    border-radius: 50%;
    background: #17C1B0;
}
.footer-sitemap > ul > li > a::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 4px);
    left: 5px;
    border: 0;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}
.footer-subtitle {
    font-size: 14px;
    margin: 5px 0px 0px 30px;
}
.footer-subtitle p {
    color: #333;
}

/* 外部リンク */
.footer-external-link {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.footer-shoplink {
    padding: 0 10px;
    max-width: 150px;
    height: 100%;
    line-height: 1;
}
.footer-sns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.footer-sns li {
    line-height: 1;
}
.footer-sns li a {
    display: inline-block;
}

/* ---------- 会社案内 ---------- */
.footer-guide {
    width: 100%;
    padding: 10px ;
    background: #FFF;
}
.footer-guide ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 0;
}
.footer-guide ul li {
    padding: 0 10px;
    border-left: 1px solid #222;
    line-height: 1rem;
}
.footer-guide ul li:first-child {
    border-left: none;
}
.footer-guide ul li a {
    padding: 0 10px;
    display: inline-block;
    font-size: 14px;
}

/* ---------- コピーライト ---------- */
.footer-copyright {
    padding: 20px 0;
    text-align: center;
}

@media screen and (max-width:959px){
    /* ---------- インフォメーション ---------- */
    .footer-info ul {
        gap: 20px 0;
    }
    .footer-info ul li {
        width: 50%;
        max-width: 180px;
        border: none;
        font-size: 14px;
    }
    .footer-info ul li:first-child {
        border-right: 2px solid #17C1B0;
    }
    .footer-info ul li:last-child {
        width: 100%;
        min-width: fit-content;
    }
    .footer-info ul li img {
        width: 40px;
        height: 40px;
    }

    .footer-line-button img {
        width: 110px !important;
        height: auto !important;
    }

    /* ---------- ロゴ & サイトマップ ---------- */
    .footer-nav {
        padding: 40px 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .footer-link {
        width: 100%;
    }

    .footer-sitemap {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width:768px){
    /* ---------- ロゴ & サイトマップ ---------- */
    .footer-nav {
        padding: 40px 0 0;
        gap: 20px;
    }

    /* サイトマップ */
    .footer-sitemap {
        width: 100%;
        padding-bottom: 0;
    }
    .footer-sitemap > ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .footer-sitemap > ul > li {
        height: 100% !important;
        padding-left: 20px;
        display: flex;
        align-items: flex-start;
        font-size: 16px;
        flex-direction: column;
    }
    .footer-sitemap > ul > li > a {
        padding: 10px 0 10px 30px;
    }
    .footer-sitemap > ul > li > a::before {
        width: 20px;
        height: 20px;
        top: calc(50% - 9px);
    }
    .footer-sitemap > ul > li > a::after {
        width: 8px;
        height: 8px;
        top: calc(50% - 3px);
        left: 5px;
    }
    .footer-subtitle {
        margin: 0 0 10px 30px;
    }

    /* 外部リンク */
    .footer-external-link {
        position: static;
        gap: 10px 0;
        padding: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-shoplink {
        padding: 0 10px;
        max-width: 150px;
        height: 100%;
    }
    .footer-sns {
        width: 100%;
        padding: 10px;
    }

    /* ---------- 会社案内 ---------- */
    .footer-guide {
        padding: 10px 0;
    }
    .footer-guide ul li {
        padding: 0 5px;
    }
    .footer-guide ul li a {
        padding: 0 5px;
    }

}

/**
 * #.# 下層ページ共通css
 *
 * 下層ページやtemplateフォルダ内に適用したいCSSを記載。
 */

/* ---------- トップタイトル 画像あり ---------- */
#pagetop {
    width: 100%;
    height: 370px;
    padding-top: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#pagetop h2 {
    width: 90%;
    max-width: 1150px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
#pagetop h2 > img {
    width: auto;
    height: 100%;
    max-height: 180px;
    object-fit: contain;
}

@media screen and (max-width:1365px){
    #pagetop {
        height: 210px; 
        padding-top: 60px;
    }
    #pagetop h2 {
        max-width: 900px;
    }
    #pagetop h2 > img {
        max-height: 100px;
    }
}

@media screen and (max-width:768px){
    #pagetop {
        background-size: auto 100%;
        background-position: left 25% center;
    }
}

/* ---------- トップタイトル 文字のみ ---------- */
.page-title-underline {
    width: 100%;
    margin-bottom: 80px !important;
    padding-bottom: 8px;
    position: relative;
    text-align: center;
    font-size: 30px;
    font-weight: 700; 
}
.page-title-underline::after {
    content: "";
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    display: block;
    background: #17C1B0;
}

@media screen and (max-width:959px){
    .page-title-underline {
        font-size: 22px;
        margin-bottom: 40px !important;
    }
}

/* トップタイトルがない場合にヘッダー分の余白を作成 */
body {
    padding-top: 150px;
}
body:has(#pagetop),
body:has(#f-pagetop),
body:has(#firstview) {
    padding-top: 0 !important;
}

@media screen and (max-width:1365px){
    body {
        padding-top: 60px;
    }
}

/* ヘッダーカラー固定 */
.js-header-current {
    background: #FFF !important;
}
.js-header-current > .header-wrapper > .header-logo > a > img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%) !important;
}
.js-header-current > .header-wrapper > .header-nav-wrapper > .header-nav-secondary > .header-nav-info > a {
    background: #EBEBEB !important;
}

.js-header-current > .header-wrapper > .header-nav-wrapper > .header-nav-primary > ul > li > a,
.js-header-current > .header-wrapper > .header-nav-wrapper > .header-nav-primary > ul > li > p {
    color: #222 !important;
}

/* ---------- パンくずリスト ---------- */
.breadcrumb {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 0;
    overflow: auto;
}

.breadcrumb-item {
    display: inline;
}

.breadcrumb-item:nth-last-child(n + 2)::after {
    content: "";
    width: 5px;
    height: 5px;
    margin: 0 5px;
    display: inline-block;
    border-top: 1px solid #17C1B0;
    border-right: 1px solid #17C1B0;
    vertical-align: 3px;
    transform: rotate(45deg);
}

.breadcrumb-item a {
    color: #000;
    transition: opacity .6s;
}

.breadcrumb-item a:hover {
    opacity: .6;
}

@media screen and (max-width:959px){
    .breadcrumb {
        width: 95%;
    }
}

/* ---------- メインコンテンツ レイアウト ---------- */
.page-main {
    width: 100%;
    margin: 70px 0;
}

@media screen and (max-width:1365px){
    .page-main {
        margin: 40px 0 70px;
    }
}

/* ---------- WPグループ レイアウト ---------- */
.page-main .wrapper .wp-block-group {
    margin: 40px 0;
}

/* ---------- h3 デフォルト ---------- */
.page-main h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* ---------- dl dt dd シンプル ---------- */
.page-main.page-simple dl {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 1px solid #E8E8E8;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .2);
}
.page-main.page-simple dt,
.page-main.page-simple dd {
    padding: 20px 30px;
    border-top: 1px solid #E8E8E8;
}
.page-main.page-simple dt:first-child,
.page-main.page-simple dd:nth-child(2) {
    border-top: none
}

.page-main.page-simple dt {
    width: 30%;
    background: #F7F7F7;
}
.page-main.page-simple dd {
    width: 70%;
}

@media screen and (max-width:959px){
    .page-main.page-simple dl {
        width: 100%;
        border: none;
        box-shadow: none;
    }
    .page-main.page-simple dt,
    .page-main.page-simple dd {
        width: 100%;
    }
    .page-main.page-simple dd {
        border-top: none;
    }
    .page-main.page-simple dt:first-child {
        border-top: 1px solid #E8E8E8;
    }
    .page-main.page-simple dd:last-child {
        border-bottom: 1px solid #E8E8E8;
    }
}

/* ---------- ol 数字. ---------- */
.page-main ol {
    margin: 10px 0;
    list-style: none;
    counter-reset: number;
}
.page-main ol li {
    padding-left: 40px;
    position: relative;
}
.page-main ol li::before {
    counter-increment: number;
    content: '　' counter(number) '.';
    position: absolute;
    left: 0;
}

/* ---------- ol (数字) ---------- */
.list-number-secondary {
    margin: 10px 0 !important;
    list-style: none !important;
    counter-reset: number !important;
}
.list-number-secondary li {
    padding-left: 40px !important;
    position: relative !important;
}
.list-number-secondary li::before {
    counter-increment: number !important;
    content: '（' counter(number) '）' !important;
    position: absolute !important;
    left: 0 !important;
}

/* ---------- 404ページ ---------- */
.page-404 {
    text-align: center;
}
.page-404 > p {
    margin: 10px 0;
}
.page-404 > a {
    margin: 40px auto;
}

/**
 * #.# FAQ よくあるご質問
 *
 * コメント
 */

 #faq {
    padding: 30px 0;
    background: #8DE2DA;
}
#faq .title-blue {
    color: #FFF;
}
#faq .title-blue > span::before {
    background: #FFF;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.faq-list li {
    width: 100%;
    height: fit-content;
    background: #FFF;
}

/* ---------- Q. デザイン ---------- */
.faq-list-question {
    width: 96%;
    min-height: 70px;
    margin: 0 auto;
    padding: 10px 20px 10px 70px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}
/* Q.部分 */
.faq-list-question::before {
    content: "Q.";
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    color: #17C1B0;
}
/* 丸アイコン */
.faq-list-question span {
    width: 32px;
    height: 32px;
    margin-left: 10px;
    flex-shrink: 0;
    position: relative;
    background: #17C1B0;
    border-radius: 50%;
}
.faq-list-question span::before {
    content: "";
    width: 14px;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 7px);
    background: #FFF;
    border-radius: 1px;
}
.faq-list-question:not(:has(+ .js-accordion-open)) span::after {
    content: "";
    width: 2px;
    height: 14px;
    position: absolute;
    top: calc(50% - 7px);
    right: calc(50% - 1px);
    background: #FFF;
    border-radius: 1px;
}

/* ---------- A. デザイン ---------- */
.faq-list-answer {
    width: 96%;
    margin: 0 auto;
    padding: 30px 50px 30px 70px;
    position: relative;
    background-image : linear-gradient(to right, #17C1B0 8px, transparent 5px);
    background-size: 13px 1px;
    background-repeat: repeat-x;
    font-size: 17px;
    line-height: 1.6;
}
/*.faq-list-answer::before {
    content: "A.";
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    color: #E5829D;
}*/
/* ワンポイント */
.faq-list-answer-point {
    width: fit-content;
    margin: 15px 0 5px;
    display: block;
    border-bottom: 2px solid #17C1B0;
    font-size: 17px;
    color: #17C1B0;
}
.faq-list-answer-point::before {
    content: "";
    margin: 0 -2px -1px 2px;
    display: inline-block;;
    border: 6px solid transparent;
    border-left: 10px solid #17C1B0;
}

#faq .button-blue {
    margin: 40px auto 0 auto;
}

@media screen and (max-width:959px){
    /* ---------- Q. デザイン ---------- */
    .faq-list-question {
        padding: 10px 20px 10px 70px;
    }

}

@media screen and (max-width:768px){
    .faq-list {
        gap: 10px;
    }
    /* ---------- Q. デザイン ---------- */
    .faq-list-question {
        min-height: 60px;
        padding: 10px 15px 10px 50px;
        font-size: 14px;
    }

    /* Q.部分 */
    .faq-list-question::before {
        width: 50px;
        height: 60px;
        font-size: 22px;
        line-height: 50px;
    }
    /* 丸アイコン */
    .faq-list-question span {
        width: 26px;
        height: 26px;
        margin-left: 5px;
    }

    /* ---------- A. デザイン ---------- */
    .faq-list-answer {
        padding: 20px;
        font-size: 14px;
    }
    /*.faq-list-answer::before {
        width: 50px;
        height: 60px;
        padding-left: 2px;
        font-size: 22px;
        line-height: 50px;
    }*/

    #faq .button-blue {
        margin: 30px auto 0 auto;
    }
    /* ワンポイント */
    .faq-list-answer-point {
        font-size: 14px;
    }
}

    /*---------- 会員規約デザイン --------- */
    .membership-terms{
        background:#f3f3f3;
        padding:20px;
        color: #17C1B0;
        display: inline-block;
        width:50%;
    }
    .title-underline-pri,.title-underline-mem{
        margin-bottom: 30px !important;
        padding: 0 0 5px 10px;
        position: relative;
        font-size: 22px !important;
        font-weight: 700 !important;
        border-bottom: 2px solid #EBEBEB;
    }
    .title-underline-pri::after {
        content: "";
        width: 240px;
        height: 2px;
        position: absolute;
        bottom: -2px;
        left: 0;
        background: #17C1B0;
    }
    .title-underline-mem::after {
        content: "";
        width: 110px;
        height: 2px;
        position: absolute;
        bottom: -2px;
        left: 0;
        background: #17C1B0;
    }
    
@media screen and (max-width:959px){
    .title-underline-pri,.title-underline-mem {
            display:none;
    }
    .membership-terms{
        width: 100%;
    }
}
    a.membership-terms::before {
        content:" ";
        display: inline-block;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-right:5px;
        background: url(./images/pdf_24.png) no-repeat;
    }

    
/* ---------- カスタマーハラスメント デザイン ---------- */
h3.policy-heading.policy-heading--main {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}
h4.policy-heading.policy-heading--sub {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0 5px;
}
ul.policy-list {
    margin: 10px 0;
    list-style: disc;
    padding-left: 30px;
}
p.policy-label {
    font-weight: 600;
    padding: 20px 0 10px;
}
p.policy-date {
    text-align: right;
    padding-top: 20px;
}
p.policy-note {
    display: flex;
}
@media screen and (max-width: 959px) {
h3.policy-heading.policy-heading--main {
    margin-bottom: 15px;
    font-size: 20px;
}
h4.policy-heading.policy-heading--sub {
    font-size: 17px;
}

}