:root {
    --main-color: #052e25;
    --sub-color: #122117;
}
* {
    box-sizing: border-box;
}
body {
    font-family: "Noto Serif JP", serif;
    margin: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

/* **************************
共通パーツ
************************** */
.ttl001 {
    font-size: min(calc(55 / 1529 * 100vw), 55px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 0.5em;
}
.ttl001 h2 {
    font-size: 50%;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0;
    font-weight: normal;
}
.ttl001 .en {
    font-size: 100%;
    text-align: center;
    line-height: 1;
}
.wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.two_in_one {
    display: flex;
    gap: 25px;
}
.two_in_one > div {
    width: 50%;
}
.three_in_one {
    display: flex;
    flex-wrap: wrap;
}
.three_in_one > div {
    width: calc(100% / 3);
}
.btn001 a {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0.75em 1.5em;
    background-color: var(--sub-color);
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    margin-inline: auto;
}
.btn001 a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 15px;
}
.btn001 a:hover {
    opacity: 0.75;
}
.image img {
    width: 100%;
    display: block;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table th {
    border-bottom: 1px solid var(--main-color);
    font-weight: normal;
    padding: 1.5em 1.5em 0.75em;
    text-align: left;
    font-size: 16px;
}
table td {
    border-bottom: 1px solid #aaa;
    padding: 1.5em 1.5em 0.75em;
    font-size: 14px;
}
br.sp {
    display: none;
}
@media (max-width: 767px) {
    br {
        display: none;
    }
    br.sp {
        display: block;
    }
    .wrap {
        padding: 0 15px;
    }
    .two_in_one {
        flex-wrap: wrap;
    }
    .two_in_one > div {
        width: 100%;
    }
    .ttl001 {
        font-size: calc(38 / 375 * 100cqi);
        margin-bottom: 30px;
    }
    table th {
        display: block;
        width: fit-content;
        padding: 0 0.5em;
        padding-right: 2.5em;
    }
    table td {
        display: block;
        border-bottom: none;
        padding: 0.5em 1em;
        margin-bottom: 1em;
    }
}
@media (min-width: 768px) and (max-width: 1050px) {
    .ttl001 {
        font-size: min(calc(45 / 810 * 100vw), 45px);
    }
}

/* **************************
ヘッダー
************************** */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
header.first_view {
    background-color: transparent;
    box-shadow: none;
}
header .logo {
    max-width: 300px;
    width: 100%;
}
header .logo .logo01 {
    display: none;
}
header .logo .logo02 {
    display: block;
}
header.first_view .logo .logo01 {
    display: block;
}
header.first_view .logo .logo02 {
    display: none;
}
header .menu_toggle {
    display: none;
}
header .menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
header .menu ul > li {
    text-align: center;
}
header .menu ul > li a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #000;
    padding: 0.75em 1.5em;
    font-size: 18px;
}
header .menu ul > li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--main-color);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s;
}
header.first_view .menu ul > li a::after {
    background-color: #fff;
}
header .menu ul > li a:hover::after {
    transform: scale(1, 1);
}
header .menu ul > li a span {
    display: block;
    font-size: 70%;
}
header.first_view .menu ul > li a {
    color: #fff;
}
@media (max-width: 767px) {
    header,
    header.first_view:has(.menu.active) {
        --current-color: #000;
    }
    header.first_view {
        --current-color: #fff;
    }
    header {
        padding: 10px;
    }
    header .logo {
        width: 70%;
        position: relative;
        z-index: 2;
    }
    header:has(.menu.active) .logo .logo01 {
        display: none;
    }
    header:has(.menu.active) .logo .logo02 {
        display: block;
    }
    header .menu_toggle {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        padding: 10px;
        color: var(--current-color);
        font-size: 10px;
        text-align: center;
        line-height: 1;
    }
    header .menu_toggle label {
        position: relative;
        display: block;
        width: 70%;
        height: 20px;
        aspect-ratio: 1;
        margin: 0 auto;
        margin-bottom: auto;
    }
    header .menu_toggle label span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--current-color);
        transition: 0.3s;
    }
    header .menu_toggle label span:first-child {
        transform-origin: top left;
        top: 0;
    }
    header .menu_toggle label span:nth-child(2) {
        transform-origin: center;
        top: 50%;
    }
    header .menu_toggle label span:last-child {
        transform-origin: top left;
        bottom: 0;
    }
    header .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: block;
        transform: translateX(100%);
        transition: 0.3s;
        z-index: 1;
        padding-top: 80px;
    }
    header .menu.active {
        transform: translateX(0);
    }
    header .menu::before {
        content: "";
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--main-color);
    }
    header .menu ul {
        display: block;
    }
    header .menu ul > li {
        border-bottom: 1px dashed #aaa;
        text-align: left;
    }
    header .menu ul > li a,
    header.first_view .menu ul > li a {
        color: #000;
        padding: 0.75em;
        display: flex;
        align-items: center;
        gap: 0.5em;
    }
    header .menu ul > li a::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        background-color: var(--main-color);
        transform: rotate(45deg);
        margin-right: 10px;
    }

    header .menu_toggle.active label span:first-child {
        transform: translateX(15%) rotate(45deg);
    }
    header .menu_toggle.active label span:nth-child(2) {
        transform: scaleX(0);
    }
    header .menu_toggle.active label span:last-child {
        transform: translateX(15%) rotate(-45deg);
    }
}
@media (min-width: 768px) and (max-width: 1050px) {
    header {
        padding-inline: 15px;
    }
    header .logo {
        max-width: 200px;
    }
    header .menu ul > li a {
        font-size: 16px;
        padding-inline: 1em;
    }
}

/* **************************
メインビジュアル
************************** */
#main_visual {
    position: relative;
    height: 100vh;
}
#main_visual .media_contents {
    position: relative;
    z-index: 1;
    height: 100vh;
}
/*
#main_visual .media_contents::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#fff 30%, transparent 30%),
        radial-gradient(#fff 30%, transparent 30%);
    background-size: 6px 6px;
    background-position: 0 0, 3px 3px;
    opacity: 0.1;
}
    */
#main_visual .media_contents video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#main_visual .scroll_effect {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#main_visual .scroll_effect::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 80px;
    background-color: #fff;
    animation: scroll_effect_before 1s linear infinite;
    transform-origin: top;
    transform: scaleY(0);
}
@keyframes scroll_effect_before {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }
    49.9999% {
        transform-origin: top;
    }
    50% {
        transform-origin: bottom;
        transform: scaleY(1);
    }
    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}
#main_visual .scroll_effect::after {
    content: "";
    display: block;
    margin-inline: auto;
    width: 7px;
    height: 7px;
    background-color: #fff;
    transform: rotate(45deg);
}

/* **************************
ファイブセンスについて
************************** */
#top_about {
    position: relative;
    padding-top: 80px;
    padding-left: 5%;
    z-index: 2;
}
#top_about::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.1;
    z-index: -1;
}
#top_about .contents {
    display: grid;
    align-items: center;
    grid-template-columns: 5fr 4fr;
    gap: 3% 5%;
}
#top_about .contents .text_contents {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-left: 5%;
    container-type: inline-size;
}
#top_about .contents .image {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#top_about .contents .image img {
    object-fit: cover;
}
#top_about .contents .image.right {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-bottom: 20%;
}
#top_about .contents .image.right img {
    aspect-ratio: 9 / 16;
    object-position: 25%;
}
#top_about .contents .image.bottom {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
#top_about .contents .image.bottom img {
    aspect-ratio: 3 / 2;
}
#top_about .text_contents .title {
    margin-bottom: 50px;
}
#top_about .text_contents .title .en {
    font-size: calc(60 / 773 * 100cqi);
    line-height: 1.25;
    letter-spacing: 0.05em;
}
#top_about .text_contents .title h2 {
    font-size: calc(28 / 773 * 100cqi);
    font-weight: normal;
    margin: 0;
    margin-top: 10px;
}
#top_about .text_contents .text p {
    margin: 0;
    margin-bottom: 2em;
}
#top_about .text_contents .text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    #top_about {
        padding-top: 50px;
        padding-inline: 15px;
    }
    #top_about .contents {
        grid-template-columns: auto;
        grid-template-rows: auto;
        gap: 30px;
    }
    #top_about .contents .text_contents {
        grid-row: auto;
        grid-column: auto;
        order: 1;
        padding: 0;
    }
    #top_about .contents .image {
        width: 90%;
        margin-inline: auto;
    }
    #top_about .contents .image.right {
        grid-row: auto;
        grid-column: auto;
        order: 2;
        margin-right: -15px;
        margin-bottom: 0;
    }
    #top_about .contents .image.bottom {
        grid-row: auto;
        grid-column: auto;
        order: 3;
        margin-left: -15px;
    }
    #top_about .text_contents .title {
        margin-bottom: 30px;
    }
    #top_about .text_contents .title .en {
        font-size: calc(50 / 375 * 100cqi);
    }
    #top_about .text_contents .title h2 {
        font-size: calc(25 / 375 * 100cqi);
    }
    #top_about .text_contents .title .en br{
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1020px) {
    #top_about {
        padding-top: 50px;
        padding-left: 15px;
    }
    #top_about .text_contents .title .en {
        font-size: calc(50 / 399 * 100cqi);
    }
    #top_about .text_contents .title h2 {
        font-size: calc(27 / 399 * 100cqi);
    }
    #top_about .contents {
        grid-template-columns: 3fr 2fr;
        gap: 30px;
    }
    #top_about .contents .image.right {
        align-self: flex-start;
        margin-bottom: 0;
        margin-top: 15%;
    }
}

/* **************************
ファイブセンスの特徴
************************** */
#top_feature {
    position: relative;
    z-index: 1;
    margin-top: -50px;
    padding-top: 150px;
    padding-bottom: 80px;
    background-color: var(--main-color);
    overflow-x: hidden;
}
#top_feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 70%;
    width: 100%;
    height: 100%;
    background-color: var(--sub-color);
    transform: skewX(-45deg);
    z-index: -1;
}
#top_feature .item {
    padding-inline: 5%;
    margin-bottom: 50px;
}
#top_feature .item:last-child {
    margin-bottom: 0;
}
#top_feature .item .two_in_one {
    gap: 50px;
    align-items: center;
}
#top_feature .item .image_contents {
    width: 40%;
}
#top_feature .item .text_contents {
    width: 60%;
    container-type: inline-size;
}
#top_feature .item .text_contents .title {
    display: flex;
    align-items: center;
    letter-spacing: 0.075em;
    margin-bottom: 30px;
}
#top_feature .item .text_contents .title .en {
    font-size: calc(60 / 730 * 100cqi);
    color: #fff;
    display: flex;
    align-items: center;
}
#top_feature .item .text_contents .title .en::after {
    content: "";
    display: block;
    width: 2.5em;
    height: 1px;
    background-color: #fff;
    margin-inline: 0.5em;
}
#top_feature .item .text_contents .title h2 {
    font-size: 20px;
    color: #fff;
    font-weight: normal;
    margin: 0;
}
#top_feature .item .text_contents .text {
    color: #fff;
    padding-left: 15px;
}
@media (max-width: 767px) {
    #top_feature {
        padding-top: 100px;
        padding-bottom: 0;
    }
    #top_feature::before {
        transform: skewX(-20deg);
        left: -70%;
        width: 300%;
    }
    #top_feature .item {
        padding: 0;
    }
    #top_feature .item .two_in_one {
        flex-direction: column-reverse;
        gap: 15px;
    }
    #top_feature .item .text_contents {
        width: 100%;
        padding-inline: 15px;
    }
    #top_feature .item .text_contents .title {
        margin-bottom: 15px;
    }
    #top_feature .item .text_contents .title .en {
        font-size: calc(45 / 375 * 100cqi);
    }
    #top_feature .item .text_contents .title h2 {
        font-size: calc(23 / 375 * 100cqi);
    }
    #top_feature .item .text_contents .title .en::after {
        width: 1.25em;
    }
    #top_feature .item .text_contents .text {
        padding-inline: 15px;
        font-size: 14px;
    }
    #top_feature .item .image {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1020px) {
    #top_feature {
        padding-top: 120px;
    }
    #top_feature .item {
        padding-inline: 15px;
    }
    #top_feature .item .two_in_one {
        gap: 30px;
        align-items: stretch;
    }
    #top_feature .item .two_in_one .image {
        width: 40%;
    }
    #top_feature .item .two_in_one .image img {
        height: 100%;
        object-fit: cover;
        object-position: 10%;
    }
    #top_feature .item .two_in_one .text_contents {
        width: 60%;
    }
}

/* **************************
会社概要
************************** */
#top_company {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
#top_company::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--main-color);
    opacity: 0.1;
    z-index: -1;
}
#top_company .box {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    outline: 1px solid var(--main-color);
    outline-offset: -15px;
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
}
#top_company .table_contents {
    font-size: 18px;
}
@media (max-width: 767px) {
    #top_company {
        padding: 50px 0;
    }
    #top_company .box {
        padding: 30px;
        outline-offset: -10px;
    }
    #top_company .table_contents table tbody > tr:last-child td {
        margin-bottom: 0;
    }
}

/* **************************
店舗情報
************************** */
#top_shop {
    padding: 80px 0;
}
#top_shop .ttl001 {
    position: relative;
    justify-content: flex-start;
    margin-bottom: 70px;
}
#top_shop .ttl001::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 0.5em);
    width: 100vw;
    height: 1px;
    background-color: #000;
}
#top_shop .two_in_one {
    gap: 50px;
    padding-inline: 5%;
}
#top_shop .text_contents {
    margin-top: 25px;
}
#top_shop .text_contents .logo {
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 15px;
}
#top_shop .text_contents .name {
    position: relative;
    font-size: 20px;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#top_shop .text_contents .name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background-color: #000;
}
#top_shop .text_contents .text {
    text-align: center;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    #top_shop {
        padding: 50px 0;
    }
    #top_shop .ttl001 {
        margin-bottom: 50px;
        margin-left: 20px;
    }
    #top_shop .ttl001::before {
        right: calc(100% + 0.25em);
    }
    #top_shop .text_contents {
        padding-inline: 5%;
    }
    #top_shop .text_contents .name {
        font-size: 18px;
    }
    #top_shop .text_contents .text {
        font-size: 14px;
    }
    #top_shop .text_contents .logo {
        max-width: 250px;
    }
    #top_shop .text_contents .btn001 {
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 1020px) {
    #top_shop .ttl001 {
        margin-left: 50px;
    }
}

/* **************************
フッター
************************** */
footer {
    background-color: var(--sub-color);
    padding-top: 50px;
}
footer .logo {
    max-width: 350px;
    width: 100%;
    margin-inline: auto;
}
footer .menu ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
footer .menu ul > li a {
    display: block;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    padding: 0.75em 2.5em;
}
footer .menu ul > li a span {
    display: block;
    font-size: 70%;
}
footer .menu ul > li a:hover {
    opacity: 0.75;
}
footer address {
    text-align: center;
    background-color: #fff;
    padding: 5px 0;
    font-size: 14px;
    font-style: normal;
}
@media (max-width: 767px) {
    footer {
        padding-top: 30px;
    }
    footer .menu {
        display: none;
    }
    footer .logo {
        max-width: 250px;
        margin-bottom: 30px;
    }
    footer address {
        font-size: 12px;
    }
}
