.blog {
	background-color: #FFFBF4;
}
.single {
	background-color: #FFFBF4;
}
.mt-80 {
    margin-top: 80px;
}
.mt-136 {
    margin-top: 136px;
}
/**************************
header
***************************/
header {
    box-sizing: border-box;
    color: #000;

    position: fixed;  
    top: 0;           
    width: 100%;
    z-index: 1000;

    /* PC-H3 TEXT_Eng */
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;

    background: var(---2, linear-gradient(180deg, #FFFCF7 0%, #EEE8D7 100%));
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid #eee;
}

/* header内のすべての要素と、その前後の要素にbox-sizingを適用 */
header *, header *::before, header *::after {
    box-sizing: inherit;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo img {
    width: 436px;
    height: 32.329px;
}

.menu {
    display: flex;
    gap:48px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 20px;
    height: 1px;
    background-color: black;
}

.mobile-menu {
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    background-color: #FFFCF7;
    gap: 24px;
    padding: 24px 28px;
    border:1px solid #F2EDDA;
    box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 6px 3px;
    -webkit-box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 6px 3px;
    -moz-box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 6px 3px;
}
.mobile-menu.active {
    display: flex;
}

.menu > div {
    flex-shrink: 0;
}

.nav-link {
    position: relative;
}

.pc-menu > div:last-child {
    border-bottom: 1px solid #000;
}

.mobile-menu > div:last-child {
    margin-left: auto;
    margin-right:5px;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
    header {
        color: #000;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.7px;
    }
    .top-header {
        display: flex;
        justify-content: space-between;
        padding: 21px 20px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 291px;
        height: 22px;
    }

    .hamburger-menu {
        display: flex;
        flex-shrink: 0;
    }
    .pc-menu {
        display: none;
    }
}

.mobile-menu div:not(:last-child) .nav-link::after {
    content: url('./assets/img/00_header/Icon-SP_Arrow-menu_down_black.svg');
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
}

.mobile-menu div:last-child .nav-link::after {
    content: url('./assets/img/00_header/Icon-SP_Arrow-menu_forward_black.svg');
    position: absolute;
    right: -10px;
    transform: translateY(30%);
    font-size: 12px;
}

/**************************
footer
***************************/
footer {
    background-color: #F2F0EB;
}

footer .list-inline > li {
    display: inline-block;
    color: #241E08;
    margin-left: 20px;
    margin-right: 20px;
}

footer .list-inline > li > a {
    display: inline-block;
}

footer .list-inline >li:not(:last-child)::after {
    /*content: '｜';*/
    display: inline;
}

footer .list-inline-item > a {
    color: #241E08;
    text-decoration: none;
}
footer .fmenu {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
}

footer .cright {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #646464;
    font-size: 14px;
}
footer .koukoku {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #969696;
    font-size: 13px;
}

/* スマホサイズのビューポートでのスタイル */
@media (max-width: 768px) {
    footer .list-inline {
        text-align: center;  /* テキストを左寄せにします（必要に応じて） */
    }

    footer .list-inline > li {
        display: block;  /* リストアイテムをブロック要素にして、1つのアイテムが1行を占めるようにします */
        margin-left: 0;  /* 左マージンを0にして左寄せにします（必要に応じて） */
        margin-right: 0;  /* 右マージンを0にして余白を削除します（必要に応じて） */
        margin-bottom: 8px;
    }

    footer .list-inline >li:not(:last-child)::after {
        display: none;  /* 区切り文字を非表示にします */
    }
    footer .cright {
        font-size: 9px;
    }
    footer .koukoku {
        font-size: 9px;
    }
}

/**************************
TOP
***************************/
/*hero image*/
.hero_area {
    width: 100%;
    position: relative; /* 必要に応じて */
    overflow: hidden;   /* 必要に応じて */
}

.hero_area picture {
    display: block;
    width: 100%;
    height: 100%; 
}

.hero_area img {
    display: block;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

/* parallax */
.parallax_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("assets/img/00_header/Image_BGA_Background-PC.png");
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(0); /* これにより、iOS上でのスムーズなスクロールが可能になります */

}

.parallax_content {
    position: relative;
    z-index: 1;
    min-height: 50vh; /* Adjust as per your content length */
    /* padding: 20px; */
}

@media (max-width: 768px) {
    .parallax_background {
        background-image: url("assets/img/00_header/Image_BGA_Background-SP.png");
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* common */
.container_contents {
    width: 90vw;
    max-width: 1024px;
    margin: 0 auto;
}

/* bumononly */
.container_contents2 {
    width: 80vw;
    max-width: 1024px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .container_contents2 {
        width: 90%;
    }
}

/**************************
TOP ABOUT
***************************/
.about_title img{
    width: 100%;  
    height: auto;
}

.about_content1 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
}
.about_content2 {
    color: #000;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
}
.about_content3 {
    color: var(--BGA-Green, #008B5F);
    font-family: Noto Sans JP;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
}

.about_content11 {
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.4px;
}
.about_content12 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
}

.about_trophy {
    position: relative;
    height: 350px;
}

.about_trophy img{
    position: absolute;
    top:0%;
    left:-20%;
}
.about_space {
    margin-top: 136px;
}
.about_content_box {
    display: table;
    margin-top: 88px;
}
.about_content_box2 {
    display: table;
    margin-top: 22px;
}
@media (max-width: 768px) {
    .about_title img{
        width: 70%;
        height: auto;
    }
    .about_trophy {
        margin-top: 0px;
    }
    .about_trophy img{
        margin-left: auto;
        margin-right: auto;
        position:absolute;
        max-width: 275px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .about_space {
        margin-top: 80px;
    }
    .about_content1 {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.1px;
    }
    .about_content2 {
        color: #000;
        font-family: Montserrat;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.1px;
    }
    .about_content3 {
        color: var(--BGA-Green, #008B5F);
        font-family: Noto Sans JP;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.1px;
    }
    .about_content11 {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.8px;
    }
    .about_content12 {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 2.4px;
    }
    .about_content_box {
        max-width:333px;
        margin-top:32px;
    }
    .about_content_box2 {
        margin-top: 12px;
        max-width: 300px;
    }
}
/**************************
TOP BUMON
***************************/
.bumon_title img{
    width: 60%;  
    height: auto;
}

.bumon_content {
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.4px;
}
.bumon_space {
    margin-top: 128px;
}
.bumon_space2 {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .bumon_title img{
        width: 100%;  
        height: auto;
    }
    .bumon_content_5 {
        margin-left:-30px;
        margin-right:-30px;
    }
    .bumon_content {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.9px;
    }
    .bumon_space {
        margin-top: 64px;
    }
    .bumon_space2 {
        margin-top: 16px;
    }
}

/**************************
TOP WOMAN
***************************/
.woman_space {
    margin-top:204px;
}
.woman_title img{
    width: 100%;  
    height: auto;
}

.woman_content_box img {
    margin: -30px 8px 8px 12px;
    width:19px;
}
.woman_content1 {
    color: var(--BGA-Green, #008B5F);
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
}
.woman_content2 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.9px;
}
.woman_content3 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
}
.woman_model {
    bottom:0%;
    right:-45%;
    position: absolute;
}
.woman_model img{
    width:700px;
}
.woman_space2 {
    margin-top: 64px;
}
@media (max-width: 768px) {
    .woman_space {
        margin-top:40px;
    }
    .woman_space2 {
        margin-top: 32px;
    }
    .woman_title img{
        width: 100%;  
        height: auto;
    }
    .woman_model {
        bottom:0%;
        left:0%;
        position: absolute;
    }
    .woman_model img{
        width: 70%;
        /* max-width: 375px; */
        margin-left: 0px;
    }
    .woman_content_box img {
        margin: -10px 3px 8px 3px;
        width:12px;
    }
    .woman_content1 {
        color: var(--BGA-Green, #008B5F);
        text-align: center;
        
        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .woman_content3 {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
}
/**************************
TOP WOMAN NAGARE
***************************/
.woman_nagare {
    margin-top: 150px;
}
.woman_nagare_title {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.woman_nagare_space1 {
    margin-bottom: 100px;
}
.woman_nagare_space2 {
    margin-top: 24px;
}

.woman_nagare_right {
    /*右に詰めたい時*/
    padding-left: 0px;
}

/* nagare box */
.step1,.step2,.step3,.step4 {
	display: flex;
}

.arrow_box{
    position:relative;
    width:104px;
    height:104px;
    background:#008B5F;
    color:#FFFFFF;
	margin:10px auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: -10px;
    display: flex;
}
.arrow_box:after,.arrow_box:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
.arrow_box:after{
    border-color: rgba(3, 133, 91, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#008B5F;
}
p.step {
	padding-top: 2px;

    color: #FFF;
    font-family: Noto Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
}

p.step-num {
	margin: -25px 0 0 0;
    color: #FFF;
    font-family: Noto Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.step-box {
	width: 90%;
	height: 104px;
    box-sizing: border-box;
    border: 1px solid #008B5F;
    background: #ffffff;
	position: relative;
	top: 10px;
	left: 0px;
	text-align: left;
    display: flex;
    padding: 10px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    flex: 1 0 0;
}

.step-box-title {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.step-box-content {
    flex: 1 0 0;
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}

/* STEP4だけ特別 */
.arrow_box4{
    position:relative;
    width:104px;
    height:104px;
    background:#008B5F;
    text-align:center;
    color:#FFFFFF;
	margin:10px auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: -10px;
    display: flex;    
}

.arrow_box4:after,.arrow_box4:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:0%;
    left:50%;
}
.arrow_box4:after{
    border-color: rgba(3, 133, 91, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#008B5F;
}
p.stepx {
    padding-top: 12px;

    color: #FFF;
    font-family: Noto Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
}
p.stepx-num {
	margin: -30px 0 0 0;

    color: #FFF;
    font-family: Noto Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
p.stepx:before {
    content: ''; /* 追加 */
    background: url('./assets/img/99_self/Icon_Crown_mini.png') no-repeat center center; /* 画像のパスを適切に設定してください */
    width: 20px; /* 画像の幅 */
    height: 13px; /* 画像の高さ */
    display: block; /* 追加 */
    position: absolute; /* 追加 */
    top: 10%; /* 追加 */
    left: 50%; /* 追加 */
    transform: translateX(-50%); /* 画像を中央に配置 */
}
.steplink {
    color:#000;
    text-decoration: underline;
}
/**************************
TOP WOMAN NAGARE onlySP
***************************/
.nagare_space {
    padding-top: 420px;
}
@media (max-width: 768px) {
    .woman_nagare_title {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .woman_nagare_space1 {
        margin-top: 24px;
        margin-bottom: 0px;
    }
    .woman_nagare_space2 {
        margin-top: 32px;
    }
    .woman_nagare_space1 .col-10 {
        padding-left: 18px;
    }
    .woman_nagare_space2 .col-10 {
        padding-left: 18px;
    }
	.arrow_box{
        position:relative;
        width:48px;
        height:48px;
        background:#008B5F;
        text-align:center;
        color:#FFFFFF;
        margin:0px auto;
    }
    /* STEP4だけ特別 */
    .arrow_box4{
        position:relative;
        width:48px;
        height:48px;
        background:#008B5F;
        text-align:center;
        color:#FFFFFF;
    }
    p.step {
        padding-top: 2px;

        color: #FFF;
        font-family: Noto Sans;
        font-size: 9px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.45px;
    }
    p.step-num {
        margin: -22px 0 0 0;

        color: #FFF;
        font-family: Noto Sans;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .step-box-sp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2px;
        flex: 1 0 0;
    }
    .step-title {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .step-content {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .woman_nagare {
        margin-top: 0px;
    }
    .nagare_space {
        padding-top: 400px;
    }
    .step-box-img {
        text-align: center;
        margin-bottom: 8px;
        position: relative;
        height: 19px;
    }
    .step-box-img img {
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%, -50%);
    }
}
/* bootstrapの弊害対応 */
@media (max-width: 500px) {
    .step-box-img img {
        position: absolute;
        top:50%;
        left:24px;
        transform: translate(-50%, -50%);
    }  
}

/**************************
TOP BENEFIT
***************************/
.benefit {
    border: 2px solid #C8B87F;
    background: #ffffff;
    padding:40px 32px 0px 32px;
}
.mt_benefit {
    margin-top: 32px;
}
.mt_benefit2 {
    margin-top: 8px;
}
.mt_benefit3 {
    margin-top: 24px;
}
.mt_benefit4 {
    margin-top: 16px;
}
.mt_benefit5 {
    margin-top: 8px;
}

.benefit_in {
    border: 2px solid #DCDCDC;
    background: #FAFAFA;
}

.benefit_title {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}

.custom-divider {
    display: flex;
    align-items: center;
    margin: 0 30px;
}
.custom-divider::before, 
.custom-divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #008B5F;
}
.custom-divider::before {
    margin-right: 0.8rem;
}
.custom-divider::after {
    margin-left: 0.8rem;
}
.divider-text {
    color: var(--BGA-Green, #008B5F);
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.divider-text-2 {
    margin-top: -10px;
    color: var(--BGA-Green, #008B5F);
    font-family: Noto Sans;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
}
.benefit_content1_1 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.benefit_content1_2 {
    color: #000;
    font-family: Noto Sans;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.8px;
}
.benefit_content2_1 {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.benefit_content2_2 {
    color: #000;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.benefit_content3 {
    color: #000;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.benefit_content_space {
    margin-top:20px;       
}

@media (max-width: 768px) {
    .benefit {
        margin-top: 24px;
        border: 1px solid rgba(145, 114, 0, 0.50);
        background: #FFF;
        padding:24px 16px 0px 16px;
    }
    .mt_benefit {
        margin-top: 32px;
    }
    .mt_benefit2 {
        margin-top: 4px;
    }
    .mt_benefit3 {
        margin-top: 16px;
    }
    .mt_benefit4 {
        margin-top: 4px;
    }
    .mt_benefit6 {
        margin-top: 32px;
    }
    .benefit_title {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .divider-text {
        color: var(--BGA-Green, #008B5F);
        font-family: Noto Sans JP;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.9px;
    }
    .divider-text-2 {
        margin-top: 0px;
        margin-left: 4px;
        color: var(--BGA-Green, #008B5F);
        font-family: Noto Sans;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .custom-divider {
        width:160px;
        margin-right: auto;
        margin-left: auto;
        /* margin-right: 30%;
        margin-left: 30%; */
    }
    .benefit_content1_1 {
        color: #000;

        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    .benefit_content1_2 {
        color: #000;
        font-family: Noto Sans;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.6px;
    }
    .benefit_content2_1 {
        color: #000;

        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    .benefit_content2_2 {
        color: #000;
        text-align: center;
        
        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .benefit_content3 {
        color: #000;
        text-align: center;

        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    .benefit_content_space {
        margin-top:0px;
    }
    .benefit_content_space2 {
        margin-top:40px;
    }
    .benefit_content3 {
        font-size: 4.5vw;
    }
}


/**************************
TOP BENEFIT FUKUSHO
***************************/
/* benefit_title */
.mt_fukusho {
    margin-top: 64px;
}
.mt_fukusho2 {
    margin-top: 8px;
}
.my_fukusho {
    margin-top: 24px;
    margin-bottom: 56px;
}
.fukusho_title {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}

.fukusho_content {
    color: #000;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 33px */
    letter-spacing: 1.1px;
}

@media (max-width: 768px) {
    .fukusho_title {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .fukusho_content {
        font-size: 4vw;
        width:95%;
        margin-left: auto;
        margin-right:auto;

        flex: 1 0 0;
        align-self: stretch;

        color: #000;
        text-align: center;
        font-family: Noto Sans JP;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 159.8%; /* 25.568px */
        letter-spacing: 0.8px;
    }
    .mt_fukusho2 {
        margin-top: 4px;
    }
    .my_fukusho {
        margin-top: 16px;
        margin-bottom: 40px;
    }
}
/**************************
TOP TOUJITSU NAGARE
***************************/
.mt_nagare {
    margin-top: 72px;
}
.mt_nagare2 {
    margin-top: 8px;
}
.mt_nagare3 {
    margin-top: 32px;
}
.mt_nagare4 {
    margin-top: 16px;
}
.nagare {
    border: 2px solid #C8B87F;
    background: #ffffff;
    padding:32px 16px;
}
.nagare_title {
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.nagare_title2 {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.nagare_box{
	width: 580px;
	margin: 0 auto;
    padding: 16px 24px 24px 24px;
    box-sizing: border-box;
    border: 2px solid #DCDCDC;
    background: #FAFAFA;
	left: 20%;
    top: 10%;
}
.nagare_subtitle {
    color: var(--BGA-Green, #008B5F);
    text-align: center;
    
    /* PC-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.nagare_content {
    height: 54px;
    align-self: stretch;

    color: #000;
    text-align: center;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.triangle{
	background: #DCDCDC;
	height: calc(tan(40deg) * 60px / 5);
	width: 28px;
    height: 17.6px;
	margin: 8px auto;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 768px) {
    .mt_nagare {
        margin-top: 64px;
    }
    .mt_nagare3 {
        margin-top: 24px;
    }
    .nagare_title {
        color: #000;

        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .nagare_title2 {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .nagare_box{
        width: 90%;
        border: 1px solid #DCDCDC;
    }
    .nagare_subtitle {
        color: var(--BGA-Green, #008B5F);
        text-align: center;
        
        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    .nagare_content {
        height: 54px;
        align-self: stretch;
    
        color: #000;
        text-align: center;
        
        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .triangle{
        /*高さはheight90px, 
        幅はwidth（幅とるためにmargin7pxも）調整*/
        background: #D6D6D6;
        height: 15.086px;
        width: 24px;
        margin: 8px auto;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
}
/**************************
TOP EVENT
***************************/
.mt_event {
    margin-top: 64px;
}
.mt_event2 {
    margin-top: 24px;
}
.mt_event3 {
    margin-top: 8px;
}
.mt_event4 {
    margin-top: 24px;
}
.event_title {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.event_content {
    color: #000;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
/* haishin area */
.mt_haishin {
    margin-top: 32px;
}
.ml_haishin {
    padding-left: 40px;
}
.mr_haishin {
    padding-right: 40px;
    padding-top: 32px;
}
.mt_haishin2 {
    margin-top: 24px;
}
.haishin_title {
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.haishin_content {
    flex: 1 0 0;

    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.haishin_content_mini {
    color: #000;

    /* PC-Sub_JP */
    font-family: Noto Sans JP;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.6px;
}
.haishin_box {
    margin-left: 40px;
    margin-right: 40px;
}
@media (max-width: 768px) {
    .mt_event3 {
        margin-top: 4px;
    }
    .event_title {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .event_content {
        color: #000;
        text-align: center;
        
        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .ml_haishin {
        padding-left: 16px;
    }
    .mt_haishin2 {
        margin-top: 16px;
    }
    .mr_haishin {
        padding-left: 24px;
        padding-right: 24px;
    }
    .haishin_title {
        flex: 1 0 0;

        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .haishin_box {
        margin-left: 0px;
        margin-right: 0px;
    }
    .haishin_content {
        flex: 1 0 0;
        color: #000;

        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .haishin_content_mini {
        flex: 1 0 0;
        color: #000;

        /* SP-Sub_JP */
        font-family: Noto Sans JP;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.5px;
    }
    .uuum_logo {
        margin-top: 15px;
    }
}
/**************************
TOP ENTRY
***************************/
.mt_entry {
    margin-top:112px;
}
.mt_entry2 {
    margin-top: 40px;
}
.mt_entry3 {
    margin-top: 8px;
}
.my_entry4 {
    margin-top: 72px;
    margin-bottom: 56px;
}
.entry-divider {
    display: flex;
    align-items: center;
    margin: 0 30px;
}
.entry-divider::before, 
.entry-divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid green;
}
.entry-divider::before {
    margin-right: 1.2rem;
}
.entry-divider::after {
    margin-left: 1.2rem;
}
.entry-title {
    color: var(--BGA-Green, #008B5F);

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.entry_content {
    color: #000;

    /* PC-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.entry_content2 {
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.entry_button {
    /* display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 48px;
    background: #008B5F;
    margin: 0 auto;
    text-decoration: none;
    border: none; 
    box-shadow: none; 
    width: 398px;
    padding: 8px 16px 8px 32px;
    color: #FFF;

    /* PC-H2 TEXT_JP */
    /* font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px; */
}
.entry_button a {
    /* text-decoration: none;
    color: #FFF; */

}
.entry_button {
    border: none;
    margin: 0 auto;

    display: flex;
    width: 422px;
    padding: 10px 16px 10px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    background: var(--BGA-Green, #008B5F);
}
.entry_button_a {
    display: flex;
    padding-bottom: 0px;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;

    /* SP-H3 TEXT_JP */
    color: #FFF;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.entry_button_b {
    display: flex;
    padding: 5px 16px 0px 0px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.entry_button_b img {
    width: 16px;
}

.entry_icon {
    margin-left: 20px; /* アイコンの左側に少しスペースを追加 */
    height: 20px; /* この値はアイコンのサイズに合わせて調整してください */
    width: auto; /* 幅は自動的にアイコンのアスペクト比に合わせます */
}

@media (max-width: 768px) {
    .mt_entry {
        margin-top:64px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .my_entry4 {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .entry-divider {
        margin: 0px;
    }
    .entry-title {
        color: var(--BGA-Green, #008B5F);

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .entry_content {
        color: #000;
        font-family: Noto Sans JP;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.9px;
    }
    .entry_content_date {
        margin-top: 4px;
        color: #000;

        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .entry_content2 {
        color: #000;

        /* SP-Sub_JP */
        font-family: Noto Sans JP;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 15px */
        letter-spacing: 0.5px;
    }
    /* .entry_button {
        width: 280px;
        padding: 8px 24px 8px 16px;
        color: #FFF;

        /* SP-H3 TEXT_JP */
        /* font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }  */
    .entry_button {
        display: flex;
        width: 280px;
        padding: 10px 24px 10px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 48px;
        background: var(--BGA-Green, #008B5F);
    }
    .entry_button_a {
        display: flex;
        padding-bottom: 0px;
        justify-content: center;
        align-items: center;
        flex: 1 0 0;
        align-self: stretch;
    
        color: #FFF;
    
        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    .entry_button_b {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        padding: 2px 0px 0px 0px;
    }
    .entry_button_b img {
        width: 16px;
    }
    .entry-divider::before, 
    .entry-divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid green;
    }
}

/**************************
TOP_NEWS
***************************/
.news_title {
    font-size: 2vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 18px 0;
    text-decoration: none;
}
.list-item:not(:first-child):hover {
    background-color: rgba(0,0,0,0.2);
    color: white;
}

.newslist_date, .newslist_category, .newslist_title {
    /* flex: 1; */
    padding: 0 18px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1.5vw;
}

.newslist_date, .newslist_category {
    flex-shrink: 0;
}
.newslist_date {
    color: #646464;
}

.newslist_category {
    background-color: #008B5F;
    color:white;
    padding: 2px 5px;
    border-radius: 0px;
}

.newslist_title {
    margin-left:30px;
    flex-grow: 1;
    color: black;
}

.list-all {
    text-align: right;
    font-size: 1.5vw;
}
.list-all a {
    text-decoration: none;
    color: #008B5F;
}
.list_space {
    margin-top: 20px;
}

@media (max-width: 768px) {  /* モバイルサイズのメディアクエリ */
    .list-item {
        flex-wrap: wrap;
    }

    .newslist_date, .newslist_category {
        text-align: left;
        font-size: 3vw;
    }
    .newslist_category {
        padding-left: 8px;
        padding-right:8px;
    }

    .newslist_title {
        flex: 100%; /* 全幅を持たせる */
        padding-top: 8px;
        font-size:4vw;
        margin-right:0px;
        margin-left:0px;
    }
    .news_title {
        font-size: 5vw;
    }
    .list_space {
        margin-top: 5px;
    }
    .list-all {
        font-size: 4vw;
    }
}

/**************************
TOP_FAQ
**************************
https://gokansoichiro.com/demo/accordion/*/
.faq_title {
    color: #000;

    /* PC-H2 TEXT_Eng */
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}

.accordion-item {
    border-left: 0;
    border-right: 0;
}

.accordion-body {
    display: flex;
}

.accordion-button::after {
    /* Bootstrapのデフォルトのarrowを非表示にする */
    /* background-image: none; */
    /* content: '+'; */
    /* content: url('./assets/img/05_faq/Icon_FAQ-Plus.svg'); */
    background-image: url('./assets/img/05_faq/Icon_FAQ-Plus.svg');
    background-repeat: no-repeat; /* 画像を繰り返さない */
    background-position: center; /* 画像を中央に配置 */
    background-size: 20px 20px; /* 画像のサイズを指定 */
    content: '';  /* contentを空に */
    display: inline-block; /* 疑似要素をブロック要素として表示 */
    font-size: 1.5rem;
    color: #333;
    position: absolute;
    top: 60%;  /* 上から50%の位置にセット */
    right: 1.2rem; /* 右からの距離を固定 */
    transform: translateY(-78%) translateX(29%);  /* Y軸方向に80%上とX軸方向に10%左にずらす */
    transition: none !important;
    width: 15px;   /* 例: 幅20pxに設定 */
    height: 15px;  /* 例: 高さ20pxに設定 */
}

/* 展開時の「-」アイコン */
.accordion-button:not(.collapsed)::after {
    /* content: '-'; */
    /* content: url('./assets/img/05_faq/Icon_FAQ-Minus.svg');
    background-image: none; */
    background-image: url('./assets/img/05_faq/Icon_FAQ-Minus.svg');
    background-repeat: no-repeat; /* 画像を繰り返さない */
    background-position: center; /* 画像を中央に配置 */
    background-size: 20px 20px; /* 画像のサイズを指定 */
    content: '';  /* contentを空に */
    display: inline-block; /* 疑似要素をブロック要素として表示 */
    top: 35%;  /* 上から50%の位置にセット */
    right: 1rem; /* 右からの距離を固定 */
    width: 15px;   /* 例: 幅20pxに設定 */
    height: 15px;  /* 例: 高さ20pxに設定 */
}
.accordion-button {
    cursor: default;
}
.accordion-collapse {
    transition: height 0.5s ease; /* アニメーションの持続時間とイージングを設定 */
  }

  /*これで消える*/
  .accordion-button:focus {
    outline: none; /* フォーカス時のアウトラインを取り除く */
    box-shadow: none; /* フォーカス時のボックスシャドウを取り除く */
}

.faq_content {
    margin-left: 20px;
    margin-right: 35px;
    flex: 1 0 0;
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.faq_question {
    color: #008B5F;
}
.faq_answer {
    color: #646464;
}

@media (max-width: 768px) {  /* モバイルサイズのメディアクエリ */
    .faq_title {
        color: #000;

        /* SP-H2 TEXT_Eng */
        font-family: Montserrat;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .faq_question {
        color: var(--BGA-Green, #008B5F);

        /* PC-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.2px;        
    }
    .faq_answer {
        color: #646464;

        /* PC-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.2px;        
    }
    .faq_content {
        flex: 1 0 0;
        color: #000;

        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    
}

/* アコーディオンボタンのホバー効果を無効にする */
.accordion-button:not(.collapsed) {
    background-color: initial; /* デフォルトの背景色に戻す */
    cursor: default;
    box-shadow: none; /*勝ち組*/
}

/* ホバー時の背景色とカーソルの変更を無効にする */
.accordion-button:not(.collapsed):hover {
    background-color: initial; /* ホバー時の背景色を無効にする */
    cursor: default; /* ホバー時のカーソル変更を無効にする */
}
.accordion-button:focus {
    box-shadow: none; /* フォーカス時の影（枠）を取り除く */
}

/**************************
TOP_sponsor
**************************/
.sponsor_title {
    font-size: 2vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.sponsor_icon {
    padding:20px;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {  /* モバイルサイズのメディアクエリ */
    .sponsor_title {
        font-size: 5vw;
    }
}

/**************************
TOP_Term
**************************/
.container_term {
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 80px;
    overflow-x: auto;
    white-space: nowrap;
}
.container_term2 {
    max-width: 1024px;
    margin: 0 auto;
    padding-right:20px;
    padding-left:20px;
    margin-top: 80px;
}
.term_title {
    color: #000;
    /* PC-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    /*要望により修正*/
    /* font-weight: 500; */
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}

.term_box {
    border-radius: 4px;
    border: 1px solid #C8C8C8;
    background: #FFF;
    padding: 16px 24px;
    margin-top: 24px;
    margin-bottom: 320px;
}

.term_01 {
    color: #323232;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.term_02 {
    color: #323232;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.7px;
}

.term_03 {
    color: #323232;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.7px;
}

@media (max-width: 768px) {  /* モバイルサイズのメディアクエリ */
    .container_term {
        max-width: 355px;
        /* margin-right:20px;
        margin-left:20px; */
        margin-top: 48px;
        overflow-x: auto;
        white-space: nowrap;
    }
    .container_term2 {
        /* margin-right:20px;
        margin-left:20px; */
        margin-top: 48px;
    }
    .term_title {
        color: #000;
        /* SP-H3 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
    }
    
    .term_box {
        border-radius: 4px;
        border: 1px solid #C8C8C8;
        background: #FFF;
        /* width: 319px; */
        padding: 16px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .term_01 {
        color: #323232;
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .term_02 {
        color: #323232;
        font-family: Noto Sans JP;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.6px;
    }
    
    .term_03 {
        color: #323232;
        font-family: Noto Sans JP;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.6px;
    }
    
}

/**************************
TOP_ORGA
**************************/

.org_space{
    padding-top: 80px;
}
.org_space2{
    margin-top: 96px;
}
.org_space3 {
    margin-top: 200px;
}
.org_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 72px; */
}
.org_title {
    color: #000;
    /* PC-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.org_logo {
    margin-top: 24px;
}
.org_title2 {
    margin-top: 8px;

    color: #000;
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}
.org_box2 {
    margin-top: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.org_box3 {
    display: flex;
    width: 320px;
    height: 470px;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 24px;
}
.org_name {
    margin-top: 16px;
    color: #000;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.org_kana {
    align-self: stretch;
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.org_introduce {
    align-self: stretch;
    margin-top:24px;
    color: #000;

    /* PC-Body_JP */
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.org_title3 {
    margin-top: 200px;

    color: #000;
    text-align: center;

    /* PC-H2 TEXT_Eng */
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.org_sponsor {
    margin-top: 80px;
    margin-bottom: 200px;
}
@media (max-width: 768px) {
    .org_space3 {
        margin-top: 160px;
    }
}

/**************************
NEW_COMMON
**************************/
.container_contentsx {
    width: 90vw;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 768px) {  /* モバイルサイズのメディアクエリ */
    .container_contentsx {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .org_space{
        padding-top: 35px;
    }
    .org_space2{
        margin-top: 80px;
    }
    .org_title {
        color: #000;

        /* SP-H3 TEXT_Eng */
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.9px;
    }
    .org_title2 {
        margin-top: 8px;
        
        color: #000;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.8px;
    }
    .org_box2 {
        margin-top: 0px;
        display: inline;
    }
    .org_name {
        color: #000;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .org_introduce {
        margin-top: 8px;
        color: #000;

    /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .org_title3 {
        margin-top: 120px;

        color: #000;
        text-align: center;

        /* Sp-H2 TEXT_JP */
        font-family: Noto Sans JP;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }
    .org_sponsor {
        margin-top: 56px;
        margin-bottom: 160px;
    }
    .org_box3 {
        margin-top: 56px;
        width: 320px;
        height: 403px;
    }
}

/**************************
TOP_NEWS
**************************/
.news_space {
    margin-top: 80px;
}
.news_space2 {
    margin-top: 120px;
}

@media (max-width: 768px) {
    .news_space {
        margin-top: 80px;
    }
    .news_space2 {
        margin-top: 120px;
    }   
}
/**************************
news_pagenation
**************************/

.pagination span, .pagination a {
    display: inline-block;
    margin: 2px 5px;
    padding: 6px 14px;
    text-decoration: none;
    color: #000;
    font-family: Noto Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
}

.pagination a:hover {
    background-color: #e9e9e9;
}

.pagination span.current {
    background-color: #008B5F;
    border-color: #008B5F;
    color: #FFF;
    font-family: Noto Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
}

.news_space3 {
    margin-top:160px;
    margin-bottom: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .news_space3 {
        margin-bottom: 160px;
    }
    
    .pagination span, .pagination a {
        color: #000;
        font-family: Noto Sans;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 24px */
        letter-spacing: 0.64px;
    }
    .pagination span, .pagination a {
        margin: 1px 3px;
        padding: 3px 8px;
    }
    .pagination span.current {
        color: #FFF;
        font-family: Noto Sans;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 24px */
        letter-spacing: 0.64px;
    }
}


/**************************
entry_term
**************************/
.xterm_box {
    border-radius: 4px;
    border: 1px solid #C8C8C8;
    background: #FFF;
    padding: 16px 24px;
    margin-top: 24px;

    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}
.xterm_box::-webkit-scrollbar {
    width: 5px;
}
/* 
.xtermbox::-webkit-scrollbar-track {
    background: #008B5F;
}

.xterm_box::-webkit-scrollbar-thumb {
    background-color: #008B5F;
} */


@media (max-width: 768px) {    
    .xterm_box {
        border-radius: 4px;
        border: 1px solid #C8C8C8;
        background: #FFF;
        padding: 16px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/**************************
contact_confirm
**************************/
.confirm_title {
    margin-top: 56px;
    color: #000;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.confirm_subtitle {
    margin-top: 56px;

    color: #000;
    /* Sp-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}
.confirm_label {
    margin-top: 32px;
    margin-left:4px;
    margin-right:4px;

    color: #505050;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;

    padding-bottom: 4px;
    border-bottom: 1px solid #DCDCDC;
}
.confirm_box {
    padding-top:8px;
    margin-left:4px;
    margin-right:4px;

    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.item-box {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
}
.item-box2 {
    margin-left:8px;
}
.confirm_subtitle2 {
    margin-top: 72px;
    color: #000;

    /* Sp-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}
.item-box3 {
    flex: 1 0 0;
}
.item-box-sns {
    display: flex;
    width: 80px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.submit_box .wpcf7-submit {
    border:none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 204px;
    height: 49px;
    padding: 10px auto;
    border-radius: 48px;
    background: var(--BGA-Green, #008B5F);
    color:#FFF;

    /* SP-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}
.submit_box .wpcf7-submit:disabled {
    background-color: #C8C8C8; /* 無効状態の背景色 */
    color: #969696; /* 無効状態のテキスト色 */
    /* ここに他のスタイルを追加 */
}

.submit_box .wpcf7-submit:hover {
    opacity: 0.8;
}

/**************************
confirm
**************************/
.button_box {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.submit_box2 .wpcf7-submit {
    border:none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 168px;
    height: 49px;
    padding: 8px auto;
    border-radius: 48px;
    background: var(--BGA-Green, #008B5F);
    color:#FFF;

    /* SP-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

.submit_box2 .wpcf7-submit:hover {
    opacity: 0.8;
}

.prev_box .wpcf7-previous {
    border:none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px auto;
    border-radius: 48px;

    /* SP-H3 TEXT_JP */
    background: none;
    color: #000;
    font-family: Noto Sans JP;
    padding: 0 10px 25px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
}

.prev_box .wpcf7-previous:hover {
    opacity: 0.8;
}

/**************************
contact_entry
**************************/
.entry_subtitle {
    margin-top: 48px;

    color: #000;
    /* Sp-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}
.entry_label_box {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.entry_label {
    color: #000;

    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.must_box {
    color: #FFF;
    border-radius: 4px;
    background: #FF3B30;
    padding:4px 0px;
    
    width: 32px;
    height: 18px;
}
.entry_must{
    /* SP-Sub_JP */
    font-family: Noto Sans JP;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 15px */
    letter-spacing: 0.5px;
}
.entry_desc {
    margin-top: 8px;
    align-self: stretch;
    color: #000;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.entry_box {
    margin-top:16px;

    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.entry_item_box2 {
    margin-left:8px;
}
.entry_subtitle2 {
    margin-top: 96px;

    color: #000;
    /* Sp-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}
.entry_subtitle3 {
    color: #000;

    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.entry_subtitle4 {
    margin-top: 24px;
    color: #000;

    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.entry_box2 {
    margin-top:8px;

    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.btn_contact7 input {
	width: 70%;
	background-color: #005513;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #005513;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}
.btn_contact7 input:hover {
	background-color: #FFF;
	color: #005513; 
}
.wpcf7-list-item:first-child {
    margin:0px;
}
.mt-120 {
    margin-top: 120px;
}
.mt-72 {
    margin-top: 72px;
}
.mb-120 {
    margin-bottom: 120px;
}
.entlink {
    color: #FFF;
    text-decoration: none;
}
.sns_label {
    color: #000;

    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.sns_label2 {
    color: #000;
    font-size: 12px;
}

/**************************
thanks
***************************/
/*hero image*/
.thx_hero_area {
    width: 100%;
    height: 95vh;
    position: relative; /* 必要に応じて */
    overflow: hidden;   /* 必要に応じて */
    background-image: url('./assets/img/200_thanks/Image_Entry_Done-SP.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.thx_hero_area picture {
    display: block;
    width: 100%;
    height: 100%; 
}

.thx_hero_area img {
    display: block;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
.image_box {
    position: absolute;
    top: 10%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translateX(-50%); /* 画像を中央に配置 */

}
.image_boxin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}
.image_boxin img {
    width: 335px;
}
.mt_thx {
    margin-top: 32px;
}
.mt_thx2 {
    margin-top: 40px;
    padding: 0px 35px;
}
.mt_thx3 {
    margin-top: 88px;
}
.image_box2 {
    position: absolute;
    top: 40%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translateX(-50%); /* 画像を中央に配置 */

}
.image_boxin2 {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.thx_title {
    color: #FFF;
    font-feature-settings: 'palt' on;
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.thx_title2 {
    margin-top: 4px;
    color: #FFF;

    /* SP-H3 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}
.thx_title3 {
    flex: 1 0 0;

    color: #FFF;
    text-align: center;
    
    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}
.thx_title4 {
    color: #FFF;

    /* SP-Body_JP */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
}

.overflow-hidden {
    overflow: hidden;
}

.fixedlink {
    color: #FFF;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fixed_button {
    border: none;
    margin: 0 auto;

    display: flex;
    width: 280px;
    height: 72px;
    padding: 8px 16px 8px 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    border-radius: 48px;
    background: var(--BGA-Green, #008B5F);
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.fixed_button:hover {
    background: #1F9972;
    opacity: 1.0;
}
.fixed_button:active {
    background: #00734E;
    opacity: 1.0;
}
.fixed_button_a {
    display: flex;
    padding-bottom: 0px;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;

    /* SP-H3 TEXT_JP */
    color: #FFF;

    /* PC-H2 TEXT_JP */
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}
.fixed_button_b {
    display: flex;
    padding: 5px 16px 0px 0px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.fixed_button_b img {
    width: 16px;
}

.fixed_icon {
    margin-left: 20px; /* アイコンの左側に少しスペースを追加 */
    height: 20px; /* この値はアイコンのサイズに合わせて調整してください */
    width: auto; /* 幅は自動的にアイコンのアスペクト比に合わせます */
}

@media (max-width: 768px) {
    .fixedlink:hover {
        opacity: 1.0;
    }
    .fixed_button {
        display: flex;
        width: 150px;
        height: 48px;
        padding: 0px 16px 0px 22px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-radius: 48px;
        background: var(--BGA-Green, #008B5F);
    }
    .fixed_button:hover {
        background: #008B5F;
        opacity: 1.0;
    }
    .fixed_button:active {
        background: #008B5F;
        opacity: 1.0;
    }
    .fixed_button_a {
        display: flex;
        padding-bottom: 0px;
        justify-content: center;
        align-items: center;
        flex: 1 0 0;
        align-self: stretch;
    
        color: #FFF;

        /* SP-Body_JP */
        font-family: Noto Sans JP;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
        letter-spacing: 0.7px;
    }
    .fixed_button_b {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        padding: 2px 0px 0px 0px;
    }
    .fixed_button_b img {
        width: 12px;
    }
}
