@charset "utf-8";
/* CSS Document */

/******************************************************************************************

	<css/common.css>

*******************************************************************************************/

/*==========================================================================================

	// 共通設定

==========================================================================================*/
/* リンク */
a:link {
    color: #935858;
    word-break: break-all;
}

a:visited {
    color: #935858;
}

a:hover {
    color: #935858;
}

a:active {
    color: #935858;
}

a:focus {
    color: #935858;
    text-decoration: none;
}

/*==========================================================================================

	// 全体

==========================================================================================*/
html {
    scroll-behavior: smooth;
}

body,
input,
button {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    outline: none;
    font-size: 14px;
    line-height: 1.5;
    color: #3F3B3A;
}

body {
    overflow-y: scroll;
}

#TOP {
    padding-top: 120px;
}

@media screen and (max-width: 768px) {
    #TOP {
        padding-top: 80px;
    }
}

.pcShow {
    display: block;
}

.spShow {
    display: none;
}

@media (max-width: 768px) {
    .pcShow {
        display: none;
    }

    .spShow {
        display: block;
    }
}

.pankuzu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 980px;
    gap: 8px 0;
}

.pankuzu li {
    flex-shrink: 0;
    margin-left: 20px;
    color: #89C122;
    font-size: 12px;
    font-family: Kosugi Maru;
}

.pankuzu li a {
    display: block;
    color: #3F3B3A;
    text-decoration: none;
}

.pankuzu li a:hover {
    text-decoration: underline;
}

.pankuzu li a:after {
    content: ">";
    display: inline-block;
    margin-left: 20px;
}

.detail__title {
    margin: 0 auto;
    max-width: 980px;
    padding: 100px 20px 50px;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.2em;
    font-family: Kosugi Maru;
}

@media (max-width: 768px) {
    .detail__title {
        padding: 60px 20px 30px;
        font-size: 24px;
        line-height: 40px;
    }
}

.detail__undernav {
    font-family: Kosugi Maru;
    padding: 60px 0 30px;
}

@media (max-width: 768px) {
    .detail__undernav {
        padding: 60px 0 30px;
    }
}

.detail__undernav .btnArea {
    padding: 0 20px;
    text-align: center;
}

.detail__undernav .pankuzu {
    margin-top: 120px;
}

@media (max-width: 768px) {
    .detail__undernav .pankuzu {
        margin-top: 60px;
    }
}

/*-----------------------------------------------------------------------------------------
	ヘッダー
-----------------------------------------------------------------------------------------*/
#header {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    background-color: #fff;
    z-index: 11;
}

@media screen and (max-width: 768px) {
    #header {
        height: 80px;
    }
}

#header .header__logo {
    width: 96px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #header .header__logo img {
        width: 33px;
    }
}

#header .header__nav {
    display: flex;
}

#header .header__nav li {
    margin-left: 40px;
}

#header .header__nav li a {
    color: #3F3B3A;
    font-family: Kosugi Maru;
    font-size: 18px;
    letter-spacing: 1.8px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    #header .header__nav {
        display: none;
    }
}

#header .header__spModalBtn {
    display: none;
    position: absolute;
    right: 0;
}

@media screen and (max-width: 768px) {
    #header .header__spModalBtn {
        display: block;
    }
}

.header__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    overflow: hidden;
}

.header__modal .inner {
    margin-left: auto;
    margin-right: -85%;
    width: 85%;
    height: 100vh;
    background: #FFF;
    padding: 10px 0;
    transition: all 0.2s ease-in-out;
}

.header__modal.is-on .inner {
    margin-right: 0;
}

.header__modal .close {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
}

.header__modal .header__nav--SP {
    margin-top: 40px;
    padding: 0 20px;
}

.header__modal .header__nav--SP li {
    margin-top: 12px;
}

.header__modal .header__nav--SP li a {
    display: block;
    border-radius: 100px;
    padding: 22px 0;
    background: rgba(237, 240, 227, 0.94);
    color: var(--3F3B3A, #3F3B3A);
    text-align: center;
    font-family: Kosugi Maru;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-decoration: none;
}

/*-----------------------------------------------------------------------------------------
	ボタン
-----------------------------------------------------------------------------------------*/
.btn,
.btn:link,
.btn:visited {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    background: none;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    word-break: break-all;
    text-overflow: clip;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    padding: 20px 60px;
    border-radius: 32px;
    font-weight: bold;
    border: 1px solid #CBC8C7;
    color: var(--3F3B3A, #3F3B3A);
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 3.6px;
}

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

    .btn,
    .btn:link,
    .btn:visited {
        max-width: 250px;
        padding: 16px;
        font-size: 15px;
        background-color: #89C122;
        color: #fff;
    }
}

.btn span,
.btn:link span,
.btn:visited span {
    display: inline-block;
    padding-right: 30px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 20px auto;
}

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

    .btn span,
    .btn:link span,
    .btn:visited span {
        background-image: url(../img/arrow_w.svg);
    }
}

.btn:hover,
.btn:link:hover,
.btn:visited:hover {
    background-color: #89C122;
    color: #fff;
}

.btn:hover span,
.btn:link:hover span,
.btn:visited:hover span {
    background-image: url(../img/arrow_w.svg);
}

/*-----------------------------------------------------------------------------------------
	フッター
-----------------------------------------------------------------------------------------*/
#footer .footer__navWrap {
    background: rgba(174, 116, 90, 0.05);
    padding: 40px 0;
}

#footer .footer__nav {
    display: flex;
    justify-content: center;
}

#footer .footer__nav li {
    margin: 24px 20px 0;
}

#footer .footer__nav li a {
    color: var(--3F3B3A, #3F3B3A);
    font-family: Kosugi Maru;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    /* 43.2px */
    letter-spacing: 1.8px;
    text-decoration: none;
}

#footer .copy {
    padding: 40px;
    background-color: #fff;
    color: var(--3F3B3A, #3F3B3A);
    text-align: center;
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 19.2px */
    letter-spacing: 2.4px;
}