@charset "Shift_JIS";

body {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-family: "Noto Serif JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
    min-width: auto;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #215BF3;
}

a,
a img {
    transition: all 300ms 0s ease;
}

a:hover {
    color: #333;
}

a:hover img {
    opacity: .6;
}

a:focus,
*:focus {
    outline: none;
}

.underline {
    text-decoration: underline;
}

p {
    text-align: left;
    line-height: 1.8;
}

/*==== mobile スマフォ横?用css ===*/
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}


/*******************************
CommandCss
*******************************/
#wrap {
    position: relative;
}

.builder {
    width: 90%;
    max-width: 1132px;
    margin: 0 auto;
}

/*---fontStyle---*/
.bold {
    font-weight: bold;
}

/*---textLayout---*/
.txtright {
    text-align: right;
}

.txtleft {
    text-align: left;
}

.txtcenter {
    text-align: center;
}

ul.list-style-indent li {
    padding-left: 1em;
    text-indent: -1em;
    margin: 10px 0;
}

/*---layout---*/
.wrap-common {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.pc {
    display: block;
}

/*width 1024pxまで表示*/
.tablet {
    display: block;
}

/*width 768pxまで表示*/
.sp {
    display: none;
}

/*width 768pxから表示*/

/*---Flex---*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex.col2,
.flex.col3,
.flex.col4 {
    flex-wrap: nowrap;
    margin-right: -20px;
}

.flex.col2 .item,
.flex.col3 .item,
.flex.col4 .item {
    padding-right: 20px;
}

.flex.col2 .item {
    width: 50%;
}

.flex.col3 .item {
    width: 33.333%;
}

.flex.col4 .item {
    width: 25%;
}


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .wrap-common {
        max-width: none;
        margin: 0 auto;
    }

    .pc {
        display: none;
    }

}

/*==== mobile スマフォ横?用css ===*/
@media screen and (max-width: 768px) {
    .tablet {
        display: none;
    }

    .sp {
        display: block;
    }

    /*---Flex---*/
    .flex.col2,
    .flex.col3,
    .flex.col4 {
        flex-wrap: wrap;
    }

    .flex.col2 .item,
    .flex.col3 .item,
    .flex.col4 .item {
        width: 100%;
    }

}


/*******************************
LoadingCss
*******************************/
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading .ball {
    border-radius: 100%;
    margin: 2px;
    border: 2px solid #333;
    border-bottom-color: transparent;
    height: 26px;
    width: 26px;
    display: inline-block;
    -webkit-animation: rotate .75s 0s linear infinite;
    animation: rotate .75s 0s linear infinite;
    position: absolute;
    top: 50%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

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


/*******************************
BtnCss
*******************************/

.link_btn {
    display: inline-block;
    position: relative;
    padding: 10px 40px 10px 30px;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    background: #333;
    transition: 0.5s;
}

.link_btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 15px;
    transition: 0.5s;
}

.link_btn:hover {
    color: #333;
    background: #fff;
    transition: 0.5s;
}

.link_btn:hover::after {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    right: 10px;
    transition: 0.5s;
}

/*******************************
HeaderCss
*******************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 30px 3vw;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* 擬似要素がはみ出ないように */
}

/* 白グラデーションの“幕” */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    transform: translateY(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

header.scrolled::before {
    transform: translateY(0);
    /* 降りてくる */
}

/* スクロール後のパディング調整 */
header {
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 30px 3vw;
}

header h1 img {
    max-width: 269px;
    height: auto;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5)) invert(100%) sepia(0%) saturate(3156%) hue-rotate(357deg) brightness(117%) contrast(100%);
}

header.scrolled h1 img,
.page header h1 img {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0));
}

header nav#navi {
    margin-left: auto;
}

header nav#navi a {
    display: inline-block;
    color: #333333;
    font-family: "Shippori Mincho", serif;
    padding: 5px 15px;
    font-size: 14px;
}

header nav#navi a.nav_contact {
    background: #333333;
    padding: 1px;
    margin-left: 2em;
}

header nav#navi a.nav_contact span {
    display: block;
    background: #fff;
    border-radius: 5px;
    padding: 4px 20px;
}

@media screen and (max-width: 1000px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 20px 3vw;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        /* 擬似要素がはみ出ないように */
    }

    header.scrolled {
        padding: 20px 3vw;
    }

    header h1 {
        position: relative;
        z-index: 999;

    }

    header h1 img {
        max-width: 180px;
        height: auto;
    }

    header nav#navi {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 998;
        width: 100vw;
        height: 100vh;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        /* ←フェード用 */
    }

    header nav#navi.active {
        opacity: 1;
        pointer-events: auto
    }

    header nav#navi.active+h1 img {}

    header nav#navi .inner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    header nav#navi a {
        display: block;
        margin-bottom: 15px;
    }

    header nav#navi a.nav_contact {
        margin-left: 0;
    }
}



/*sp_btn*/
#spBtn {
    display: none;
    background: #fff;
    border: solid 1px #b9b9b9;
    border-radius: 5px;
    padding: 10px 12px;
    position: relative;
    z-index: 999;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 26px;
    height: 19px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #4d4d4d;
}

.menu-trigger span:nth-of-type(1) {
    top: 4px;
}

.menu-trigger span:nth-of-type(2) {
    top: 11px;
}

.menu-trigger span:nth-of-type(3) {
    top: 18px;
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}

@media screen and (max-width: 1000px) {
    #spBtn {
        display: block;
    }
}

/*******************************
FooterCss
*******************************/
footer {
    padding: 140px 0 0;
    position: relative;
    z-index: 2;
    background-image: url(../img/common/bg.jpg);
    background-size: 1536px auto;
    background-repeat: repeat;
}

footer .footer_contact {
    padding: 40px 0px;
    margin-bottom: 60px;
    position: relative;
    background-image: url(../img/top/top_bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    gap: 20px 5%;
}

footer .footer_contact::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left,
            rgba(63, 176, 116, 0.15) 0%,
            /* 左下は緑 */
            rgba(0, 255, 120, 0.0) 30%
            /* 少し進んだところで透明 */
        );
}

footer .footer_contact .item:nth-of-type(1) {
    flex-basis: 38%;
    border-right: 1px solid #ccc;
}

footer .footer_contact .item:nth-of-type(1) p {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
}

footer .footer_contact .item:nth-of-type(1) p .title {
    display: block;
    font-size: 28px;
}

footer .footer_contact .item.block-mail {
    max-width: 28%;
}

footer .footer_contact .item.block-mail span.caption {
    display: block;
    font-size: 12px;
    padding-top: 10px;
}

footer .footer_contact .item.block-tel {
    text-align: left;
    max-width: 28%;
}

footer .footer_contact .item.block-tel span.caption {
    display: block;
    font-size: 12px;
    padding-top: 10px;
}

footer .footer_contact .item span.tel,
footer .footer_contact .item span.fax {
    display: block;
    position: relative;
    font-family: "Shippori Mincho", serif;
    font-size: 30px;
}

footer .footer_contact .item span.tel::before {
    content: "TEL";
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}


footer .footer_contact .item span.fax::before {
    content: "FAX";
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}


footer .footer_detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding-bottom: 100px;
}

footer .footer_detail .item:nth-of-type(2) {
    flex-basis: 50%;
    text-align: left;
}

footer .footer_detail .item:nth-of-type(2) .layout {
    display: flex;
    align-items: center;
}

footer .footer_detail .item:nth-of-type(2) .layout .col:nth-of-type(1) {
    max-width: 260px;
    margin-right: 15px;
}

footer .logo {
    max-width: 365px;
    width: 100%;
    height: auto;
}

footer .copyright {
    display: inline-block;
    font-size: 10px;
    margin-right: 15px;
}

footer .privacy {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #5b5b5b;
}


footer .footer_detail .item:nth-of-type(2) .layout .col:nth-of-type(2) {
    text-align: left;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
}


footer .footer_detail .item:nth-of-type(1) {
    flex-basis: 50%;
    text-align: right;
}

footer .footer_detail .item:nth-of-type(1) ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

footer .footer_detail .item:nth-of-type(1) ul li {
    border-right: 1px solid #ccc;
    text-align: center;
}

footer .footer_detail .item:nth-of-type(1) ul li:last-child {
    border: 0;
}

footer .footer_detail .item:nth-of-type(1) ul li a {
    display: block;
    color: #333;
    padding: 0 18px;
    font-size: 14px;
}

footer .footer_detail .item:nth-of-type(1) .footer_links {
    display: flex;
    justify-content: space-between;
}

footer .footer_detail .item:nth-of-type(1) .footer_links a {
    flex-basis: 48%;
}


@media screen and (max-width: 1000px) {
    footer {
        padding: 60px 0 0;
    }

    footer .footer_contact {
        padding: 40px;
        margin-bottom: 60px;
        position: relative;
        display: block;
    }

    footer .footer_contact .item:nth-of-type(1) {
        border-right: 0;
        margin-bottom: 30px;
    }

    footer .footer_contact .item:nth-of-type(1) p {
        text-align: center;
        font-family: "Shippori Mincho", serif;
        font-size: 14px;
    }

    footer .footer_contact .item:nth-of-type(1) p .title {
        display: block;
        font-size: 28px;
    }

    footer .footer_contact .item:nth-of-type(2) {
        max-width: 100%;
        margin-bottom: 30px;
    }

    footer .footer_contact .item:nth-of-type(2) span.caption {
        display: block;
        font-size: 12px;
        padding-top: 20px;
    }

    footer .footer_contact .item:nth-of-type(3) {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    footer .footer_contact .item:nth-of-type(3) span.tel,
    footer .footer_contact .item:nth-of-type(3) span.fax {
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-size: 30px;
        text-align: center;
    }

    footer .footer_detail {
        padding-bottom: 40px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    footer .footer_detail .item:nth-of-type(1),
    footer .footer_detail .item:nth-of-type(2) {
        flex-basis: 100%;
    }

    footer .footer_detail .item:nth-of-type(2) {
        text-align: left;
    }

    footer .footer_detail .item:nth-of-type(2) .layout {
        display: block;
        margin-bottom: 0;
    }

    footer .footer_detail .item:nth-of-type(2) .layout .col:nth-of-type(1) {
        display: block;
        width: auto;
        margin: 0 auto 15px;
    }

    footer .footer_detail .item:nth-of-type(2)>address {
        display: block;
        text-align: center;
        font-size: 10px;
        margin-right: 0;
    }

    footer .footer_detail .item:nth-of-type(2)>a {
        display: block;
        font-size: 14px;
        color: #555;
        text-align: center;
    }


    footer .footer_detail .item:nth-of-type(2) .layout .col:nth-of-type(2) {
        text-align: center;
        font-family: "Shippori Mincho", serif;
        font-size: 14px;
    }


    footer .footer_detail .item:nth-of-type(1) {
        padding-top: 0;
    }

    footer .footer_detail .item:nth-of-type(1) ul {
        justify-content: center;
        margin-top: 20px;
    }

    footer .footer_detail .item:nth-of-type(1) ul li {
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        margin-left: -1px;
        margin-bottom: 15px;
    }

    footer .footer_detail .item:nth-of-type(1) ul li:last-child {
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
    }

    footer .footer_detail .item:nth-of-type(1) ul li a {
        display: block;
        color: #333;
        padding: 0 10px;
        font-size: 14px;
    }

    footer .footer_detail .item:nth-of-type(1) .footer_links {
        display: flex;
        justify-content: space-between;
    }

    footer .footer_detail .item:nth-of-type(1) .footer_links a {
        flex-basis: 48%;
    }
}

/* breadcrumbs */
.breadcrumbs {
    margin-top: 160px;
    margin-bottom: 2rem;
}

.breadcrumbs .breadcrumbs-inner {
    margin: 0;
    gap: 1rem .5rem;
}

.breadcrumbs .breadcrumbs-inner .item {
    font-size: 12px;
    line-height: 32px;
}

.breadcrumbs .breadcrumbs-inner .item,
.breadcrumbs .breadcrumbs-inner .item a {
    color: #333;
    text-decoration: none;
}

.breadcrumbs .breadcrumbs-inner .item:after {
    content: "〉";
    display: inline-block;
    margin-left: 1rem;
}

.breadcrumbs .breadcrumbs-inner .item:nth-last-child(1):after {
    display: none;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .breadcrumbs {
        margin-top: 60px;
        margin-bottom: 1rem;
    }
}

/* page command */
.page {
    padding-top: 10vw;
}

.page-hero.noimg {
    border-bottom: solid 1px #D5D5D5;
}

.page-hero .title {
    text-align: left;
    font-family: 'Shippori Mincho';
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 76px;
}

.page-hero .title .main {
    font-size: 38px;
}

.page-hero .title .sub {
    display: block;
    position: relative;
    font-size: 16px;
    margin-bottom: 1em;
}

.page-hero .title .sub:before {
    content: "";
    width: 47px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    left: -57px;
}

.page-hero .mainimg {
    aspect-ratio: 1/0.326;
    width: 100%;
    border-top: solid 1px #D5D5D5;
}

.page-hero .mainimg img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

/*==== mobile スマフォ横?用css ===*/
@media screen and (max-width: 768px) {
    .page {
        padding-top: 120px;
    }

    .page-hero .title {
        margin-bottom: 40px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .page-hero .title .main {
        font-size: 30px;
    }

    .page-hero .title .sub {
        font-size: 14px;
    }
}

/* Modal Style */
.btn-modal {
    cursor: pointer;
    display: inline-block;
    max-width: 125px;
    margin: 0 auto 32px;
    padding: 12px 25px;
    background: #333;
    color: #fff;
    border: solid 1px #333;
    border-radius: 0;
    font-family: 'Shippori Mincho';
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    position: relative;
    transition: all 300ms 0s ease;
}

.btn-modal span {
    display: inline-block;
    margin-left: 12px;
}

.btn-modal span img {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5)) invert(100%) sepia(0%) saturate(3156%) hue-rotate(357deg) brightness(117%) contrast(100%);
    transition: all 300ms 0s ease;
}

.btn-modal:hover {
    background: #fff;
    color: #333;
}

.btn-modal:hover span img {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    width: 95%;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

.modal-close{
    background: none;
    border: none;
    color: #698a63;
    font-size: 44px;
    font-weight: normal;
    line-height: 28px;
    padding: 12px;
    position: absolute;
    top: 0;
    right: 0;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}