/*
Theme Name: shoei
 */

/* ============================
	common
============================ */
#wrapper {
    background-color: #f9f9f9;
    overflow: hidden;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.bold {
    font-weight: 700;
}

main {
    background: #fff;
}

body.page:not(.home) .border-wrap main,
body.archive .border-wrap main {
    padding: 0 70px;
    background-color: #fff;
}

body#shoei .border-wrap {
    padding: 0 70px;
    background-color: #c2ddef;
}

body#nikuyoshi .border-wrap {
    padding: 0 70px;
    background-color: #f7dae3;
}

body#kandouya .border-wrap {
    padding: 0 70px;
    background-color: #fcf4d2;
}

body#goc .border-wrap {
    padding: 0 70px;
    background-color: #111111;
}

body#shoei .border-wrap main,
body#nikuyoshi .border-wrap main,
body#kandouya .border-wrap main {
    padding: 0;
}

body#goc .border-wrap main {
    padding: 0;
    background-color: #111111;
    color: #fff;
}

@media screen and (max-width: 1023px) {
    body.page:not(.home) .border-wrap main,
    body.archive .border-wrap main {
        padding: 0 20px;
    }

    body#shoei .border-wrap {
        padding: 0 20px;
    }

    body#nikuyoshi .border-wrap {
        padding: 0 20px;
    }

    body#kandouya .border-wrap {
        padding: 0 20px;
    }

    body#goc .border-wrap {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    
}

/* ============================
	font
============================ */
.f-eng {
    font-family: "Poppins", sans-serif;
}

.f-cursive-eng {
    font-family: "Allura", cursive;
    font-weight: 400!important;
    transform: skewX(-10deg);
    display: inline-block;
    letter-spacing: 0.1em;
}

/* ============================
	sp-menu
============================ */
#sp-menu {
    box-sizing: border-box;
    position: absolute;
    transition: all 0.35s ease;
    top: 60px;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
}

#sp-menu.opening {
    position: fixed;
    transition: all 0.35s ease;
    opacity: 1;
    pointer-events: auto;
    height: calc(100vh - 60px);
    z-index: 1000;
}

#sp-menu .menu-item a {
    display: block;
    font-size: 1.7rem;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1;
    width: 100%;
    padding: 18px 0;
    font-weight: 700;
}

#sp-menu .menu-item a:hover,
#sp-menu .menu-item a:active {
    opacity: 1;
}

#sp-menu .menu-item.no-link {
    padding-bottom: 5px;
}

#sp-menu .menu-item.no-link>a {
    background-color: #f2f2f2;
    pointer-events: none;
}

#sp-menu .sub-menu li a {
    font-size: 1.5rem;
    padding: 15px 0;
}

#sp-menu>ul>li {
    border-bottom: 1px solid #DED5CB;
}

#sp-menu #h-sns-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    row-gap: 15px;
}

#sp-menu #h-sns-list a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 1.7rem;
}

/* btn-hamburger */
#btn-hamburger {
    position: relative;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
}

#btn-hamburger .border {
    position: absolute;
    left: 15px;
    transition: opacity, transform 0.2s ease;
    background: #1f1f1f;
    width: 30px;
    height: 2px;
    z-index: 1;
}

#btn-hamburger .border:first-child {
    top: 33%;
}

#btn-hamburger .border:nth-child(2) {
    transform: rotate(0);
    opacity: 1;
    top: 50%;
}

#btn-hamburger .border:nth-child(3) {
    top: 67%;
}

#btn-hamburger.opening .border:first-child {
    transform: rotate(45deg);
    top: 50%;
}

#btn-hamburger.opening .border:nth-child(2) {
    opacity: 0;
}

#btn-hamburger.opening .border:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

/* ============================
	header
============================ */
#header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
}

#header.h-fixed {
    position: fixed;
}

#header .h-inner {
    align-items: center;
    width: 100%;
    padding: 0 0 0 20px;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

#h-gnav-box {
    padding: 0 30px 0 40px;
}

#h-gnav-box.flex-start {
    align-items: center;
}

#h-gnav-box>#menu-header-nav>.menu-item {
    padding: 16px 0;
    position: relative;
}

#h-gnav-box>#menu-header-nav>.menu-item::before {
    content: "/";
    line-height: 1;
    position: absolute;
    top: 48%;
    left: -24px;
    transform: translateY(-50%);
}

#h-gnav-box>#menu-header-nav>.menu-item:first-child::before {
    display: none;
}

#h-gnav-box .menu-item + .menu-item {
    margin: 0 0 0 40px;
}

#h-gnav-box .menu-item a {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    transition: all ease .2s;
}

#h-gnav-box .menu-item>a:hover {
    color: #E57C9B!important;
    opacity: 1;
}

#h-gnav-box .menu-item.menu-item-has-children {
    cursor: pointer;
    position: relative;
}

#h-gnav-box .menu-item.menu-item-has-children::after {
    content: "";
    width: 6px;
    height: 6px;
    background: url('./images/common/arrow_under.svg') no-repeat center / contain;
    margin-left: -3px;
    position: absolute;
    bottom: 10px;
    left: 50%;
}

#h-gnav-box .menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 270px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(124, 129, 170, 0.2), 0 0 6px rgba(255, 255, 255, 0.35);
    opacity: 0;
    transition: all ease .2s;
    pointer-events: none;
    overflow: hidden;
}

#h-gnav-box .menu-item.menu-item-has-children .sub-menu li {
    margin-left: 0;
    font-size: 1.5rem;
}

#h-gnav-box .menu-item.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 25px;
}

#h-gnav-box .menu-item.menu-item-has-children .sub-menu li a:hover {
    background: rgba(234, 237, 248, 0.5);
}

#h-gnav-box .menu-item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

#h-gnav-contact {
    margin-left: 30px;
}

#h-gnav-contact a {
    display: block;
    box-sizing: border-box;
    background: linear-gradient(180deg,#292F5D 0%, #1E2750 100%);
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    width: 160px;
    padding: 16px 0;
    border-radius: 34px;
}

@media screen and (min-width: 1024px) {
    #sp-menu {
        display: none;
    }

    #btn-hamburger {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    #h-gnav-box {
        display: none;
    }

    #header .h-inner {
        padding-left: 15px;
    }

    #h-site-logo img {
        width: auto;
        height: 32px;
    }
}

@media screen and (max-width: 767px) {

}

/* ============================
	footer
============================ */
#footer-contact {
    position: relative;
    z-index: 20;
}

#footer-contact .sec-inner {
    padding-top: 160px;
    padding-bottom: 160px;
}

#footer-contact .content-width {
    position: relative;
}

#footer-contact .sec-ttl {
    color: #1f1f1f;
}

body#shoei #footer-contact .sec-ttl,
body#shoei #footer-contact .sec-sub-ttl {
    color: #79bdea;
}

body#shoei #footer-contact .f-contact-arrow svg path {
    fill: #79bdea;
}

body#nikuyoshi #footer-contact .sec-ttl,
body#nikuyoshi #footer-contact .sec-sub-ttl {
    color: #f993b3;
}

body#nikuyoshi #footer-contact .f-contact-arrow svg path {
    fill: #f993b3;
}

body#kandouya #footer-contact .sec-ttl,
body#kandouya #footer-contact .sec-sub-ttl {
    color: #f3c612;
}

body#kandouya #footer-contact .f-contact-arrow svg path {
    fill: #f3c612;
}

body#shoei #footer-contact .sec-sub-ttl::before,
body#nikuyoshi #footer-contact .sec-sub-ttl::before,
body#kandouya #footer-contact .sec-sub-ttl::before {
    background: url('./images/common/icon_sec_sub_ttl.svg') no-repeat center / contain;
}

body#goc #footer-contact .sec-ttl,
body#goc #footer-contact .sec-sub-ttl {
    color: #fff;
}

body#goc #footer-contact .f-contact-arrow svg path {
    fill: #fff;
}

body#goc #footer-contact .sec-sub-ttl::before {
    background: url('./images/common/icon_sec_sub_ttl_w.svg') no-repeat center / contain;
}

#footer-contact .content-box {
    position: relative;
    z-index: 2;
    background-color: #ebebeb;
    border-radius: 38px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

body#goc #footer-contact .content-box {
    background-color: #282828;
}

#footer-contact .f-contact-btn {
    display: block;
    border-radius: 38px;
    padding: 60px 128px;
    position: relative;
    backdrop-filter: blur(12px) brightness(105%) opacity(90%);
    z-index: 4;
}

#footer-contact .f-contact-btn .f-contact-arrow {
    display: block;
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translate(0, -50%);
    opacity: 0;
    animation: horizonArrow 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes horizonArrow {
    0% { 
        transform: translate(-25px, -50%);
        transform-origin: left;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(25px, -50%);
        transform-origin: left;
        opacity: 0;
    }
}

@keyframes horizonArrowsp {
    0% { 
        transform: translate(-15px, -50%);
        transform-origin: left;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(15px, -50%);
        transform-origin: left;
        opacity: 0;
    }
}

#footer-contact .f-contact-btn .sec-ttl-box {
    margin-bottom: 0;
}

#footer-contact .f-contact-btn .sec-ttl-box .f-contact-border {
    width: 158px;
    height: 1px;
    background: #E78BA7;
    background: linear-gradient(90deg,rgba(231, 139, 167, 1) 0%, rgba(233, 153, 177, 1) 40%, rgba(162, 180, 244, 1) 80%, rgba(156, 196, 239, 1) 100%);
    position: absolute;
    top: 48px;
    left: -208px;
    opacity: 0;
    animation: horizonLine 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

body#goc #footer-contact .f-contact-btn .sec-ttl-box .f-contact-border {
    background: #fff;
}

#footer-contact .deco-contact-01 {
    position: absolute;
    top: -100px;
    right: -85px;
    z-index: 3;
}

#footer-contact .deco-contact-01 img {
    width: 240px;
    height: auto;
}

#footer-contact .deco-contact-02 {
    position: absolute;
    bottom: -175px;
    left: 150px;
    z-index: 3;
}

#footer-contact .deco-contact-02 img {
    width: 350px;
}

#footer-contact .deco-contact-03 {
    position: absolute;
    bottom: 50px;
    left: -110px;
    z-index: 3;
}

#footer-contact .deco-contact-03 img {
    width: 180px;
}

#footer {
    background-color: #f2f2f2;
}

body#goc #footer {
    background-color: #111111;
}

#footer .f-inner {
    padding: 130px 0 0;
}

#footer .f-content {
    text-align: center;
}

#footer .f-logo {
    padding-bottom: 50px;
    margin-bottom: 35px;
    position: relative;
}

#footer .f-logo::after {
    content: "";
    width: 158px;
    height: 1px;
    background: #E78BA7;
    background: linear-gradient(90deg,rgba(231, 139, 167, 1) 0%, rgba(233, 153, 177, 1) 40%, rgba(162, 180, 244, 1) 80%, rgba(156, 196, 239, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

body#goc #footer .f-logo::after {
    background: #fff;
}

#footer .f-business-list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 70px;
    padding-left: 112px;
}

#footer .f-sns-list {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    margin-top: 30px;
}

#copyright {
    margin-top: 50px;
    padding: 30px 0;
    position: relative;
}

#copyright::before {
    content: "";
    width: 158px;
    height: 1px;
    background: #E78BA7;
    background: linear-gradient(90deg,rgba(231, 139, 167, 1) 0%, rgba(233, 153, 177, 1) 40%, rgba(162, 180, 244, 1) 80%, rgba(156, 196, 239, 1) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#copyright p {
    color: #777777;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
}

body#goc #copyright::before {
    background: #fff;
}

body#goc #copyright p {
    color: #fff;
}

.f-logo,
.f-business-list .img-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.f-content.is-visible .f-logo,
.f-content.is-visible .f-business-list .img-box {
    opacity: 1;
    transform: translateY(0);
}

.f-content.is-visible .f-logo {
    transition-delay: 0s;
}

.f-content.is-visible .f-business-list .img-box:nth-child(1) {
    transition-delay: 0.5s;
}

.f-content.is-visible .f-business-list .img-box:nth-child(3) {
    transition-delay: 0.7s;
}

.f-content.is-visible .f-business-list .img-box:nth-child(2) {
    transition-delay: 0.9s;
}

.f-content.is-visible .f-business-list .img-box:nth-child(4) {
    transition-delay: 1.1s;
}

@media screen and (max-width: 1023px) {
    #footer-contact .sec-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #footer-contact .f-contact-btn {
        padding: 30px 20px;
    }

    #footer-contact .f-contact-btn .sec-ttl-box .f-contact-border {
        display: none;
    }

    #footer-contact .f-contact-btn .f-contact-arrow {
        right: 20px;
        animation: horizonArrowsp 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    #footer-contact .f-contact-btn .f-contact-arrow svg {
        width: 30px;
    }

    #footer-contact .deco-contact-02 {
        display: none;
    }

    #footer-contact .deco-contact-03 {
        left: -10px;
        bottom: -30px;
    }

    #footer-contact .deco-contact-01 img {
        width: 160px;
    }

    #footer-contact .deco-contact-03 img {
        width: 120px;
    }

    #footer .f-inner {
        padding-top: 40px;
    }

    #footer .f-logo img {
        width: 200px;
        height: auto;
    }

    #footer .f-business-list {
        flex-wrap: wrap;
        gap: 20px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #footer .f-business-list .img-box {
        width: calc((100% - 20px) / 2);
        max-width: 160px;
    }

    #footer .f-business-list .img-box img {
        transform: scale(0.8);
    }

    #footer .f-sns-list {
        column-gap: 30px;
    }

    #footer .f-sns-list .img-box img {
        width: 40px;
        height: auto;
    }

    #copyright {
        padding-bottom: 100px;
    }

    #copyright p {
        font-size: 1.2rem;
    }
}

/* ============================
	mainvisual
============================ */
.mainvisual {
    width: 100%;
}

#page-mv .mv-inner {
    padding: 130px 0 20px;
    border-bottom: 1px solid #DED5CB;
}

body#goc #page-mv .mv-inner {
    border-bottom: none;
}

#page-mv .content-width {
    max-width: calc(100% - 160px);
}

#page-mv .page-ttl {
    font-size: 8.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: left;
    margin: 0;
    position: relative;
}

#page-mv .page-ja-ttl {
    font-size: 1.8rem;
    margin: 10px 0 0;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
}

body#goc #page-mv .page-ttl {
    color: #fff;
    font-size: 6.2rem;
    line-height: 1.2;
}

body.error404 #page-mv .page-ttl {
    font-size: 4rem;
}

@media screen and (max-width: 1380px) {
    #page-mv .content-width {
        max-width: 1064px;
    }
}

@media screen and (max-width: 1023px) {
    #page-mv .mv-inner {
        padding-top: 90px;
    }

    #page-mv .page-ttl {
        font-size: 5rem;
    }

    body#goc #page-mv .page-ttl {
        font-size: 5.2rem;
    }

    body.error404 #page-mv .page-ttl {
    font-size: 3.2rem;
}
}

@media screen and (max-width: 767px) {
    #page-mv .page-ttl {
        font-size: 4rem;;
    }

    #page-mv .page-ja-ttl {
        font-size: 1.4rem;
        margin: 5px 0 0;
    }

    body#goc #page-mv .page-ttl {
        font-size: 3.6rem;
    }

    body.error404 #page-mv .page-ttl {
        font-size: 2.4rem;
    }
}

/* ============================
	section
============================ */
.page-section {
    padding-top: 80px;
}

.sec-inner {
    padding: 100px 0;
}

.sec-top-only {
    padding-bottom: 0!important;
}

.sec-bottom-only {
    padding-top: 0!important;
}

.sec-ttl-box {
    margin-bottom: 50px;
    position: relative;
}

.sec-ttl-box.center {
    text-align: center;
}

.sec-ttl {
    color: #1f1f1f;
    font-size: 8.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
}

body#goc .sec-ttl {
    color: #fff;
}

.sec-sub-ttl {
    color: #1f1f1f;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 5px 0 0;
    position: relative;
}

.sec-sub-ttl::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('./images/common/icon_sec_sub_ttl_k.svg') no-repeat center / contain;
    margin-right: 8px;
    position: relative;
    top: 0;
}

.sec-page-ttl {
    color: #1f1f1f;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

.sec-page-sub-ttl {
    margin: 10px 0 0;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
}

body#goc .sec-page-ttl {
    color: #fff;
}

body#goc .sec-page-ttl .f-cursive-eng {
    font-size: 6.2rem;
}

.content-width {
    box-sizing: border-box;
    width: 100%;
    max-width: 1064px;
    padding: 0 20px;
    margin: 0 auto;
}

.content-width.wide-content-width {
    max-width: 1240px;
}

@media screen and (max-width: 1023px) {
    .sec-ttl-box {
        margin-bottom: 40px;
    }

    .sec-ttl {
        font-size: 4rem;
    }

    .sec-sub-ttl {
        font-size: 1.6rem;
    }

    .sec-sub-ttl::before {
        width: 14px;
        height: 14px;
        top: 1px;
    }

    .sec-page-ttl {
        font-size: 4rem;
    }

    .sec-page-sub-ttl {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .sec-ttl {
        font-size: 3rem;
    }

    .sec-page-ttl {
        font-size: 3rem;
    }

    .sec-page-sub-ttl {
        font-size: 1.8rem;
    }

    .sec-inner {
        padding: 60px 0;
    }
}

/* ============================
	btn
============================ */
.btn-box {
    margin-top: 40px;
}

.btn-box.center {
    text-align: center;
}

.btn-box .btn-primary {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 205px;
    padding: 18px 40px;
    background-color: #F5F6FE;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(124, 129, 170, 0.2), 0 0 6px rgba(255, 255, 255, 0.35);
    position: relative;
}

.btn-box .btn-primary::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url('./images/common/btn_arrow_p.svg') no-repeat center / contain;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    right: 12px;
}

@media screen and (max-width: 1023px) {
    .btn-box .btn-primary {
        font-size: 1.4rem;
    }
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
    font-size: 1.2rem;
    padding-top: 6px;
}

.breadcrumbs .content-width {
    max-width: calc(100% - 160px);
}

@media screen and (max-width: 1380px) {
    .breadcrumbs .content-width {
        max-width: 1064px;
    }
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
    clear: both;
    margin: 60px 0 0;
    font-size: 1.6rem;
    text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    width: 3em;
    height: 3em;
    margin: 0 0.5em;
    font-weight: bold;
    line-height: 3;
    color: #999;
    border: 2px solid #ccc;
    text-align: center;
    vertical-align: middle;
    transition: all 0.5s ease;
}

.wp-pagenavi a:hover,
.wp-pagenavi span {
    background: #1f1f1f;
    color: #fff;
    border-color: #1f1f1f;
    opacity: 1;
    text-decoration: none;
}

.wp-pagenavi a:hover {
    transition: all 0.5s ease;
}

.wp-pagenavi .extend {
    width: 1em;
    color: #1f1f1f;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
}

.wp-pagenavi .extend::after {
    content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    position: relative;
    width: 3em;
    height: 3em;
    background: #fff;
    text-indent: -999999px;
    vertical-align: middle;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
}

.wp-pagenavi .previouspostslink::after {
    transform: rotate(225deg);
}

.wp-pagenavi .nextpostslink::after {
    transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
    border-color: #fff;
}

.result_count {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4rem;
    color: #999;
}

/* ============================
	post parts
============================ */
.post-date {
    font-size: 1.4rem;
    min-width: 75px;
}

.post-cats {
    line-height: 1;
    margin: 0 0 0 20px;
}

.card-item .post-cats {
    margin: 0;
}

.post-cats.flex-start {
    justify-content: flex-start;
    align-items: center;
}

.post-cat {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    background-color: #E57C9B;
    padding: 6px 10px;
    min-width: 95px;
    border-radius: 12px;
}

.post-cat + .post-cat {
    margin: 0 0 0 10px;
}

.post-cat:link {
    color: #fff;
}

.post-cat:visited {
    color: #fff;
}

/* ============================
	news list
============================ */
.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    column-gap: 12px;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item + .news-item {
    border-top: 1px solid #E3E3E3;
}

.news-item .post-meta {
    display: flex;
    align-items: center;
}

.news-item .post-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 1023px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
    }

    .news-item .post-ttl {
        font-size: 1.4rem;
    }

    .post-cat {
        font-size: 1.3rem;
    }
}

/* ============================
	card list
============================ */
.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

.card-item {
    width: calc((100% - 6%) / 3);
}

.card-item .post-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.card-item .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.card-item .post-info {
    margin-top: 20px;
}

.card-item .post-ttl {
    font-size: 1.6rem;
    margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
    .card-item {
        width: 100%;
    }
}

/* ============================
	contact form
============================ */
body#contact .sec-inner {
    padding-top: 80px;
}

.contact-desc {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 40px;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
}

.contact-box .required {
    display: inline-block;
    background-color: #e21414;
    color: #fafafa;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 0 0 20px;
    padding: 4px 8px;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box textarea {
    box-sizing: border-box;
}

.contact-box th {
    box-sizing: border-box;
    width: 30%;
    text-align: left;
}

.contact-box th p {
    display: flex;
    align-items: center;
}

.contact-box td {
    box-sizing: border-box;
    width: 70%;
}

.contact-box .your-email {
    box-sizing: border-box;
    width: 100%;
}

.contact-box .zip {
    width: 150px;
    box-sizing: border-box;
}

.contact-box .your-address {
    box-sizing: border-box;
    width: 100%;
}

.contact-box .your-content {
    width: 100%;
    box-sizing: border-box;
}

#consent-box {
    text-align: center;
}

#submit-box .wpcf7-response-output {
    text-align: center;
}

#btn-submit {
    width: 300px;
    position: relative;
    margin: 0 auto;
}

#btn-submit .wpcf7-submit {
    background-color: #1f1f1f;
    color: #fff;
    line-height: 1;
    width: 300px;
    padding: 16px 0;
    border-radius: 25px;
}

#btn-submit .wpcf7-spinner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 0 0 10px;
}

@media screen and (max-width: 767px) {
    .contact-box input[type="text"],
    .contact-box input[type="password"],
    .contact-box input[type="email"],
    .contact-box input[type="tel"],
    .contact-box input[type="url"],
    .contact-box input[type="number"],
    .contact-box textarea {
        width: 100%;
    }

    .contact-box td,
    .contact-box th {
        display: block;
        width: 100%;
    }

    body#contact .sec-inner {
        padding-top: 60px;
    }

    .contact-desc {
        font-size: 1.4rem;
    }

    .contact-box th p {
        justify-content: space-between;
    }
}

/* ============================
	floating
============================ */
#circle-container {
    position: fixed;
    bottom: 30px;
    right: 90px;
    z-index: 100;
    line-height: 0;
    width: 90px;
    height: 90px;
    background: rgba(40, 40, 40, 0.25);
    backdrop-filter: blur(12px) brightness(105%) opacity(90%);
    padding: 6px;
    border-radius: 50%;
    overflow: hidden;
}

#circle-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
}

#circle-container .floating-circle {
    animation: rotateCircle 10s linear infinite;
}

#circle-container .floating-circle svg {
    width: 78px;
    height: 78px;
}

@keyframes rotateCircle {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#circle-container .floating-logo {
    width: 36px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#floating-sns {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 100;
    width: 50px;
    line-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2.5em;
}

#floating-sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
}

#floating-sns a span {
    color: #fff;
    font-weight: 400;
    writing-mode: vertical-rl;
    line-height: 1;
    letter-spacing: 0.15em;
    padding-left: 2px;
    transition: all .3s ease;
}

#floating-sns.is-scroll a span {
    color: #1f1f1f;
}

#floating-sns svg {
    width: 26px;
    height: 26px;
}

#floating-sns svg g path,
#floating-sns svg g rect {
    transition: all .3s ease;
}

#floating-sns.is-scroll svg g path,
#floating-sns.is-scroll svg g rect {
    fill: #1f1f1f!important;
}

body:not(.home) #floating-sns a span {
    color: #1f1f1f;
}

body:not(.home) #floating-sns svg g path,
body:not(.home) #floating-sns svg g rect {
    fill: #1f1f1f!important;
}

body#goc #floating-sns a span {
    color: #fff;
}

body#goc #floating-sns svg g path,
body#goc #floating-sns svg g rect {
    fill: #fff!important;
}

@media screen and (max-width: 1023px) {
    #circle-container {
        bottom: 25px;
        right: 30px;
        width: 80px;
        height: 80px;
    }

    #circle-container .floating-circle svg {
        width: 68px;
        height: 68px;
    }

    #circle-container .floating-logo {
        width: 32px;
    }

    #floating-sns {
        display: none;
    }
}

/* ============================
	animation
============================ */
@keyframes horizonLine {
    0% { 
        transform: scaleX(0);
        transform-origin: left;
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.8s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 汎用テキストアニメーション --- */
.char-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.char-animate {
    display: inline-block;
    transform: translate3d(200%, 0, 0);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: inherit;
    text-decoration: inherit;
}

.js-slide-text.is-active .char-animate {
    transform: translate3d(0, 0, 0);
}

/* === .splitText アニメーションスタイル === */
.js-split-text .char-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.1em;
    line-height: 1;
}

.js-split-text .char-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.js-split-text.is-active .char-inner {
    transform: translateY(0);
}