@charset "utf-8";
html {
    font-size: 62.5%;
    height: 100%;
}
html, body {
    overflow-x: hidden;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}
/*===================================
font
===================================*/
@font-face {
    font-family: "Bodoni Moda", serif;
    src: url("../font/BodoniModa-VariableFont_opsz,wght.ttf") format('truetype');
}
@font-face {
    font-family: "Zen Kaku Gothic New", sans-serif;
    src: url("../font/ZenKakuGothicNew-Regular.ttf") format('truetype');
}
.en {
    font-weight: 400;
    font-style: normal;
}
.jp_01 {}
/*===================================
body
===================================*/
body {
    background: #fff;
    color: #222;
    font-family: "Zen Kaku Gothic New", "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, 游ゴシック, Meiryo, メイリオ, Verdana, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-size: 1.6rem;
    height: 100%;
    line-height: 1.85;
    word-wrap: break-word;
}
a {
    color: #222;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    outline: none;
}
img {
    display: block;
    height: auto;
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
    padding: 0;
}
p {
    text-align: justify;
    line-height: 1.75;
}
p + p {
    margin-top: 1em;
}
._pd8 {
    padding: 8%;
}
._pd4 {
    padding: 4%;
}
@media screen and (min-width: 1024px) {
    body {
        font-size: 19px;
        font-size: 1.9rem;
    }
    ul li, li {
        font-size: 20px;
    }
}
/*===================================
section
===================================*/
.section {
    padding-bottom: clamp(60px, 9vw, 60px);
    padding-top: clamp(60px, 9vw, 60px);
}
.section:not(._bg) + .section:not(._bg) {
    padding-top: 0px;
}
._bg {
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
    padding-left: calc(50dvw - 50%);
    padding-right: calc(50dvw - 50%);
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 1024px) {
    .section {
        padding-bottom: clamp(70px, 9vw, 100px);
        padding-top: clamp(70px, 9vw, 100px);
        padding-right: clamp(100px, 15vw, 180px);
        padding-left: clamp(100px, 15vw, 180px);
    }
}
@media screen and (min-width: 1440px) {}
/* bg color */
._bg_color01 {
    background: #f1f1f1;
}
._bg_color02 {
    background: #f1f1f1;
}
._bg_color03 {
    background: #ACACAC;
}
/*===================================
wrap
===================================*/
._inner {
    width: min(92%, 1440px);
    margin: auto;
}
._container + ._container {
    margin-top: 5em;
}
/*===================================
heading
===================================*/
/* heading style */
.heading01 {
    font-family: "Bodoni Moda", serif;
    line-height: 1.5;
    letter-spacing: .02em;
}
.heading01::first-letter {
    color: #c00000;
    font-size: 1.5em;
}
.heading01 span {
    display: block;
    font-size: .5em;
    opacity: .5;
}
._container .heading01 + ._box {
    margin-top: 2em;
}
._container .heading02 + ._box {
    margin: 2em 0;
}
@media screen and (min-width: 767px) {
    .heading01 {
        font-size: 7vw;
    }
    .heading01 span {
        font-size: .3em;
    }
}
@media screen and (min-width: 1024px) {
    .heading01 {
        font-size: 4vw;
    }
}
@media screen and (min-width: 1440px) {
    .heading01 {
        font-size: 3vw;
    }
}
/*===================================
btn
===================================*/
/* btn wrap */
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
* + .btns {
    margin-top: 2em;
}
/* btn base */
.btn {
    border-bottom: 1px solid #222;
    color: #222;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    padding: 10px 40px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
}
/* btn type */
.btn_type01 {
    font-family: "Bodoni Moda", serif;
}
/*===================================
list
===================================*/
._list {}
._list_item {}
/*===================================
table
===================================*/
/* スクロールバーの表示 */
._scroll-bar {
    overflow-x: auto;
}
._scroll-bar::-webkit-scrollbar {
    height: 8px;
}
._scroll-bar::-webkit-scrollbar-track {
    border-radius: 8px;
    background: rgba(238, 238, 238, 1);
}
._scroll-bar::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(169, 170, 161, 1);
}
/*===================================
header
===================================*/
/* header */
#header {
    background: #fff;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 65px;
    z-index: 999;
}
#header .header_container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}
#header .logo {
    height: 65px;
    /*position: absolute;
    top: -15px;*/
    padding: 0 8%;
    display: flex;
}
#header .logo a {
    position: relative;
    z-index: 99;
    height: 100%;
    display: flex;
    align-items: center;
}
#header .logo a svg {
    height: 50px;
    display: flex;
    align-items: center;
}
#header .logo a svg .st0 {
    fill: #c00000;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 1024px) {
    #header {
        background: none;
        border: none
    }
    #header .logo {
        width: 30%;
    }
}
#header .header_container {
    overflow-x: hidden;
}
@media screen and (min-width: 1440px) {}
/* nav */
#nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    transition: .5s all;
}
#nav.panelactive {
    right: 0;
    transform: translateX(0);
    opacity: 1;
}
#nav.panelactive #menu_list {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow: auto;
}
#nav #menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 100%;
    height: 100vh;
    padding: 8%;
    font-family: "Bodoni Moda", serif;
}
#nav #menu_list ._item {
    width: 100%;
}
#nav #menu_list ._item > a {
    display: block;
}
#nav #menu_list ._item a {
    font-size: clamp(16px, 5.5vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    width: 100%;
}
#nav #menu_list ._item a::first-letter {
    color: #c00000;
}
#nav #menu_list ._item a span {
    display: block;
    font-size: .5em;
    letter-spacing: .2em;
    color: #ccc;
}
@media screen and (min-width:767px) {
    #nav #menu_list ._item a {
        font-size: clamp(16px, 5.5vw, 32px);
        font-weight: bold;
    }
}
@media screen and (min-width:1024px) {
    #nav {
        top: 0;
        right: 0;
        height: 60px;
        position: static;
        transform: translateX(0);
        opacity: 1;
        width: auto;
        background: none;
        flex: 1;
        min-width: 0;
    }
    #nav #menu_list {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        gap: 20px;
        padding: 0;
        min-width: 0;
    }
    #nav #menu_list ._item {
        white-space: nowrap;
        width: calc(70%/7);
    }
    #nav #menu_list ._item:first-child {
        display: none;
    }
    #nav #menu_list ._item a {
        font-size: clamp(16px, 1.5vw, 17px);
        text-align: center;
    }
}
#nav #menu_list .insta_icon {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}
@media screen and (min-width:1024px) {
    #header, #header .header_container, #nav, #nav #menu_list {
        max-width: 100%;
        overflow-x: hidden;
    }
    #nav #menu_list {
        position: relative;
        z-index: 999;
    }
}
@media screen and (min-width: 1440px) {
    #nav {
        transform: translateX(0%);
        opacity: 1;
    }
    #nav #menu_list ._item {
        width: min(100px, 100%);
    }
}
/*===================================
hamburger menu
===================================*/
#header .nav_openbtn {
    display: block;
    position: absolute;
    right: 4%;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 99999;
}
#header .nav_openbtn .openbtn {
    transition: all .3s;
}
#header .nav_openbtn span {
    display: inline-block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    height: 1px;
    width: 50%;
    background: #000;
    transition: all .3s;
    z-index: 999;
}
#header .nav_openbtn span:nth-of-type(1) {
    top: 40%
}
#header .nav_openbtn span:nth-of-type(2) {
    top: 50%;
}
#header .nav_openbtn span:nth-of-type(3) {
    top: 60%;
}
#header .nav_openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 37%;
    transform: rotate(45deg);
    width: 30%;
}
#header .nav_openbtn.active span:nth-of-type(2) {
    transform: scale(0, 1);
    transform-origin: left top;
}
#header .nav_openbtn.active span:nth-of-type(3) {
    top: 50%;
    left: 37%;
    transform: rotate(-45deg);
    width: 30%;
}
@media screen and (min-width: 1024px) {
    #header .nav_openbtn {
        display: none;
    }
}
@media screen and (min-width: 1440px) {}
/*===================================
main
===================================*/
#main {
    overflow: hidden;
}
/*===================================
footer
===================================*/
#footer {
    border-top: 1px solid #000;
    font-family: "Bodoni Moda", serif;
}
/* logo */
#footer ._container .footer_logo {
    display: flex;
    justify-content: center;
}
#footer ._container .footer_logo .logo-svg {
    height: 60px;
    width: auto;
    display: block;
}
#footer ._container .footer_logo .logo-svg .st0 {
    fill: #c00000;
}
/* link */
#footer ._container .footer_link {}
#footer ._container .footer_link ._list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: "Bodoni Moda", serif;
    font-weight: 600;
}
#footer ._container .footer_link ._list ._item {
    width: 100%;
}
#footer ._container .footer_link ._list ._item a .first-letter {
    color: #c00000;
}
#footer ._container .footer_link ._list ._item a .sub {
    display: block;
    font-size: .5em;
    letter-spacing: .2em;
    color: #ccc;
}
#footer ._container .footer_link ._list {
    border-top: 1px solid #000;
    padding: 8%;
}
/* sns */
#footer ._container .sns_link ._list {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
#footer ._container .sns_link ._list ._item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 2);
    height: 60px;
}
#footer ._container .sns_link ._list ._item:not(:first-child) {
    border-left: 1px solid #000;
}
#footer ._container .sns_link ._list ._item:last-child {
    background: #c00000;
}
#footer ._container .sns_link svg {
    width: 25px;
    height: 25px;
    display: block;
}
/* small */
#footer ._container #small {
    display: block;
    font-size: 2vw;
    text-align: center;
}
@media screen and (min-width: 767px) {
    #footer ._container .footer_logo .logo-svg {
        height: 80px;
    }
    #footer ._container .footer_link ._list .disappear {
        display: none;
    }
    #footer ._container .sns_link svg {
        width: 30px;
        height: 30px;
    }
    #footer ._container .footer_bottom_link ._list ._item a {
        font-size: 1.7vw;
    }
}
@media screen and (min-width: 1024px) {
    #footer ._container #small {
        font-size: 1.2vw;
    }
    #footer ._container .footer_link ._list ._item {
        width: calc((100% - 20px) / 2);
        
    }
}
@media screen and (min-width: 1440px) {
    #footer ._container .footer_link ._list ._item {
        width: calc((100% - 40px) / 3);
        text-align: center;
    }
}
/*===================================
page top
===================================*/
#page_top {
    color: #fff;
}
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}