@charset "utf-8";

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
    height: auto;
    vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*
base
*/

:root {
    --root-font-size: 16;
}
:root {
    --spacing: 0.05em;
}
* {
    letter-spacing: var(--spacing);
}

body {
    background: #FFF;
    color: #FFF;
    font-family: "游明朝体", YuMincho, "游明朝 Medium", "Yu Mincho Medium", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}


body {
    animation-name: fadeIn;
    animation-duration: 2s;
}

a {color: #FFF; text-decoration: none;}
a:hover {color: #FFF; text-decoration: none;}

a:hover img {
    filter: alpha(opacity=70);
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
}

a,
a:hover,
a img,
a:hover img {
    transition: 0.5s 0s ease-in-out;
}

.clear {clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

::selection {
    background: #AAA5A1;
    color: #FFF;
}
::-moz-selection {
    background: #AAA5A1;
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: 100%;
    margin: 0 auto;
}

.pc {
    display: inherit;
}
.sp {
    display: none;
}
@media screen and (max-width: 767px) {
.pc {
    display: none;
}
.sp {
    display: inherit;
}
}

/*----- header -----*/
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url("../images/home_img.jpg") no-repeat center center;
    background-size: cover;
}
header .logo {
    width: auto;
    height: 30vh;
    max-height: 225px;
}
header div.scroll {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    line-height: 1.5;
    text-align: center;
    text-indent: 0.05em;
    padding: 0 0 15vh;
    margin: 0 auto;
}
header div.scroll p {
    font-size: clamp(calc( 15 / var(--root-font-size) * 1rem ), 1.5vw, calc( 22.5 / var(--root-font-size) * 1rem ));
}
header div.scroll::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 8.75vh;
    background: #FFF;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url("../images/home_img_sp.jpg") no-repeat center center;
    background-size: cover;
}
header .logo {
    width: auto;
    height: 20vh;
    max-height: 225px;
}
header div.scroll {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    line-height: 1.5;
    text-align: center;
    text-indent: 0.05em;
    padding: 0 0 15vh;
    margin: 0 auto;
}
header div.scroll p {
    font-size: calc( 15 / var(--root-font-size) * 1rem );
}
header div.scroll::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 7.5vh;
    background: #FFF;
    margin: 0 auto;
}
}

/*----- common -----*/
.mainBg {
    background: url("../images/mainBg.png") no-repeat center top;
    background-size: cover;
}

/*----- main -----*/
main {
    display: block; /* IE */
}

main article {
    width: 90%;
    line-height: 2.5;
    text-align: center;
    text-indent: 0.05em;
    padding: 125px 0;
    margin: 0 auto;
}
main article p span {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}
main article p.name {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 2;
    padding: 4em 0 0;
}

@media screen and (max-width: 767px) {
main article {
    width: 90%;
    line-height: 2.5;
    text-align: center;
    text-indent: 0.05em;
    padding: 75px 0;
    margin: 0 auto;
}
main article p {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}
main article p span {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}
main article p.name {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    line-height: 2;
    padding: 4em 0 0;
}
}

/*----- footer -----*/
footer {
    position: relative;
    width: 100%;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-family: "Arial", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    padding: 75px 5%;
}
footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(111, 76, 94, 0.21);
    mix-blend-mode: multiply;
}
footer div.inner {
    position: relative;
    z-index: 1;
}
footer div.block {
    padding: 0 0 35px;
}
footer div.block p {
    line-height: 1.75;
    text-align: center;
    text-indent: 0.05em;
}
footer div.block p.ttl {
    padding: 0 0 1em;
}
footer div.block table {
    line-height: 1.75;
}
footer div.block table th {
    padding: 0 1em 0 0;
}
footer div.block table td {
    padding: 0 0 0 1em;
}
footer div.block table td span {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}
footer div.block p.address span {
    font-size: calc( 9 / var(--root-font-size) * 1rem );
}

footer .center {
    display: flex;
    justify-content: center;
}

footer .copyright {
    text-align: center;
}
footer .copyright small {
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    text-indent: 0.05em;
}

@media screen and (max-width: 767px) {
footer {
    position: relative;
    width: 100%;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-family: "Arial", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    padding: 75px 5%;
}
footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(111, 76, 94, 0.21);
    mix-blend-mode: multiply;
}
footer div.inner {
    position: relative;
    z-index: 1;
}
footer div.block {
    padding: 0 0 35px;
}
footer div.block p {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    text-align: center;
    text-indent: 0.05em;
}
footer div.block p.ttl {
    padding: 0 0 1em;
}
footer div.block table {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    line-height: 1.75;
}
footer div.block table th {
    padding: 0 1em 0 0;
}
footer div.block table td {
    padding: 0 0 0 1em;
}
footer div.block table td span {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}
footer div.block p.address span {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
}

footer .center {
    display: flex;
    justify-content: center;
}

footer .copyright {
    text-align: center;
}
footer .copyright small {
    font-size: calc( 8 / var(--root-font-size) * 1rem );
    text-indent: 0.05em;
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
.gNav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: all 1s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
.gNav.active {
    z-index: 99;
    opacity: 1;
}

/*ナビゲーションの縦スクロール*/
.gNav .gNavList {
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -100%;
    width: 675px;
    height: 100vh;
    background: #E3DFD5;
    padding: 0 75px;
    margin: 0 0 0 auto;
    opacity: 0;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.gNav.active .gNavList {
    right: 0;
    opacity: 1;
}
/*ナビゲーション*/
.gNav .gNavList div.inner {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    color: #B31011;
}
.gNav .gNavList div.inner div.information {
    flex-direction: column;
    padding: min(15vh, 150px) 0 min(10vh, 100px);
    margin: auto 0 0;
}
.gNav div.inner nav {
    padding: min(20vh, 200px) 0 0;
}
.gNav div.inner nav ul {
    display: flex;
    flex-wrap: wrap;
}
.gNav div.inner nav ul li {
    width: 100%;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
.gNav div.inner nav ul li.small {
    width: 45%;
}
.gNav div.inner nav ul li.big {
    width: 55%;
}
.gNav div.inner nav ul li p.ttl {
    line-height: 1;
    margin: 0 0 25px;
}
.gNav div.inner nav ul li p.ttl .action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
.gNav div.inner nav ul li p.ttl .action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
.gNav div.inner nav ul li ul {
    margin: 0 0 50px;
}
.gNav div.inner nav ul li ul.sub {
    margin: 0 0 0 30px;
}
.gNav div.inner nav ul li ul li {
    margin: 0 0 10px;
}
.gNav div.inner nav ul li ul li a span.en {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    padding: 0 20px 0 0;
}
.gNav div.inner nav ul li ul li a span.jp {
    color: #000;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    transition: 0.5s 0s ease-in-out;
}
.gNav div.inner nav ul li ul.sub li a {
    color: #000;
}
.gNav div.inner nav ul li ul li a:hover span.jp,
.gNav div.inner nav ul li ul.sub li a:hover {
    color: #8B8B8B;
}

/*ボタンの設定*/
.openBtn {
    position: fixed;
    z-index: 101;/*ボタンを最前面に*/
    top: 29px;
    right: 4%;
    display: inline-block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    appearance: none;
}
.openBtn span {
    position: relative;
}
.openBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: url("../images/icon_mark.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.openBtn.active span::before {
    background: url("../images/icon_close.png") no-repeat center center;
    background-size: contain;
    transform: rotate(-90deg);
}

@media screen and (max-width: 767px) {
/*アクティブになったエリア*/
.gNav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: all 1s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
.gNav.active {
    z-index: 99;
    opacity: 1;
}

/*ナビゲーションの縦スクロール*/
.gNav .gNavList {
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #E3DFD5;
    padding: 0 7.5%;
    margin: 0 0 0 auto;
    opacity: 0;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.gNav.active .gNavList {
    right: 0;
    opacity: 1;
}
/*ナビゲーション*/
.gNav .gNavList div.inner {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    color: #B31011;
}
.gNav .gNavList div.inner div.information {
    flex-direction: column;
    padding: min(10vh, 100px) 0 min(7.5vh, 75px);
    margin: auto 0 0;
}
.gNav div.inner nav {
    padding: min(15vh, 150px) 0 0;
}
.gNav div.inner nav ul {
    display: flex;
    flex-wrap: wrap;
}
.gNav div.inner nav ul li {
    width: 100%;
    font-family: toppan-bunkyu-mincho-pr6n, serif;
}
.gNav div.inner nav ul li.small {
    width: 47.5%;
}
.gNav div.inner nav ul li.big {
    width: 52.5%;
}
.gNav div.inner nav ul li p.ttl {
    line-height: 1;
    margin: 0 0 20px;
}
.gNav div.inner nav ul li p.ttl .action {
    overflow: hidden;
    display: inline-block;
    color: transparent;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-shadow: 0 1.75em 0 #B31011, 0 0 0 #B31011;
    transition: all 0.75s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
.gNav div.inner nav ul li p.ttl .action:hover {
    color: transparent!important;
    text-shadow: 0 0 0 #B31011, 0 -1.75em 0 #B31011;
}
.gNav div.inner nav ul li ul {
    margin: 0 0 35px;
}
.gNav div.inner nav ul li ul.sub {
    margin: 0 0 0 30px;
}
.gNav div.inner nav ul li ul li {
    margin: 0 0 10px;
}
.gNav div.inner nav ul li ul li a span.en {
    font-size: calc( 11 / var(--root-font-size) * 1rem );
    padding: 0 10px 0 0;
}
.gNav div.inner nav ul li ul li a span.jp {
    color: #000;
    font-size: calc( 7 / var(--root-font-size) * 1rem );
    transition: 0.5s 0s ease-in-out;
}
.gNav div.inner nav ul li ul.sub li a {
    color: #000;
}
.gNav div.inner nav ul li ul li a:hover span.jp,
.gNav div.inner nav ul li ul.sub li a:hover {
    color: #8B8B8B;
}

/*ボタンの設定*/
.openBtn {
    position: fixed;
    z-index: 101;/*ボタンを最前面に*/
    top: 29px;
    right: 4%;
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    appearance: none;
}
.openBtn span {
    position: relative;
}
.openBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: url("../images/icon_mark.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
    transition: all 1.5s 0s cubic-bezier(0.75, 0, 0.25, 1);
}
.openBtn.active span::before {
    background: url("../images/icon_close.png") no-repeat center center;
    background-size: contain;
    transform: rotate(-90deg);
}
}

/* stalker */
.stalker {
    pointer-events: none;
    position: fixed;
    z-index: 10001;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border: #F2EFE7 solid 1px;
    border-radius: 50%;
    opacity: 0;
    mix-blend-mode: multiply;
    transition: all 0.25s 0s cubic-bezier(0.25, 0.75, 0.25, 1);
}
/* リンクにホバーした時のスタイル */
.stalker.js-hover {
    top: -45px;
    left: -45px;
    width: 90px;
    height: 90px;
}

/* fadeUp */
.fadeUp,
.content img {
    opacity: 0;
    transition: 1s 0s ease-in-out;
}
.fadeUp.isInView,
.content img.isInView {
    opacity: 1;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}