/* @import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@400;500;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap'); */

:root {
    --pink: #FF697E;
    --w_pink: #ffebee;
    --d_pink: #c94859;
    --gray: #C2BAB5;
    --black: #4E3624;

    --font_family: "Zen Maru Gothic", "Yu Gothic", "游ゴシック Medium", "YuGothic", 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    --font_serif: "EB Garamond", "游明朝 Medium", "YuMincho Medium", "游明朝体 Medium", "Hiragino Mincho ProN", "MS PMincho", serif;
}


/*====================================================
////id |  common
====================================================*/
body, button, input, select, optgroup, textarea {
	color: #4E3624;
    font-family: var(--font_family);
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}
a {
    transition: .15s ease-in-out;
}
.big {
    font-size: 1.2em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
    body, button, input, select, optgroup, textarea {
        font-size: min(3.8vw, 1.3rem);
    }
	.hidden-mob {
		display: none;
	}
	.display-mob {
		display: block;
	}
}

@media screen and (max-width:540px) {
	.hidden-small {
		display: none;
	}
	.display-small {
		display: block;
	}
}

@media screen and (max-width: 1060px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.hidden-pc_d-tab,
	.hidden-pc {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959.9px) {
	.hidden-tab {
		display: none;
	}
	.hidden-pc_d-tab ,
	.display-tab {
		display: block;
	}
}

@media screen and (min-width:960px) and (max-width:1330px) {
	.display-middle {
		display: block;
	}
}

@media screen and (min-width:1185px) {
	.hidden-wide {
		display: none;
	}
	.display-wide {
		display: block;
	}
}

/*====================================================
////id |  parts
====================================================*/
.heading-main {
    color: var(--pink);
    font-family: var(--font_serif);
    font-weight: 500;
    letter-spacing: .06em;
    position: relative;
}
.heading-primary::after,
.archiveHead .heading::after,
.heading-main::after {
    background-image: linear-gradient(to right, #FF697E, #FFCA93);
    border-radius: 3px;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        left: 0;
        bottom: .1em;
    height: 5px;
    width: 100%;
    z-index: -1;
}
.heading-main .wp-block-group__inner-container {
    display: flex;
        align-items: baseline;
        gap: .6em;
    padding-bottom: .3em;
}
.heading-main h2 {
    font-weight: 500;
    line-height: 1;
}
.heading-main span,
.heading-main p {
    color: var(--black);
    font-family: var(--font_family);
    font-size: .4em;
    font-weight: 700;
    letter-spacing: 0;
}
.heading-main.u-white span {
    color: var(--black);
}

.widget {
    margin-bottom: min(7vw, 40px);
}

.widgetArchive__item.widgetArchive__item-normal {
    align-items: stretch;
}
.widgetArchive__item.widgetArchive__item-normal .widgetArchive__contents {
    display: grid;
        grid-template-rows: 1fr auto;
    flex: 1;
    margin-left: 0;
    padding: .8em 1em;
}
.widgetArchive__contents .dateList {
    grid-row: 2;
}
.widgetArchive__item .eyecatch {
    margin-bottom: 0;
}
.eyecatch__cat a, .the__category a {
    background: var(--black);
    font-size: 10px !important;
    line-height: 1.3;
}
.eyecatch__cat a::before, .the__category a::before {
    display: none;
}

h3.heading {
    font-size: min(4.2vw, 18px);
    font-weight: 500;
}

.dateList__item::before {
    display: none;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link,
.btn__link, body .btn__link-primary,
.content form .btn__link-primary {
    background-color: var(--pink);
    border: none;
    border-radius: 3em;
    color: #fff !important;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.4;
    min-width: 200px;
    padding: .8em 3em .8em 1.3em;
    position: relative;
    text-align: center;
    transition: .15s ease-in-out;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link::before,
.btn__link::before, body .btn__link-primary::before,
.content form .btn__link-primary::before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 25 25"><path fill="%23ffffff" d="M25,12.5C25,5.61,19.39,0,12.5,0S0,5.61,0,12.5c0,6.46,4.93,11.79,11.22,12.44.42.04.85.06,1.28.06s.86-.02,1.28-.06c6.3-.64,11.22-5.97,11.22-12.44ZM12.5,24c-6.34,0-11.5-5.16-11.5-11.5S6.16,1,12.5,1s11.5,5.16,11.5,11.5-5.16,11.5-11.5,11.5ZM15.77,10.64l3.85,2.04-3.85,2.04v-1.62H7.3v-.84h8.47v-1.62Z" /></svg>') no-repeat center / contain;
    border: none;
    content: "";
    margin: auto;
    position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
    transform: none;
    width: 1.6em;
    height: 1.6em;
}
.btn__link::after, body .btn__link-primary::after {
    display: none;
}

.is-style-outline .wp-block-button__link {
    border: none;
    border-bottom: solid 1px var(--pink);
    border-radius: 0;
    color: var(--d_pink);
    font-size: 1.1em;
    font-weight: 500;
    padding: .3em 3em .3em .5em;
    position: relative;
}
.is-style-outline .wp-block-button__link::before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 25 25"><path fill="%23FF697E" d="M25,12.5C25,5.61,19.39,0,12.5,0S0,5.61,0,12.5c0,6.46,4.93,11.79,11.22,12.44.42.04.85.06,1.28.06s.86-.02,1.28-.06c6.3-.64,11.22-5.97,11.22-12.44ZM12.5,24c-6.34,0-11.5-5.16-11.5-11.5S6.16,1,12.5,1s11.5,5.16,11.5,11.5-5.16,11.5-11.5,11.5ZM15.77,10.64l3.85,2.04-3.85,2.04v-1.62H7.3v-.84h8.47v-1.62Z" /></svg>') no-repeat center / contain;
    border: none;
    content: "";
    margin: auto;
    position: absolute;
        top: 0;
        bottom: 0;
        right: 5px;
    transform: none;
    transition: .15s ease-in-out;
    width: 1.6em;
    height: 1.6em;
}


[class*=" icon-"]:before, [class^="icon-"]:before, [class*=" icon-"]:after, [class^="icon-"]:after {
}
.the__ribbon {
    font-size: 12px;
    font-family: var(--font_serif);
    width: 2.6em;
}
.the__ribbon:after {
    border-left-width: 1.3em;
    border-right-width: 1.3em;
    width: 100%;
}
.icon-new:before {
    content: 'New';
    font-family: var(--font_serif);
}

.phrase {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: 1.6;
    margin-top: .5em;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;

}

.btn {
    font-size: 1em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 767.9px) {
    .heading-main {
        font-size: min(9vw, 40px);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
    .heading-main {
        font-size: 46px;
    }
}

@media (hover: hover) {
    .heading > a:hover ,
    a:hover .heading {
        color: var(--d_pink) !important;
    }
    .btn__link-pickupHead:hover,
    .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
    .btn__link:hover, body .btn__link-primary:hover,
    .content form .btn__link-primary:hover {
        background-color: var(--pink);
        border: none;
        box-shadow: 0 .2em .2em rgba(0, 0, 0, .1);
        transform: scale(1.01);
    }
    .wp-block-image a:hover {
        transform: scale(1.03);
    }
    .is-style-outline .wp-block-button__link:hover::before {
        right: 0;
    }

}

/*====================================================
////id |  header
====================================================*/

.menuBtn__close {
    font-family: var(--font_serif);
    font-size: 1.2em;
}
.menuBtn__close .icon-close {
    vertical-align: top;
}
.widget.widget_categories ul, .widget.widget_nav_menu ul.menu {
    border: none;
}
.menuBtn__content .widget.widget_nav_menu ul.menu li a {
    background: transparent;
    color: var(--black);
    font-weight: 500;
}
.menuBtn__content .widget.widget_nav_menu .sub-menu {
    margin-left: 1em;
}
.menuBtn__content .widget.widget_nav_menu .sub-menu li {
    padding-left: .5em;
    position: relative;
}
.menuBtn__content .widget.widget_nav_menu .sub-menu li::before {
    border-top: solid 1px var(--black);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
    width: .7em;
    height: 0;
}

#front_page .globalNavi__list .current-menu-item>a, 
#front_page .globalNavi__list .current-menu-parent>a, 
#front_page .globalNavi__list .current_page_item>a {
    border-bottom: none;
    color: inherit;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 991.9px) {
    .l-header {
        padding: 10px 0 10px 0;
    }
    .container-header {
        display: flex;
            align-items: center;
            gap: 5px 15px;
    }
    .siteTitle {
        margin-bottom: 0;
    }
    .siteTitle__side_text {
        flex: 1;
        font-size: min(2.2vw, 12px);
        line-height: 1.4;
    }
    header .globalNavi {
        display: none;
    }
}
@media screen and (max-width: 540px) {
    .siteTitle__side_text {
        max-width: 40vw;
    }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 992px) {
    .siteTitle__side_text {
        font-size: min(1.1vw, 14px);
        line-height: 1.4;
    }
    header .menuBtn {
        display: none;
    }
    header .globalNavi {
        flex: 1;
    }
    .globalNavi__list {
        display: flex;
            gap: 2em;
            justify-content: flex-end;
    }
    .globalNavi__list li a {
        color: var(--black);
        font-weight: 500;
        margin-right: 0;
    }
}

@media (hover: hover) {
    .menuBtn__content .widget.widget_nav_menu ul.menu li a:hover {
        background: transparent;
        color: var(--pink);
    }
    #front_page .globalNavi__list .current-menu-item>a:hover, 
    #front_page .globalNavi__list .current-menu-parent>a:hover, 
    #front_page .globalNavi__list .current_page_item>a:hover {
        border-bottom: 2px solid rgba(0, 0, 0, .9);
        color: inherit;
    }

}


/*====================================================
////id |  slider
====================================================*/
#front_page .swiper-container {
    padding: min(8vw, 50px) 0;
}
#front_page .swiper-slider {
    height: auto;
    width: min(95%, 1170px);
}
#front_page .swiper-slide {
    font-size: 1em;
    flex-direction: row;
    position: relative;
}
#front_page .swiper-slide::before {
    background: #fff;
    border-radius: 20px;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: 0;
        left: min(2.5vw, 15px);
    width: calc(100% - min(5vw, 30px));
    height: 100%;
    
}
#front_page .swiper-slide::after {
    display: none;
}
#front_page .swiper-content {
    display: grid;
        grid-template-rows: auto 1fr auto;
    flex: 1;
    margin: min(5vw, 30px) calc(min(5vw, 30px) + 15px);
    margin-left: 0;
    padding: 0;
}
#front_page .heading-slider {
    color: var(--black);
    font-size: min(5vw, 20px);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: .7em;
    text-align: left;
    text-shadow: none;
}
#front_page .phrase-slider {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    text-shadow: none;
}

.swiper-slider .swiper-button-next, .swiper-slider .swiper-button-prev {
    display: block;
}
.swiper-slider .swiper-button-next, 
.swiper-slider .swiper-container-rtl .swiper-button-prev, 
.swiper-slider .swiper-button-prev, 
.swiper-slider .swiper-container-rtl .swiper-button-next {
    border-radius: 15px;
    opacity: 1;
    width: min(6vw, 30px);
    height: min(6vw, 30px);
}
.swiper-slider .swiper-button-next::before, 
.swiper-slider .swiper-container-rtl .swiper-button-prev::before, 
.swiper-slider .swiper-button-prev::before, 
.swiper-slider .swiper-container-rtl .swiper-button-next::before {
    border: none;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 18 6"><path fill="%23ffffff" d="M12.37,6v-2.38H0v-1.23h12.37V0l5.63,3-5.63,3Z" /></svg>') no-repeat center / contain;
    transform: none;
    width: 50%;
    height: 50%;
}
.swiper-slider .swiper-container-rtl .swiper-button-prev::before, 
.swiper-slider .swiper-button-prev::before {
    transform: scale(-1, 1);
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #front_page .swiper-slide {
        flex-direction: column;
    }
    #front_page .swiper-slide img {
        margin: min(5vw, 20px) auto 0;
        object-fit: cover;
        position: relative;
        width: calc(100% - min(5vw, 30px) - min(10vw, 40px));
        height: min(50vw, 300px);
    }
    #front_page .swiper-content {
        margin: min(5vw, 20px) auto;
        width: calc(100% - min(5vw, 30px) - min(10vw, 40px));
    }
    #front_page .swiper-slide .btn {
        margin: min(5vw, 20px) auto 0;
    }
    #front_page .swiper-slide .btn__link {
        padding: .5em 3em .5em 1em;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
    #front_page .swiper-slide img {
        margin: min(5vw, 30px) min(3vw, 35px) min(5vw, 30px) calc(min(5vw, 30px) + 15px);
        object-fit: cover;
        position: relative;
        width: 50%;
        height: auto;
            min-height: 300px;
    }
    #front_page .swiper-slide .btn {
        display: flex;
            justify-content: flex-end;
        margin: 1em auto 0;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  pickupHead
====================================================*/
.divider, .dividerBottom {
    margin-bottom: 0;
}
#front_page .pickupHead {
    box-shadow: none;
    color: var(--black);
    padding: 60px 0;
}
#front_page .pickupHead .container {
    display: block;
}

#front_page .pickupHead__text {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--pink);
    font-weight: 400;
    padding: 1.2em;
    position: relative;
    text-align: center;
    width: 100%;
}
#front_page .pickupHead__text::after {
    background: url('img/top-pickupHead_img.webp') no-repeat top center;
    background-size: 100% auto;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
}
#front_page .pickupHead .btn {
    margin-top: 30px;
    text-align: center;
}
.btn__link-pickupHead {
    background: var(--pink);
    border: none;
    border-radius: 3em;
    color: #fff;
    font-weight: 700;
    padding: .8em 3em .8em 1em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 959.9px) {
    #front_page .pickupHead__text {
        font-size: 1em;
        padding-bottom: min(35vw, 240px);
    }
    #front_page .pickupHead__text .big {
        font-size: 1.1em;
    }
    #front_page .pickupHead__text::after {
        right: 30%;
        bottom: 0;
        width: min(35%, 200px);
        height: min(32vw, 200px);
    }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 960px) {
    #front_page .pickupHead__text {
        font-size: 20px;
        padding-right: 25%;
    }
    #front_page .pickupHead__text::after {
        position: absolute;
            right: 5%;
            bottom: 0;
        width: 22%;
        height: min(90%, 37vw);
    }
}

@media (hover: hover) {
}

/*====================================================
////id |  pickup3
====================================================*/
.pickup3__bg {
    display: none;
}
.pickup3 {
    padding-top: 0;
}
.pickup3 .container {
    padding: 0;
    margin: 0;
}
.pickup3__container {
    display: grid;
        grid-gap: min(3vw, 20px);
}
.pickup3__box {
    display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: min(3vw, 20px);
    width: 100%;
}
#front_page .pickup3__item {
    background-color: #fff;
    width: 100%;
}
.pickup3__item:before {
    display: none;
}
.pickup3__item > a {
    display: block;
    padding: 16px 18px;
}
.pickup3__item .eyecatch {
    margin-bottom: 0;
}
.heading-pickup3,
.pickup3__item-first .heading.heading-pickup3 {
    color: var(--black);
    padding: 0;
}
.excerpt-pickup3 {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: .5em;
    margin-bottom: 0;
    line-height: 1.6;
    overflow: hidden;
    -webkit-box-orient: vertical;
}


.pickup3__item-first {
    margin: 0;
    display: flex;
    width: 100%;
}
.pickup3__item-first .eyecatch {
    width: 52.7%;
}
.pickup3__item-first > a {
    flex: 1;
}
.pickup3__item-first .eyecatch__cat a {
    font-size: 10px;
}
.pickup3__item-first .excerpt-pickup3 {
    -webkit-line-clamp: 3;
}

.pickup3__item-second {
    margin: 0;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    .pickup3__item-first {
        flex-direction: column;
    }
    .pickup3__item-first .eyecatch {
        width: 100%;
    }
    .pickup3__box {
        grid-template-columns: 1fr;
    }
    .pickup3__item:not(.pickup3__item-first) {
        display: grid;
            grid-template-columns: 40% 1fr;
    }
}
@media screen and (max-width: 540px) {
    .pickup3__item:not(.pickup3__item-first) {
        grid-template-columns: 1fr;
    }
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  widgetArchive
====================================================*/
.widget_fit_thumbnail_archive_class .widgetArchive {
    display: grid;
        grid-gap: min(3vw, 20px);
}
.widget_fit_thumbnail_archive_class .widgetArchive .widgetArchive__item {
    background: #fff;
    padding: 0;
}
.widget_fit_thumbnail_archive_class .widgetArchive .widgetArchive__item .eyecatch {
    margin: 0;
    width: 37%;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    .widget_fit_thumbnail_archive_class .widgetArchive .widgetArchive__item .eyecatch {
        width: 40%;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}


/*====================================================
////class .tabBox
====================================================*/
.tabBox {
	position: relative;
}
.tabBox .tabArea {
	display: flex;
        flex-wrap: wrap;
        gap: min(1.2vw, 10px);
        justify-content: center;
    margin-bottom: min(6vw, 48px);
}
.tabBox .tabArea li {
	background: #fff;
    border: solid 1px var(--pink);
    border-radius: 3em;
    color: var(--pink);
	cursor: pointer;
	display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
	font-size: min(2.8vw, 15px);
    font-weight: 500;
	line-height: 1.2;
	padding: .5em 1em;
    transition: .2s ease-in-out;
}
.tabBox .tabArea li.current {
	background: var(--pink);
    color: #fff;
	cursor: default;
	pointer-events: none;
}
.tabBox .tabArea li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 100%;
	height: 100%;
}
.tabBox .tabArea li.current a {
	pointer-events: none;
}
.tabBox .contentArea {
	position: relative;
	transition: .4 all;
}
.tabBox .contentArea .tab_content {
	transition: .2s all;
}
.tabBox .contentArea .tab_content:not(.current) {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 540px) {
    .tabBox .tabArea li {
        flex: 1;
        min-width: 45%;

    }
}

@media print, screen and (min-width: 768px) {
    .tabBox .tabArea li {
        min-width: 13em;
    }
}

@media (hover: hover) {
    .tabBox .tabArea li:hover {
        background-color: var(--w_pink);
    }
}

/*====================================================
////id |  ranking
====================================================*/
.widgetArchive-rank {
    display: grid;
        grid-gap: min(3vw, 20px);
        grid-template-columns: 1fr 1fr;
}
.widgetArchive-rank .widgetArchive__item {
    background: #fff;
}
.widgetArchive__item.widgetArchive__item-rank:before {
    font-family: var(--font_serif);
    font-size: min(6vw, 30px);
    font-weight: 700;
    line-height: 1;
    padding-top: .35em;
    top: -2px;
    left: 5px;
    width: 1.4em;
    height: 2em;
}
.widgetArchive__item.widgetArchive__item-rank:nth-child(1):before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 45 60"><path fill="%23edcb3a" d="M43.19,0H1.81s0,0,.01,0h41.35s0,0,.01,0ZM0,58.21V1.79H0C0,.81.81,0,1.81,0h41.37c1,0,1.81.81,1.81,1.79v56.41c0,.3-.08.6-.23.87-.49.87-1.59,1.18-2.48.71l-19.8-10.72L2.7,59.78c-.56.31-1.25.3-1.81-.03h0C.34,59.43,0,58.84,0,58.21ZM37.59,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM29.18,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM20.78,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM12.37,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM3.96,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7Z" /></svg>') no-repeat top center / contain;
}
.widgetArchive__item.widgetArchive__item-rank:nth-child(2):before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 45 60"><path fill="%23B0B0B0" d="M43.19,0H1.81s0,0,.01,0h41.35s0,0,.01,0ZM0,58.21V1.79H0C0,.81.81,0,1.81,0h41.37c1,0,1.81.81,1.81,1.79v56.41c0,.3-.08.6-.23.87-.49.87-1.59,1.18-2.48.71l-19.8-10.72L2.7,59.78c-.56.31-1.25.3-1.81-.03h0C.34,59.43,0,58.84,0,58.21ZM37.59,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM29.18,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM20.78,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM12.37,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM3.96,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7Z" /></svg>') no-repeat top center / contain;
}
.widgetArchive__item.widgetArchive__item-rank:nth-child(3):before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 45 60"><path fill="%23B96225" d="M43.19,0H1.81s0,0,.01,0h41.35s0,0,.01,0ZM0,58.21V1.79H0C0,.81.81,0,1.81,0h41.37c1,0,1.81.81,1.81,1.79v56.41c0,.3-.08.6-.23.87-.49.87-1.59,1.18-2.48.71l-19.8-10.72L2.7,59.78c-.56.31-1.25.3-1.81-.03h0C.34,59.43,0,58.84,0,58.21ZM37.59,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM29.18,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM20.78,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM12.37,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM3.96,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7Z" /></svg>') no-repeat top center / contain;
}
.widgetArchive__item.widgetArchive__item-rank:nth-child(n + 4):before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 45 60"><path fill="%23604530" d="M43.19,0H1.81s0,0,.01,0h41.35s0,0,.01,0ZM0,58.21V1.79H0C0,.81.81,0,1.81,0h41.37c1,0,1.81.81,1.81,1.79v56.41c0,.3-.08.6-.23.87-.49.87-1.59,1.18-2.48.71l-19.8-10.72L2.7,59.78c-.56.31-1.25.3-1.81-.03h0C.34,59.43,0,58.84,0,58.21ZM37.59,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM29.18,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM20.78,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM12.37,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7ZM3.96,6.36c0,.94.77,1.7,1.73,1.7s1.73-.76,1.73-1.7c0-.94-.77-1.7-1.73-1.7-.95,0-1.73.76-1.73,1.7Z" /></svg>') no-repeat top center / contain;
}
.widgetArchive-rank .widgetArchive__item .eyecatch {
    width: 100%;
}
.widgetArchive-rank .widgetArchive__item .widgetArchive__contents {
    padding: 15px 18px;
}
.widgetArchive-rank .widgetArchive__item .heading {
    margin-bottom: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 540px) {
    .widgetArchive-rank {
        grid-template-columns: 1fr;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  category ranking
====================================================*/
#category_ranking .widgetCatTitle {
    display: none;
}
#category_ranking .widgetArchive__item {
    padding: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #category_ranking .widgetArchive-rank {
        grid-template-columns: 1fr;
    }
    #category_ranking .widgetArchive__item {
        display: grid;
        grid-template-columns: 40% 1fr;
    }
}

@media screen and (max-width: 768px) {
    #category_ranking .widgetArchive__item {
        grid-template-columns: 1fr;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 992px) {
    #category_ranking .widgetArchive__item:first-child {
        grid-column: span 2;
        display: flex;
    }
    #category_ranking .widgetArchive__item:first-child .eyecatch {
        width: 52.7%;
    }
    #category_ranking .widgetArchive__item:first-child .widgetArchive__contents {
        flex: 1;
    }
    #category_ranking .widgetArchive__item:first-child .phrase {
        -webkit-line-clamp: 3;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  breadcrumb
====================================================*/
.breadcrumb {
    background-color: #fff;
    border-bottom: none;
    padding: 0 0 5px;
}
.breadcrumb__item {
    font-size: 10px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  archive
====================================================*/
.archiveHead__subtitle {
    display: none;
}
.heading-primary,
.archiveHead .heading {
    border-bottom: none;
    font-size: min(6.5vw, 2.4rem);
    padding-bottom: .4em;
    position: relative;
}
.controller {
    border-bottom: none;
}

.archive {
    display: grid;
        grid-gap: 40px 20px;
        grid-template-columns: 1fr 1fr;
}
.archive__item {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#viewWide:checked~.archive .heading-secondary,
.heading-secondary {
    font-size: 1.3em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 540px) {
    .archive {
        grid-template-columns: 1fr;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

@media (hover: hover) {}

/*====================================================
////id |  single
====================================================*/
.eyecatch-main {
    display: none;
}
.dateList-main {
    margin-bottom: min(7vw, 30px);
}
.dateList-main .dateList__item {
    font-weight: 400;

}
.dateList-main .dateList__item:has(a) {
    font-size: min(2.4vw, 12px);

}
.content .outline {
    padding: .5em 1em;
    position: relative;
    width: 100%;
}
.content .outline__title {
    font-weight: 500;
}

.outline__switch {
    cursor: pointer;
    position: absolute;
        top: 0;
        left: 0;
    width: 100%;
    height: 2.8em;
}
.outline__switch::before {
    display: none;
}
.outline__switch::after {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 35 22"><path fill="%23ff697e" d="M0,4.55L4.57,0l12.93,12.9L30.43,0l4.57,4.55-17.5,17.45L0,4.55Z" /></svg>') no-repeat center / contain;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: 0;
        right: 1em;
        bottom: 0;
    transition: .2s ease-in-out;
    width: .6em;
    height: .6em;
}
.content .outline__toggle:checked+.outline__switch::after {
    transform: rotate(180deg);
}
.content .outline__switch+.outline__list {
    margin-left: .2em;    
}
.content .outline__toggle:checked+.outline__switch+.outline__list {
    margin-top: .5em;
}
.content .outline__link .outline__number {
    display: none;
}
.content .outline ul li ul li:first-child {
    margin-top: .3em;
}

.content h2.wp-block-heading {
    background-color: #fff;
    font-weight: 500;
    padding: .85em .8em .9em .8em;
    position: relative;
	font-size: 1.4em;
}
.content h2.wp-block-heading::before ,
.content h2.wp-block-heading::after {
    border: solid 3px var(--d_pink);
    box-sizing: border-box;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        left: 0;
    width: 100%;
    height: .5em;
}
.content h2.wp-block-heading::before {
    border-bottom: 0;
    top: 0;
}
.content h2.wp-block-heading::after {
    border-top: 0;
    bottom: 0;
}
.content h3.wp-block-heading {
    background-image: repeating-linear-gradient(90deg, var(--d_pink), var(--d_pink) 6px, transparent 6px, transparent 10px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 3px;
    font-weight: 500;
    padding: .35em 20px .4em;
    position: relative;
	font-size: 1.3em;
}
.content h4.wp-block-heading {
    background-image: repeating-linear-gradient(90deg, var(--d_pink), var(--d_pink) 4px, transparent 4px, transparent 8px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    font-weight: 500;
    padding: 0 20px .4em;
    position: relative;
	font-size: 1.2em;
}
.content h5.wp-block-heading {
    border-bottom: dotted 2px var(--d_pink);
    font-weight: 500;
    padding: 0 20px .4em;
	font-size: 1.15em;
}

.content table th {
    border-top-color: #7f7f7f;
}
.content table th:first-child {
    border-left-color: #7f7f7f;
}
.content table th:last-child {
    border-right-color: #7f7f7f;
}
.content table td:first-child {
    border-left: none;
}




.prevNext {
    display: flex;
        flex-direction: row-reverse;
        gap: 20px;
}
.prevNext .prevNext__item {
    flex: 1;
    padding: 0;
}
.prevNext .eyecatch:before {
    padding-top: min(56.25%, 150px);
}
.prevNext__item.prevNext__item-prev .prevNext__pop {
    right: 0;
    left: auto;
}
.prevNext__item.prevNext__item-next .prevNext__pop {
    left: 0;
    right: auto;
}

.related__item {
    padding-bottom: 10px;
}
.related__item .eyecatch {
    margin-bottom: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    .prevNext {
        flex-direction: column-reverse;
    }
    .prevNext__item.prevNext__item-prev .prevNext__pop {
        left: 0;
        right: auto;
    }

}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}


/*====================================================
////id |  テンプレート　one_column
====================================================*/
.page_title {
    background-color: #fff;
    border-bottom: solid 7px var(--pink);
    display: flex;
        align-items: center;
        justify-content: center;
    min-height: min(30vw, 200px);
    padding-bottom: min(7vw, 80px);
}
.page_title-head {
    display: grid;
    text-align: center;
}
.page_title-head .en {
    color: var(--pink);
    font-family: var(--font_serif);
    font-size: min(10vw, 90px);
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.2;
}
.page_title-head .jp {
    font-size: min(4vw, 28px);
    line-height: 1.4;
    margin-top: -.2em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 991.9px) {
    .page_title-head .en {
        font-size: min(10vw, 60px);
    }
    .page_title-head .jp {
        font-size: min(4vw, 20px);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 992px) {
    .page_title-head .en {
        font-size: min(7vw, 90px);
    }
    .page_title-head .jp {
        font-size: min(2.4vw, 28px);
    }
}

@media (hover: hover) {}


/*====================================================
////id |  エディターブロック
====================================================*/
.vk_inline-font-size[data-fontsize="12px"],
.wp-block-post-content .has-small-font-size {
    font-size: .8em !important;
}
.vk_inline-font-size[data-fontsize="16px"],
.wp-block-post-content .has-medium-font-size {
    font-size: 1.1em !important;
}
.vk_inline-font-size[data-fontsize="18px"],
.wp-block-post-content .has-large-font-size {
    font-size: 1.3em !important;
}
.vk_inline-font-size[data-fontsize="21px"],
.wp-block-post-content .has-x-large-font-size {
    font-size: 1.5em !important;
}

.balloon_deco {
    display: flex;
        justify-content: center;
}
.balloon_deco > div {
    background-color: #fff;
    border: solid 1px;
    border-radius: .7em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5em;
    min-width: 10em;
    padding: .5em min(5vw, 1.5em);
    position: relative;
}
.balloon_deco > div::before {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 203 38"><path fill="none" stroke="%234e3624" stroke-width="3" d="M1.5,1.5h161.37l38.63,35" /></svg>') no-repeat top left / contain;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: calc(100% + .4em);
        left: 0;
    width: 5.2em;
    height: 1em;
}
.balloon_deco > div::after {
    border-top: solid 3px #4e3624;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: calc(100% + .4em);
        right: 0;
    width: calc(100% - 5.2em);
    height: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 991.9px) {
    .content {
        font-size: min(4vw, 16px);
    }

    .balloon_deco > div {
        font-size: 1.3em;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 992px) {
    .balloon_deco > div {
        font-size: min(2.5vw, 24px);
    }
}

@media (hover: hover) {}

.separator_img img {
    object-fit: cover;
    max-height: 540px;
}

/*====================================================
////id |  contact
====================================================*/
.content .contactTable .contactTable__data input, .content .contactTable .contactTable__data textarea {
    background-color: #fff;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  xxx
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}


/*====================================================
////id |  sidebar
====================================================*/
.l-sidebar h5 {
    background-image: repeating-linear-gradient(90deg, var(--black), var(--black) 4px, transparent 4px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    font-family: var(--font_serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .06em;
    padding: .5em 0 .2em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 767.9px) {
    .l-sidebar {
        margin: 0 auto;
        max-width: 450px;
        padding-top: min(10vw, 50px);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media print, screen and (min-width: 992px) {

}

@media (hover: hover) {}

/*====================================================
////id |  widget_search
====================================================*/
.l-sidebar .widget_search label {
    display: none;
}
.l-sidebar .wp-block-search__inside-wrapper {
    background: #fff;
    border: solid 1px var(--gray);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.l-sidebar .wp-block-search__inside-wrapper::before {
    background: #fff;
    border-left: solid 1px var(--gray);
    content: '';
    margin: auto;
    pointer-events: none;
    position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    height: calc(100% - 10px);
    width: calc(2em + 20px);
}
.l-sidebar .wp-block-search__inside-wrapper::after {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 26 26"><path fill="%23FF697E" d="M25.12,21l-2.67-2.67c3.45-5.72,1.6-13.15-4.12-16.6S5.18.13,1.74,5.86C-1.71,11.58.13,19.01,5.85,22.45c3.84,2.31,8.64,2.31,12.48,0l2.67,2.66c1.12,1.15,2.96,1.18,4.12.06,1.15-1.12,1.18-2.96.06-4.12-.02-.02-.04-.04-.06-.06h0ZM17.36,17.36c-2.89,2.89-7.58,2.89-10.47,0-2.89-2.89-2.89-7.58,0-10.47,2.89-2.89,7.58-2.89,10.47,0,1.39,1.39,2.17,3.27,2.17,5.23,0,1.97-.78,3.85-2.17,5.24Z" /></svg>') no-repeat center;
    background-size: 1.2em;
    content: '';
    display: block;
    margin: auto;
    pointer-events: none;
    position: absolute;
        top: 0;
        right: .1em;
        bottom: 0;
    height: calc(100% - 10px);
    width: calc(2em + 20px);
}

.l-sidebar .wp-block-search__input {
    border: none;
    outline: none;
    padding-left: 1em;
}
.l-sidebar .wp-block-search__button {
    background: #fff;
    border: none;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  widget_categories
====================================================*/
ul.wp-block-categories-list {
    border: none;
}
ul.wp-block-categories-list li {
    border-bottom: dotted 1px var(--gray);
    
}
ul.wp-block-categories-list li a {
    background-color: transparent;
    color: var(--black);
    display: block;
    font-weight: 500;
    padding: 1em 1em;
}
ul.wp-block-categories-list li a::before {
    display: none;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {
    .widget.widget_categories ul.wp-block-categories-list li a:hover {
        background-color: transparent;
        color: var(--d_pink);
    }
}

/*====================================================
////id |  sidebar new posts
====================================================*/
.l-sidebar .widgetArchive {
    grid-gap: 10px;
    margin-top: min(3vw, 20px);
}
.l-sidebar .widgetArchive__item {
    padding-bottom: 0;
}
.l-sidebar .widget_fit_thumbnail_archive_class .widgetArchive .widgetArchive__item .eyecatch {
    margin-bottom: 0;
    width: min(30%, 80px);
}
.l-sidebar .widgetArchive__item .widgetArchive__contents {
    display: flex;
        align-items: center;
}
.l-sidebar .widgetArchive__item h3.heading {
    font-size: 1em;
    margin-bottom: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  xxx
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 768px) {
}

@media (hover: hover) {}

/*====================================================
////id |  footer
====================================================*/
footer {
    background-color: #fff;
    border-top: solid 5px var(--pink);
}
.widgetFooter__box {
    margin: 0;
    width: auto;
}
.widgetFooter .widget {
    margin: 0;
}
.widgetFooter .widget.widget_nav_menu ul.menu {
    border: none;
}
.widgetFooter .widget.widget_nav_menu ul {
    display: grid;
    grid-gap: .3em;
}
.widgetFooter .widget.widget_nav_menu ul li {
    border: none;
}
.widgetFooter .widget.widget_nav_menu ul.menu .sub-menu {
    margin-top: .3em;
    margin-left: 1.5em;
}
.widgetFooter .widget.widget_nav_menu ul.menu .sub-menu li {
    border: none;
    position: relative;
}
.widgetFooter .widget.widget_nav_menu ul.menu .sub-menu li::before {
    border-left: solid 1px var(--black);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: .1em;
        left: -1em;
    width: 0;
    height: calc(100% + .5em);
}
.widgetFooter .widget.widget_nav_menu ul.menu .sub-menu li:last-child::before {
    height: 50%;
}
.widgetFooter .widget.widget_nav_menu ul.menu .sub-menu li::after {
    border-top: solid 1px var(--black);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
        top: calc(50% + .1em);
        left: -1em;
    width: .5em;
    height: 0;
}
.widgetFooter .widget.widget_nav_menu ul.menu li a {
    background-color: transparent;
    color: var(--black);
    padding: 0;
}
.widgetFooter .widget.widget_nav_menu ul .no_link > a {
    pointer-events: none;
}

.widgetFooter__box:nth-child(2) {
    display: flex;
        justify-content: flex-end;
        gap: 0 2em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.widgetFooter__box:nth-child(3) ul.menu {
    display: flex;
        flex-wrap: wrap;
        gap: 0 2em;
        justify-content: flex-end;
    font-size: .9em;
}

.widget.widget_categories ul li a:before, .widget.widget_nav_menu ul.menu li a:before {
    display: none;
}

.bottomFooter {
    background-color: transparent;
    padding: 10px 0;
}
.bottomFooter__copyright, .bottomFooter__producer {
    color: var(--black);
    font-size: 10px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 991.9px) {
    .widgetFooter {
        display: grid;
            justify-content: center;
        width: 100%;
    }
    .footer-logo {
        margin: 0 auto min(5vw, 30px);
        width: min(50vw, 300px);
    }
    .widgetFooter__box:nth-child(3) ul.menu {
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .footer-logo {
        margin-left: 0;
    }
    .widgetFooter__box:nth-child(2) {
        display: grid;
            grid-gap: .5em;
            justify-content: flex-start;
    }
    .widgetFooter__box:nth-child(3) ul.menu {
        justify-content: flex-start;
    }
}

/* ////////// PC ////////// */
@media screen and (min-width: 768px) {
    .widgetFooter {
        width: 100%;
    }
}

@media print, screen and (min-width: 992px) {
    .widgetFooter {
        display: grid;
            grid-gap: min(5vw, 35px) min(4vw, 40px);
            grid-template-columns: 24% 1fr;
        width: 100%;
    }
    .widgetFooter__box:nth-child(3) {
        grid-column: 2;
    }
    .widgetFooter .widget_nav_menu {
        margin: 0;
    }
}

@media (hover: hover) {
    .widgetFooter .widget.widget_nav_menu ul.menu li a:hover {
        background-color: transparent;
    }
}
