@charset "UTF-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.6;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: 700;
}
img {
    display: block;
    width: 100%;
}


/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, 1366px);
    margin: 0 auto;
    padding: 0 min(6%, calc((1366px - 1200px) / 2));
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}

/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none500 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline500 {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
.pc-none__inline1400 {
    display: none;
}
@media (max-width: 1400px) {
.pc-none__inline1400 {
    display: inline;
}
}
@media (max-width: 1200px) {
.pc-none__inline1200 {
    display: inline;
}
}
@media (max-width: 768px) {
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none !important;
}
}
@media (max-width: 600px) {
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}
@media (max-width: 500px) {
.sp-none500 {
    display: none !important;
}
.pc-none500 {
    display: block;
}
.pc-none__inline500 {
    display: inline;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    font-family: var(--font-marugo);
    font-weight: 500;
    color: var(--color-brown);
}
a {
    color: var(--color-brown);
    text-decoration: none;
}
::selection {
    background: var(--color-green);
    color: #fff;
}
:root {
    --color-brown: #613E20;
    --color-green: #1E737E;
    --color-blue: #305370;
    --font-comf: "Comfortaa", sans-serif;
    --font-marugo: "Zen Maru Gothic", sans-serif;
}
.bg-brown {background-color: var(--color-brown);}
.bg-green {background-color: var(--color-green);}
.bg-blue {background-color: var(--color-blue);}
.bg-white {background-color: #fff;}
.color-white {color: #fff;a{color: #fff;}}
.color-brown {color: var(--color-brown);a{color: var(--color-brown);}}
.color-green {color: var(--color-green);a{color: var(--color-green);}}
.color-blue {color: var(--color-blue);a{color: var(--color-blue);}}
.font-comf {
    font-family: var(--font-comf);
    letter-spacing: 0;
}
.font-marugo {
    font-family: var(--font-marugo);
}

/* ------------------------------------- /
/  body
/* ------------------------------------- */
body {
    position: relative;
    background-color: #FFFAEF;
}
main {
    margin: 100px 0 0;
    overflow: hidden;
}
@media screen and (max-width:900px){
main {
    margin: 80px 0 0;
}
}
@media screen and (max-width:768px){
main {
    margin: 60px 0 0;
}
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 2.4%;
    background-color: #FFFAEF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.header_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 280px);
    transition-duration: 0.3s;
}
.header_logo:hover {
    opacity: 0.5;
}
.header_logo img {
    display: block;
    width: min(100%, 80px);
}
.header_logo h1 {
    display: block;
    width: calc(100% - 80px - 10px);
    font-size: 3.0rem;
}
.header_nav_wrapper {
    width: min(calc(100% - 280px - 20px), 620px);
}
.header_nav_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(calc(100% - 250px - 10px), 310px);
    font-weight: bold;
}
.header_nav_column {
    display: flex;
    align-items: center;
    position: relative;
}
    .header_nav_column > a {
        display: inline-block;
        padding: 5px 0;
        text-decoration: none;
        line-height: 1.3;
        position: relative;
    }
    .header_nav_column > a::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--color-brown);
        position: absolute;
        left: 0;
        bottom: 0;
        transition-duration: 0.2s;
        transition-timing-function: ease-out;
        transform: translateY(5px);
        opacity: 0;
    }
    .header_nav_column > a:hover::before {
        opacity: 1;
        transform: translateY(0);
    }
.header_nav_logo {
    display: none;
}
.header_nav_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 255px);
}
    .header_nav_contact > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: min(100%, 50px);
        aspect-ratio: 1/1;
        border-radius: 3px;
        padding: 5px;
        font-size: 1.2rem;
        line-height: 1.4;
        transition-duration: 0.3s;
        border: 1px var(--color-green) solid;
    }
    .header_nav_contact > a:hover {
        background-color: #fff;
        color: var(--color-green);
    }
.header_nav_contact_list {
    width: calc(100% - 60px);
    padding: 5px 0 0;
}
    .header_nav_contact_list li {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 1.7rem;
        line-height: 1.0;
    }
    .header_nav_contact_list li > a,
    .header_nav_contact_list span {
        font-size: 1.35em;
    }
    .header_nav_contact_list span {
        padding-right: 5px;
    }
    .header_nav_contact_list a:hover {
        opacity: 0.5;
    }
.header_nav_trigger {
    display: none;
}
@media screen and (max-width:900px){
.header_logo {
    width: min(100%, 200px);
}
.header_logo img {
    width: min(100%, 60px);
}
.header_logo h1 {
    width: calc(100% - 60px - 15px);
    font-size: 1.9rem;
}
.header_nav_wrapper {
    width: min(calc(100% - 200px - 20px), 560px);
}
.header_nav {
    width: calc(100% - 230px - 10px);
}
.header_nav_contact {
    width: min(100%, 230px);
}
    .header_nav_contact_list li > a,
    .header_nav_contact_list span {
        font-size: 1.1em;
    }
    .header_nav_contact_list span {
        padding-right: 4px;
    }
}
@media screen and (max-width:768px){
header {
    display: block;
    padding: 0 2.4%;
}
.header_nav_wrapper {
    width: min(calc(100vw - 30px), 400px);
    height: 100vh;
    background-color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition-duration: 0.5s;
    transition-timing-function: ease;
    z-index: 1;
}
.header_nav_wrapper.active {
    transform: translateX(0);
}
.header_nav_inner {
    display: block;
    width: 100%;
    max-height: 100vh;
    overflow: auto;
    margin: 0 auto;
    padding: 55px 20px 25px;
}
.header_nav_logo {
    display: block;
    width: min(100%, 130px);
    margin: 0 auto;
}
    .header_nav_logo img {
        aspect-ratio: 10/7;
        object-fit: cover;
    }
    .header_nav_logo p {
        font-size: 2.0rem;
    }
.header_nav {
    display: block;
    width: 100%;
    margin: 20px 0 0;
}
.header_nav_column {
    display: block;
    padding: 10px 0;
    border-bottom: 1px var(--color-brown) solid;
}
    .header_nav_column > a {
        display: block;
        padding: 15px 0;
        text-align: center;
    }
    .header_nav_column > a::before {
        display: none;
    }
.header_nav_contact {
    width: min(100%, 260px);
    margin: 20px auto 0;
}
    .header_nav_contact_list li > a,
    .header_nav_contact_list span {
        font-size: 1.35em;
    }
    .header_nav_contact_list span {
        padding-right: 5px;
    }
.header_nav_trigger {
    display: block;
    width: 30px;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 2;
}
    .header_nav_trigger div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        aspect-ratio: 30/22;
        position: relative;
    }
    .header_nav_trigger span {
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--color-brown);
    }

.header_nav_trigger.active div {
    justify-content: center;
    transform: rotateZ(45deg);
}
.header_nav_trigger.active span:last-child {
    display: none;
}
.header_nav_trigger.active span:first-child {
    position: absolute;
    width: 20px;
    transform: rotateZ(90deg);
}
.header_nav_trigger.active span:nth-child(2) {
    width: 20px;
}
}

/* ------------------------------------- /
/  index_mv
/* ------------------------------------- */
.index_mv_wrapper {
    padding: 0 33px;
    position: relative;
}
.index_mv {
    width: 100%;
    aspect-ratio: 1300/620;
    border-radius: 10px;
    background-image: url('../img/slider_01.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.index_mv::after {
    content: '';
    display: block;
    width: 48%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(97, 62, 32, 0.5), rgba(97, 62, 32, 0));
}
.index_mv_text {
    width: 60%;
    position: absolute;
    left: 3.5%;
    bottom: 11%;
    z-index: 1;
}
@media screen and (max-width:768px){
.index_mv_wrapper {
    padding: 0 20px;
}
.index_mv {
    aspect-ratio: 350/420;
    max-height: 600px;
}
.index_mv::after {
    width: 100%;
    height: 48%;
    background-image: linear-gradient(0deg, rgba(97, 62, 32, 0.5), rgba(97, 62, 32, 0));
}
.index_mv_text {
    width: min(93%, 550px);
}
}

/* ------------------------------------- /
/  index_h2
/* ------------------------------------- */
.index_h2 {
    line-height: 1.2;
    position: relative;
}
.index_h2::before {
    content: '';
    display: block;
    width: 16px;
    aspect-ratio: 16/14;
    background-image: url('../img/h2_dot_01.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
}
.index_h2::after {
    content: '';
    display: block;
    width: 16px;
    aspect-ratio: 16/14;
    background-image: url('../img/h2_dot_02.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
}
    .index_h2 p {
        font-size: 3.8rem;
    }
    .index_h2 h2 {
        margin: 5px 0 0;
        font-size: 1.8rem;
    }
.index_stores .index_h2::before {
    left: calc(50% - 165px);
}
.index_stores .index_h2::after {
    right: calc(50% - 165px);
}
.index_access .index_h2::before {
    left: calc(50% - 93px);
}
.index_access .index_h2::after {
    right: calc(50% - 93px);
}
.index_contact .index_h2::before {
    left: calc(50% - 100px);
}
.index_contact .index_h2::after {
    right: calc(50% - 100px);
}
.index_service .index_h2::before {
    left: calc(50% - 145px);
}
.index_service .index_h2::after {
    right: calc(50% - 145px);
}
.index_company .index_h2::before {
    left: calc(50% - 115px);
}
.index_company .index_h2::after {
    right: calc(50% - 115px);
}
@media screen and (max-width:768px){
    .index_h2 p {
        font-size: 3.2rem;
    }
    .index_h2 h2 {
        font-size: 1.5rem;
        margin: 0;
    }
.index_stores .index_h2::before {
    left: calc(50% - 140px);
}
.index_stores .index_h2::after {
    right: calc(50% - 140px);
}
.index_access .index_h2::before {
    left: calc(50% - 80px);
}
.index_access .index_h2::after {
    right: calc(50% - 80px);
}
.index_contact .index_h2::before {
    left: calc(50% - 90px);
}
.index_contact .index_h2::after {
    right: calc(50% - 90px);
}
.index_service .index_h2::before {
    left: calc(50% - 125px);
}
.index_service .index_h2::after {
    right: calc(50% - 125px);
}
.index_company .index_h2::before {
    left: calc(50% - 100px);
}
.index_company .index_h2::after {
    right: calc(50% - 100px);
}
}


/* ------------------------------------- /
/  stores
/* ------------------------------------- */
.index_stores {
    background-image: url('../img/line_bg_01.svg');
    background-position: left 50% top 50px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.index_stores_det {
    width: min(100%, 800px);
    margin: 0 auto;
    line-height: 1.875;
}
.index_stores_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.index_stores_img {
    width: min(46%, 530px);
    border-radius: 100px 10px;
}
.index_stores_right {
    width: 50%;
}
.index_stores_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px var(--color-brown) solid;
    padding: 18px 0;
}
    .index_stores_column dt {
        width: min(100%, 110px);
    }
    .index_stores_column dd {
        width: calc(100% - 110px);
    }
.index_stores_time {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: min(100%, 160px);
}
@media screen and (max-width:768px){
.index_stores {
    background-position: left 35% top 50px;
    background-size: 770px auto;
}
.index_stores_wrapper {
    flex-direction: column-reverse;
    row-gap: 50px;
}
.index_stores_img {
    width: min(100%, 420px);
}
.index_stores_right {
    width: min(100%, 420px);
}
}
@media screen and (max-width:500px){
.index_stores_det {
    font-size: 1.5rem;
    line-height: 1.7;
}
.index_stores_column {
    padding: 10px 0;
    font-size: 1.5rem;
}
    .index_stores_column dt {
        width: 100%;
    }
    .index_stores_column dd {
        width: 100%;
        margin: 5px 0 0;
    }
}

/* ------------------------------------- /
/  access
/* ------------------------------------- */
.index_access {
    padding-top: max(min(9vw, 120px), 80px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.index_access_map {
    border-radius: 30px;
    overflow: hidden;
}
.index_access_map iframe {
    display: block;
    width: 100%;
    height: 360px;
}

@media screen and (max-width:500px){
.index_access_det {
    font-size: 1.5rem;
    line-height: 1.7;
    padding-bottom: 10px;
}
.index_access_map {
    border-radius: 20px;
}
}


/* ------------------------------------- /
/  contact
/* ------------------------------------- */
.index_contact {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    position: relative;
}
.index_contact::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1420/283;
    background-image: url('../img/line_bg_01.svg');
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    top: -10.1vw;
    left: 0;
}
.index_contact::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1429/160;
    background-image: url('../img/line_bg_02.svg');
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -3vw;
    left: 0;
}
    .index_contact .inner {
        position: relative;
        z-index: 1;
    }
.index_contact_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: min(100%, 1140px);
    margin: 0 auto;
}
.index_contact_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(49.2%, 560px);
    min-height: 142px;
    padding: 10px 0;
    color: #fff;
    border-radius: 20px;
    transition-duration: 0.3s;
}
.index_contact_button:hover {
    transform: translateY(-10px);
    opacity: 0.8;
}
    .index_contact_button > div:first-child {
        font-size: 2.2rem;
    }
.index_contact_button.tel {
    background-color: var(--color-blue);
}
.index_contact_button.mail {
    background-color: var(--color-green);
}
.index_contact_tel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    margin: 18px 0 0;
    font-size: 2.0rem;
    line-height: 1.5;
}
    .index_contact_tel span {
        font-size: 1.3em;
    }
    .index_contact_tel p:first-child span,
    .index_contact_tel p:last-child span {
        margin-left: 5px;
    }
.index_contact_mail {
    margin: 18px 0 0;
    font-size: 2.6rem;
    line-height: 1.5;
}
@media screen and (max-width:1100px){
.index_contact_tel {
    flex-direction: column;
    column-gap: 0;
    margin: 10px 0 0;
}
    .index_contact_tel p:nth-child(2) {
        display: none;
    }
}
@media screen and (max-width:900px){
.index_contact_mail {
    font-size: 2.2rem;
}
}
@media screen and (max-width:768px){
.index_contact::before {
    width: 770px;
    left: max(calc(100vw - 770px), -120px);
}
.index_contact::after {
    width: 770px;
    left: max(calc(100vw - 770px), -220px);
}
.index_contact_wrapper {
    flex-direction: column;
    row-gap: 16px;
}
.index_contact_button {
    width: 100%;
}
}
@media screen and (max-width:650px){
}
@media screen and (max-width:600px){
.index_contact_button {
    min-height: 110px;
    padding: 0;
}
.index_contact_button.tel {
    padding-top: 5px;
}
    .index_contact_button > div:first-child {
        font-size: 1.8rem;
    }
.index_contact_tel {
    margin: 6px 0 0;
    font-size: 1.4rem;
}
.index_contact_mail {
    margin: 10px 0 0;
    font-size: 1.6rem;
}
}


/* ------------------------------------- /
/  service
/* ------------------------------------- */
.index_service_det {
    width: min(100%, 800px);
    margin: 0 auto;
    line-height: 1.875;
}
.index_service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 50px;
}
.index_service_column {
    width: min(31.4%, 160px);
}
    .index_service_column p {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 50px;
        font-size: 2.0rem;
        line-height: 1.2;
    }
.index_service_other {
    width: min(100%, 1000px);
    margin: 0 auto;
    padding: 0 25px;
    border-radius: 10px;
}
    .index_service_other h3 {
        font-size: 2.0rem;
    }
    .index_service_other ul {
        width: min(100%, 800px);
        margin: 0 auto;
        font-size: 1.4rem;
    }
    .index_service_other li {
        padding-left: 1em;
        position: relative;
    }
    .index_service_other li:not(:first-child) {
        margin: 10px 0 0;
    }
    .index_service_other li::before {
        content: '●';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }
@media screen and (max-width:1280px){
.index_service_list {
    width: min(100%, 600px);
    margin: 0 auto;
}
}
@media screen and (max-width:768px){
.index_service_list {
    column-gap: 10px;
}
}
@media screen and (max-width:600px){
    .index_service_column p {
        min-height: 45px;
        font-size: 1.8rem;
    }
}
@media screen and (max-width:500px){
.index_service_det {
    font-size: 1.5rem;
    line-height: 1.7;
}
    .index_service_column p {
        font-size: 1.5rem;
    }
}

/* ------------------------------------- /
/  service
/* ------------------------------------- */
.index_company_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1000px);
    margin: 0 auto;
}
.index_company_left {
    width: min(46%, 530px);
}
.index_company_img {
    width: min(100%, 240px);
    margin: 0 auto;
    aspect-ratio: 10 / 7;
    object-fit: cover;
}
.index_company_right {
    width: 50%;
}
.index_company_right:first-child {
    width: min(100%, 600px);
    margin: 0 auto;
}
.index_company_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px var(--color-brown) solid;
    padding: 18px 0;
}
    .index_company_column dt {
        width: min(100%, 110px);
    }
    .index_company_column dd {
        width: calc(100% - 110px);
    }

@media screen and (max-width:768px){
.index_company_wrapper {
    flex-direction: column-reverse;
    row-gap: 30px;
}
.index_company_left {
    width: min(100%, 420px);
}
.index_company_right {
    width: min(100%, 420px);
}
.index_company_right:first-child {
    width: min(100%, 420px);
}
}
@media screen and (max-width:500px){
.index_company_det {
    font-size: 1.5rem;
}
.index_company_column {
    padding: 10px 0;
    font-size: 1.5rem;
}
    .index_company_column dt {
        width: 100%;
    }
    .index_company_column dd {
        width: 100%;
        margin: 5px 0 0;
    }
}



/* ------------------------------------- /
/  footer
/* ------------------------------------- */
@media screen and (max-width:600px){
.copyright {
    font-size: 1.4rem;
}
}
