@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}
@media (max-width: 540px) {
    html {
        font-size: 53.5%;
    }
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
    color: inherit;
    display: block;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
    line-height: 1.75;
    font-weight: 500;
    font-family: "Shippori Mincho", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.75;
    font-weight: 500;
    font-family: "Shippori Mincho", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

body {
    font-size: 1.6rem;
    color: #444;
}
body.-noscroll {
    overflow: hidden;
}

main {
    overflow-x: clip;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
    transition: 0.5s;
}

::-moz-selection {
    color: #fff;
    background-color: #2A305C;
}

::selection {
    color: #fff;
    background-color: #2A305C;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
}
.hd_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    margin: 0 auto;
    padding: 0 0;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.hd_inner.-active {
    background-color: #fff;
}
.hd_logo a {
    padding: 20px 15px;
}
.hd_logo a img {
    width: 160px;
    transition: none;
}
@media (max-width: 540px) {
    .hd_logo a img {
        width: 120px;
    }
}
.hd_logo a:hover {
    opacity: 0.8;
}
.hd_content {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
.hd_nav {
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .hd_nav {
        display: none;
    }
}
.hd_nav .nav_list {
    display: flex;
    margin-right: 15px;
}
.hd_nav .nav_item {
    position: relative;
}
.hd_nav .nav_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25em 1.25em;
    position: relative;
    font-size: 1.8rem;
    transition: 0.5s color;
}
.hd_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 1.25em;
    bottom: 1em;
    width: 2em;
    height: 1px;
    background: #2A305C;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_nav .nav_link:hover {
    color: #2A305C;
}
.hd_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_nav .nav_pulldown .pulldown_list {
    position: absolute;
    top: 70px;
    left: 1em;
    width: 180px;
    background-color: #fff;
    padding: 0 15px;
    display: none;
    box-shadow: 0 0 10px 0 rgba(68, 68, 68, 0.1);
}
.hd_nav .nav_pulldown .pulldown_item {
    border-bottom: 1px solid #aaa;
    position: relative;
}
.hd_nav .nav_pulldown .pulldown_item:last-child {
    border-bottom: none;
}
.hd_nav .nav_pulldown .pulldown_link {
    padding: 1em 0;
    line-height: 1.35;
}
.hd_nav .nav_pulldown .pulldown_link:hover {
    color: #2A305C;
}
.hd_insta {
    margin-right: 15px;
    position: relative;
    width: 1.75em;
    height: 1.75em;
    -webkit-mask-image: url(../img/cmn/icon_insta.svg);
    mask-image: url(../img/cmn/icon_insta.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #1a1a1a;
}
.hd_insta:hover {
    background-color: #2A305C;
}
@media (max-width: 1280px) {
    .hd_insta {
        display: none;
    }
}
@media (min-width: 1281px) {
    .hd_menu {
        display: none;
    }
}
.hd_menu .menu_btn {
    position: relative;
    cursor: pointer;
    width: 4.5em;
    height: 4.5em;
    align-items: center;
    display: flex;
    z-index: 999;
    transition: all 0.5s;
}
.hd_menu .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 2px;
    border-radius: 5px;
    background-color: #2A305C;
    transition: 0.5s background-color;
}
@media (max-width: 540px) {
    .hd_menu .menu_btn span {
        width: 45%;
    }
}
.hd_menu .menu_btn span:nth-of-type(1) {
    top: 27.5%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(2) {
    top: 44.5%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(3) {
    top: 52.5%;
    height: 0;
}
@media (max-width: 540px) {
    .hd_menu .menu_btn span:nth-of-type(3) {
        top: 52.5%;
    }
}
.hd_menu .menu_btn span:nth-of-type(3)::after {
    content: "MENU";
    color: #2A305C;
    font-weight: 700;
    word-break: normal;
    font-family: "Libre Baskerville", serif;
    font-size: 1.2rem;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% 0%;
    transition: 0.5s color;
}
.hd_menu .menu_btn.-active span:nth-of-type(1) {
    top: 35%;
    rotate: -45deg;
    width: 35%;
}
.hd_menu .menu_btn.-active span:nth-of-type(2) {
    top: 35%;
    rotate: 45deg;
    width: 35%;
}
.hd_menu .menu_btn.-active span:nth-of-type(3)::after {
    content: "CLOSE";
}
.hd_menu .menu_bg {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.9);
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    z-index: 998;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.hd_menu .menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    padding: 0 5%;
}
.hd_menu .menu_content {
    margin: 90px auto;
    max-width: 700px;
    width: 100%;
    height: auto;
    overflow-y: auto;
}
@media (max-width: 840px) {
    .hd_menu .menu_content {
        margin: 70px auto;
    }
}
.hd_menu .menu_logo img {
    width: 340px;
}
@media (max-width: 540px) {
    .hd_menu .menu_logo img {
        width: 280px;
    }
}
.hd_menu .menu_logo:hover {
    opacity: 0.8;
}
.hd_menu .menu_nav {
    margin: 2em 0 0.5em;
    padding: 30px 0;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    display: flex;
    gap: 0 15%;
}
@media (max-width: 840px) {
    .hd_menu .menu_nav {
        gap: 0 10%;
    }
}
.hd_menu .menu_nav .nav_list {
    display: inline-flex;
    flex-direction: column;
    gap: 1.75em 0px;
    width: 42.5%;
}
@media (max-width: 840px) {
    .hd_menu .menu_nav .nav_list {
        width: 45%;
    }
}
.hd_menu .menu_nav .nav_item {
    position: relative;
}
.hd_menu .menu_nav .nav_link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    font-size: clamp(2rem, 2vw, 2.4rem);
    transition: 0.5s color;
}
.hd_menu .menu_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0em;
    bottom: -0.25em;
    width: 2em;
    height: 1px;
    background: #2A305C;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_menu .menu_nav .nav_link:hover {
    color: #2A305C;
}
.hd_menu .menu_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_menu .menu_nav .nav_sub {
    margin-top: 0.75em;
    margin-left: 2.5em;
}
.hd_menu .menu_nav .nav_sub .sub_list {
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
}
.hd_menu .menu_nav .nav_sub .sub_link {
    padding: 0.125em 0;
    position: relative;
    line-height: 1.35;
}
.hd_menu .menu_nav .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1em;
    translate: 0 -50%;
    width: 0.75em;
    height: 1px;
    background-color: #444;
}
.hd_menu .menu_nav .nav_sub .sub_link:hover {
    color: #2A305C;
}
.hd_menu .menu_privacypolicy {
    margin-top: 0.5em;
    margin-left: 1em;
    padding: 0.15em 0;
    position: relative;
    font-weight: 600;
}
.hd_menu .menu_privacypolicy::before {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: -1em;
    width: 0.75em;
    height: 1px;
    background-color: #1a1a1a;
}
.hd_menu .menu_privacypolicy:hover {
    color: #2A305C;
}
.hd_menu .menu_insta {
    margin-top: 15px;
    position: relative;
    width: 1.75em;
    height: 1.75em;
    -webkit-mask-image: url(../img/cmn/icon_insta.svg);
    mask-image: url(../img/cmn/icon_insta.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #1a1a1a;
}
.hd_menu .menu_insta:hover {
    background-color: #2A305C;
}
.hd_menu .menu_logomark {
    position: absolute;
    bottom: 2.5%;
    right: -10%;
    width: 540px;
    opacity: 0.2;
}
@media (max-width: 840px) {
    .hd_menu .menu_logomark {
        width: 60%;
    }
}
@media (max-width: 540px) {
    .hd_menu .menu_logomark {
        width: 80%;
        right: -20%;
    }
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ftshop {
    background-color: #eee;
    padding: clamp(50px, 8vw, 80px) 5% 0;
}
.ftshop_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 840px) {
    .ftshop_inner {
        flex-direction: column;
    }
}
.ftshop_content {
    width: 50%;
}
@media (max-width: 840px) {
    .ftshop_content {
        width: 100%;
        margin-top: 50px;
    }
}
.ftshop_secttl {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: clamp(50px, 8vw, 80px);
    padding-top: clamp(50px, 8vw, 80px);
}
.ftshop_secttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 1px;
    height: 0;
    background-color: #2A305C;
    transition: height 1s ease;
}
.ftshop_secttl .en span {
    color: rgba(42, 48, 92, 0.5);
    font-size: clamp(2rem, 2vw, 2.4rem);
    display: inline-block;
    translate: 0 -0.5em;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: translate 1.5s ease, opacity 1s ease, -webkit-filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
}
.ftshop_secttl .ja span {
    color: #2A305C;
    line-height: 1.25;
    font-size: calc(clamp(2.8rem, 3.6vw, 3.2rem) * 1.25);
    display: inline-block;
    translate: 0 0.75em;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: translate 1.5s ease, opacity 1s ease, -webkit-filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
}
.ftshop_secttl.-active::before {
    height: clamp(50px, 8vw, 80px);
}
.ftshop_secttl.-active .en span,
.ftshop_secttl.-active .ja span {
    translate: 0 0;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.ftshop_info {
    margin-top: 15%;
}
@media (max-width: 840px) {
    .ftshop_info {
        margin-top: 5%;
    }
}
.ftshop .info_ttl {
    font-size: clamp(2.8rem, 3.6vw, 3.2rem);
    margin-bottom: 0.5em;
    display: block;
}
.ftshop .info_item {
    display: flex;
    flex-wrap: wrap;
    padding: 0.15em 0;
}
.ftshop .info_item .ttl {
    width: 120px;
}
.ftshop .info_item .txt {
    width: calc(100% - 120px);
    padding-left: 1em;
}
.ftshop .info_btn {
    margin-top: 2em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    position: relative;
}
.ftshop .info_btn::before, .ftshop .info_btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #2A305C;
}
.ftshop .info_btn::before {
    width: 100%;
    height: 1px;
}
.ftshop .info_btn::after {
    width: 0;
    height: 2px;
    transition: width 0.5s;
}
.ftshop .info_btn .txt {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(2rem, 2vw, 2.4rem);
    color: #2A305C;
    padding-right: 1.5em;
}
.ftshop .info_btn .icon {
    position: absolute;
    top: 50%;
    right: 0.75em;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    background-image: url(../img/cmn/btn_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: right 0.5s;
}
.ftshop .info_btn:hover::after {
    width: 100%;
}
.ftshop .info_btn:hover .icon {
    right: 0;
}
.ftshop_map {
    width: 45%;
}
@media (max-width: 840px) {
    .ftshop_map {
        width: 100%;
        margin-top: 50px;
    }
}
.ftshop_map iframe {
    aspect-ratio: 3/4;
    height: 100%;
}
@media (max-width: 840px) {
    .ftshop_map iframe {
        aspect-ratio: 16/9;
    }
}

.ft {
    background-color: #eee;
    padding: clamp(50px, 8vw, 80px) 5% 0;
}
.ft_inner {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid #444;
    padding-top: clamp(50px, 8vw, 80px);
}
@media (max-width: 1280px) {
    .ft_inner {
        flex-direction: column;
    }
}
.ft_logo {
    width: 240px;
}
.ft_nav {
    padding-left: 15%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2.5%;
    width: calc(100% - 240px);
}
@media (max-width: 1280px) {
    .ft_nav {
        padding-left: 0;
        width: 100%;
        margin-top: 50px;
    }
}
@media (max-width: 840px) {
    .ft_nav {
        flex-direction: column;
    }
}
.ft .nav_content {
    width: 23.125%;
}
@media (max-width: 840px) {
    .ft .nav_content {
        width: 100%;
    }
}
.ft .nav_ttl {
    position: relative;
    display: block;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    line-height: 1.25;
    font-size: 1.8rem;
}
.ft .nav_ttl::after {
    content: "";
    top: 50%;
    right: 0;
    width: 20%;
    height: 1px;
    background-color: #2A305C;
    translate: 0 -50%;
    margin-left: 3.5%;
}
.ft .nav_ttl:hover {
    color: #2A305C;
}
.ft .nav_link {
    padding: 0.35em 0;
}
.ft .nav_link span {
    display: block;
    line-height: 1.25;
}
.ft .nav_link:hover {
    color: #2A305C;
}
.ft_copy {
    display: block;
    text-align: center;
    padding: 2.5em 0;
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: clamp(80px, 12vw, 150px) auto;
    padding: 0 5%;
    position: relative;
}
.cmn_inner {
    margin: 0 auto;
    position: relative;
}
.cmn_inner.-xxl {
    max-width: 1600px;
}
.cmn_inner.-xl {
    max-width: 1280px;
}
.cmn_inner.-lg {
    max-width: 1024px;
}
.cmn_inner.-md {
    max-width: 840px;
}
.cmn_inner.-sm {
    max-width: 700px;
}
.cmn_inner.-xs {
    max-width: 540px;
}
.cmn_pagehead_ttl {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 0 1em;
    padding: calc(clamp(50px, 8vw, 80px) * 1.75) 0 calc(clamp(50px, 8vw, 80px) * 1.25) 2.5em;
    font-size: clamp(2rem, 2vw, 2.4rem);
}
.cmn_pagehead_ttl .en {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.cmn_pagehead_ttl .en span {
    color: rgba(42, 48, 92, 0.5);
    font-size: clamp(2rem, 2vw, 2.4rem);
    display: inline-block;
    translate: 0 0.5em;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: translate 1.5s ease, opacity 1s ease, -webkit-filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
}
.cmn_pagehead_ttl .en span.-active {
    translate: 0 0;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.cmn_pagehead_ttl .ja {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.cmn_pagehead_ttl .ja span {
    color: #2A305C;
    font-size: calc(clamp(2.8rem, 3.6vw, 3.2rem) * 1.25);
    display: inline-block;
    translate: 0 0.25em;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: translate 1.5s ease, opacity 1s ease, -webkit-filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease;
    transition: translate 1.5s ease, opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
}
.cmn_pagehead_ttl .ja span.-active {
    translate: 0 0;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.cmn_pagehead_img {
    aspect-ratio: 5/1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (max-width: 840px) {
    .cmn_pagehead_img {
        aspect-ratio: 3/1;
    }
}
.cmn_pagehead_img.-town {
    background-image: url(../img/cmn/pagehead/town.jpg);
}
.cmn_pagehead_img.-about {
    background-image: url(../img/cmn/pagehead/about.jpg);
}
.cmn_pagehead_img.-shop {
    background-image: url(../img/cmn/pagehead/shop.jpg);
}
.cmn_pagehead_img.-product {
    background-image: url(../img/cmn/pagehead/product.jpg);
}
.cmn_pagehead_img.-contact {
    background-image: url(../img/cmn/pagehead/contact.jpg);
}