/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/

@media screen and (max-width:1300px) {
    .w126 {
        width: 96%;
    }
}

/*=====================================
*
*header
*
=======================================*/
header .header-cont {
    position: relative;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1435px;
    width: 100%;
    height: 73px;
    margin: auto;
}

@media screen and (max-width:1500px) {
    header .header-cont {
        padding: 0 2%;
    }
}

header .header-cont.fixed {
    position: fixed;
    z-index: 9995;
    transform: translateX(-50%);
    top: -80px;
    left: 50%;
    transition: 0.3s ease-in-out;
}

header .header-cont.fixed.move {
    top: 10px;
}

header .logo a {
    display: block;
    width: 32px;
}

header .header-cont .menu-global-container ul {
    display: flex;
    align-items: center;
}

header .header-cont .menu-global-container ul li:not(:last-of-type) {
    padding-right: clamp(10px, 1.82vw, 35px);
}

header .header-cont .menu-global-container ul li {
    font-family: "Prociono";
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.08em;
}

header .header-cont .menu-global-container ul li a {
    position: relative;
    color: #fff;
}

header .header-cont.fixed .menu-global-container ul li a {
    color: #555;
}

header .header-cont .menu-global-container ul li a::after {
    content: "";
    position: absolute;
    transform: translateX(-50%) scale(0, 1);
    left: 50%;
    bottom: -6px;
    width: 45%;
    min-width: 25px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition: 0.3s cubic-bezier(0.06, 0.63, 0.09, 1.08);
}

header .header-cont.fixed .menu-global-container ul li a::after {
    background-color: #555;
}


@media (any-hover:hover) {
    header .header-cont .menu-global-container ul li a:hover:after {
        transform: translateX(-50%) scale(1, 1);
    }
}

/*ハンバーガーメニュー*/
@media screen and (max-width:599px) {
	header .header-cont.fixed.move.single{
		transform: initial;
		top: 10px;
		left: 0;
	}
	
    header .header-cont .ham-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 9999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80vw;
        height: 85vh;
        max-height: 640px;
        padding: 20px 5px;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out;
        overflow: scroll;
    }

    /*
	header .header-cont .ham-menu > p {
	transform: translateX(-50%);
	position: absolute;
	top: 15px;
	left: 50%;
	height:fit-content;
	letter-spacing: 0.05em;
	bottom: 0;
	font-family: "Prociono";
	font-weight: 400;
	font-size: 23px;
	color: #555;
}
	*/

    header .header-cont .ham-menu p.menu {
        position: relative;
        height: fit-content;
        letter-spacing: 0.05em;
        bottom: 0;
        width: 100%;
        font-family: "Prociono";
        font-weight: 400;
        font-size: 26px;
        color: #555;
        text-align: center;
        margin: -80px 0 35px;
        padding-bottom: 5px;
    }

    header .header-cont .ham-menu p.menu::after {
        content: "";
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom: -1px;
        width: 30px;
        height: 2px;
        background: #555;
        border-radius: 3px;
    }

    header .header-cont .ham-menu.open {
        pointer-events: auto;
        opacity: 1.0;
    }

    header .header-cont .sp-menu>.sp-btn p {
        font-family: "Prociono";
        font-weight: 400;
        font-size: 10px;
        color: #fff;
    }

    header .header-cont.fixed .sp-menu>.sp-btn p {
        color: #555;
    }

    header .header-cont .sp-menu>.sp-btn .wrapper {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 23px;
        height: 15px;
        margin-left: auto;
    }

    header .header-cont .sp-menu>.sp-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 10px;
    }

    header .header-cont.fixed .sp-menu>.sp-btn span {
        background-color: #555;
    }

    header .header-cont .sp-menu>.sp-btn span+span {
        width: 65%;
        margin-left: auto;
    }

    header .header-cont .ham-menu .sp-btn {
        position: absolute;
        top: 20px;
        right: 17px;
    }

    header .header-cont .ham-menu .sp-btn .wrapper {
        position: relative;
        width: 18px;
        height: 18px;
        margin: auto;
    }

    header .header-cont .ham-menu .sp-btn span {
        position: absolute;
        display: block;
        width: 18px;
        height: 2px;
        background-color: #555;
        border-radius: 10px;
        top: calc(50% - 3px);
    }


    header .header-cont .ham-menu .sp-btn .wrapper span:first-of-type {
        transform: rotate(45deg);
    }


    header .header-cont .ham-menu .sp-btn .wrapper span+span {
        transform: rotate(-45deg);
    }

    header .header-cont .ham-menu .sp-btn p {
        font-family: "Prociono";
        font-weight: 400;
        font-size: 10px;
        color: #555;
    }

    header .header-cont .ham-menu .menu-global-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }


    header .header-cont .ham-menu .menu-global-container ul {
        display: initial;
        width: 100%;
    }

    header .header-cont .ham-menu .menu-global-container ul li {
        text-align: center;
        padding: 0;
    }

    header .header-cont .ham-menu .menu-global-container ul li+li {
        margin-top: 30px;
    }

    header .header-cont .ham-menu .menu-global-container ul li a {
        font-size: 16px;
        color: #555;
    }

    header .header-cont .ham-menu .menu-global-container ul li a>span {
        position: relative;
        display: block;
        line-height: 1.0;
        font-size: 10px;
        font-family: "Noto Serif JP", serif;
        font-weight: 500;
        color: inherit;
        margin-top: 5px;
        padding-top: 10px;
        margin: 0;
        padding: 0;
    }

    /*header .header-cont .ham-menu .menu-global-container ul li a>span::before {
	content: "";
	position: absolute;
	transform: translateX(-50%);
	top: 0;
	left: 50%;
	width: 22px;
	height: 2px;
	background-color: #555;
	border-radius: 5px;
}*/

    header .header-cont .sp-menu .sp-bg {
        position: fixed;
        z-index: 9998;
        left: 0;
        top: -10px;
        width: 100vw;
        height: calc(100vh + 20px);
        background-color: #555;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out
    }

    header .header-cont .sp-menu .sp-bg.open {
        pointer-events: auto;
        opacity: 0.65;
    }
}

/*=====================================
*
*mv
*
=======================================*/
.mv-area {
    position: relative;
    max-width: 1920px;
    max-height: 900px;
    margin: auto;
    margin-top: -73px;
    padding: max(11.77vw, 226px) 0 max(20vw, 384px);
    background-image: url(../image/TOP/mv/mv_bg.jpg);
    background-repeat: no-repeat;
}

.mv-cont {
    position: relative;
}

.mv-cont .mv-text {
    font-size: clamp(14px, 1.04vw, 20px);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
}

.mv-cont .mv-text p {
    font-size: 1.0em;
}

.mv-cont .mv-text h1 {
    font-size: calc((40 / 20) * 1.0em);
    line-height: 2.0em;
    margin-top: calc((6 / 20) * 1.0em);
}

.mv-cont .mv-text ul {
    margin-top: 1.0em;
}

.mv-cont .mv-text ul li {
    position: relative;
    padding-left: 17px;
    font-size: calc((14 / 20) * 1.0em);
}

.mv-cont .mv-text ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #fff;
}

.mv-cont .mv-text ul li+li {
    margin-top: 15.5px;
}

.mv-area .mv-img {
    position: absolute;
}

.mv-area .mv-img1 {
    width: clamp(270px, 26.88vw, 516px);
    bottom: clamp(-95px, -4.95vw, -30px);
    left: clamp(50px, 6.35vw, 122px);
}

.mv-area .mv-img2 {
    width: clamp(280px, 27.4vw, 526px);
    top: clamp(50px, 8.33vw, 160px);
    right: clamp(50px, 6.61vw, 127px);
}

.mv-area .mv-video {
    position: absolute;
    right: clamp(50px, 17.19vw, 330px);
    bottom: 47px;
}

.mv-area .mv-video h2 {
    font-size: 16px;
    font-family: "Prociono";
    color: #fff;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 4px;
}

.mv-area .video-cont {
    width: 290px;
    height: 145px;
    border-radius: 5px;
    overflow: hidden;
}

.mv-area .video-cont * {
    width: 100% !important;
    height: 100% !important;
}

/*tb*/
@media screen and (max-width:1024px) {
    .mv-area {
        display: flex;
        align-items: center;
        height: 100vh;
        padding: 0;
    }

    .mv-cont .mv-text {
        font-size: clamp(16px, 1.04vw, 20px);
    }

    .mv-area .mv-img1 {
        width: 36%;
        left: 2%;
    }

    .mv-area .mv-img2 {
        width: 36%;
        right: 2%;
    }

    .mv-area .mv-video {
        right: 2%;
    }
}

@media screen and (max-width:767px) {
    header .header-cont .menu-global-container ul li a {
        font-size: 16px;
    }

    .mv-cont .mv-text {
        font-size: 14px;
    }

    .mv-cont .mv-text h1 {
        font-size: calc((35 / 20) * 1.0em);
    }

    .mv-area .video-cont {
        width: 250px;
        height: 130px;
    }

    .mv-area :is(.mv-img1, .mv-img2) {
        width: 43%;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .mv-area {
        height: 660px;
    }

    .mv-cont .mv-text {
        font-size: 12px;
        margin-bottom: 50px;
    }

    .mv-cont .mv-text p span {
        font-size: 1.5em;
    }

    .mv-cont .mv-text h1 {
        font-size: 17px;
        margin-top: 8px;
        margin-bottom: 15px;

    }

    .mv-cont .mv-text h1 span {
        font-size: 1.5em;
    }

    .mv-cont .mv-text ul li {
        padding-left: 15px;
    }

    .mv-cont .mv-text ul li+li {
        margin-top: 8.5px;
    }

    .mv-cont .mv-text ul li::before {
        width: 9px;
        height: 2px;
    }

    .mv-area .mv-video h2 {
        font-size: 12px;
    }

    .mv-area .video-cont {
        width: 210px;
        height: 110px;
    }

    .mv-area .mv-video {
        bottom: -26px;
    }

    .mv-area :is(.mv-img1, .mv-img2) {
        width: 180px;
    }

    .mv-area .mv-img1 {
        bottom: 98px;
    }

    .mv-area .mv-img2 {
        top: 63px;
    }
}

/*=====================================
*
*front
*
=======================================*/

/*=====================================
*message
=======================================*/
.front-page .message-sec {
    position: relative;
    margin-top: 210px;
    padding-bottom: 0;
    margin-bottom: 160px;
}

.front-page .message-sec .cont .text-area {
    width: calc((725 / 1260) * 100%);
}

.front-page .message-sec .cont .text-area h3 {
    font-size: clamp(18px, 1.15vw, 22px);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: calc(32 / 22);
    color: #555;
    margin-top: calc((5 / 22) * -1.0em);
    margin-bottom: 25px;
}


.front-page .message-sec .cont .text-area h3 span {
    font-size: calc((30 / 22) * 1.0em);
    color: transparent;
    -webkit-text-stroke: 1px #555;
    padding-right: 10px;
}

.front-page .message-sec .cont .text-area .text-cont p {
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 500;
    line-height: 2.0;
}

.front-page .message-sec .cont .text-area .text-cont p+p {
    margin-top: calc((17 / 16) * 1.0em);
}

.front-page .message-sec .cont .text-area .btn01 {
    margin: 40px auto 0;
}

.front-page .message-sec .deco-img {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    width: calc((825 / 1920) * 100%);
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .message-sec {
        margin-top: 145px;
        margin-bottom: 145px;
    }

    .front-page .message-sec .cont .text-area {
        width: 100%;
    }

    .front-page .message-sec .cont .text-area .text-cont p {
        line-height: 2.5;
    }

    .front-page .message-sec .deco-img {
        top: 28%;
        width: 51%;
        opacity: 0.5;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .message-sec {
        margin-top: 90px;
        margin-bottom: 100px;
    }

    .front-page .message-sec .cont .text-area h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .front-page .message-sec .cont .text-area .btn01 {
        position: relative;
        z-index: 1;
        margin: 40px auto 0;
    }

    .front-page .message-sec .deco-img {
        transform: translate(0);
        top: initial;
        bottom: 0;
        width: 96%;
        opacity: 0.65;
    }
}

/*=====================================
*concept
=======================================*/
.front-page .concept-sec .cont-area {
    margin: 40px clamp(20px, 3.75vw, 70px) 0;
}

.front-page .concept-sec .cont-area .cont {
    display: flex;
    justify-content: space-between;
}

.front-page .concept-sec .cont-area .cont .text-area .hd-area h3 {
    font-size: clamp(16px, 1.15vw, 22px);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.front-page .concept-sec .cont-area .cont .text-area .hd-area p {
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: calc(28 / 16);
    margin-top: calc((28 / 18.5) * 1.0em);
}

.front-page .concept-sec .cont-area .cont .text-area ul {
    margin-top: clamp(15px, 1.04vw, 20px);
}

.front-page .concept-sec .cont-area .cont .text-area ul li {
    padding: clamp(15px, 0.99vw, 19px);
    border-radius: 10px;
    border: solid 1px #958878;
}

.front-page .concept-sec .cont-area .cont .text-area ul li+li {
    margin-top: clamp(10px, 0.78vw, 15px);
}

.front-page .concept-sec .cont-area .cont .text-area ul li h4 {
    position: relative;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 600;
    color: #4b3419;
    letter-spacing: 0.08em;
    padding-left: calc((17 / 16) * 1.0em);
}

.front-page .concept-sec .cont-area .cont .text-area ul li h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: #4b3419;
}

.front-page .concept-sec .cont-area .cont .text-area ul li p {
    font-size: clamp(12px, 0.73vw, 14px);
    font-weight: 600;
    color: #4b3419;
    letter-spacing: 0.02em;
    line-height: calc(32 / 14);
    margin-top: calc((3 / 14) * 1.0em);
}

.front-page .concept-sec .cont-area .cont-1 {
    flex-direction: row-reverse;
    align-items: flex-end;
    width: calc((947 / 1120) * 100%);
}

.front-page .concept-sec .cont-area .cont-1 .text-area {
    width: calc((450 / 947) * 100%);
}

.front-page .concept-sec .cont-area .cont-1 .img-area {
    width: calc((394 / 947) * 100%);
}

.front-page .concept-sec .cont-area .cont-2 {
    align-items: center;
    width: 100%;
    margin-top: 45px;
}

.front-page .concept-sec .cont-area .cont-2 .text-area {
    width: calc((450 / 1120) * 100%);
}

.front-page .concept-sec .cont-area .cont-2 .img-area {
    width: calc((394 / 1120) * 100%);
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .concept-sec .cont-area {
        margin: 40px auto 0;
    }

    .front-page .concept-sec .cont-area .cont {
        align-items: flex-end !important;
        width: 100%;
    }

    .front-page .concept-sec .cont-area .cont .text-area {
        width: 60% !important;
    }

    .front-page .concept-sec .cont-area .cont .img-area {
        width: 35% !important;
    }

    .front-page .concept-sec .cont-area .cont .img-area img {
        width: 100% !important;
    }

}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .concept-sec {
        padding-bottom: 100px;
    }

    .front-page .concept-sec .cont-area .cont {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .front-page .concept-sec .cont-area .cont .text-area {
        width: 100% !important;
    }

    .front-page .concept-sec .cont-area .cont .text-area .hd-area {
        padding: 10px;
        margin-top: -130px;
        background: #ffffffeb;
        color: #4b3419;
        height: 130px;
    }

    .front-page .concept-sec .cont-area .cont .text-area .hd-area p {
        margin-top: 10px;
    }

    .front-page .concept-sec .cont-area .cont .text-area ul {
        margin-top: 20px;
    }

    .front-page .concept-sec .cont-area .cont .img-area {
        width: 100% !important;
    }
}

/*=====================================
*transition
=======================================*/
.front-page .transition-sec .contents-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc((60 / 1260) * 100%);
    margin-top: 40px;
}

.front-page .transition-sec .contents-area .cont>span {
    display: block;
    font-family: "Prociono";
    font-weight: 400;
    color: #c4bbb1;
    letter-spacing: 0.08em;
    font-size: 42px;
    width: fit-content;
    margin-bottom: -4.5px;
}

.front-page .transition-sec .contents-area .cont>span:last-of-type {
    color: #caaf8f;
    margin-left: auto;
    margin-top: -4.5px;
}

.front-page .transition-sec .contents-area .cont h2 {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.08em;
    border-radius: 0 8px 8px 0;
    color: #fff;
    padding: 8px calc((30 / 16) * 1.0em) 8px calc((18 / 16) * 1.0em);
    background-color: #caaf8f;
}

.front-page .transition-sec .contents-area .cont .img-area {
    position: relative;
    z-index: 1;
}

.front-page .transition-sec .contents-area .cont .img-area img {
    width: 100%;
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .transition-sec .contents-area .cont>span {
        font-size: 30px;
    }

    .front-page .transition-sec .contents-area .cont h2 {
        font-size: 14px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .transition-sec {
        padding-bottom: 150px;
    }

    .front-page .transition-sec .contents-area {
        grid-template-columns: repeat(1, 1fr);
    }

    .front-page .transition-sec .contents-area .cont>span {
        font-size: 22px;
    }
}

/*=====================================
*change
=======================================*/
.front-page .change-sec .contents-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.front-page .change-sec .contents-area .text-area {
    width: calc((572 / 1260) * 100%);
    padding-left: calc((44 / 1260) * 100%);
}

.front-page .change-sec .contents-area .text-area .hd-area {
    width: 100%;
}

.front-page .change-sec .contents-area .text-area .hd-area {
    position: relative;
    font-size: clamp(22px, 1.82vw, 35px);
    letter-spacing: 0.08em;
}

.front-page .change-sec .contents-area .text-area .hd-area h2 {
    font-size: 1.0em;
    font-weight: 700;
    color: #4b3419;
}

.front-page .change-sec .contents-area .text-area .hd-area h2 span {
    position: absolute;
    z-index: -1;
    left: calc(((44 / 572) * 100%) * -1);
    bottom: calc((14 / 67) * 1.0em);
    font-family: "Prociono";
    font-weight: 400;
    font-size: calc((67 / 35) * 1.0em);
    line-height: 1.0;
    color: transparent;
    -webkit-text-stroke: 1px #c1b4a4;
    opacity: 0.6;
}

.front-page .change-sec .contents-area .text-area>span {
    display: block;
    width: 1px;
    height: 50px;
    margin: 25px 0 35px;
    background-color: #c1b4a4;
}

.front-page .change-sec .contents-area .text-area p {
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 2.0;
}

.front-page .change-sec .contents-area .img-area {
    width: calc((646 / 1260) * 100%);
    padding-right: calc((20 / 1260) * 100%);
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .change-sec .contents-area .text-area {
        padding-left: calc((20 / 1260) * 100%);
    }

    .front-page .change-sec .contents-area .text-area>span {
        height: 35px;
        margin: 20px 0 30px;
    }

    .front-page .change-sec .contents-area .img-area {
        padding-right: 0;
    }
}

@media screen and (max-width:767px) {
    .front-page .change-sec .contents-area .text-area .hd-area h2 {
        font-size: 19px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .change-sec {
        padding-bottom: 100px;
    }

    .front-page .change-sec .contents-area {
        flex-wrap: wrap;
        gap: 25px;
    }

    .front-page .change-sec .contents-area .text-area {
        width: 100%;
        padding-left: 0;
    }

    .front-page .change-sec .contents-area .text-area .hd-area h2 span {
        left: 0;
    }

    .front-page .change-sec .contents-area .img-area {
        width: 100%;
    }
}

/*=====================================
*cta
=======================================*/
.front-page .cta-sec .contents-area {
    position: relative;
}

.front-page .cta-sec .cta-cont {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
}

.front-page .cta-sec .cta-cont .hd-area .deco {
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    width: fit-content;
    margin: auto;
    ;
}

.front-page .cta-sec .cta-cont .hd-area .deco span {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: calc((3 / 67) * 1.0em);
    z-index: -1;
    font-family: "Prociono";
    font-weight: 400;
    font-size: calc((67 / 25) * 1.0em);
    letter-spacing: 0.08em;
    line-height: 1.0;
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
    opacity: 0.4;
}

.front-page .cta-sec .cta-cont .hd-area h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(28px, 1.82vw, 35px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-align: center;
}

/*tb*/
@media screen and (max-width:767px) {
    .front-page .cta-sec .cta-cont .hd-area .deco {
        font-size: 15px;
    }

    .front-page .cta-sec .cta-cont .hd-area .deco span {
        font-size: calc((61 / 25) * 1.0em);
    }

    .front-page .cta-sec .cta-cont .hd-area h2 {
        font-size: 20px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .cta-sec {
        padding-bottom: 100px;
    }

    .front-page .cta-sec img {
        width: 100%;
    }

    .front-page .cta-sec .cta-cont .hd-area .deco {
        font-size: 20px;
    }

    .front-page .cta-sec .cta-cont .hd-area h2 {
        font-size: 19px;
        margin-top: 7px;
    }
}

/*=====================================
*service
=======================================*/
.front-page .service-sec .contents-area .btn-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc((25 / 1260) * 100%);
}

.front-page .service-sec .contents-area .btn-area .service-btn {
    width: 100%;
    height: 65px;
    font-size: 20px;
    cursor: pointer;
}

.front-page .service-sec .contents-area .btn-area .service-btn p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #b41c2a;
    width: 100%;
    height: 100%;
    border: 1px solid #b41c2a;
    border-radius: 50px;
}

.front-page .service-sec .contents-area .btn-area .service-btn p span {
    font-family: "Prociono";
    font-size: calc((16 / 20) * 1.0em);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: -3px;
}

.front-page .service-sec .contents-area .btn-area .service-btn.active p span {
    opacity: 0.74;
}

.front-page .service-sec .contents-area .btn-area .service-btn.active p {
    color: #fff;
    background-color: #b41c2a;
}

.front-page .service-sec .contents-area .cont {
    display: none;
    margin-top: 60px;
}

.front-page .service-sec .contents-area .cont.active {
    display: block;
}

.front-page .service-sec .contents-area .cont .hd-area h3 {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 0.08em;
    color: #4b3419;
}

.front-page .service-sec .contents-area .cont .hd-area h3 span p {
    min-width: fit-content;
    font-size: calc((18 / 25) * 1.0em);
    padding: 0 calc((25 / 18) * 1.0em) 0 calc((15 / 18) * 1.0em);
}

.front-page .service-sec .contents-area .cont .hd-area h3 span.deco {
    display: block;
    width: calc((145 / 1260) * 100%);
    height: 1px;
    background-color: #4b3419;
}

.front-page .service-sec .contents-area .cont .hd-area p.text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b3419;
    margin: calc((34.5 / 22) * 1.0em) 0 calc((29.5 / 22) * 1.0em);
}

.front-page .service-sec .contents-area .cont .hd-area p.price {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b3419;
}

.front-page .service-sec .contents-area .cont .hd-area p.price span {
    font-size: calc((18 / 24) * 1.0em);
    margin-right: calc((20 / 18) * 1.0em);
}

.front-page .service-sec .contents-area .cont .flow {
    margin-top: 40px;
    padding-left: calc((50 / 1260) * 100%);
    padding-right: calc((60 / 1260) * 100%);
}

.front-page .service-sec .contents-area .cont .flow+.flow {
    margin-top: 50px;
}

.front-page .service-sec .contents-area .cont .flow h3 {
    font-size: clamp(20px, 1.56vw, 30px);
    letter-spacing: 0.01em;
    color: #fff;
    padding: calc((19.5 / 30) * 1.0em) 0;
}

.front-page .service-sec .contents-area .cont .flow h3 span {
    font-size: calc((20 / 30) * 1.0em);
    margin-left: calc((25 / 30) * 1.0em);
}

.front-page .service-sec .contents-area .cont .flow {
    position: relative;
    z-index: 1;
}

.front-page .service-sec .contents-area .cont .flow::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: calc((950 / 1260) * 100%);
    height: 800px;
    border-radius: 0 15px 0 0;
    background-color: #c1b4a4;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-wrapper {
    padding: 50px calc((79 / 1260) * 100%);
    background: #fff;
}


.front-page .service-sec .contents-area .cont .flow-area .flow-cont {
    display: flex;
    justify-content: space-between;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .step {
    position: relative;
    z-index: 1;
    width: calc((80 / 990) * 100%);
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont:not(:last-of-type) .step {
    padding-bottom: 66px;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont:not(:last-of-type) .step::before {
    content: "";
    position: absolute;
    z-index: -1;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #d5d5d5;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .step p {
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
    color: #c1b4a4;
    padding-top: calc((9.5 / 18) * 1.0em);
    padding-bottom: calc((9.5 / 18) * 1.0em);
    background-color: #fff;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont>.text {
    width: calc((860 / 990) * 100%);
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text h4 {
    font-size: clamp(16px, 1.04vw, 20px);
    color: #b8a484;
    letter-spacing: 0.08em;
    padding-top: calc((9.5 / 18) * 1.0em);
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text p {
    font-size: clamp(14px, 0.83vw, 16px);
    color: #555;
    letter-spacing: 0.01em;
    line-height: 1.8;
    margin-top: calc((10 / 18) * 1.0em);
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text .wrapper {
    padding: 13px 17px;
    margin-top: 15px;
    margin-bottom: 30px;
    border: solid #d6d6d6 1px;
    border-radius: 5px;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text p.grid {
    display: grid;
    gap: 5px;
    grid-template-columns: auto 1fr;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text p.grid {
    margin-top: 0 !important;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont .text p.grid+p.grid {
    margin-top: 6px !important;
}

.front-page .service-sec .contents-area .cont .flow-area .text p {
    margin-top: calc((20 / 18) * 1.0em);
    padding-top: 0;
}

.front-page .service-sec .contents-area .cont .flow-area p.price {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b3419;
    margin: 10px 0;
}

.front-page .service-sec .contents-area .cont .flow-area .flow-cont:last-of-type .text .wrapper {
    margin-bottom: 0;
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .service-sec .contents-area .btn-area {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .front-page .service-sec .contents-area .btn-area .service-btn {
        height: 65px;
        font-size: 18px;
    }

    .front-page .service-sec .contents-area .cont .flow-area .flow-wrapper {
        padding: 45px calc((65 / 1260) * 100%);
    }

    .front-page .service-sec .contents-area .cont .flow-area .flow-cont .step {
        width: calc((135 / 990) * 100%);
    }

    .front-page .service-sec .contents-area .cont .flow-area .flow-cont>.text {
        width: calc((800 / 990) * 100%);
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .service-sec {
        padding-bottom: 100px;
    }

    .front-page .service-sec .contents-area .btn-area .service-btn {
        height: 40px;
        font-size: 12px;
    }

    .front-page .service-sec .contents-area .btn-area {
        gap: 3px;
    }

    .front-page .service-sec .contents-area .cont {
        margin-top: 40px;
    }

    .front-page .service-sec .contents-area .cont .flow+.flow {
        margin-top: 30px;
    }

    .front-page .service-sec .contents-area .cont .hd-area h3 {
        font-size: 18px;
    }

    .front-page .service-sec .contents-area .cont .hd-area p.text {
        font-size: 18px;
        margin: calc((24.5 / 18) * 1.0em) 0 calc((19.5 / 18) * 1.0em);
    }

    .front-page .service-sec .contents-area .cont .flow::after {
        width: 80%;
        height: 500px;
        border-radius: 0 8px 0 0;
    }

    .front-page .service-sec .contents-area .cont .flow-area .flow-cont .text h4 {
        padding-top: calc((4.5 / 18) * 1.0em);
    }

    .front-page .service-sec .contents-area .cont .hd-area p.price {
        font-size: 20px;
    }

    .front-page .service-sec .contents-area .cont .flow-area .flow-cont:not(:last-of-type) .step {
        padding-bottom: 81px;
    }


    .front-page .service-sec .contents-area .cont .flow-area .flow-cont .step p {
        line-height: 1.0;
        text-align: center;
    }

}

/*=====================================
*partners
=======================================*/
.front-page .partners-sec {
    margin-bottom: 160px;
    padding: 95px calc((20 / 1260) * 100%);
    border-radius: 10px;
    border: solid 2px #b8a484;
    background: #fff;
}

.front-page .partners-sec .hd-area {
    text-align: center;
}

.front-page .partners-sec .hd-area .deco {
    font-size: 20px;
}

.front-page .partners-sec .hd-area .deco span {
    font-family: "Prociono";
    font-size: calc((59 / 20) * 1.0em);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.08em;
    color: #e8e0d7;
}

.front-page .partners-sec .hd-area .deco p {
    font-weight: 700;
    font-size: 1.0em;
    margin-top: -23px;
}

.front-page .partners-sec .hd-area h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: calc((8 / 32) * -1.0em);
}

.front-page .partners-sec .hd-area>p {
    font-size: 18px;
    font-weight: 600;
    line-height: calc(40 / 18);
    margin-top: calc((28 / 18) * 1.0em);
}

.front-page .partners-sec .img-area {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.front-page .partners-sec .img-area .img {
    width: calc((281 /1240) * 100%);
}

.front-page .partners-sec .img-area .img h3 {
    font-size: clamp(12px, 0.83vw, 16px);
    font-weight: 700;
    color: #b8a484;
    text-align: center;
    margin-top: 15px;
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .partners-sec {
        padding: 75px calc((65 / 1260) * 100%);
    }

    .front-page .partners-sec .hd-area .deco {
        font-size: 18px;
    }

    .front-page .partners-sec .hd-area h2 {
        font-size: 28px;
    }

    .front-page .partners-sec .hd-area>p {
        text-align: start;
        font-size: 16px;
    }

    .front-page .partners-sec .img-area {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        gap: 40px 10%;
    }

    .front-page .partners-sec .img-area .img {
        width: 40%;
    }

    .front-page .partners-sec .img-area .img img {
        width: 100%;
    }

    .front-page .partners-sec .img-area .img h3 {
        font-size: 16px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .partners-sec {
        padding: 45px calc((65 / 1260) * 100%);
        margin-bottom: 100px;
    }

    .front-page .partners-sec .hd-area .deco {
        font-size: 15px;
    }

    .front-page .partners-sec .hd-area h2 {
        font-size: 22px;
        margin-top: 0;
    }

    .front-page .partners-sec .hd-area>p {
        margin-top: 15px;
    }

    .front-page .partners-sec .img-area {
        margin-top: 20px;
        gap: 20px 5%;
    }

    .front-page .partners-sec .img-area .img {
        width: 47.5%;
    }

    .front-page .partners-sec .img-area .img h3 {
        font-size: 14px;
    }
}

/*=====================================
*TOP column
=======================================*/
.front-page .column-sec .contents-area .btn-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc((30 / 1260) * 100%);
    margin-bottom: 75px;
}

.front-page .column-sec .contents-area .btn-area .column-btn {
    width: 100%;
    height: 65px;
    font-size: 20px;
    cursor: pointer;
}

.front-page .column-sec .contents-area .btn-area .column-btn p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #b41c2a;
    width: 100%;
    height: 100%;
    border: 1px solid #b41c2a;
    border-radius: 50px;
    background: #fff;
}

.front-page .column-sec .contents-area .btn-area .column-btn p span {
    font-family: "Prociono";
    font-size: calc((16 / 20) * 1.0em);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: -3px;
}

.front-page .column-sec .contents-area .btn-area .column-btn.active p span {
    opacity: 0.74;
}

.front-page .column-sec .contents-area .btn-area .column-btn.active p {
    color: #fff;
    background-color: #b41c2a;
}

.front-page .column-sec .contents-area .cont {
    display: none;
}

.front-page .column-sec .contents-area .cont.active {
    display: block;
}

.front-page .column-sec .contents-area .cont ul li a {
    display: flex;

}

.front-page .column-sec .contents-area .cont ul li+li {
    margin-top: 20px;
}

.front-page .column-sec .contents-area .cont ul li a .img-area {
    position: relative;
    width: calc((355 / 1260) * 100%);
}

.front-page .column-sec .contents-area .cont ul li a .img-area::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: calc((323 / 355) * 100%);
    height: calc((200 / 222) * 100%);
    border: solid 1px #fff;
}

.front-page .column-sec .contents-area .cont ul li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-page .column-sec .contents-area .cont ul li a .text-area {
    position: relative;
    width: calc((925 / 1260) * 100%);
    padding: calc((45 / 1260) * 100%) calc((50 / 1260) * 100%) calc((75 / 1260) * 100%) calc((40 / 1260) * 100%);
    background-color: #fff;
    overflow: hidden;
}

.front-page .column-sec .contents-area .cont ul li a .text-area h3 {
    font-size: clamp(14px, 0.94vw, 18px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: calc(32 /18);
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.front-page .column-sec .contents-area .cont ul li a .text-area>p {
    font-size: clamp(12px, 0.83vw, 16px);
    letter-spacing: 0.01em;
    line-height: calc(32 /16);
    margin-top: calc((24 / 16) * 1.0em);
    color: #6e6e6e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.front-page .column-sec .contents-area .cont ul li a .text-area .deco {
    position: absolute;
    left: calc((20 / 40) * 1.0em);
    bottom: calc((10 / 40) * -1.0em);
    font-family: 'Prociono';
    font-weight: 400;
    font-size: clamp(30px, 2.08vw, 40px);
    text-transform: uppercase;
    line-height: 1.0;
    color: #4b3419;
    opacity: 0.27;
}

.front-page .column-sec .contents-area .cont ul li a .text-area .more {
    position: absolute;
    bottom: calc((20 / 222) * 100%);
    right: calc((30 / 925) * 100%);
}

.front-page .column-sec .contents-area .cont ul li a .text-area .more span {
    display: inline-block;
    height: 1px;
    background-color: #cbcbcb;
}

.front-page .column-sec .contents-area .cont ul li a .text-area .more span:first-of-type {
    position: absolute;
    top: -4px;
    right: -1px;
    width: 13px;
    rotate: 38deg;
}

.front-page .column-sec .contents-area .cont ul li a .text-area .more span:last-of-type {
    position: absolute;
    right: 0;
    width: 48px;
}

/*tb*/
@media screen and (max-width:1024px) {
    .front-page .column-sec .contents-area .btn-area {
        gap: 20px;
        margin-bottom: 45px;
    }

    .front-page .column-sec .contents-area .btn-area .column-btn {
        height: 65px;
        font-size: 18px;
    }

    .front-page .column-sec .contents-area .cont ul li a .text-area {
        padding: calc((35 / 1260) * 100%) calc((40 / 1260) * 100%) calc((65 / 1260) * 100%) calc((30 / 1260) * 100%);
    }

    .front-page .column-sec .contents-area .cont ul li a .text-area>p {
        margin-top: 10px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .front-page .column-sec {
        padding-bottom: 100px;
    }

    .front-page .column-sec .contents-area .btn-area .column-btn {
        height: 40px;
        font-size: 10px;
    }

    .front-page .column-sec .contents-area .btn-area {
        gap: 5px;
        margin-bottom: 30px;
    }

    .front-page .column-sec .contents-area .cont ul li a .text-area>p {
        margin-top: 0px;
    }

    .front-page .column-sec .contents-area .cont ul li a .text-area .more {
        transform: scale(0.5);
    }

    .front-page .column-sec .contents-area .cont ul li a .text-area .deco {
        font-size: 20px;
    }
}

/*=====================================
*
*下層共通
*
=======================================*/
:is(#page, #single, #archive) {
    margin-bottom: 100px;
}

:is(#archive, #page) .header-area {
    padding: 100px 0;
    background-color: #E3D2C4;
    margin-top: -73px;
}

:is(#archive, #page) .header-area h1 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}

:is(#archive, #page) .header-area h1 span {
    display: block;
    font-size: 0.75em;
    font-family: "Prociono";
    font-weight: 400;
}

/*sp*/
@media screen and (max-width:599px) {
    :is(#archive, #page) .header-area {
        padding-bottom: 50px;
    }

    :is(#archive, #page) .header-area h1 {
        font-size: 20px;
    }
}

/*=====================================
*
*single
*
=======================================*/
#single {
    padding-top: 85px;
}

#single .maincontents .contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
}

#single .maincontents .contents .post-cont {
    width: calc((880 / 1260) * 100%);
}


#single .maincontents .contents .post-cont {
    font-size: 10px;
}

#single .maincontents .contents h1 {
    font-size: 2.5em;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: solid 1px #555;
}

/*目次*/
#single .maincontents .contents #toc_container {
    width: 85% !important;
    font-size: 1.0em;
    padding: 20px 25px;
    margin: 50px auto;
}

#single .maincontents .contents #toc_container p.toc_title {
    margin-top: 0;
    font-size: 1.5em;
}

#single .maincontents .contents #toc_container li {
    font-size: 1.5em;
    padding-left: 0;
}

#single .maincontents .contents #toc_container li::before {
    content: none;
}

#single .maincontents .contents #toc_container li+li {
    margin-top: 15px;
}

#single .maincontents .contents #toc_container li ul li {
    font-size: 1.0em;
}

#single .maincontents .contents #toc_container a {
    font-size: inherit;
    text-decoration: underline;
    letter-spacing: 0.05em;
    color: #333;
}

/*sp*/
@media screen and (max-width:799px) {
    #single .maincontents .contents .post-cont {
        width: 100%;
        font-size: 9px;
    }
}

/*===============
本文
================*/

/*見出し*/
#single .maincontents .contents .post-cont> :is(h2, h3, h4, p, figure, ul, ol)+ :is(h2, h3, h4) {
    margin-top: 30px;
}

#single .maincontents .contents .post-cont>h2 {
    position: relative;
    font-size: 2.0em;
    font-weight: 600;
    line-height: 1.8;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #bdbdbd;
}

#single .maincontents .contents .post-cont>h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px;
    height: 1px;
    background-color: #555;
}

#single .maincontents .contents .post-cont>h3 {
    font-weight: 600;
    font-size: 1.8em;
    line-height: 1.8;
    padding-left: 0.5em;
    margin-bottom: 15px;
    border-left: solid calc((5 /18) * 1.0em) #555;
}

#single .maincontents .contents .post-cont>h4 {
    font-weight: 600;
    font-size: 1.7em;
    line-height: 1.8;
    margin-bottom: 15px;
}

/*テキスト*/
#single .maincontents .contents .post-cont>p {
    font-size: 1.6em;
    line-height: 2.0;
    margin-top: 10px;
    margin-bottom: 15px;
}

/*リンク*/
#single .maincontents .contents .post-cont>p a {
    font-size: inherit;
    color: inherit;
    transition: 0.3s ease-in-out;
    text-decoration: underline;
}

/*引用*/
#single .maincontents .contents .post-cont>blockquote {
    position: relative;
    z-index: 1;
    font-size: 1.0em;
    padding: calc((16 / 10) * 1.0em) 1.0em;
    margin-top: 10px;
    margin-bottom: 15px;
    background: #ffffff;
}

#single .maincontents .contents .post-cont>blockquote::before {
    content: "\f10e";
    position: absolute;
    z-index: -1;
    left: 5px;
    top: 3px;
    z-index: -1;
    font: var(--fa-font-solid);
    font-size: 2.5em;
    line-height: 1.0;
    color: #ac9696;
    opacity: 0.35;
}

#single .maincontents .contents .post-cont>blockquote p {
    position: relative;
    z-index: 1;
    font-size: 1.6em;
    margin-top: 10px;
    margin-bottom: 15px;
}

@media (any-hover:hover) {
    #single .maincontents .contents .post-cont>p a:hover {
        opacity: 0.75;
    }
}

/*画像*/
#single .maincontents .contents .post-cont>figure {
    margin-top: 10px;
    margin-bottom: 15px;
}

/*リスト*/
#single .maincontents .contents .post-cont :is(h2, h3, h4, p, figure, ul, ol)+ :is(ul, ol) {
    margin-top: 10px;
}

#single .maincontents .post-cont> :is(ul, ol) {
    font-size: 1.6em;
    margin: 25px 0;
}

#single .maincontents .post-cont>ol {
    position: relative;
    padding-left: calc(1.0em + 4px);
    list-style: decimal;
}

#single .maincontents .post-cont>ol li {
    list-style: decimal;
    1
}

#single .maincontents .post-cont>ul li {
    position: relative;
    padding-left: 1.0em;
}

#single .maincontents .post-cont>ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

#single .maincontents .post-cont> :is(ul, ol) li :is(ul, ol) {
    font-size: 1.0em;
    margin-top: 0;
    padding-left: 1.5em;
    list-style-type: revert;
}

#single .maincontents .post-cont> :is(ul, ol) li :is(ul, ol) li {
    padding-left: 0;
    list-style-type: revert;
}

#single .maincontents .post-cont> :is(ul, ol) li :is(ul, ol) li::before {
    content: none;
}

/*table*/
#single .maincontents .contents .post-cont .single-table+.single-table {
    margin-top: 15px;
}

#single .maincontents .contents .post-cont .single-table td {
    font-size: 1.6em;
    font-weight: 600;
    padding: 15px 10px;
    color: #555;
    border: solid #ac9696 1px;
    background: #ac9696;
}

/*見出し横table*/
#single .maincontents .contents .post-cont .single-table.beside-table tr td:first-of-type {
    font-weight: 700;
    color: #fff;
    padding-right: 2.0em;
}

#single .maincontents .contents .post-cont .single-table.beside-table tr:not(:last-of-type) td:first-of-type {
    border-bottom: solid #fff 1px;
}

#single .maincontents .contents .post-cont .single-table.beside-table tr td:not(:first-of-type) {
    font-weight: 500;
    background: #fff;
}

/*見出し上table*/
#single .maincontents .contents .post-cont .single-table.above-table tr:not(:first-of-type) td {
    font-weight: 500;
    background: #fff;
}

#single .maincontents .contents .post-cont .single-table.above-table tr:first-of-type td {
    font-weight: 700;
    color: #fff;
}


#single .maincontents .contents .post-cont .single-table.above-table tr:first-of-type td:not(:last-of-type) {
    border-right: solid #fff 1px;
}

/*sp*/
@media screen and (max-width:799px) {
    #single .maincontents .contents .post-cont :is(.single-table.beside-table, .single-table.above-table) {
        position: relative;
        overflow-x: scroll;
    }

    #single .maincontents .contents .post-cont .single-table.beside-table::before,
    #single .maincontents .contents .post-cont .single-table.above-table::before {
        position: sticky;
        left: 0;
        content: "slide>>";
        font-family: "Prociono";
        font-size: 16px;
        letter-spacing: 0.05em;
        color: #555;
    }


    /*見出し横table*/
    #single .maincontents .contents .post-cont .single-table.beside-table table {
        width: 150%;
    }

    #single .maincontents .contents .post-cont .single-table.beside-table table tr td:first-of-type {
        position: sticky;
        z-index: 1;
        left: 0;
        background-color: transparent;
    }

    #single .maincontents .contents .post-cont .single-table.beside-table tr:not(:last-of-type) td:first-of-type {
        border-bottom: 0;
    }

    #single .maincontents .contents .post-cont .single-table.beside-table table tr td:first-of-type::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -1px;
        width: 100%;
        height: calc(100% - 1px);
        border: 1px solid #ac9696;
        background: #ac9696;
    }

    #single .maincontents .contents .post-cont .single-table.beside-table tr:not(:last-of-type) td:first-of-type::before {
        border-bottom-color: #fff;
    }

    /*見出し上table*/
    #single .maincontents .contents .post-cont .single-table.above-table table {
        width: 150%;
    }

    /*見出し横table*/
    #single .maincontents .contents .post-cont .single-table.beside-table tr td:first-of-type {
        width: 150px;
    }
}

/*ページネーション*/
#single .page_pn ol {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #555;
}

#single .page_pn ol li {
    text-align: center;
}

#single .page_pn ol li a {
    position: relative;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #ac9696;
    transition: 0.3s ease-in-out;
}

#single .page_pn ol li.prev {
    text-align: start;
}

#single .page_pn ol li.prev a::before {
    content: '\f053';
    font: var(--fa-font-solid);
}

#single .page_pn ol li.next {
    text-align: end;
}

#single .page_pn ol li.next a::after {
    content: '\f054';
    font: var(--fa-font-solid);
}

@media (any-hover:hover) {
    #single .page_pn ol li:not(.article_link) a:hover {
        opacity: 0.75;
    }
}

#single .page_pn ol li.article_link {
    min-width: 220px;
    height: 45px;
    margin: auto;
}

#single .page_pn ol li.article_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ac9696;
    padding: 0 5px;
    border: solid 1px #ac9696;
    border-radius: 50px;
    background-color: transparent;
}

@media (any-hover:hover) {
    #single .page_pn ol li.article_link a:hover {
        color: #fff;
        background-color: #ac9696;
    }
}

/*sp*/
@media screen and (max-width:799px) {
    #single .page_pn ol li.article_link {
        min-width: 190px;
    }

    #single .page_pn ol li a {
        font-size: 12px;
    }
}

/*関連記事*/
#single .connection {
    margin-top: 75px;
}

#single .connection>h2 {
    font-weight: 600;
    font-size: 2.0em;
    line-height: 1.8;
    margin-bottom: 15px;
}

#single .connection ul li a {
    display: flex;

}

#single .connection ul li+li {
    margin-top: 20px;
}

#single .connection ul li a .img-area {
    position: relative;
    width: calc((355 / 1260) * 100%);
}

#single .connection ul li a .img-area::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: calc((323 / 355) * 100%);
    height: calc((200 / 222) * 100%);
    border: solid 1px #fff;
}

#single .connection ul li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#single .connection ul li a .text-area {
    position: relative;
    width: calc((925 / 1260) * 100%);
    padding: calc((45 / 1260) * 100%) calc((50 / 1260) * 100%) calc((75 / 1260) * 100%) calc((40 / 1260) * 100%);
    background-color: #fff;
    overflow: hidden;
}

#single .connection ul li a .text-area h3 {
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: calc(20 /15);
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#single .connection ul li a .text-area>p {
    font-size: 1.2em;
    letter-spacing: 0.01em;
    line-height: calc(24 /12);
    margin-top: calc((10 / 12) * 1.0em);
    color: #6e6e6e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#single .connection ul li a .text-area .deco {
    position: absolute;
    left: calc((20 / 20) * 1.0em);
    bottom: calc((4 / 20) * -1.0em);
    font-family: 'Prociono';
    font-weight: 400;
    font-size: 2.0em;
    text-transform: uppercase;
    line-height: 1.0;
    color: #4b3419;
    opacity: 0.27;
}

#single .connection ul li a .text-area .more {
    position: absolute;
    bottom: calc((20 / 222) * 100%);
    right: calc((30 / 925) * 100%);
}

#single .connection ul li a .text-area .more span {
    display: inline-block;
    height: 1px;
    background-color: #cbcbcb;
}

#single .connection ul li a .text-area .more span:first-of-type {
    position: absolute;
    top: -4px;
    right: -1px;
    width: 13px;
    rotate: 38deg;
}

#single .connection ul li a .text-area .more span:last-of-type {
    position: absolute;
    right: 0;
    width: 48px;
}

/*tb*/
@media screen and (max-width:1024px) {
    #single .connection ul li a .text-area {
        padding: calc((35 / 1260) * 100%) calc((40 / 1260) * 100%) calc((65 / 1260) * 100%) calc((30 / 1260) * 100%);
    }

    #single .connection ul li a .text-area>p {
        margin-top: 10px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    #single .connection ul li a .text-area>p {
        margin-top: 7px;
    }

    #single .connection ul li a .text-area .more {
        transform: scale(0.5);
    }

    #single .connection ul li a .text-area .deco {
        font-size: 20px;
    }
}

/*=====================================
*
*page
*
=======================================*/
/*固定ページ ボタン*/
.btn03 {
    width: fit-content;
    min-width: 150px;
    height: 65px;
    margin-top: 45px;
}

.btn03.center {
    margin: 45px auto 0 !important;
}

.btn03 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    padding: 0 84px;
    background-color: #b41c2a;
    border: solid 1px #b41c2a;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    .btn03:hover a {
        background-color: #fff;
        color: #b41c2a;
    }
}

.page-btn{
	width:fit-content;
	margin:50px auto 0;
}

.page-btn a{
	display:flex;
	align-items:center;
	justify-content:center;
	font-family: "Noto Serif JP", serif;
	font-size:15px;
	width:220px;
	height:50px;
	color:#fff;
	border:0;
	border-radius:50px;
	background-color:#B41C2A;
	transition:0.3s ease-in-out;
}

.contact-btn a:hover{
	opacity:0.75;
}

#page .maincontents>.contents {
    margin-top: 100px;
}

/*会社概要*/
#page .company-wrapper {
    padding: 80px 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

#page .company-wrapper .text-area {
    width: 80%;
    margin: 0 auto 50px;
}

#page .company-wrapper p.text-area {
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 2.0;
    text-align: center;
}

#page .company-wrapper p.text-area br:first-of-type {
    display: none;
}

#page .company-wrapper p.text-area a {
    font-weight: 600;
    font-size: inherit;
    color: inherit;
    transition: 0.3s ease-in-out;
    text-decoration: underline;
}

@media (any-hover:hover) {
    #page .company-wrapper p.text-area a:hover {
        opacity: 0.75;
    }
}

#page .company-table {
    width: 80%;
    margin: 0 auto 50px;
}

#page .company-table .company-tr>*>* {
    display: flex;
}

#page .company-table .company-tr>*>*>p {
    font-size: 18px;
}

#page .company-table .company-tr>*>* .company-th {
    width: 15%;
    padding: 10px 5px;
    border-top: solid 1px #4b3419;
}

#page .company-table .company-tr:last-of-type>*>* .company-th {
    border-bottom: solid 1px #4b3419;
}

#page .company-table .company-tr>*>* .company-td {
    width: 85%;
    padding: 10px 5px;
    border-top: solid 1px #a8a8a8;
}

#page .company-table .company-tr:last-of-type>*>* .company-td {
    border-bottom: solid 1px #a8a8a8;
}

#page .company-table .company-tr:first-of-type>*>* :is(.company-th, .company-td) {
    border-top: 0;
}

#page .map-area {
    width: 80%;
    height: 500px;
    margin: auto;
}

/*tb*/
@media screen and (max-width:1024px) {
    :is(#archive, #page) .header-area {
        padding: 120px 0 75px;
    }
}

@media screen and (max-width:767px) {
	#page .company-wrapper {
		padding: 50px 10px;
	}

	#page .company-wrapper p.text-area {
		width:100%
			font-size: 16px;
	}
	
	#page .company-wrapper p.text-area br:first-of-type {
		display: inherit;
	}

	#page .company-table {
		width: 100%;
    }

    #page .map-area {
        width: 100%;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    #page .maincontents>.contents {
        margin-top: 75px;
    }

    :is(#archive, #page) .header-area {
        padding: 85px 0 50px;
    }

    #page .company-wrapper {
        width: 100%;
    }


    #page .company-wrapper p.text-area br {
        display: initial;
    }

    #page .company-table .company-tr>*>* .company-th {
        width: 30%;
    }

    #page .company-table .company-tr>*>* .company-td {
        width: 70%;
    }

    #page .company-table .company-tr>*>*>p {
        font-size: 15px;
    }

    #page .map-area {
        height: 350px;
    }
}

/*お問い合わせ*/
#page .contact-wrapper {
    padding: 80px 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

#page .contact-wrapper .text-area {
    width: 80%;
    margin: 0 auto 50px;
}

#page .contact-wrapper p.text-area {
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 2.0;
    text-align: center;
}

#page .contact-wrapper p.text-area br:first-of-type {
    display: none;
}

#page .contact-wrapper span.red{
	color:#bc2222;
}


#page .contact-wrapper .contact-cont {
    width: 80%;
	max-width:750px;
    margin:auto;
}

#page .contact-wrapper .contact-cont .contact-table{
	display:grid;
	grid-template-columns:auto 1fr;
	gap:25px;
}

#page .contact-wrapper .contact-cont .contact-table .table-hd:not(:nth-of-type(9)){
	display:flex;
	align-items:center;
}

#page .contact-wrapper .contact-cont .contact-table .cont > :is(input,textarea){
	font-family: "Noto Serif JP", serif;
	color:#555;
	width:100%;
	padding:8px 5px;
}

#page .contact-wrapper .contact-cont .contact-table .cont label input{
	cursor:pointer;
}

#page .contact-wrapper .contact-cont .contact-btn{
	width:fit-content;
	margin:50px auto 0;
}

#page .contact-wrapper .contact-cont .contact-btn input{
	display:flex;
	align-items:center;
	justify-content:center;
	font-family: "Noto Serif JP", serif;
	font-size:15px;
	width:220px;
	height:50px;
	color:#fff;
	border:0;
	border-radius:50px;
	background-color:#B41C2A;
	cursor:pointer;
}

/*tb*/
@media screen and (max-width:767px) {
	#page .contact-wrapper {
		padding: 50px 10px;
	}

	#page .contact-wrapper p.text-area{
		width:100%;
		font-size:16px;
	}
	
	#page .contact-wrapper p.text-area br:first-of-type {
		display: inherit;
	}

}

/*sp*/
@media screen and (max-width:599px) {
	#page .contact-wrapper {
		width: 100%;
	}

	#page .contact-wrapper .contact-cont .contact-table{
		grid-template-columns:1fr;
		gap:10px;
	}
	
	#page .contact-wrapper .contact-cont .contact-table .cont + .table-hd{
		margin-top:20px;
	}
}

.thanks-cont p{
	font-size:18px;
	line-height:1.8;
	letter-spacing:0.05em;
	text-align:center;
}

/*sp*/
@media screen and (max-width:599px){
	.thanks-cont p{
		text-align:start;
	}
}

/*404*/
#page-404 {
    text-align: center;
    margin: 15vh auto;
}

#page-404 .wrapper {
    font-size: 38px;
    margin-bottom: 25px;
}

#page-404 .wrapper p{
	font-weight:bold;
	color:var(--mainblue);
	letter-spacing:0.1em;
}

#page-404 .wrapper p + p{
	line-height:1.0;
}

#page-404 > p {
	font-size:20px;
	font-weight:500;
	letter-spacing:0.05em;
}


/*sp*/
@media screen and (max-width:599px){
  #page-404 .wrapper {
    font-size: 30px;
  }	
	
  #page-404 > p {
	font-size:16px;
  }
}

/*サービス*/
#page .service-btn_area .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc((25 / 1260) * 100%);
}

#page .service-btn_area .service-btn {
    width: 100%;
    height: 65px;
    font-size: 20px;
    cursor: pointer;
}

#page .service-btn_area .service-btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #b41c2a;
    width: 100%;
    height: 100%;
    border: 1px solid #b41c2a;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

#page .service-btn_area .service-btn a span {
    font-family: "Prociono";
    font-size: calc((16 / 20) * 1.0em);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: -3px;
}

@media (any-hover:hover) {
    #page .service-btn_area .service-btn:hover a span {
        opacity: 0.74;
    }

    #page .service-btn_area .service-btn:hover a {
        color: #fff;
        background-color: #b41c2a;
    }
}

#page section.service-sec {
    margin-top: 60px;
}

#page section.service-sec+section.service-sec {
    margin-top: 100px;
}

#page .service-hd .hd-cont {
    font-weight: 600;
    font-size: 25px;
    color: #4b3419;
}

#page .service-hd .hd-cont>* {
    display: flex;
    align-items: center;
}

#page .service-hd .hd-cont>*::after {
    content: "";
    display: block;
    width: calc((145 / 1260) * 100%);
    height: 1px;
    background-color: #4b3419;
}

#page .service-hd h2 {
    font-size: 1.0em;
    letter-spacing: 0.08em;
}

#page .service-hd .hd-cont p {
    min-width: fit-content;
    font-size: calc((18 / 25)* 1.0em);
    padding: 0 calc((25 / 18)* 1.0em) 0 calc((15 / 18)* 1.0em);
}

#page .service-hd p.text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b3419;
    margin: calc((34.5 / 22) * 1.0em) 0 calc((29.5 / 22) * 1.0em);
}

#page .service-hd p.price {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b3419;
}

#page .service-hd p.price strong {
    font-size: calc((24 / 18) * 1.0em);
    margin-left: calc((24 / 20) * 1.0em);
}

#page .flow-cont_area {
    position: relative;
    margin-top: 40px;
    padding-left: calc((50 / 1260) * 100%);
    padding-right: calc((60 / 1260) * 100%);
}

#page .flow-cont_area::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: calc((950 / 1260) * 100%);
    height: 800px;
    border-radius: 0 15px 0 0;
    background-color: #c1b4a4;
}

#page .flow-cont_area .hd-area>* {
    display: flex;
    align-items: baseline;
}

#page .flow-cont_area .hd-area {
    font-size: clamp(20px, 1.56vw, 30px);
    letter-spacing: 0.01em;
    color: #fff;
}

#page .flow-cont_area h2.title {
    font-size: clamp(20px, 1.56vw, 30px);
    letter-spacing: 0.01em;
    color: #fff;
    padding: calc((19.5 / 30) * 1.0em) 0;
}

#page .flow-cont_area .flow-wrapper {
    padding: 50px calc((79 / 1260)* 100%);
    background: #fff;
}

#page .flow-cont_area .flow-wrapper .flow-cont>* {
    display: flex;
    justify-content: space-between;
}

#page .flow-cont_area .flow-wrapper .flow-cont:not(:last-of-type) .step {
    padding-bottom: 66px;
}

#page .flow-cont_area .flow-wrapper .flow-cont .step {
    position: relative;
    z-index: 1;
    width: calc((80 / 990)* 100%);
}

#page .flow-cont_area .flow-wrapper .flow-cont:not(:last-of-type) .step::before {
    content: "";
    position: absolute;
    z-index: -1;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #d5d5d5;
}

#page .flow-cont_area .flow-wrapper .flow-cont .step p {
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
    color: #c1b4a4;
    padding-top: calc((9.5 / 18) * 1.0em);
    padding-bottom: calc((9.5 / 18) * 1.0em);
    background-color: #fff;
}

#page .flow-cont_area .flow-wrapper .flow-cont .text {
    width: calc((860 / 990) * 100%);
}

#page .flow-cont_area .flow-wrapper .flow-cont .text h3 {
    font-size: clamp(16px, 1.04vw, 20px);
    color: #b8a484;
    letter-spacing: 0.08em;
    padding-top: calc((9.5 / 18)* 1.0em);
}

#page .flow-cont_area .flow-wrapper .flow-cont .text p {
    font-size: clamp(14px, 0.83vw, 16px);
    color: #555;
    letter-spacing: 0.01em;
    line-height: 1.8;
    margin-top: calc((10 / 18) * 1.0em);
}

#page .flow-cont_area .flow-wrapper .flow-cont .text .wrapper {
    padding: 13px 17px;
    margin-top: 15px;
    margin-bottom: 30px;
    border: solid #d6d6d6 1px;
    border-radius: 5px;
}

#page .flow-cont_area .flow-wrapper .flow-cont .text .grid>* {
    display: grid;
    gap: 5px;
    grid-template-columns: auto 1fr;
}

#page .flow-cont_area .flow-wrapper .flow-cont .text .grid p {
    margin-top: 0;
}

#page .flow-cont_area .flow-wrapper .flow-cont .text .grid+.grid {
    margin-top: 6px;
}


/*tb*/
@media screen and (max-width:1024px) {
    #page .service-btn_area .wp-block-group__inner-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    #page .service-btn_area .service-btn {
        height: 65px;
        font-size: 18px;
    }

    #page .flow-cont_area .flow-wrapper {
        padding: 45px calc((65 / 1260) * 100%);
    }

    #page .flow-cont_area .flow-wrapper .flow-cont .step {
        width: calc((135 / 990) * 100%);
    }

    #page .flow-cont_area .flow-wrapper .flow-cont .text {
        width: calc((800 / 990) * 100%);
    }
}

/*sp*/
@media screen and (max-width:599px) {
    #page .service-btn_area .service-btn {
        height: 40px;
        font-size: 12px;
    }

    #page .service-btn_area .wp-block-group__inner-container {
        gap: 3px;
    }

    #page section.service-sec {
        margin-top: 40px;
    }

    #page section.service-sec+section.service-sec {
        margin-top: 50px;
    }

    #page .service-hd h2 {
        font-size: 18px;
    }

    #page .service-hd p.price {
        font-size: 15px;
    }

    #page .service-hd .hd-cont p {
        min-width: fit-content;
        font-size: calc((18 / 25)* 1.0em);
        padding: 0 calc((25 / 18)* 1.0em) 0 calc((15 / 18)* 1.0em);
    }

    #page .service-hd p.text {
        font-size: 18px;
        margin: calc((24.5 / 18)* 1.0em) 0 calc((19.5 / 18)* 1.0em);
    }

    #page .service-hd p.price {
        font-size: 15px;
    }

    #page .flow-cont_area .flow-wrapper {
        padding: 45px calc((65 / 1260) * 100%);
    }

    #page .flow-cont_area::after {
        width: 80%;
        height: 500px;
        border-radius: 0 8px 0 0;
    }

    #page .flow-cont_area .flow-wrapper .flow-cont:not(:last-of-type) .step {
        padding-bottom: 81px;
    }

    #page .flow-cont_area .flow-wrapper .flow-cont .step p {
        line-height: 1.0;
        text-align: center;
    }

    #page .flow-cont_area .flow-wrapper .flow-cont .text h3 {
        padding-top: calc((4.5 / 18)* 1.0em);
    }

}

/*=====================================
*
*archive
*
=======================================*/
#archive .maincontents .contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
}

#archive .maincontents .contents .archive-cont {
    width: calc((880 / 1260) * 100%);
}

#archive .maincontents .contents .archive-cont ol li a {
    display: flex;
}

#archive .maincontents .contents .archive-cont ol li+li {
    margin-top: 20px;
}

#archive .maincontents .contents .archive-cont ol li a .img-area {
    position: relative;
    width: calc((355 / 1260) * 100%);
}

#archive .maincontents .contents .archive-cont ol li a .img-area::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: calc((323 / 355) * 100%);
    height: calc((200 / 222) * 100%);
    border: solid 1px #fff;
}

#archive .maincontents .contents .archive-cont ol li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#archive .maincontents .contents .archive-cont ol li a .text-area {
    position: relative;
    width: calc((925 / 1260) * 100%);
    padding: calc((45 / 1260)* 100%) calc((50 / 1260)* 100%) calc((75 / 1260)* 100%) calc((40 / 1260)* 100%);
    background-color: #fff;
    overflow: hidden;
}

#archive .maincontents .contents .archive-cont ol li a .text-area h2 {
    font-size: clamp(14px, 0.94vw, 18px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: calc(32 /18);
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#archive .maincontents .contents .archive-cont ol li a .text-area>p {
    font-size: clamp(12px, 0.83vw, 16px);
    letter-spacing: 0.01em;
    line-height: calc(32 /16);
    margin-top: calc((24 / 16) * 1.0em);
    color: #6e6e6e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#archive .maincontents .contents .archive-cont ol li a .text-area .deco {
    position: absolute;
    left: calc((20 / 40) * 1.0em);
    bottom: calc((10 / 40) * -1.0em);
    font-family: 'Prociono';
    font-weight: 400;
    font-size: clamp(30px, 2.08vw, 40px);
    text-transform: uppercase;
    line-height: 1.0;
    color: #4b3419;
    opacity: 0.27;
}

#archive .maincontents .contents .archive-cont ol li a .text-area .more {
    position: absolute;
    bottom: calc((20 / 222) * 100%);
    right: calc((30 / 925) * 100%);
}

#archive .maincontents .contents .archive-cont ol li a .text-area .more span {
    display: inline-block;
    height: 1px;
    background-color: #cbcbcb;
}

#archive .maincontents .contents .archive-cont ol li a .text-area .more span:first-of-type {
    position: absolute;
    top: -4px;
    right: -1px;
    width: 13px;
    rotate: 38deg;
}

#archive .maincontents .contents .archive-cont ol li a .text-area .more span:last-of-type {
    position: absolute;
    right: 0;
    width: 48px;
}

/*tb*/
@media screen and (max-width:799px) {
    #archive .maincontents .contents .archive-cont {
        width: 100%;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    #archive .maincontents .contents .archive-cont ol li a .text-area>p {
        margin-top: 0px;
    }

    #archive .maincontents .contents .archive-cont ol li a .text-area h2 {
        font-size: 14px;
    }

    #archive .maincontents .contents .archive-cont ol li a .text-area p {
        font-size: 12px;
    }

    #archive .maincontents .contents .archive-cont ol li a .text-area .more {
        transform: scale(0.5);
    }

    #archive .maincontents .contents .archive-cont ol li a .text-area .deco {
        bottom: calc((4 / 20) * -1.0em);
    }

    #archive .maincontents .contents .archive-cont ol li a .text-area .deco p {
        font-size: 20px;
    }
}

/*ページネーション*/
#archive .pagination ul {
    display: flex;
    margin-top: 25px;
    gap: 10px;
}

#archive .pagination ul li {
    color: #555;
}

#archive .pagination ul li span.current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #b41c2a;
    border-radius: 50%
}

#archive .pagination ul li a {
    color: #555;
}

/*=====================================
*
*sidenav
*
=======================================*/
.sidenav {
    width: calc((300 / 1260) * 100%);
}

.sidenav .side .cont+.cont {
    margin-top: 45px;
}

.sidenav .side .cont h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    padding-left: calc(0.5em + 10px);
}

.sidenav .side .cont h2::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #555;
}

.sidenav .side .cont ul li+li {
    margin-top: 25px;
}

.sidenav .side .cont ul li a {
    transition: 0.3s ease-in-out;
    color: #555;
}

@media (any-hover:hover) {
    .sidenav .side .cont ul li a:hover {
        opacity: 0.75;
    }
}

.sidenav .side .cont ul li .img-area {
    position: relative;
    aspect-ratio: 5 / 3;
}

.sidenav .side .cont ul li .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidenav .side .cont ul li .img-area .cate-link {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    padding: 5px 7px;
    background-color: #BABBBD;
}

.sidenav .side .cont ul li .img-area .cate-link a {
    color: #fff;
}

.sidenav .side .cont ul li .img-area .cate-link a i {
    position: relative;
    top: 1px;
}

.sidenav .side .cont ul li .text-area h3 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 5px;
}

/*お客様の声*/
.sidenav .side .cont.voice ul {
    margin-top: 10px;
}

.sidenav .side .cont.voice ul li {
    border-top: 1px #aaa dashed;
}

.sidenav .side .cont.voice ul li+li {
    margin: 0;
}

.sidenav .side .cont.voice ul li a {
    display: block;
    padding: 10px 5px;
}

.sidenav .side .cont.voice ul li:last-of-type {
    border-bottom: 1px #aaa dashed;
}

.sidenav .side .cont.voice ul li .text-area h3 {
    margin: 0;
}

/*sp*/
@media screen and (max-width:799px) {
    .sidenav {
        width: 100%;
        margin-top: 75px;
    }
}

/*=====================================
*
*breadcrumb
*
=======================================*/
.breadcrumb-area {
    margin-top: 15px;
    margin-bottom: 20px;
}

nav.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 15px;
}

nav.breadcrumb ul:not(:first-of-type) {
    margin-top: 10px;
}

nav.breadcrumb ul li {
    position: relative;
    font-size: 12px;
    color: #555;
    letter-spacing: 0.05em;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    nav.breadcrumb ul li:hover {
        opacity: 0.75;
    }
}

nav.breadcrumb ul li:not(:last-of-type):after {
    position: absolute;
    top: 50%;
    right: -11px;
    transform: translateY(-50%);
    content: '\f054';
    font: var(--fa-font-solid);
    font-size: 11px;
}

nav.breadcrumb ul li:last-of-type {
    font-weight: 600;
    color: var(--main-blue);
}

nav.breadcrumb ul li a {
    color: inherit;
}


/*=====================================
*
*footer
*
=======================================*/
article.foot-cta .contents-area {
    position: relative;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-image: url(../image/foot-cta.jpg);
}

article.foot-cta .cta-cont {
    padding: 80px 0 50px;
    border: 1px solid #fff;
    border-radius: 8px;
}

article.foot-cta .cta-cont .hd-area .deco {
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    width: fit-content;
    margin: auto;
}

article.foot-cta .cta-cont .hd-area .deco span {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: calc((9 / 67) * 1.0em);
    z-index: -1;
    font-family: "Prociono";
    font-weight: 400;
    font-size: calc((67 / 25) * 1.0em);
    letter-spacing: 0.08em;
    line-height: 1.0;
    color: transparent;
    -webkit-text-stroke: 0.5px #fff;
    opacity: 0.4;
}

article.foot-cta .cta-cont .hd-area h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(28px, 1.82vw, 35px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-align: center;
}

article.foot-cta .cta-cont .hd-area>p {
    position: relative;
    z-index: 1;
    font-size: clamp(14px, 0.94vw, 18px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 2.0;
    text-align: center;
    margin: calc((20 / 18) * 1.0em) auto 0;
}

/*tb*/
@media screen and (max-width:767px) {
    article.foot-cta .cta-cont {
        padding: 50px 0 40px;
    }

    article.foot-cta .cta-cont .hd-area .deco {
        font-size: 15px;
    }

    article.foot-cta .cta-cont .hd-area .deco span {
        font-size: calc((61 / 25) * 1.0em);
    }

    article.foot-cta .cta-cont .hd-area h2 {
        font-size: 20px;
    }

    article.foot-cta .cta-cont .hd-area>p {
        font-size: 12px;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    article.foot-cta .contents-area {
        background-image: url(../image/sp_foot-cta.jpg);
    }

    article.foot-cta .cta-cont {
        width: calc(100% - 20px);
    }

    article.foot-cta .cta-cont .hd-area {
        width: calc(100% - 25px);
        margin: auto;
    }

    article.foot-cta .cta-cont .hd-area .deco {
        font-size: 20px;
    }

    article.foot-cta .cta-cont .hd-area h2 {
        font-size: 19px;
        margin-top: 7px;
    }

    article.foot-cta .cta-cont .hd-area>p {
        text-align: start;
    }

    article.foot-cta .cta-cont .hd-area>p br {
        display: none;
    }
}

footer .menu-area {
    display: flex;
    justify-content: space-between;
    margin: 35px 0 60px;
}

footer .menu-area .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8.5px;
}

footer .menu-area .wrapper {
    display: flex;
    width: calc((350 / 1260) * 100%);
}

footer .menu-area .wrapper .menu+.menu {
    margin-left: calc((140 / 350) * 100%);
}

footer .menu-area .wrapper .menu ul li+li {
    margin-top: 7px;
}

footer .menu-area .wrapper .menu ul li a {
    position: relative;
    font-size: 14px;
    color: #555;
}

footer .menu-area .wrapper .menu ul li a::before {
    content: "-";
}

footer .menu-area .company-info p {
    font-size: 14px;
}

footer .copyright {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

/*tb*/
@media screen and (max-width:1024px) {
    footer .menu-area .wrapper {
        width: 46%;
    }

    footer .menu-area .wrapper .menu+.menu {
        margin-left: calc((50 / 350) * 100%);
    }
}

/*sp*/
@media screen and (max-width:599px) {
    footer .menu-area {
        display: block;
        margin: 35px 0 60px;
    }

    footer .menu-area .wrapper {
        display: block;
        width: 100%;
    }

    footer .menu-area .menu {
        width: 100% !important;
    }

    footer .menu-area .wrapper .menu+.menu {
        margin: 15px 0;
    }

    footer .menu-area .title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    footer .menu-area .wrapper .menu ul li a {
        font-size: 12px;
    }

    footer .menu-area .company-info p {
        font-size: 12px;
    }

    footer .copyright {
        font-size: 12px;
    }
}

/*=====================================
*
*sidenav
*
=======================================*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pc用
=======================================*/
@media screen and (max-width: 899px) {
    .pc {
        display: none;
    }
}

/*=====================================
*pc以外
=======================================*/
@media screen and (min-width: 900px) {
    .nopc {
        display: none;
    }
}

/*=====================================
*sp以外
=======================================*/
@media screen and (max-width: 599px) {
    .nosp {
        display: none;
    }
}

/*=====================================
*tablet_sp共通
=======================================*/
@media screen and (min-width: 900px) {
    .sp_tb {
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .sp_tb {
        display: inherit;
    }
}

/*=====================================
*tablet用
=======================================*/
@media screen and (min-width: 900px) {
    .tb {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .tb {
        display: none;
    }
}

/*=====================================
*sp用
=======================================*/
@media screen and (min-width: 600px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .sp {
        display: inherit;
    }
}