@charset "utf-8";

/*
	検索用
	$・・・・・・セクションへ
	!・・・・・・コンテンツへ
	&・・・・・・各種パーツへ
	@768（画面幅）・・・・・・レスポンシブ対応へ
*/
/*--------------------------------------
$全般
----------------------------------------*/
html {
    font-size: 100%;
}

/*20250627追記*/
body {
    font-size: 16px;
    background: #F9F8F4;
}

@media(max-width:768px) {

    body {
        font-size: 14px;
    }
}

/*20250627追記ここまで*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.l-wrapper {
    margin-inline: auto;
    max-width: 1100px;
}

@media(max-width: 768px) {
    .l-wrapper {
        width: 90%;
    }
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

p {
    font-weight: 300;
}

a {
    font-weight: 300;
    text-decoration: none;
}

/*&見出し */
h1,
h2,
h3,
h4 {
    font-weight: 500;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.6rem;
}

.content-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.375rem;
}

/*--------------------------------------
!各ページ共通パーツ
----------------------------------------*/

/* &サイトロゴ */
.site-logo {
    width: 420px;
}

.site-logo__copy {
    margin-left: 85px;
    color: #009500;
    font-weight: 500;
    font-size: 1.35rem;
}

@media(max-width: 768px) {
    .site-logo {
        width: 260px;
    }

    .site-logo__copy {
        margin-left: 53px;
        font-size: 0.875rem;
    }
}

/* &パンくずリスト */
.breadcrumb {
    padding: 16px 3px 0;
}

.breadcrumb .breadcrumb__list {
    font-weight: 300;
    font-size: 0.8rem;
    display: inline;
    margin-right: 3px;
}

.breadcrumb .breadcrumb__link {
    color: #000
}

/*20250627追記*/
@media(max-width:768px) {
    .breadcrumb {
        display: none;
    }
}

/* &ボタンまとめ */
.btn {
    display: inline-flex;
    justify-content: center;
    padding: 4px 16px;
    line-height: 2.5;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.2px;
    border-radius: 100vmax;
}

.btn--primary {
    background-color: #009500;
}

.btn--secondary {
    background-color: #F97930;
}
.btn--primary:hover{
   background-color: #006835;
}
.btn--secondary:hover {
    background-color:#e75b0a;
}


/* &右矢印アイコンまとめ */
.icon--arrow {
    display: inline-block;
    vertical-align: -1px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon--primary { background-image: url("../img/icon/ico_arrow_right.svg");}
.icon--secondary { background-image: url("../img/icon/ico_arrow_right_o.svg");}
.icon--down { background-image: url("../img/icon/ico_arrow_down_o.svg");}

.icon--sm {
    width: 0.85rem;
    height: 0.85rem;
}

.icon--md {
    width: 1rem;
    height: 1rem;
}

.icon--lg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon--before {
    margin-right: 5px;
}

.icon--after {
    margin-left: 5px;
}

/* &ラベルまとめ */
.label {
    display: inline-block;
    text-align: center;
    width: 110px;
    line-height: 1.5;
    font-size: 0.75rem;
    color: #fff;
    border-radius: 100vmax;
}

.label--primary {
    background-color: #006835;
}

.label--secondary {
    background-color: #F97930
}

.label--info {
    background-color: #0672CD;
}

/* &フレーム */
.frame--standard {
    width: 300px;
    padding: 10px 5px 5px;
    border: 8px solid #FDDEA8;
    border-radius: 10px;
    background: #fff;
}

/* &スマホ幅のフレーム */
@media (max-width: 768px) {
    .frame--standard {
        border-width: 4px;
    }
}

/* &ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.pagination__pages {
    display: flex;
    gap: 0.5rem;
}

.pagination__first,
.pagination__prev,
.pagination__next,
.pagination__last {
    margin: 2px 0.3rem 0;
    border: none;
    background: none;
    cursor: pointer;
}
.pagination__prev{
    margin-right: 0.5rem;
}
.pagination__next{
    margin-left: 0.5rem;
}

.pagination__pages button {
    all: unset;
    position: relative;
    padding: 0.25em 0.3em;
    font-weight: 300;
    border-radius: 4px;
    cursor: pointer;
}
.pagination__pages{
    position:relative;
}

.pagination__pages button[aria-current="page"]::after{
 content: "";
 display: block;
 width: 60%;
 height: 1px;
 background-color: #333;
 position: absolute;
 bottom: 5px;
 left: 4px;
}
/* &フィルター(ドロップダウンメニュー） */

.dropdown {
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dropdown__label {
	font-size: 1.2rem;
	margin-right: 20px;
}
.dropdown__filter {
	position: relative;
	cursor: pointer;
}

.dropdown__filter-label {
	display: inline-flex;
	align-items: center;
	width: 350px;
	height: 60px;
	padding: 10px;
	color: #5e5e5e;
	background: #fff url("../img/icon/ico_arrow_bottom_gray.svg");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 24px;
	border-radius: 12px;
}

.dropdown__filter-list {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	max-height: 0;
	color: #5e5e5e;
	background-color: white;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
	z-index: 10;
	transition: max-height 0.2s ease;
}

.dropdown__filter.open .dropdown__filter-label {
	background-image: url('../img/icon/ico_arrow_top_gray.svg');
}

.dropdown__filter.open .dropdown__filter-list {
	max-height: 500px;
}

.dropdown__filter-item {
	padding: 10px;
}
/* @768:ドロップダウンメニュー */
@media (max-width: 768px){
    .dropdown{
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }
    .dropdown__label{
        margin-bottom: 8px;
    }
}
/*---------------------
!汎用クラス
-----------------------*/
/* &文頭に「」が使われていた場合に揃える用 */
.indent {
    text-indent: -0.5rem;
}

/* &文字色変更用)*/
.text--primary {
    color: #009500;
}

.text--secondary {
    color: #F97930;
}

/* &スマホ幅の時だけ改行 */
@media (max-width: 768px) {
    .mobile-br {
        display: block;
    }
}

/*--------------------------------------
$ヘッダー
----------------------------------------*/
.header {
    margin-top: 20px;
}

/*---------------------
!ヘッダー上部
-----------------------*/
.header__logo {
    margin-right: 20px;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__info {
    display: flex;
    flex-direction: column;
}

.header__media {
    display: flex;
    justify-content: flex-end;
}

.header__desc {
    font-size: 0.875rem;
    
}

.header__media-text {
    font-size: 0.8rem;
}

.header__sns {
    display: flex;
}

.header__sns-item {
    margin-left: 15px;
}

/*---------------------
!ヘッダー下部(ヘッダーリンク）
-----------------------*/
.menu-open,
.header__nav-text,
.flexc,
.header__nav-item:nth-last-child(-n+2) {
    display: none;
}

.menu-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header__nav-text {
    margin-left: 20px;
    font-size: 0.8rem;
    font-weight: 400;
}

.header__nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 40px;
    background-color: #019501;
    border-radius: 50px;
}
.header__nav-link {
    display: inline-block;
    position: relative;
    padding: 16px 2px; 
    font-size: 0.95rem;
    font-weight: 400;
    color: #fff;
}

.header__nav-link::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 2px;
    right: 2px;
    height: 2px;
    background-color: #ffe18f;
    transform: scaleX(0);
}

.header__nav-link:hover::after,
.header__nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}

/* @768:ヘッダーのレスポンシブ対応 */
@media(max-width: 768px) {

    .header__nav-text,
    .header__sns-item,
    .header__nav-item:nth-last-child(-n+2) {
        display: block;
    }

    .header__info,
    .header__nav-list {
        display: none;
    }

    /*---------------------
!ハンバーガーメニュー
-----------------------*/
    .header__mobile-flex {
        display: flex;
        justify-content: space-between;
    }

    .menu-open {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 100;
        position: relative;
        cursor: pointer;

    }

    .menu-open .text {
        text-align: center;
        margin-top: 40px;
        /*20250627追記*/
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: -1px;
    }

    .menu-open .close {
        display: none;
    }

    .menu-open .toggle,
    .menu-open .toggle:before,
    .menu-open .toggle:after {
        content: '';
        display: block;
        /*20250627追記*/
        height: 2px;
        width: 32px;
        /*20250627追記ここまで*/
        border-radius: 3px;
        background: #333;
        transition: 0.5s;
        position: absolute;
    }

    .menu-open .toggle:before {
        /*20250627追記*/
        bottom: 8px;
    }

    .menu-open .toggle:after {
        /*20250627追記*/
        top: 8px;
    }

    #menu-toggle:checked~.menu-open .toggle {
        background: rgba(255, 255, 255, 0);
    }

    #menu-toggle:checked~.menu-open .toggle::before {
        bottom: 0;
        transform: rotate(45deg);

    }

    #menu-toggle:checked~.menu-open .toggle::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-toggle:checked~.menu-open .open {
        display: none;
    }

    #menu-toggle:checked~.menu-open .close {
        display: block;
        /*color:#fff;20250627*/
        margin-top: 45px;
        font-size: 0.7rem;
    }

    .header__nav {
        position: absolute;
        top: 90px;
        left: -800px;
        /*メニューが左から出てくるようにしています*/
        z-index: 99;
        width: 100%;
        height: 120%;
        background: #fff;
        transition: .5s;
    }


    /*20250627追記*/
    .header__nav>.header__nav-text {
        font-size: 0.75rem;
    }

    .header__nav>.flexc {
        display: flex;
        justify-content: center;
    }

    .header__nav>.flexc>.header__sns-item {
        margin: 10px 0;
        display: flex;
        column-gap: 20px;
    }

    /*20250627追記ここまで*/

    .header__nav-list {
        all: unset;
        /*text-align:center;
	height:100vh;20250627*/
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*20250627追記*/
        margin: 0 auto;
    }

    .header__nav-link {
        /*font-size: 1.15rem;
	20250627追記*/
        color: #232323;
        padding: 10px 0;
    }

    /*20250627追記*/
    .header__nav-link::before {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url("../img/icon/spnavi-arrow.png");
        background-size: contain;
        /* vertical-align: middle; */
        margin-right: 5px;
    }

    #menu-toggle:checked~.header__nav {
        left: 0;
        /*メニューが左から出てくるようにしています*/
        top: 90px;
        padding: 10px 20px;
    }

    .header__nav-link::after {
        content: none;
        /*20250627*/
    }

    /* ハンバーガーメニューここまで */
}

/*--------------------------------------
$フッター
----------------------------------------*/
.footer {
    position: relative;
    padding-top: 40px;
    padding-bottom: 50px;

}

.footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 10px;
    background-color: #009500;
}

/*---------------------
!フッター上部
-----------------------*/
.footer::before {
    height: 8px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.footer__logo {
    margin-right: 40px;
}

.footer__info {
    display: flex;
    align-items: center;
}

.footer__desc {
    margin-bottom: 8px;
    width: 85%;
}

.footer__sns {
    display: flex;
    align-items: center;
}

.footer__sns-item {
    margin-left: 20px;
}

.footer__sns-img {
    transform: scale(1.3);
}

/* @768:フッター上部レスポンシブ */
@media(max-width: 768px) {
    .footer__top {
        flex-direction: column;
    }

    .footer__logo {
        margin: 15px auto;
    }

    .footer__info {
        flex-direction: column;
    }

    .footer__desc {
        width: auto;
        margin-bottom: 15px;
    }

    .footer__sns-item {
        margin-left: 30px;
    }
}

/*---------------------
!フッター下部
-----------------------*/
.footer__bottom {
    display: flex;
    margin-bottom: 10px;
}

.footer__contact {
    width: 42%;
}

.footer__contact-address {
    font-style: normal;
    font-size: 1.075rem;
    margin-bottom: 10px;
}

.footer__contact-btn {
    display: flex;
    margin-bottom: 10px;
}

.footer__contact-btn-item {
    margin-right: 25px;
}

.footer__contact-btn-link {
    line-height: 1.5;
    font-size: 0.775rem;
}

/* &コンタクトボタン用アイコン */
.icon--mail {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-image: url("../img/icon/ico_mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon--login {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-image: url("../img/icon/ico_login.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__links-list {
    display: flex;
}

.footer__links-item {
    margin-right: 25px;
}

.footer__links-link {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
}

.footer__nav {
    flex: 1;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
}

.footer__nav-item {
    width: 40%;
    margin-bottom: 8px;
}

.footer__nav-link {
    font-size: 0.9rem;
    color: #000;
}

/* @768:フッター下部レスポンシブ */
@media (max-width: 768px) {
    .footer__bottom {
        display: inline;
    }

    .footer__contact {
        width: auto;
    }

    .footer__contact-address {
        text-align: left;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .footer__contact-btn {
        justify-content: space-between;
    }

    .footer__links-list {
        display: none;
    }

    .footer__nav {
        display: none;
    }
}

/* &コピーライト */
.copyright {
    color: #696866;
    text-align: center;
    font-size: 0.7rem;
}

/* &ページトップボタン */
/*20250627追記*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    opacity: .8;
}

@media(max-width:768px) {
    .pagetop {
        right: 20px;
    }

    .pagetop img {
        width: 55px;
        height: 55px;
    }
}