@charset "utf-8";

/*================================
Layout
================================*/
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    position: relative;
    overflow-x: hidden;
    background: #FFFFFF;
}

/* グローバル防御：横はみ出しを起こしやすい要素は画面幅で頭打ち */
img, table, video, iframe {
    max-width: 100%;
}

body:not(.home) {
    /* background: #68BBBD; */
}

html.nonScroll,
body.nonScroll {
    overflow: hidden;
}

.wrapper {
    position: relative;
}

.inner {
    margin-inline: auto;
}

main {
    background: #FFF;
}

@media all and (min-width:769px){
    .w1400 {
        width: 100%;
        max-width: 1400px;
        margin-inline: auto;
    }
    .w1300 {
        width: 100%;
        max-width: 1300px;
        margin-inline: auto;
    }
    .w1200 {
        width: 100%;
        max-width: 1200px;
        margin-inline: auto;
    }
    .w1100 {
        width: 100%;
        max-width: 1100px;
        margin-inline: auto;
    }
    .w1000 {
        width: 100%;
        max-width: 1000px;
        margin-inline: auto;
    }
}

main {
    overflow: hidden;
}

/*================================
Common parts
================================*/
.mv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.home) .mv {
    height: 224px;
    background: url(../img/common/bg_pages_mv.webp) right bottom no-repeat #68BBBD;
    background-size: 258px 198px
}

.mv .img {
    width: 100%;
    height: auto;
}

.mv .img img {
    pointer-events: none;
}

.mv .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

body:not(.home) .mv .title .label {
    font-size: 38px;
    font-weight: 500;
    color: #FFF;
}

.sns_list {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.section_normal {
    padding-top: 80px;
    margin-bottom: 80px;
}

.section_header {
    margin-bottom: 35px;
    text-align: center;
}

.section_header .title {
    font-size: 32px;
}

.section_header p {
    margin-top: 22px;
    font-size: 18px;
}

.btn_list {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.btn_list .item {
    min-width: 502px;
}

/*================================
Header
================================*/
header .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 15px;
}

body:not(.home) header .inner {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 30px 15px;
}

@media all and (min-width:769px){
    header {
        transition: all 0.3s ease;
    }
}

header.fixed .inner {
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 15px;
    background: rgba(104,187,189,0.95);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

body:not(.home) header {
    background: #68BBBD;
}

body:not(.home) header.fixed .inner {
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 15px;
    animation: slideDown 0.3s ease-in-out;
    background: rgba(104,187,189,0.95);
}

header .header_upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}

header .header_upper .header_upper_nav {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

header .header_upper .header_upper_nav .btn_tel {
    flex-direction: column;
    width: 223px;
    height: 59px;
    row-gap: 6px;
    border-radius: 10px;
}

header .header_upper .header_upper_nav .btn_tel .label {
    font-size: 12px;
}

header .header_upper .header_upper_nav .btn_tel .tel_number {
    font-size: 24px;
}

header .header_upper .header_upper_nav .btn_tel .tel_number:before {
    width: 19px;
    height: 19px;
    margin-right: 6px;
}

header .header_upper .header_upper_nav .sns_list img {
    height: 26px;
}

header .header_upper .header_upper_nav .header_upper_link {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

header .header_upper .header_upper_nav .header_upper_link .btn_contact,
header .header_upper .header_upper_nav .header_upper_link .btn_cart {
    width: 188px;
    height: 45px;
    font-size: 15px;
    border-radius: 9999px;
}

body:not(.home) header .header_upper .header_upper_nav .header_upper_link .btn_contact {
    border: 1px solid rgba(255,255,255,0.5);
}

header .header_lower {
    margin-top: 22px;
}

header .header_lower .header_lower_nav {
    display: flex;
    justify-content: flex-end;
}

header .header_lower .header_lower_nav .header_lower_nav_list {
    display: flex;
    align-items: center;
    column-gap: 32px;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent {
    position: relative;
    display: block;
    height: 24px;
    color: #FFF;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent .sub {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding-top: 5px;
    box-shadow: 0px 6px 16px -10px #777777;
    transition: opacity 0.2s ease;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent:hover .sub {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 10000;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent .sub:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
    border-top: 0;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent .sub li a {
    display: block;
    padding: 14px 20px;
    background: #FFF;
    color: #222;
    transition: all 0.3s ease;
}

header .header_lower .header_lower_nav .header_lower_nav_list li .nav_parent .sub li a:hover {
    background: var(--color-arrowgreen);
    color: #FFF;
    opacity: 1;
}

/*================================
Home
================================*/
/* mv */
.home .mv .inner .title {
    text-align: center;
    font-weight: 500;
    color: #FFF;
}

.home .mv .inner .title .sub {
    font-size: 23px;
}

.home .mv .inner .title .label {
    font-size: 48px;
}

.home .mv .inner .text {
    position: relative;
    margin-top: 24px;
    padding-top: 38px;
}

.home .mv .inner .text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 1px;
    background: #FFF;
}

.home .mv .inner .text p {
    color: #FFF;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

/* mv_link */
.mv_link {
    padding: 40px 15px;
    background: #E0F2F2;
}

.mv_link .btn_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 14px;
}

.mv_link .btn_list .btn_large {
    width: 100%;
    max-width: 100%;
    min-width: auto;
}

/* home_hall */
.hall_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 32px;
}

.hall_list .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    color: #222;
}

.hall_list .text {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.7;
}

.hall_list .title {
    margin-top: 10px;
    font-size: 20px;
}

.home_hall .banner {
    margin-top: 62px;
}

/* home_select */
.home_select {
    padding-block: 70px 80px;
    background: var(--color-basebeige);
}

.select_list_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 26px;
}

.select_list_wrap .list_header {
    position: relative;
}

.select_list_wrap .list_header .title {
    position: absolute;
    left: 15px;
    bottom: 10px;
    display: flex;
    align-items: flex-start;
    column-gap: 4px;
    font-size: 20px;
    color: #FFF;
}

.select_list_wrap .list_header .title span {
    display: inline-block;
    margin-top: 3px;
    font-size: 15px;
    font-weight: 400;
}

.select_list_wrap .select_list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    row-gap: 10px;
}

.select_list_wrap .select_list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 51px;
    padding: 4px 0 4px 22px;
    background: #FFF;
    border-radius: 9999px;
    color: #222;
    font-size: 15px;
}

.select_list_wrap .select_list li a:after {
    content:"";
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid var(--color-arrowgreen);
    border-right: 0;

}

.select_list_wrap .select_list li a span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #707070;
}

/* home_plan */
.home_plan {
    background: #ecf9f2;
    padding-bottom: 80px;
    margin-bottom: 0;
}

.home_plan .plan_list {
    margin-top: 50px;
}

.plan_list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 22px;
}

.plan_list .item {
    position: relative;
    width: 378px;
    background: #FFF;
}

.plan_list .item:nth-of-type(2) {
    width: 402px;
    box-shadow: 0 3px 26px rgba(0,0,0,0.16);
}

.plan_list .item:nth-of-type(2):before {
    position: absolute;
    top: -28px;
    right: -12px;
    content: "一番\A人気";
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E03B3B;
    border-radius: 50%;
    width: 76px;
    height: 76px;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5;
    white-space: pre;
}

.plan_list .item .plan_header {
    padding: 17px 15px;
    background: #54B3B5;
    text-align: center;
}

.plan_list .item:nth-of-type(2) .plan_header {
    padding: 24px 15px;
    background: #68C3C5;
}

.plan_list .item .plan_header .title {
    color: #FFF;
    font-size: 24px;
}

.plan_list .item .plan_header .summary {
    margin-top: 4px;
    color: #FFF;
    font-size: 16px;
}

.plan_list .item .plan_contents {
    padding: 30px 28px 30px;
}

.plan_list .item .plan_contents .price {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 13px;
    height: 108px;
    background: #F2F2F2;
    border-radius: 18px;
}

.plan_list .item .plan_contents .price span {
    font-size: 20px;
}

.plan_list .item .plan_contents .price span.number {
    font-size: 36px;
    color: #54B3B5;
}

.plan_list .item:nth-of-type(2) .plan_contents .price span.number {
    font-size: 43px;
}

.plan_list .item .plan_contents .link {
    margin-top: 17px;
}

.home_plan .banner_plan {
    margin-top: 56px;
}

.home_plan .btn_list {
    margin-top: 56px;
}

/* home_style */
.home_style {
    margin-bottom: 0;
    padding-bottom: 80px;
    background: url(../img/home/bg_home_style.webp) no-repeat;
    background-size: cover;
}

.home_style .section_header {
    display: flex;
    align-items: flex-start;
    column-gap: 24px;
}

.home_style .section_header .text {
    width: 525px;
    padding-top: 20px;
}

.home_style .section_header .map {
    flex: 1;
    box-shadow: 0 3px 36px rgba(0,0,0,0.11);
}

.home_style .section_header .map.iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.home_style .section_header .text {
    text-align: left;
    color: #FFF;
}

.home_style .section_header .text p {
    font-size: 16px;
    color: #FFF;
}

.home_style .contents_header .title {
    font-size: 32px;
    text-align: center;
}

.home_style .contents_header strong {
    font-size: 78px;
    color: #C9BE69;
    font-weight: 400;
}

.home_style .contents_header strong span {
    font-size: 32px;
    font-weight: 500;
}

.home_style .style_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 30px;
}

.home_style .style_list > .item {
    padding: 46px 58px;
    background: #FFF;
}

.home_style .style_list .item .upper {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 64px;
}

.home_style .style_list .swiper-button-prev,
.home_style .style_list .swiper-button-next {
    display: none;
}

.home_style .style_list .tags {
    display: flex;
    align-items: center;
    gap: 19px;
}

.home_style .style_list .tags li {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: #54B3B5;
}

.home_style .style_list .tags li:before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 18px;
    background: url(../img/common/icon_tags.svg) no-repeat;
    background-size: cover;
}

.home_style .style_list .upper .title {
    margin-top: 19px;
    font-size: 24px;
}

.home_style .style_list .point {
    margin-top: 20px;
    padding: 20px;
    background: var(--color-basebeige);
}

.home_style .style_list .point .label {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 18px;
}

.home_style .style_list .point .label:before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 21px;
    background: url(../img/common/icon_thumbssup.svg) no-repeat;
    background-size: cover;
}

.home_style .style_list .point .point_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 13px;
    margin-top: 17px;
}

.home_style .style_list .point .point_list li {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.home_style .style_list .point .point_list li:before {
    content: "";
    display: block;
    margin-top: 6px;
    width: 10px;
    height: 10px;
    background: var(--color-arrowgreen);
    border-radius: 50%;
}

.home_style .lower .title {
    position: relative;
    margin-top: 23px;
}

.home_style .lower .title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #E2E2E2;
}

.home_style .lower .title .label {
    position: relative;
    width: fit-content;
    padding-right: 13px;
    font-size: 20px;
    background: #FFF;
    z-index: 1;
}

.home_style .lower .style_hall_list {
    margin-top: 23px;
}

.style_hall_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
}

.style_hall_list .item {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 14px;
    padding: 11px 9px;
    border: 2px solid var(--color-arrowgreen);
    border-radius: 8px;
    color: var(--color-arrowgreen);
}

.style_hall_list .item::after {
    content:"";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid var(--color-arrowgreen);
    border-right: 0;
}

.style_hall_list .item img {
    height: 57px;
    border-radius: 8px;
}

.home_style .btn_list {
    margin-top: 56px;
}

/* home_example */
.home_example {
    margin-top: 0;
    padding-bottom: 80px;
    background: var(--color-basegray);
}

.example_list .title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 500;
}

.example_list .summary {
    margin-top: 10px;
    font-size: 16px;
}

.example_list .meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 11px;
    margin-top: 15px;
    font-size: 16px;
}

.example_list .meta:before {
    content: "";
    display: inline-block;
    width: 33px;
    height: 33px;
    background: url(../img/common/icon_footer_recommend@2x.webp) no-repeat;
    background-size: cover;
}

.home_example .link {
    margin-top: 56px;
}

:not(.plan_contents) > .link .link_btn {
    width: 311px;
    margin-inline: auto;
}

/* home_news */
.home_news {
    margin-top: 0;
    padding-top: 0;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(373px,1fr));
    column-gap: 40px;
}

.news_list .item {
    color: #222;
}

.news_list .title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 500;
}

.news_list .summary {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.news_list .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 11px;
    margin-top: 15px;
}

.news_list .meta .date {
    font-size: 13px;
    color: #A5A5A5;
}

.news_list .meta .category {
    padding: 4px 10px;
    background: #62B9BA;
    border-radius: 9999px;
    font-size: 14px;
    color: #FFF;
}

.home_news .link {
    margin-top: 56px;
}

/* home_about */

.home_about {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.home_about .about_list .item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 29.931vw;
}

.home_about .about_list .item .text {
    width: 50%;
    padding: 70px 54px;
}

.home_about .about_list .item .text .title {
    font-size: 28px;
}

.home_about .about_list .item .text p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.home_about .about_list .item .text .link a {
    margin: 35px 0 0;
}

.home_about .about_list .item_thought {
    background: url(../img/home/bg_home_about_thought.webp) no-repeat;
    background-size: cover;
}

.home_about .about_list .item_freedom {
    background: url(../img/home/bg_home_about_freedom.webp) no-repeat;
    background-size: cover;
}

.home_about .about_list .item_challenge {
    background: url(../img/home/bg_home_about_challenge.webp) no-repeat;
    background-size: cover;
}

/*================================
Pages Common
================================*/
.page_header {
    padding: 85px 15px;
}

.page_header .title {
    font-size: 32px;
    text-align: center;
}

.page_header .section_contents p {
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
}


/*================================
Styles スタイルで選ぶ
================================*/
.style main {
    padding-bottom: 100px;
}

.style .tab_list {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    column-gap: 4px;
    height: 84px;
}

.style .tab_list .item {
    width: 100%;
    justify-self: stretch;
}

.style .tab_list .item .tab_list_label {
    width: 100%;
}

.style .tab_list .item .tab_list_label label {
    display: block;
    width: 100%;
    padding: 23px 15px 17px;
    text-align: center;
    background: rgba(134,134,134,0.122);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;

}

.style .tab_list .item input[type=radio] {
    display: none;
}

.style .tab_list .item input[type=radio]:checked ~ .tab_list_label label {
    padding: 32px 15px 25px;
    background: var(--color-arrowgreen);
    color: #FFF;
}

.style .tab_contents {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    height: 0;
    transition: opacity 1.5s ease;
}

.style .tab_contents.active {
    visibility: visible;
    pointer-events: all;
    height: auto;
    opacity: 1;
}

.style .tab_contents .tab_inner {
    padding: 70px 50px 100px;
    background: #F0FAF3;
}

.style .styles_tab_header .title {
    color: #2EA1A2;
    font-size: 32px;
    font-weight: 500;
}

.style .styles_tab_header .lead {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.style .styles_plan {
    margin-top: 50px;
}

.style .styles_plan .styles_plan_list {
    display: flex;
    flex-direction: column;
    row-gap: 41px;
}

.style .styles_plan .styles_plan_list .item {
    padding: 50px;
    background: #FFF;
}

.style .styles_plan .styles_plan_list .item > .title {
    font-size: 24px;
    font-weight: 500;
}

.style .styles_plan .styles_meta {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 24px;
    margin-top: 19px;
}

.style .styles_plan .styles_meta .point {
    padding: 20px;
    background: var(--color-basebeige);
}

.style .styles_plan .styles_meta .point .point_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 13px;
}

.style .styles_plan .styles_meta .point .point_list li {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.style .styles_plan .styles_meta .point .point_list li:before {
    content: "";
    display: block;
    margin-top: 6px;
    width: 10px;
    height: 10px;
    background: var(--color-arrowgreen);
    border-radius: 50%;
}

.style .styles_plan .styles_meta .price {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-top: 10px;
    padding: 20px;
    background: #F2F2F2;
}

.style .styles_plan .styles_meta .price .number {
    display: flex;
    align-items: flex-end;
    font-size: 32px;
    color: var(--color-arrowgreen);
    line-height: 1;
}

.style .styles_plan .styles_meta .price .number small {
    font-size: 20px;
}

.style .styles_plan .styles_voice {
    margin-top: 30px;
}

.style .styles_plan .styles_voice > .title {
    font-size: 18px;
    font-weight: normal;
}

.style .styles_plan .styles_voice .voice_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(2.222vw, 2.222vw, 32px);
    margin-top: 18px;
}

.style .styles_plan .styles_voice .voice_list > .item {
    padding: 20px 25px;
    border: 1px solid #EAEAEA;
}

.style .styles_plan .styles_voice .voice_list > .item p {
    position: relative;
    padding-left: 23px;
    font-size: 14px;
}

.style .styles_plan .styles_voice .voice_list > .item p:before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--color-arrowgreen);
}

.style .styles_plan .link {
    margin-top: 33px;
}

.style .styles_hall {
    margin-top: 58px;
}

.style .styles_hall > .title {
    position: relative;
    font-size: 20px;
    font-weight: normal;
}

.style .styles_hall > .title span {
    position: relative;
    display: block;
    width: fit-content;
    padding-right: 14px;
    background: #F0FAF3;
    z-index: 1;
}

.style .styles_hall > .title:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #E2E2E2;
    z-index: 0;
}

.style .styles_hall .styles_hall_list {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
    margin-top: 26px;
}

.style .styles_hall .styles_hall_list .item {
    padding: 50px;
    background: #FFF;
}

.style .styles_hall .styles_hall_list .styles_hall_meta {
    display: grid;
    grid-template-columns: 293px 1fr;
    column-gap: 18px;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .title {
    font-size: 20px;
    font-weight: 500;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .address {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-top: 6px;
    font-size: 14px;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .address:before {
    content: "";
    width: 17px;
    height: 21px;
    background: url(../img/common/icon_location.svg) no-repeat;
    background-size: cover;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .point {
    margin-top: 15px;
    padding: 15px;
    background: var(--color-basebeige);
}

.style .styles_hall .styles_hall_list .styles_hall_meta .point .point_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 11px;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .point .point_list li {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.style .styles_hall .styles_hall_list .styles_hall_meta .point .point_list li:before {
    content: "";
    display: block;
    margin-top: 6px;
    width: 10px;
    height: 10px;
    background: var(--color-arrowgreen);
    border-radius: 50%;
}

.style .styles_hall .styles_hall_list .styles_hall_voice {
    margin-top: 30px;
}

.style .styles_hall .styles_hall_list .styles_hall_voice > .title {
    font-size: 18px;
    font-weight: normal;
}

.style .styles_hall .styles_hall_list .styles_hall_voice .voice_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(2.222vw, 2.222vw, 32px);
    margin-top: 18px;
}

.style .styles_hall .styles_hall_list .styles_hall_voice .voice_list > .item {
    padding: 20px 25px;
    border: 1px solid #EAEAEA;
}

.style .styles_hall .styles_hall_list .styles_hall_voice .voice_list > .item p {
    position: relative;
    padding-left: 23px;
    font-size: 14px;
}

.style .styles_hall .styles_hall_list .styles_hall_voice .voice_list > .item p:before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--color-arrowgreen);
}

.style .styles_hall .styles_hall_list .link {
    margin-top: 33px;
}

/*================================
Footer
================================*/

/* footer_members */
.footer_members {
    background: #ebf0ec;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer_members .inner {
    padding: 137px 40px 50px;
    background: #FFF;
    border-radius: 9999px;
}

.footer_members .section_header {
    position: relative;
}

.footer_members .section_header:before {
    content: "";
    position: absolute;
    top: -97px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: url(../img/common/icon_members.svg) no-repeat;
    background-size: cover;
}

.footer_members .present {
    position: relative;
    max-width: 886px;
    margin-top: 23px;
    margin-inline: auto;
    padding: 29px 30px 29px 122px;
    background: #FEFCF0;
}

.footer_members .present:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 34px;
    transform: translateY(-50%);
    display: block;
    width: 79px;
    height: 98px;
    background: url(../img/common/img_footer_members_handbook@2x.webp) no-repeat;
    background-size: cover;
}

.footer_members .present .title .label {
    font-weight: 400;
    font-size: 18px;
}

.footer_members .present .title .label strong {
    color: var(--color-arrowgreen);
    font-weight: 400;
}

.footer_members .present p {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 0;
}

.footer_members .link {
    margin-top: 23px;
}

/* footer_contact */
.footer_contact {
    background: url(../img/common/bg_footer_contact.webp) no-repeat;
    background-size: cover;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer_contact .section_header {
    color: #FFF;
}

.footer_contact .section_header p {
    color: #FFF;
}

.director_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 41px;
}

.director_list .item {
    position: relative;
}

.director_list .item .text {
    position: absolute;
    left: 17px;
    bottom: 18px;
    color: #FFF;
}

.director_list .item .text .position {
    font-size: 16px;
}

.director_list .item .text .name {
    margin-top: 9px;
    font-size: 24px;
    font-weight: 500;
}

.footer_contact .recommend {
    margin-top: 64px;
    padding: 70px 75px;
    background: #fdfcef;
}

.footer_contact .recommend > .title {
    display: grid;
    grid-template-columns: 164px 1fr;
    column-gap: 39px;
    letter-spacing: 0;
}

.footer_contact .recommend > .title .label {
    font-size: 32px;
    letter-spacing: 0;
}

.footer_contact .recommend > .title .lead {
    font-size: 18px;
    letter-spacing: 0;
}

.footer_contact .recommend_box {
    margin-top: 54px;
    padding-top: 47px;
    border-top: 1px solid #ADADAD;
}

.footer_contact .recommend_box .title {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    padding-left: 109px;
    padding-bottom: 25px;
}

.footer_contact .recommend_box .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 109px;
    height: 85px;
    background: url(../img/common/bg_footer_contact_recommend@2x.webp) no-repeat;
    background-size: cover;
}

.footer_contact .recommend_box .title .label {
    width: fit-content;
    background:linear-gradient(transparent 60%, #F5E8A2 60%);
    font-size: 25px;
    font-weight: normal;
}

.footer_contact .recommend_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(511px,1fr));
    column-gap: 27px;
}

.footer_contact .recommend_list .item {
    padding: 30px;
    background: #FFF;
}

.footer_contact .recommend_list .item .meta {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.footer_contact .recommend_list .item .meta .name {
    margin-top: 4px;
}

.footer_contact .recommend_list .item .text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.footer_contact .btn_list {
    margin-top: 64px;
}

/* footer_recruit */
.footer_recruit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/common/bg_footer_recruit.webp) no-repeat;
    background-size: cover;
    height: 42.431vw;
}

.footer_recruit .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
}

.footer_recruit .inner .section_header {
    width: 50%;
    text-align: left;
    margin-bottom: 25px;
}

.footer_recruit .inner .section_header .title {
    font-size: 18px;
}

.footer_recruit .inner .section_header .lead {
    margin-top: 14px;
    font-size: 32px;
    font-weight: 500;
    color: #2EA1A2;
    line-height: 1.7;
}

.footer_recruit .inner .section_contents {
    width: 50%;
}

.footer_recruit .inner .section_contents .label {
    font-size: 18px;
    font-weight: 400;
}

.footer_recruit .inner .section_contents p {
    margin-top: 10px;
}

.footer_recruit .inner .link .link_btn {
    margin: 39px 0 0;
}

/* footer */
#footer {
    padding: 70px 15px;
    background: #f3f7f4;
}

#footer .inner {
    display: grid;
    grid-template-columns: 277px 1fr;
    column-gap: 60px;
}

.footer_info .footer_info_address {
    margin-top: 20px;
}

.footer_info .footer_info_address .footer_tel {
    margin-top: 11px;
}

.footer_info .sns_list {
    margin-top: 17px;
}

.footer_info .sns_list a img {
    height: 30px;
    filter: brightness(0.4);
}

.footer_info .footer_info_link {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-top: 32px;
}

/* 社長ブログ画像 + 結活テキストリンク（既存サイト準拠の構造を新フッター背景に合わせて上書き） */
.footer_info .f_pres_blog {
    padding: 0;
    /* legacy-style.css の .f_blog { display: inline-grid } を上書きし、コンテナ幅に広げて中央寄せ */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer_info .f_pres_blog img {
    width: 200px;
    /* 元画像が白文字+透明背景。新フッターは薄背景なので色反転で暗色化して視認性を確保 */
    filter: invert(1) brightness(0.4);
}
.footer_info .f_yuikaysu_link {
    color: var(--color-arrowgreen, #4DA9AB);
    font-size: 22px;
    line-height: 1.2;
    margin-top: 6px;
    display: block;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    text-decoration: none;
}
.footer_info .f_yuikaysu_link span {
    font-size: 10px;
    display: block;
    padding: 4px 0 2px;
    color: #666;
}

.footer_info .btn_contact .label {
    position: relative;
    padding-left: 30px;
}

.footer_info .btn_contact .label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 18px;
    height: 14px;
    background: url(../img/common/icon_mail.svg) no-repeat;
    background-size: cover;
}

.footer_info .btn_cart .label {
    position: relative;
    padding-left: 30px;
}

.footer_info .btn_cart .label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 19px;
    height: 20px;
    background: url(../img/common/icon_cart.svg) no-repeat;
    background-size: cover;
}

.footer_nav {
    display: flex;
    gap: 80px;
}

.footer_nav_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media all and (min-width:769px){
    .footer_nav_column_sp {
        display: contents;
    }
}

.footer_nav .footer_nav_list li a,
.footer_nav_list_etc li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #707070;
    line-height: 2;
}

.footer_nav_list_etc li a {
    color: #A2A2A2;
}

.footer_nav .footer_nav_list li:first-of-type a {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.footer_notes p {
    height: 30px;
    background: #f3f7f4;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    background: var(--color-arrowgreen);
    text-align: center;
    font-size: 15px;
    color: #FFF;
}