@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*テーブル開閉のボタン*/
.wp-block-lazyblock-tableac2 .table-open {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 8px 25px 8px 13px;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    -webkit-box-shadow: inset 1px 1px 1px #fff;
    box-shadow: inset 1px 1px 1px #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.8em;
}

.wp-block-lazyblock-tableac2 .table-open::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
    transition: all 0.5s;
}


.wp-block-lazyblock-tableac2 .table-open.on:after {
    transform: translateY(1px) rotate(315deg);
}
/* リッチリスト */
dl.rich_list {
	margin: 20px 0;
	padding: 0;
}
dl.rich_list dt {
	position: relative;
	background: var(--color_main);
	padding: 12px 15px 10px;
	margin: 0 0 10px;
	border: 0 !important;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	border-radius: 7px;
}
dl.rich_list dt:before {
	content: "";
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 12px 7px 0;
	border-color: var(--color_main) transparent transparent;
	left: 50px;
	bottom: -12px;
}
dl.rich_list dt[style]:before {
	background: inherit;
	border-color: transparent #fff #fff;
}
dl.rich_list dd {
	padding: 0;
	margin: 0 0 15px !important;
	border: 0 !important;
	line-height: 1.5em;
}
.post_content dl.rich_list dd .h5,
dl.rich_list dd .h5 {
	margin: 0 0 5px !important;
	padding: 3px 0 2px 30px;
	background: url(./images/icon-check.png) no-repeat left top !important;
	border: 0 !important;
	background-size: 28px 28px !important;
	font-weight: bold;
	line-height: 1.2em;
	color: #030 !important;
}
dl.rich_list dd p br:first-child,
dl.rich_list dd .h5+br {
	display: none;
}
dl.rich_list dd .h5 b {
	color: #e22;
}
dl.rich_list dd p {
	margin: 0 0 0 20px !important;
	padding: 0;
	line-height: inherit;
}
.article-body dl.rich_list dd ul li {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.3em !important;
}
.article-body dl.rich_list dd ul li:before {
	background: #a8a8f4;
	top: 5px;
}
@media (max-width: 600px) {
	dl.rich_list dt {
		padding: 10px 12px 8px;
	}
}
/* リッチリスト拡張（開閉付き：2024/10/18）＋ 開閉ブロックinブロック（2024/11/12） */
.openclose-inblock > .lazyblock-inner-blocks,
.rich_list_close dl.rich_list {
    margin-bottom: 0;
    padding-bottom: 0;
}
.openclose-inblock,
.rich_list_close {
    margin-bottom: 20px;
    position: relative;
}
.openclose-inblock > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close dl.rich_list dt:nth-of-type(n+2),
.rich_list_close dl.rich_list dd:nth-of-type(n+2) {
    max-height: 1500px;
    transition: all 0.7s ease-in-out;
}
.openclose-inblock:has(input:checked) > .lazyblock-inner-blocks > *:not(:last-child) {
    margin-bottom: 30px;
}
.openclose-inblock:has(input:not(:checked)) > .lazyblock-inner-blocks > *:nth-child(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dt:nth-of-type(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dd:nth-of-type(n+2) {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0 !important;
    max-height: 0;
    transition: all 0.2s ease-in-out;
}
.openclose-inblock input,
.rich_list_close input {
    display: none;
}
.openclose-inblock:has(input:not(:checked)) label:before,
.rich_list_close:has(input:not(:checked)) label:before {
    content: attr(data-text-open);
}
.openclose-inblock:has(input:checked) label:before,
.rich_list_close:has(input:checked) label:before {
    content: attr(data-text-close);
}
.openclose-inblock label,
.rich_list_close label {
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
    background: var(--color_main);
    color: var(--color_bg);
    padding: 5px 20px;
    border-radius: 40px;
    box-shadow: rgba(0,0,0,0.5) 2px 2px 5px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s linear;
    font-size: 90%;
    line-height: 1.2em;
    z-index: 2;
}
.openclose-inblock label:hover,
.rich_list_close label:hover {
    filter: brightness(1.1);
    left: -1px;
    top: -1px;
    box-shadow: rgba(0,0,0,0.5) 3px 3px 5px;
    transition: all 0.2s linear;
}
.openclose-inblock:after,
.rich_list_close:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}
.openclose-inblock:has(input:checked):after,
.rich_list_close:has(input:checked):after {
    display: none;
}
.rich_list ul:not([class]) li,
ul[class="wp-block-list"] li,
.cap_box_content ul:not([class]) li {
    list-style: disc;
}
.rich_list dd ul {
    margin-left: 15px;
}

/* ■■■■■ .tableclose ■■■■■ */
.tableclose label input,
.tableclose:has(label[data-show="1"] input[type="checkbox"]) table tr:nth-of-type(n+2),
.tableclose:has(label[data-show="2"] input[type="checkbox"]) table tr:nth-of-type(n+3),
.tableclose:has(label[data-show="3"] input[type="checkbox"]) table tr:nth-of-type(n+4),
.tableclose:has(label[data-show="4"] input[type="checkbox"]) table tr:nth-of-type(n+5),
.tableclose:has(label[data-show="5"] input[type="checkbox"]) table tr:nth-of-type(n+6),
.tableclose:has(label[data-show="6"] input[type="checkbox"]) table tr:nth-of-type(n+7),
.tableclose:has(label[data-show="7"] input[type="checkbox"]) table tr:nth-of-type(n+8),
.tableclose:has(label[data-show="8"] input[type="checkbox"]) table tr:nth-of-type(n+9),
.tableclose:has(label[data-show="9"] input[type="checkbox"]) table tr:nth-of-type(n+10),
.tableclose:has(label[data-show="10"] input[type="checkbox"]) table tr:nth-of-type(n+11),
.tableclose:has(label:not([data-show]) input[type="checkbox"]) table tr:nth-of-type(n+5) {
    display: none;
}
.tableclose:has(label input[type="checkbox"]:checked) table tr {
    display: table-row !important;
}

.tableclose label {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    margin: 5px 0 20px;
    background: linear-gradient(175deg, var(--color_main_thin) 0%,var(--color_main) 80%);
    background: var(--color_main);
    color: #fff !important;
    box-shadow: rgba(0,0,0,0.5) 2px 2px 5px;
    border: 1px solid #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4em;
}
.tableclose label:hover {
    background: var(--color_main) !important;
    box-shadow: rgba(0,0,0,0.6) 2px 2px 5px;
    top: -2px;
    left: -1px;
}
.tableclose label:active {
    box-shadow: rgba(0,0,0,0.6) 0 1px 5px;
    top: 0;
    left: 0;
}
.tableclose label:after {
    content: "▲クリックで開く";
}
.tableclose label:has(input:checked):after {
    content: "▲クリックで閉じる";
}
.tableclose label[data-open-text]:after {
    content: attr(data-open-text);
}
.tableclose label[data-close-text]:has(input:checked):after {
    content: attr(data-close-text);
}

.post_content table th {
    background: var(--color_main);
    color: var(--color_bg);
}
/**header/footer**/
.l-footer__foot {
    padding-top: 0;
    padding-bottom: 0;
}

.l-footer__foot .l-container {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: end;
}

.l-footer .footer-logo-link {
    display: block;
    order: 2;
}

.l-footer .footer-policy-link {
    display: block;
    order: 3;
    color: #fff;
}

.l-footer .copyright {
    order: 4;
    color: #fff;
}
@media (min-width: 1024px) {
    #header.l-header {
        width: calc(100vw - 155.1282051282vh);
        min-width: 190px;
        max-width: 380px;
        height: 100%;
        bottom: 0;
        font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
        background: #fff;
        z-index: 99;
        position: fixed;
        font-size: clamp(15px, 1.0714285714vw, 20px);
    }
    #body_wrap #header.l-header {
        top: var(--swl-offset_y);

    }
    #body_wrap {
        padding-left: clamp(190px, 100vw - 155.1282051282vh, 380px);
    }
    .logo-sp {
        display: none;
    }
    .-parallel-bottom .l-header__inner {
        padding: 2.3em 1.3em 6.7em;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        flex-wrap: nowrap;
    }
    .-parallel-bottom .l-header__gnav {
        order: initial;
        margin-top: auto;
    }
    .-parallel-bottom .l-header__logo {
        order: initial;
        padding: 0;
    }
    .-parallel-bottom .l-header__logo img {
        width: 6.7em;
    }
    .c-gnav>.menu-item {
        height: auto;
    }
    .c-gnav {
        text-align: left;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .-parallel .l-header__gnav .c-gnav>li>a {
        padding: 7.5px 0 7.5px 5px;
        transition: 0.3s;
    }
    .-parallel .l-header__gnav .c-gnav>li>a:hover {
        color: #f0ada5;
    }
    .c-gnav>.menu-item>a .ttl {
        font-size: clamp(15px, 1.0714285714vw, 20px);
        line-height: 27px;
    }

    .w-header a:not(.o-header-button) {
        display: block;
        text-align: center;
    }
    .-parallel .w-header {
        margin-bottom: 0;
        margin-top: 70px;
    }

    .-parallel .w-header .o-header-button {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 3em;
        width: 100%;
        padding-right: 1em;
        border: 1px solid #d05a6e;
        background-color: #d05a6e;
        color: #fff;
        font-size: 0.93em;
        font-weight: 500;
        border-radius: 0.4em;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        margin: 2em 0;
    }

    .o-header-button::after {
        content: "";
        width: 0.4em;
        height: 0.7em;
        position: absolute;
        right: 1em;
        top: 50%;
        transform: translateY(-50%);
        background-image: url(/wp-content/themes/fememe-theme/assets/images/icon_next.png?d1ej0dsg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    /*footer*/
    .l-footer__foot .l-container {
        padding: 0 80px 40px;
    }

    .l-footer__nav {
        background-color: #fff;
        padding: 60px 0;
        order: 1;
        width: calc(100% + 160px);
        margin-left: -80px;
        margin-right: -80px;
        margin-bottom: 40px;
    }

    .l-footer .footer-logo-link {
        margin-right: auto;
    }

    .l-footer .copyright {
        margin-left: 30px;
    }

    .l-footer .footer-policy-link {
        font-size: 12px;
    }

    .l-footer .footer-policy-link::after {
        display: inline-block;
        content: "";
        margin-left: 10px;
        background-image: url(/wp-content/themes/fememe-theme/assets/images/icon_next_gray.png?c42fug36);
        background-repeat: no-repeat;
        background-size: contain;
        width: 6px;
        height: 10px;
    }

    .l-footer__nav li:first-child a {
        border-left: none;
    }

    .l-footer__nav a {
        border-right: none;
        padding: 0 2em;
        font-size: 15px;
        transition: 0.3s;
    }

    .l-footer__nav a:hover {
        text-decoration: none;
        color: #f0ada5;
    }

    .l-footer__nav a:after {
        transition: 0.3s;
        display: inline-block;
        content: "";
        margin-left: 10px;
        background-image: url(/wp-content/themes/fememe-theme/assets/images/icon_next_black.png?uctb4aam);
        background-repeat: no-repeat;
        background-size: contain;
        width: 5px;
        height: 9px;
    }

    .l-footer__nav a:hover::after {
        background-image: url(/wp-content/themes/fememe-theme/assets/images/icon_next_pink.png?8718tf78);
    }
}

@media (min-width: 960px) and (max-width: 1023px) {

    #sp_menu,
    .l-header__menuBtn.sp_ {
        display: block !important;
    }

    .l-header.-parallel .w-header,
    #gnav.l-header__gnav {
        display: none !important;
    }

    .l-header__inner {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        align-items: center;
        display: flex;
    }

    .-parallel-bottom .l-header__logo {
        order: 1;
        padding: 0;
        width: auto;
        margin-right: auto;
    }

    .-parallel-bottom .l-header__inner {
        padding: 0 0 0 1em;
        height: 60px;
    }

    .l-header__menuBtn {
        order: 2;
    }

    .l-header[data-spfix="1"] {
        position: sticky;
        top: var(--swl-adminbarH, 0);
    }
}

@media (max-width: 1023px) {
    .logo-pc {
        display: none;
    }

    .l-header__logo img {
        width: 123px;
    }

    .l-header {
        z-index: 102;
        font-size: 15px;
        font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    }

    .l-header__menuBtn {
        margin-top: 15px;
        position: fixed;
    }

    .p-spMenu__inner::before {
        background-color: #d05a6e;
        background-image: url(/wp-content/themes/fememe-theme/assets/images/menu_bg.png?kirxqp50);
        background-size: 162px;
    }

    .p-spMenu__inner {
        width: 100vw;
        top: calc(var(--swl-adminbarH) + 60px);
        opacity: 0;
        padding-top: 0;
        transition: opacity 0.5s, visibility 0.5s;
    }

    .p-spMenu__body {
        padding: 0;
        height: calc(100% - (var(--swl-adminbarH) + 60px));
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .p-spMenu__nav {
        padding: 0 10px;
        width: 100%;
    }

    .-right .p-spMenu__inner,
    [data-spmenu=opened] .p-spMenu__inner {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    [data-spmenu=opened] .p-spMenu__inner {
        opacity: 1;
    }

    [data-spmenu=opened] .c-iconBtn__label,
    .-right .p-spMenu__closeBtn,
    .c-widget__title.-spmenu {
        display: none;
    }

    .p-spMenu__nav {
        margin-top: 0;
    }

    [data-spmenu=opened] .icon-menu-thin:before {
        content: "\e920";
    }

    [data-spmenu=opened] .l-header__menuBtn.sp_ .c-iconBtn:after {
        content: "CLOSE";
        font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
        font-weight: 500;
        font-size: 10px;
        display: block;
        width: 100%;
    }

    .p-spMenu__bottom {
        background-color: rgba(248, 220, 208, 0.9);
        width: 100%;
    }

    .c-spnav a {

        font-size: 14px;
        font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    }

    .c-spnav>li>a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        padding: 1em .5em;
    }

    .c-spnav>li.menu-item-has-children {
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    }

    .c-spnav>li.menu-item-has-children>a {
        border-bottom: none;
    }

    .c-spnav>li>a::after {
        content: "";
        width: 7px;
        height: 13px;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -6px;
        background-image: url(/wp-content/themes/fememe-theme/assets/images/icon_next.png?3ncqs140);
        background-repeat: no-repeat;
        background-size: contain;
        transition: transform 0.3s;
    }

    .c-spnav .menu-item-has-children>a::after {
        transform: rotate(90deg);
    }

    .c-spnav .menu-item-has-children button {
        opacity: 0;
    }

    .c-listMenu a:hover {
        background-color: transparent;
    }

    .c-listMenu .sub-menu a {
        border-bottom: none;
        padding: 0.3em 0;
    }

    .c-listMenu .sub-menu {
        padding-left: 3em;
    }

    .c-listMenu .sub-menu.is-opened {
        margin-bottom: 0.5em;
    }

    .c-spnav .menu-item-has-children:has(> .is-opened) a:after {
        transform: rotate(-90deg);
    }

    .p-spMenu__bottom .custom-html-widget {
        padding: 40px 0;
        text-align: center;
        color: #2b2d31;
    }

    .p-spMenu__bottom .c-contactItem__title {
        font-family: "Jost", sans-serif;
        font-size: 20px;
        margin-bottom: 0.15625em;
    }

    .p-spMenu__bottom .c-contactItem__lead {
        margin-bottom: 2.5em;
        font-size: 12px;
    }

    .p-spMenu__bottom .c-contactItem__link {
        font-family: "Jost", sans-serif;
        font-size: 12px;
    }

    .p-spMenu__bottom .c-contactItem__link img {
        width: 30px;
        margin: 0 auto 5px;
        display: block;
    }

    /*footer*/
    .l-footer__nav {
        display: none;
    }

    .l-footer__foot .l-container {
        padding: 26px 0;
        flex-direction: column;
        align-items: center;
    }

    .l-footer__foot .footer-logo-link {
        margin-bottom: 30px;
    }

    .l-footer__foot .footer-logo-link img {
        width: 166px;
    }

    .l-footer .copyright {
        margin-top: 5px;
    }

    .l-footer .copyright,
    .l-footer .footer-policy-link {
        font-size: 10px;
    }
}

/* 投稿記事でのパンくず内の記事タイトル表示 */
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text {
	display: inline !important;
    white-space: wrap;
}
.single .p-breadcrumb__item:after {
    display: inline-block;
    margin: 0 8px;
}
.single .p-breadcrumb .p-breadcrumb__list {
    display: block !important;
	width: auto !important;
    /*
	max-width: none !important;
	overflow-x: auto !important;
    */
    font-family: serif;
    font-size: 14px;
    white-space: wrap;
}
@media (min-width: 768px) {
    .single .p-breadcrumb .p-breadcrumb__list {
        font-size: 15px;
    }
}