* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif, serif;
}

body,
p,
ul,
li,
div,
h1 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

/* ------------------------------ */
/* main */
/* ------------------------------ */

main {
    width: 100%;
    /*margin-top: 227px;*/ /* 40pxをマイナスした値 */
}
@media screen and (max-width: 999px) {
    main {
        /*margin-top: 83px;*/ /* 40pxをマイナスした値 */
    }
}
@media screen and (max-width: 767px) {
    main {
        /*margin-top: 113px;*/
    }
}

/* ------------------------------ */
/* header */
/* ------------------------------ */
header {
    /*position: fixed;*/
    position: relative;
    z-index: 99;
    width: 100%;
    background: #fff;
    top: 0;
    height: 195px;
}
@media screen and (max-width: 999px) {
    header {
        height: 60px;
    }
}

.scrolled header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.menu-wrapper {
    position: relative;
}

.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 3;
}

.icon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 80px 0 6px;
    height: 100%;
}

.icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    text-decoration: none;
}

.icon img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}




.menu-icon {
    width: auto;
    height: auto;
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px 20px;
    background: #1e504b;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1;
}

#menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 2;
    overflow-y: scroll;
}

#menu-toggle:checked ~ .menu {
    right: 0;
}

.menu ul {
    list-style: none;
    padding: 60px 20px;
}

.menu li {
    max-width: 800px;
    /*margin: 20px auto;*/
    margin: 20px auto 0;
}

.menu a {
    text-align: center;
    /*display: block;*/
    /*border: 1px solid #000;*/
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;

    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #ddd;
}

.menu a:hover {
    color: #007bff;
}
.menu hr {
    display: none;
}

.li_info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px;
}

.li_info li {
    /*width: calc(50% - 6px);*/
    width: 85px;
}

.li_info li a {
    font-size: 14px;
    border: none;
}

.menu-icon::after {
    content: 'MENU';
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}


.p-header__nav_top {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.p-header__top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding: 20px 20px 30px;
}

.shoei {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 10px;
}

.shoei img {
    width: 100%;
    max-width: 200px;
}

.p-header__title_top {
    width: 550px;
    max-width: 100%;
    margin-right: 0;
    font-size: unset;
}

.p-header__title_top img {
    width: 100%;
    max-width: 200px;
    padding-right: 10px;
}

.p-header__hamburger {
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 60px;
}

.p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
}

.p-nav__list_top {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
}

.p-nav__item_top {
    position: relative;
    width: fit-content;
}

.p-nav__item_top img {
    width: 100%;
    max-width: 16px;
}

.p-nav__link_top {
    color: black;
    display: block;
    padding: 12px 10px;
    width: auto;
    font-size: 13px;
    text-align: center;
}

.info {
    background-color: #1e504b;
    color: #fff;
    margin-right: 4px;
}

.reserve {
    background-color: #1e504b;
    color: #fff;
    margin-left: 4px;
}

@media screen and (min-width: 1000px) {

    .menu-wrapper {
        display: none;
    }

    .contact {
        display: none;
    }

    .p-nav__inner_top {
        margin-right: auto;
        margin-left: auto;
        max-width: initial;
        width: 100%;
    }

    .p-header__nav_top {
        position: static;
        opacity: 1;
        height: inherit;
        width: initial;
        flex-direction: column;
        align-items: flex-end;
        margin-right: 0;
        margin-left: auto;
        width: 70%;
    }

    .p-nav__list_top {
        padding-right: 0;
        padding-left: 0;
        display: flex;
        justify-content: flex-end;
    }
}


.gb_nav {
    width: 100%;
}

.gb_nav .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.gb_nav ul {
    overflow: hidden;
}

.gb_nav ul li {
    position: relative;
    float: left;
    width: calc(100% / 7);
    list-style-type: none;
    text-align: center;
}

.gb_nav ul li .line-right {
    display: block;
    position: absolute;
    top: 12px;
    right: 0;
    width: 1px;
    height: 30px;
    background-color: #000;
}

.gb_nav ul li a {
    display: block;
    padding: 15px 5px;
    color: #000;
}

.gb_nav ul li a:hover {
    background-color: #1e504b;
    color: #fff;
}

.nav_active {
    background-color: #1e504b;
    color: #fff !important;
}
.menu .nav_active {
    /*background-color: #1e504b;
    color: #fff !important;*/
    background-color: unset;
    color: #1e504b!important;
    font-weight: bold;
}


@media screen and (max-width: 999px) {
    .gb_nav .container {
        width: 100%;
    }
}

@media screen and (max-width: 999px) {
    .gb_nav .container {
        display: none;
    }
}

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

    .shoei {
        /*position: fixed;*/
        width: 100%;
        padding: 10px 20px;
        z-index: 1;
        background-color: #fff;
        height: 38px;
    }

    .shoei img {
        max-width: 110px;
    }

    .p-header__top {
        /*position: fixed;*/
        position: relative;
        top: 0;
        width: 100%;
        padding: 11.5px 20px;
        z-index: 1;
        background-color: #fff;
    }

    .p-header__title_top {
        width: 100%;
    }

    .p-header__title_top img {
        max-width: 130px;
    }

    .info {
        margin-right: 0;
        background-color: rgba(0, 0, 0, 0);
        color: #000;
    }

    .reserve {
        margin-left: 0;
        background-color: rgba(0, 0, 0, 0);
        color: #000;
    }

    .contact {
        margin-left: 0;
        background-color: rgba(0, 0, 0, 0);
        color: #000;
    }

    .p-nav__link_top {
        padding: 16px 10px;
    }
}

@media screen and (max-width:600px) {
    .p-header__title_top img {
        max-width: 120px;
        margin-bottom: 5px;
        display: block;
    }
}


/* ------------------------------ */
/* パンクズリスト*/
/* ------------------------------ */

.breadcrumbs {
    padding: 25px .5rem 10px;
    margin: 0 auto;
    max-width: 1200px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
    color: #fff;
    display: inline-block;
    margin: 0 .25rem;
    content: ">";
}

.breadcrumbs li a {
    color: #fff;
}




/* ------------------------------ */
/* quality */
/* ------------------------------ */


.quality-top-area {
    background-color: #1e504b;
}

.quality-top {
    display: flex;
    align-items: center;
}

.quality-left {
    width: 60%;
}

.quality-left img {
    width: 100%;
    border-radius: 0 16px;
}

.quality-right {
    width: 40%;
    padding-left: 50px;
}

.quality-right h2 {
    font-size: 50px;
    color: #fff;
    letter-spacing: 2px;
}

.quality-right h2 span {
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.quality-right p {
    font-size: 30px;
    color: #fff;
    margin-top: 50px;
    letter-spacing: 2px;
}

@media screen and (max-width:999px) {
    .quality-top-area {
        /*padding-top: 120px;*/
    }
}


@media screen and (min-width:768px) and (max-width:999px) {
    .quality-right {
        padding-left: 30px;
    }

    .quality-right h2 {
        font-size: 40px;
    }

    .quality-right h2 span {
        margin-bottom: 0;
    }

    .quality-right p {
        margin-top: 20px;
        font-size: 24px;
    }
}

@media screen and (max-width:767px) {
    .quality-right {
        padding-left: 25px;
    }

    .quality-right h2 {
        font-size: 36px;
    }

    .quality-right p {
        margin-top: 20px;
        font-size: 22px;
    }
}

@media screen and (max-width:600px) {
    .quality-top-area {
        padding-top: 45px;
    }

    .quality-top {
        flex-direction: column-reverse;
    }

    .quality-right {
        width: 100%;
        padding-top: 20px;
    }

    .quality-left {
        width: 100%;
        padding-top: 30px;
        padding-right: 20px;
    }
}


/* ------------------------------ */
/* concept */
/* ------------------------------ */

.quality-top-concept {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-top-concept h3 {
    color: #323232;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.quality-top-concept p {
    color: #323232;
    text-align: center;
    line-height: 2;
    font-size: 20px;
}

@media screen and (max-width:480px){
    .quality-top-concept h3{
        font-size: 22px;
    }
    .quality-top-concept p{
        font-size: 16px;
    }
}



/* ------------------------------ */
/* タブ切り替え */
/* ------------------------------ */
/*
.quality-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 10px;
    width: 100%;
}

.quality-tab > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    max-width: 500px;
    padding: .6em 1em;
    border-radius: 5px 5px 0 0;
    background-color: #eeedea;
    color: #a7a7a7;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.quality-tab > label:hover {
    opacity: .8;
}

.tab-title {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 1.6px;
}

.tab-title span {
    display: block;
    font-size: 14px;
}

.quality-tab input {
    display: none;
}

.quality-tab > div {
    display: none;
    width: 100%;
    padding: 4em 1em;
    background-color: #1e554b;
}

.quality-tab label:has(:checked) {
    opacity: 1;
    background-color: #1e554b;
    color: #fff;
}

.quality-tab label:has(:checked) + div {
    display: block;
}



.quality-top-concept.tab-01 {
    display: none;
}

.quality-top-concept.tab-02 {
    display: block;
}




.tab-content-box {
    background-color: #1e554b;
}

.tab1200 {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.equipment-concept {
    margin-bottom: 50px;
}

.equipment-concept h2 {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
    line-height: 2;
    text-align: center;
    letter-spacing: 2px;
}

.equipment-concept p {
    color: #fff;
}

@media screen and (max-width:767px) {
    .tab1200 {
        padding: 0 10px;
    }
}

@media screen and (max-width:480px) {
    .equipment-concept h2 {
        font-size: 20px;
    }

    .tab-title {
        font-size: 20px;
    }
}




@media screen and (max-width:350px) {
    .tab-title {
        font-size: 16px;
    }

    .equipment-concept h2 {
        font-size: 18px;
    }
}
*/
/* ===== タブラベル（sticky固定） ===== */
.demo-spacer {
    text-align: center;
    margin-bottom: 30px;
}

.tab-labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 10px;
    width: 100%;
    position: sticky;
    /*top: 194px;*/
    top: 0;
    z-index: 90;
    background: #fff;
}

.tab-label {
    flex: 1 1;
    opacity: .5;
    min-width: 70px;
    max-width: 500px;
    padding: .6em 1em;
    border-radius: 5px 5px 0 0;
    background-color: #eeedea;
    color: #a7a7a7;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s, background-color 0.2s;
}
.tab-label:hover {
    opacity: .8;
}
.tab-label.active {
    opacity: 1;
    background-color: #1e554b;
    color: #fff;
}

/* ===== タブタイトル ===== */
.tab-title {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 1.6px;
}
.tab-title span {
    display: block;
    font-size: 14px;
}

/* ===== quality-top-concept 切り替え ===== */
.quality-top-concept {
    display: none;
}
.quality-top-concept.active {
    display: block;
}

/* ===== tab-content-box 切り替え ===== */
.tab-content-box {
    display: none;
    width: 100%;
    padding: 4em 1em;
    background-color: #1e554b;
}
.tab-content-box.active {
    display: block;
}

/* ===== その他既存スタイル ===== */
.tab1200 {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.equipment-concept {
    margin-bottom: 50px;
}

.equipment-concept h2 {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
    line-height: 2;
    text-align: center;
    letter-spacing: 2px;
}
@media screen and (max-width:999px) {
    .tab-labels {
        top: 85px;
    }
}
@media screen and (max-width:767px) {
    .tab1200 { padding: 0 10px; }
    /*.tab-labels{
        top: 120px;
    }*/
}
@media screen and (max-width:600px) {
    .tab-labels {
        /*top: 109px;*/
        top: 0;
    }
}
@media screen and (max-width:480px) {
    .equipment-concept h2 { font-size: 20px; }
    .tab-title { font-size: 20px; }
}
@media screen and (max-width:350px) {
    .tab-title { font-size: 16px; }
    .equipment-concept h2 { font-size: 18px; }
}


/* ------------------------------ */
/* システムキッチン */
/* ------------------------------ */



.equipment-container01 {
    border: 1px solid #a7a7a7;
    border-radius: 5px;
    margin-bottom: 50px;
}

.equipment-container01 h3 {
    background-color: #a7a7a7;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.equipment-container01 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0 40px;
    letter-spacing: 2px;
    text-align: center;
}


@media screen and (max-width:999px) {
    .equipment-container01 h4 {
        font-size: 24px;
        padding: 0 20px;
    }
}



@media screen and (max-width:767px) {
    .equipment-container01 h4 {
        margin-top: 20px;
        font-size: 20px;
    }

    .equipment-container01 h3 {
        font-size: 26px;
    }
}
@media screen and (max-width:480px) {
.equipment-container01 h3{
    font-size: 22px;
}

    .equipment-listbox03 {
        flex-direction: column;
    }
}

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

    .equipment-container01 h3 {
        font-size: 20px;
    }

    .equipment-container01 h4 {
        font-size: 18px;
    }

    .equipment-listbox03 {
        flex-direction: column;
    }
}

.equipment-box01 {
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: wrap;
}

.equipment-box01 .eq-parts01:nth-child(1) {
    width: 100%;
}

.equipment-box01 .eq-parts01:nth-child(n+2) {
    width: calc((100% - 8px) / 3);
}

.equipment-box01 .eq-parts01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.equipment-listbox {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.equipment-list01 {
    margin-top: 40px;
    width: calc((100% - 90px) / 4);
}



.equipment-list01 h4 {
    text-align: left;
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
}

.equipment-list01 p {
    color: #494949;
    font-size: 15px;
}

.equipment-flex-list small {
    color: #494949;
}

.equipment-listbox-img01 {
    margin-top: 30px;
}

.equipment-listbox-img01 img {
    width: 100%;
}

.item-img01 p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}


@media screen and (min-width:1200px) and (max-width:1230px) {
    .equipment-list01 .letter-18 {
        letter-spacing: 1.8px;
    }
}


@media screen and (max-width:999px) {
    .equipment-box01 {
        padding: 20px;
    }

    .equipment-listbox {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width:999px) {
    .equipment-list01 h4 {
        font-size: 18px;
    }

    .item-img01 p {
        font-size: 15px;
    }
}

/* ------------------------------ */
/* item01 */
/* ------------------------------ */

.equipment-list01--wide {
    width: calc((100% - 90px) / 4 * 2 + 30px);
}

.wide-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.item-img01 {
    margin-top: 30px;
}

.equipment-item-img01 img {
    width: 100%;
}

@media screen and (max-width:350px) {
    .wide-flex {
        flex-direction: column;
    }
}

/* ------------------------------ */
/* item02 */
/* ------------------------------ */

.equipment-listbox-img02 {
    margin-top: 5px;
}

.equipment-listbox-img02 img {
    width: 100%;
}

.eq-img02 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 5px;
    gap: 5px;
}

.eq-img-right small {
    color: #494949;
    margin-top: 0;
    display: block;
    font-size: 12px;
    text-align: right;
}

.eq-img-right {
    width: calc(70% - 2.5px);
}


.eq-img-left {
    width: calc(30% - 2.5px);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
}

.eq-img-left p {
    color: #494949;
    position: absolute;
    left: 0;
    white-space: nowrap;
    /* テキストを折り返さない */
    left: 70px;
    bottom: 0;
    width: 100%;
    margin: 0;
}


.eq-img-left img {
    width: 90%;
}

@media screen and (min-width:900px) and (max-width:999px) {
    .eq-img-left p {
        left: 120px;
    }
}

@media screen and (min-width:800px) and (max-width:899px) {
    .eq-img-left p {
        left: 100px;
    }
}

@media screen and (min-width:768px) and (max-width:799px) {
    .eq-img-left p {
        left: 90px;
    }
}

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

    .eq-img-left p {
        left: 0;
        position: relative;
    }
}

/* ------------------------------ */
/* item03 */
/* ------------------------------ */


.equipment-list01 h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #494949;
}


/* ------------------------------ */
/* item04-08 */
/* ------------------------------ */


.equipment-list02 {
    display: flex;
    flex-direction: column;
}

.equipment-list02 h5 {
    margin-top: 20px;
}

.m-bottom32 {
    margin-bottom: 32px;
}

.m-bottom55 {
    margin-bottom: 55px;
}

.m-bottom10 {
    margin-bottom: 10px;
}

.equipment-listbox-img03 img {
    width: 100%;
}

.letter-4 {
    letter-spacing: -4px !important;
}

.smalltext small {
    display: block;
    text-align: right;
    color: #494949;
}

.equipment-listbox-img01 small {
    color: #494949;
}

.textrightimg {
    text-align: right;
}

.textrightimg img {
    max-width: 140px;
}


@media screen and (min-width:1200px) and (max-width:1230px) {
    .letter-5 {
        letter-spacing: -5px !important;
    }

    .letter-1 {
        letter-spacing: 1px !important;
    }
}

@media screen and (min-width:1000px) and (max-width:1199px) {
    .letter-2 {
        letter-spacing: -2px !important;
    }

    .letter-4-2 {
        letter-spacing: -4px !important;
    }

    .letter-0 {
        letter-spacing: 0 !important;
    }
}

@media screen and (max-width:999px) {
    .equipment-list01 {
        margin-top: 0;
        width: calc((100% - 30px) / 2);
    }

    .letter-4 {
        letter-spacing: 0 !important;
    }
}

@media screen and (max-width:767px) {
    .equipment-list01 {
        width: calc((100% - 0px) / 1);
    }
}

@media screen and (max-width:350px) {
    .equipment-listbox-img01 small {
        text-align: left;
    }
}

/* ------------------------------ */
/* 洗面台 */
/* ------------------------------ */

.equipment-listbox03 {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.equipment-list03 {
    margin-top: 40px;
    width: calc((100% - 6px) / 2);
}

.equipment-list03 h4 {
    text-align: left;
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 0;
}

.equipment-list03 p {
    color: #494949;
    font-size: 15px;
}

.equipment-flex03-list small {
    color: #494949;
}

.equipment-img04 img {
    width: 100%;
}


.equipment-img05 img {
    width: 100%;
    object-fit: cover;
    height: 649px;
}

.equipment-flexbox03 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}


.equipment-listbox03-img {
    margin-top: 30px;
}

.equipment-listbox03-img img {
    width: 100%;
}


.flexbox03 {
    margin-top: 40px;
    width: calc((100% - 6px) / 2);
}

.equipment-listbox04 {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.equipment-list04 {
    margin-top: 40px;
    width: calc((100% - 30px) / 2);
}


.equipment-list04 h4 {
    text-align: left;
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 0;
}

.equipment-list04 p {
    color: #494949;
    font-size: 15px;
}

.equipment-list04 img {
    width: 100%;
}

.equipment-list04 small {
    color: #494949;
    font-size: 12px;
}




.equipment-flexbox03 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.flexbox03 img {
    width: 100%;
}


.flexbox04 {
    display: flex;
}

.equipment-img-main04 {
    width: 100%;
    padding-right: 10px;
    padding-bottom: 30px;
}

.equipment-img-main04 img {
    width: 100%;
}


.flexbox06 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}


.box06-img {
    width: calc((100% - 6px) / 2);
}

.box06-img img {
    width: 100%;
}


.h-header05 h5 {
    color: #494949;
    font-weight: 400;
    border-bottom: 1px solid #494949;
    margin-bottom: 10px;
}

.w70 {
    width: 66%;
}

.w30 {
    width: 33%;
}

.box06-tittxt h5 {
    border-bottom: 0px solid #494949 !important;
}

.flexbox05 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.box07-img {
    width: calc(100% - 0px);
}

.box07-img img {
    width: 100%;
}

.box06-img img,
.box07-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}




.flexbox08 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.box08-img {
    width: calc(100% - 10px);
}

.box08-img h5 {
    color: #494949;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: normal;
}

.flexbox09 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.box09-img {
    width: calc(100% - 10px);
}

.box09-img p {
    margin-bottom: 30px;
}

.box09-img img {
    margin-bottom: 10px;
}


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

    .equipment-listbox03 {
        padding: 0 20px 20px;
    }


    .flexbox04 {
        flex-wrap: wrap;
    }

    .equipment-listbox04 {
        padding: 0 20px 20px;
    }

    .equipment-img-main04 {
        padding-right: 0;
        padding-bottom: 0;
    }

    .kirei100 {
        width: 100%;
        margin-bottom: 30px;
    }

    .equipment-img05 img {
        height: 428px;
    }
}

@media screen and (max-width:767px) {
    .equipment-img05 img {
        height: 329px;
    }

    .equipment-list04 {
        width: calc((100% - 0px) / 1);
    }
}

@media screen and (max-width:480px) {
.equipment-list03 {
    width: calc((100% - 0px) / 1);
}
    .equipment-img05 img{
        height: auto;
    }
}

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


    .equipment-list03 {
        margin-top: 0px;
        width: calc((100% - 0px) / 1);
    }

    .equipment-flexbox03 {
        flex-direction: column;
    }

    .flexbox03 {
        margin-top: 20px;
        width: calc((100% - 0px) / 1);
    }

    .flexbox05 {
        flex-direction: column;
    }

    .equipment-img05 img {
        height: auto;
    }

    .flexbox06 {
        flex-direction: column;
    }

    .box06-img {
        width: calc((100% - 0px) / 1);
    }

    .w70 {
        width: 100%;
    }

    .w30 {
        width: 100%;
    }

    .box06-img img,
    .box07-img img {
        height: auto;
    }

    .flexbox08 {
        flex-direction: column;
    }

    .box08-img {
        width: calc(100% - 0px);
    }

    .flexbox09 {
        flex-direction: column;
    }

    .box09-img {
        width: calc(100% - 0px);
    }

    .equipment-list04 {
        margin-top: 20px;
    }
}

/* ------------------------------ */
/* 浴室・トイレ */
/* ------------------------------ */


.equipment-box010 {
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: wrap;
}

.equipment-box010 .eq-parts010:nth-child(1) {
    width: calc(50% - 2px);
}

.equipment-box010 .eq-parts010:nth-child(2) {
    width: calc(50% - 2px);
}

.equipment-box010 .eq-parts010:nth-child(n+3) {
    width: calc((100% - 8px) / 3);
}

.equipment-box010 .eq-parts010 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.flexbox10 {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.box10-img {
    margin-top: 20px;
    width: calc(100% - 0px);
}


.box10-img-left {
    width: calc(100% - 0px);
}


.box10-img-right {
    width: calc(60% - 0px);
}

.box10-img h5 {
    color: #494949;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: normal;
}




.flexbox11 {
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.box11-img {
    width: calc(100% - 0px);
}


.box11-img-left {
    width: calc(100% - 0px);
}


.box11-img-right {
    width: calc(60% - 0px);
}


.box11-img h5 {
    color: #494949;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: normal;
}

.flexbox12 p {
    margin-bottom: 20px;
}

.box12-img {
    width: calc(60% - 0px);
}





.flexbox13 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.box13-img {
    width: calc(50% - 10px);
}


.equipment-list14 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.flexbox14 {
    width: calc(50% - 15px);
    flex-wrap: wrap;
}


.flexbox14 h5 {
    color: #494949;
    font-weight: 400;
    border-bottom: 1px solid #494949;
    margin-bottom: 10px;
}


.box14-img {
    width: calc(100% - 0px);
}



.flexbox15 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.box15-img {
    width: calc(50% - 15px);
    flex-wrap: wrap;
}


.flexbox15 h5 {
    margin-top: 20px;
    color: #494949;
    font-weight: 400;
    border-bottom: 1px solid #494949;
    margin-bottom: 10px;
}


@media screen and (max-width:999px) {
    .equipment-box010 {
        padding: 20px;
    }

    .flexbox15 {
        flex-direction: column;
        gap: 10px;
    }

    .box15-img {
        width: calc(100% - 0px);
    }

    .box15-img .margintop20px {
        margin-top: 20px;
    }
}

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

    .flexbox10 {
        flex-direction: column-reverse;
    }

    .box10-img-right {
        width: calc(60% - 0px);
        margin: 0 auto;
    }

    .flexbox11 {
        flex-direction: column-reverse;
    }

    .box11-img-right {
        width: calc(60% - 0px);
        margin: 0 auto;
    }


    .flexbox13 {
        flex-direction: column;
    }

    .box13-img {
        width: calc(100% - 0px);
    }

    .equipment-list14 {}

    .flexbox14 {
        width: calc(100% - 0px);
    }
}

/* ------------------------------ */
/* 無垢フローリングピノアース */
/* ------------------------------ */

.eq-parts011 {
    padding: 40px 40px 0;
}

.eq-parts011 img {
    width: 100%;
}


.equipment-listbox04-60 {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.equipment-list04-60 {
    margin-top: 40px;
    width: calc((100% - 60px) / 3);
}


.equipment-list04-60 h4 {
    text-align: left;
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 0;
}

.equipment-list04-60 p {
    color: #494949;
    font-size: 15px;
}

.equipment-list04-60 img {
    width: 100%;
}

.equipment-list04-60 small {
    color: #494949;
    font-size: 12px;
}

.equipment-list04-60 .letter-24 {
    letter-spacing: -2.4px;
}

@media screen and (min-width:1200px) and (max-width:1230px) {
    .equipment-list04-60 .letter-24 {
        letter-spacing: -3.6px;
    }
}


@media screen and (min-width:1000px) and (max-width:1199px) {
    .equipment-list04-60 .letter-67 {
        letter-spacing: -6.7px;
    }

    .letter-24-02 {
        letter-spacing: -2.4px;
    }
}

@media screen and (max-width:999px) {
    .eq-parts011 {
        padding: 20px 20px 0;
    }

    .equipment-listbox04-60 {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width:767px) {
    .equipment-list04-60 {
        width: calc((100% - 0px) / 1);
    }
}



.equipment-listbox04-20 {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.equipment-list04-20 {
    margin-top: 40px;
    width: calc((100% - 30px) / 2);
}


.equipment-list04-20 h4 {
    text-align: left;
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 0;
}

.equipment-list04-20 p {
    color: #494949;
    font-size: 15px;
}

.equipment-list04-20 img {
    width: 100%;
}

.equipment-list04-20 small {
    color: #494949;
    font-size: 12px;
}

.flex-uzukuri {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.uzukuri-box {
    width: calc((100% - 30px) / 2);
}


.flex-kinou {
    margin-top: 0px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.kinou-box {
    width: calc((100% - 60px) / 3);
}

.kinou-box h5 {
    margin: 5px 0;
    color: #494949;
}


.kinou-box .letter06 {
    letter-spacing: -0.6px;
}

@media screen and (max-width:999px) {
    .equipment-listbox04-20 {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width:767px) {
    .equipment-list04-20 {
        width: calc((100% - 0px) / 1);
    }

    .flex-uzukuri {
        margin-top: 20px;
    }

    .flex-kinou {
        gap: 10px;
    }

    .kinou-box {
        width: calc((100% - 20px) / 3);
    }
}

@media screen and (max-width:350px) {
    .uzukuri-box {
        width: calc((100% - 0px) / 1);
    }

    .kinou-box {
        width: calc((100% - 0px) / 1);
    }
}


/* ------------------------------ */
/* スピーカー付きダウンライト */
/* ------------------------------ */



.speaker-container01 {
    border: 1px solid #a7a7a7;
    border-radius: 5px;
    margin-bottom: 50px;
}

.speaker-container01 h3 {
    background-color: #a7a7a7;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.speaker-box01 {
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.left-box01 {
    width: calc(45% - 15px);
}

.left-box01 img {
    width: 100%;
}

.right-box01 {
    width: calc(55% - 15px);
}

.right-box01 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.right-box01 p {
    color: #494949;
    line-height: 1.8;
}

@media screen and (max-width:999px) {
    .speaker-box01 {
        padding: 20px;
    }
}

@media screen and (max-width:767px) {
    .speaker-container01 h3 {
        font-size: 26px;
    }

    .speaker-box01 {
        flex-direction: column;
        flex-wrap: wrap;
    }
}

@media screen and (max-width:480px) {
    .speaker-container01 h3 {
        font-size: 22px;
    }

    .speaker-box01 .right-box01 h4 {
        font-size: 20px;
    }
}

@media screen and (max-width:350px) {
    .speaker-container01 h3 {
        font-size: 20px;
    }

    .speaker-box01 .right-box01 h4 {
        font-size: 18px;
    }
}

/* ------------------------------ */
/* シャッター */
/* ------------------------------ */



.shutter-container01 {
    border: 1px solid #a7a7a7;
    border-radius: 5px;
    margin-bottom: 50px;
}

.shutter-container01 h3 {
    background-color: #a7a7a7;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.shutter-box01 {
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.shutter-box01 .left-box01 {
    width: calc(30% - 15px);
}

.shutter-box01 .left-box01 img {
    width: 100%;
}

.shutter-box01 .right-box01 {
    width: calc(70% - 15px);
}

.shutter-box01 .right-box01 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.shutter-box01 .right-box01 p {
    color: #494949;
    line-height: 1.8;
}

.remote-box-img01 {
    margin-top: 20px;
}

.remote-box-img02 {
    margin-top: 20px;
}

.remote-box-img02 img {
    width: 70%;
}


@media screen and (max-width:999px) {
    .shutter-box01 {
        padding: 20px;
    }
}

@media screen and (max-width:767px) {
    .shutter-box01 {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .shutter-box01 .left-box01 {
        width: calc(50% - 15px);
        margin: auto;
    }

    .shutter-box01 .right-box01 {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .shutter-container01 h3 {
        font-size: 22px;
    }

    .shutter-box01 .right-box01 h4 {
        font-size: 20px;
    }

}
@media screen and (max-width:350px) {
    .shutter-container01 h3 {
        font-size: 20px;
    }

    .shutter-box01 .right-box01 h4 {
        font-size: 18px;
    }

}

/* ------------------------------ */
/* 天井高2,700mm */
/* ------------------------------ */


.structure-container01 {
    border: 1px solid #a7a7a7;
    border-radius: 5px;
    margin-bottom: 50px;
}

.structure-container01 h3 {
    background-color: #a7a7a7;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.structure-box01 {
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.left-box01 {
    width: calc(45% - 15px);
}

.left-box01 img {
    width: 100%;
}

.right-box01 {
    width: calc(55% - 15px);
}

.right-box01 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.right-box01 p {
    color: #494949;
    line-height: 1.8;
}

@media screen and (max-width:480px) {
    .structure-container01 h3{
        font-size: 24px;
    }
    .right-box01 h4{
        font-size: 20px;
    }
}

@media screen and (max-width:350px) {
    .structure-container01 h3 {
        font-size: 20px;
    }

    .right-box01 h4 {
        font-size: 18px;
    }
}

/* --------------------------------- */
/* ツーバイフォー 2×4モノコック工法 断熱材 */
/* --------------------------------- */


.structure-listbox {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

.bk-white {
    background-color: #fff;
    border-radius: 4px;
}

.structure-list01 {
    margin-top: 40px;
    width: calc(50% - 25px);
}

.structure-list01 h4 {
    font-size: 20px;
    padding: 0em .4em .3em;
    border-left: 5px solid #494949;
    border-bottom: 1px solid #494949;
    color: #494949;
    font-weight: normal;
    margin-bottom: 10px;
    font-weight: 500;
}

.structure-list01 p {
    color: #494949;
}

.listbox-img01 {
    margin-top: 30px;
}

.listbox-img01 img {
    width: 100%;
}


.flex-list {
    display: flex;
    gap: 20px;
}

.structure-list-text {
    width: calc(65% - 10px);
}

.flex-list .listbox-img01 {
    width: calc(35% - 10px);
}

@media screen and (max-width:350px){
.structure-list-text{
    width: calc(100% - 0px);
}
    .flex-list{
        flex-direction: column;
    }
    .flex-list .listbox-img01 {
        width: calc(100% - 0px);
    }
}

/* ------------------------------ */
/* 全棟で地盤調査を徹底実施 */
/* ------------------------------ */

.structure-container02 {
    border: 1px solid #a7a7a7;
    border-radius: 5px;
    margin-bottom: 50px;
}

.structure-container02 h3 {
    background-color: #a7a7a7;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}

.structure-box02 {
    border-radius: 4px;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.left-box02 {
    width: calc(45% - 15px);
}

.left-box02 img {
    width: 100%;
}

.right-box02 {
    width: calc(55% - 15px);
}

.right-box02 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.right-box02 p {
    color: #494949;
    line-height: 1.8;
}

.right-box02 small {
    display: block;
    margin-top: 20px;
    color: #494949;
}

.right-box03 h5 {
    color: #494949;
    font-size: 26px;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.right-box03 .small-title {
    font-size: 14px;
}

.right-box03 img {
    max-width: 330px;
    width: 100%;
}

@media screen and (max-width:480px) {
.right-box02 h4{
    font-size: 20px;
}
    .right-box03 h5{
        font-size: 20px;
    }
}

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

    .right-box02 h4 {
        font-size: 18px;
    }
    .right-box03 h5{
        font-size: 18px;
    }
}

/* ------------------------------ */
/* 万が一の火災時も〜 */
/* ------------------------------ */

.structure-container04 {
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 50px;
}

.structure-container04 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.structure-container04 p {
    color: #494949;
    line-height: 1.8;
}

.structure-box04 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.left-box04 {
    width: calc(50% - 15px);
}

.left-box04 img {
    width: 100%;
}

.right-box04 {
    width: calc(50% - 15px);
}

.right-box04 img {
    width: 100%;
}

.left-box04-title h5 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 400;
    color: #494949;
}

.left-box04-title p {
    color: #494949;
}
@media screen and (max-width:350px) {
.structure-container04 h4{
    font-size: 22px;
}
}

@media screen and (max-width:350px) {
    
    .structure-container04 h4 {
        font-size: 20px;
    }
}

/* ------------------------------ */
/* 室内環境を維持 */
/* ------------------------------ */

.structure-box02-center {
    align-items: center;
}


/* ------------------------------ */
/* 建売の価格で、選べる暮らし。 */
/* ------------------------------ */


.structure-container05 {
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 50px;
}

.structure-container05 h4 {
    color: #494949;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.structure-container05 p {
    color: #494949;
    line-height: 1.8;
    text-align: center;
}

.structure-box05 {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 50px;
}

.left-box05 {
    width: calc(50% - 30px);
}

.left-box05 img {
    width: 100%;
}

.right-box05 {
    width: calc(50% - 30px);
}

.right-box05 img {
    width: 100%;
}

.left-box05-title h5 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 400;
    color: #494949;
}

.left-box05-title p {
    color: #494949;
}


@media screen and (min-width:768px) and (max-width:999px) {
    .structure-box01 {
        padding: 30px;
    }

    .left-box01 {
        width: calc(40% - 15px);
    }

    .right-box01 {
        width: calc(60% - 15px);
    }

    .right-box01 h4 {
        font-size: 24px !important;
    }

    .structure-listbox {
        gap: 40px;
    }

    .structure-list01 {
        width: calc(50% - 20px);
    }
}

@media screen and (min-width:768px) and (max-width:999px) {
    .structure-box02 {
        padding: 30px;
    }

    .right-box02 h4 {
        font-size: 24px;
    }

    .right-box03 h5 {
        font-size: 22px;
    }
}

@media screen and (min-width:768px) and (max-width:999px) {
    .structure-container04 h4 {
        font-size: 24px;
    }

    .structure-container05 h4 {
        font-size: 24px;
    }

    .structure-box05 {
        gap: 50px;
    }

    .left-box05 {
        width: calc(50% - 25px);
    }

    .right-box05 {
        width: calc(50% - 25px);
    }
}



@media screen and (max-width:767px) {
    .structure-box01 {
        flex-direction: column;
        padding: 30px 20px;
    }

    .left-box01 {
        width: calc(100% - 0px);
    }

    .right-box01 {
        width: calc(100% - 0px);
    }

    .structure-listbox {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px 30px;
    }

    .structure-list01 {
        width: calc(100% - 0px);
    }
}

@media screen and (max-width:767px) {
    .structure-box02 {
        flex-direction: column;
        padding: 30px 20px;
    }

    .left-box02 {
        width: calc(100% - 0px);
    }

    .right-box02 {
        width: calc(100% - 0px);
    }

    .right-box03 img {
        max-width: 100%;
        width: 100%;
    }

    .structure-container04 {
        padding: 30px 20px;
    }

    .structure-box04 {
        flex-direction: column;
        gap: 20px;
    }

    .left-box04 {
        width: calc(100% - 0px);
    }

    .right-box04 {
        width: calc(100% - 0px);
    }

    .structure-container05 {
        padding: 30px 20px;
    }

    .structure-box05 {
        flex-direction: column;
    }

    .left-box05 {
        width: calc(100% - 0px);
    }

    .right-box05 {
        width: calc(100% - 0px);
    }
}

@media screen and (max-width:480px) {
.structure-container05 h4{
    font-size: 22px;
}
}

@media screen and (max-width:350px) {
    
    .structure-box01{
        padding: 30px 20px;
    }
    .structure-listbox{
        padding: 0 20px 30px;
    }
    .structure-box02{
        padding: 30px 20px;
    }
    .structure-container05 {
        padding: 30px 20px;
    }

    .structure-container05 h4 {
        font-size: 20px;
    }
    
}


@media screen and (max-width:350px) {
    .structure-container04{
        padding: 30px 20px;
    }
}

/* ------------------------------ */
/* precautions */
/* ------------------------------ */

.precautions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.precautions p {
    font-size: 10px;
}

/* ------------------------------ */
/* footer */
/* ------------------------------ */

.footer {
    padding: 1rem 0 2rem;
    font-size: 15px;
    color: #323232;
    background-color: #EEEDEA;
}

.footer_center_logo {
    text-align: center;
}

.footer_nav_area {
    margin: 50px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.footer_nav_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_nav_area li {
    width: calc(100% / 7);
}

.footer_nav_area a {
    display: block;
    padding: 15px 5px;
}


footer ul {
    padding: 0;
    list-style: none;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    color: #000;
}

footer hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
}


@media screen and (min-width:768px) and (max-width:999px) {
    .footer_nav_area li {
        width: calc(100% / 2);
    }

    .footer_nav_area {
        margin: 50px auto;
        padding: 0 20px;
        max-width: 350px;
    }
}


/* ------------------------------ */
/* contact */
/* ------------------------------ */

.contact_title {
    text-align: center;
    margin-bottom: 30px;
}

.contact_title img {
    width: 100%;
    max-width: 300px;
}
@media screen and (max-width:600px) {
    .contact_title img {
        max-width: 230px;
    }
}

.contact_btn_footer {
    margin: 25px auto;
    width: 100%;
    max-width: 250px;
}

.footer_contact_area h4 {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
}
@media screen and (max-width:600px) {
    .footer_contact_area h4 {
        font-size: 16px;
    }
}

.footer_contact_area .btn {
    position: relative;
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 15px 0;
    border: 2px solid #000;
    background-color: #fff;
    border-radius: 50px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    text-align: center;
    transition: all 0.5s;
}

.footer_contact_area .btn:hover {
    color: #fff !important;
    background: #000;
}

.footer_contact_area .btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    padding-left: 0;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.footer_contact_area .btn:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}



/* ------------------------------ */
/* slider */
/* ------------------------------ */

.item_container {
    background-color: #323232;
}


/*==================================================
スライダーのためのcss
===================================*/

.slider {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    overflow: visible;
}

/* 親要素でのみ横スクロールを隠す */
.item_container {
    overflow: hidden;
    padding-bottom: 50px;
}

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

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
    margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 10px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #ccc;
    border: 0px solid;
}

.slick-dots .slick-active button {
    background: #333;
    border: 3px solid #eee;
    width: 17px;
    height: 17px;
}

.slick-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sns_area ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sns_area li a {
    display: block;
    background-color: #eeedea;
    border-radius: 4px;
}

.sns_area li img {
    max-width: 50px;
}

@media screen and (max-width: 767px) {
    .slick-slide img {
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .sns_area {
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .sns_area ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sns_area ul::after {
        content: '';
        display: block;
        width: calc(100% / 6);
        /* ← 1アイテム分の幅 */
    }
}

@media screen and (min-width: 431px) {
    #sp-fixed-menu {
        display: none;
    }
}

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


    /*スマホ版のみ予約ボタン下部*/
    /*メニューをページ下部に固定*/
    #sp-fixed-menu {
        position: fixed;
        width: 100%;
        bottom: 0px;
        font-size: 0;
        opacity: 0.9;
        z-index: 99;
        overflow: hidden;
    }

    /*メニューを横並びにする*/
    #sp-fixed-menu ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #sp-fixed-menu li {
        justify-content: center;
        align-items: center;
        width: 50%;
        padding: 0;
        margin: 0;
        font-size: 13px;
        border-right: 1px solid #fff;
    }

    /*左側メニューを緑色に*/
    #sp-fixed-menu li:first-child {
        background: #323232;
    }

    /*中央メニューをオレンジ色に*/
    #sp-fixed-menu li:nth-child(2) {
        background: #323232;
    }

    /*左側メニューをオレンジ色に*/
    #sp-fixed-menu li:last-child {
        background: #B59948;
        border-right: 0px solid #000;
    }

    /*ボタンを調整*/
    #sp-fixed-menu li a {
        color: #fff;
        text-align: center;
        display: block;
        width: 100%;
        padding: 14px 20px;
    }

    /*#sp-fixed-menu .reserve_sp span {
        display: block;
        font-size: 12px;
    }*/

    /*#sp-fixed-menu .reserve_sp a {
        padding: 3px 20px;
    }*/

    .reserve_sp {
        width: 50% !important;
    }

    .contact_sp {
        width: 50% !important;
    }

    /*.contact_sp a {
        font-size: 12px !important;
        padding: 14px 2px !important;
    }*/

    .tel_sp {
        width: 20% !important;
    }

    .tel_sp a {
        font-size: 12px !important;
        padding: 14px 6px !important;
    }
}





footer .container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    text-align: center;
}

footer .flex-block {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
    justify-content: center;
}

footer .flex-block .item {
    width: 48%;
}

footer .flex-block .item img {
    width: 100%;
}

footer .flex-block .item.item-in {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    letter-spacing: 0;
    align-items: end;
    text-align: left;
}

footer .flex-block .item.item-in .item:nth-child(odd) {
    margin: 0 3% 0 0;
}

footer .f-text-s {
    font-size: 14px;
}

footer .f-text-s .copy {
    margin: 50px 0 0;
    text-align: center;
}

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

    footer .container {
        padding: 3% 15px;
        text-align: center;
    }

    .footer_nav_area ul {
        display: none;
    }

    .container-wrap.footer {
        padding: 3% 15px;
        text-align: center;
    }

    footer .container {
        width: 100%;
    }

    footer .logo {
        width: 250px;
        margin: 50px auto 0;
    }

    footer .flex-block {
        margin: 25px 0;
        flex-wrap: wrap;
    }

    footer .flex-block .item.item-in {
        text-align: center;
        font-size: 16px;
    }

    footer .flex-block .item.item-in .item:nth-child(odd) {
        width: 70%;
        margin: 0 auto 15px;
    }

    footer .flex-block .item.item-in .item:nth-child(even) {
        width: 70%;
        margin: 0 auto 30px;
    }

    footer .flex-block .item {
        width: 100%;
    }

    footer .flex-block .item.item-in {
        text-align: center;
        font-size: 16px;
    }

    footer .f-text-s .copy {
        margin: 30px 0 0;
    }
}
