@charset "UTF-8";

/* ----------------------------------------------------------------------------------------
 *
 * Font
 *
 * ----------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:200,200i,300,300i,400,400i,600,600i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
:root {
    --font-16: 1em;
    --font-15: .938em;
    --font-14: .875em;
    --font-13: .813em;
    --font-12: .75em;
    --font-11: .688em;
    --font-10: .625em;
    --golden-42: 4.236em;
    --golden-26: 2.618em;
    --golden-16: 1.618em;
    --golden-1: 1em;
    --golden-06: .618em;
    --golden-03: .382em;
    --silver-28: 2.827em;
    --silver-19: 1.999em;
    --silver-14: 1.414em;
    --silver-1: 1em;
    --silver-07: .707em;
    --silver-05: .5em;
    --serif: 'Noto Serif JP', 'Noto Serif JP', Garamond, 'Yu Mincho', 'YuMincho', 'Meiryo', sans-serif;
    --serif-en: 'Playfair Display', 'Noto Serif JP', Garamond, 'Yu Mincho', 'YuMincho', 'Meiryo', serif;
    --sansserif: 'Open Sans', 'Yu Gothic', "游ゴシック", 'YuGothic', "游ゴシック体", Hiragino Kaku Gothic ProN, 'Meiryo', sans-serif;
    /* original */
    --rounded: 'M PLUS Rounded 1c', sans-serif;
}

html {
    font-size: var(--font-10);
}

body {
    font-size: 16px;
    font-family: var(--sansserif);
}

.fontstyle {
    font-family: var(--serif);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

h1 {
    font-size: var(--golden-16);
}

h2 {
    font-size: var(--silver-14);
}

h3 {
    font-size: 2.0rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1em;
}

p:last-of-type {
    margin-bottom: 0;
}


/* ----------------------------------------------------------------------------------------
 *
 * Layout
 *
 * ----------------------------------------------------------------------------------------*/

.w-state {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.w-state--s {
	width: calc(100% - 20px);
    max-width: 450px;
    margin: auto;
}

.w-state--m {
	width: calc(100% - 50px);
    max-width: 1250px;
    margin: auto;
}

@media screen and (max-width: 480px) {}


/* ----------------------------------------------------------------------------------------
 *
 * Utilities
 *
 * ----------------------------------------------------------------------------------------*/

.mt0 {
    margin-top: 0 !important;
}

.mt1 {
    margin-top: .5em !important;
}

.mt2 {
    margin-top: 1em !important;
}

.mt3 {
    margin-top: 1.5em !important;
}

.mt4 {
    margin-top: 2em !important;
}

.ml0 {
    margin-left: 0 !important;
}

.ml1 {
    margin-left: .5em !important;
}

.ml2 {
    margin-left: 1em !important;
}

.ml3 {
    margin-left: 1.5em !important;
}

.ml4 {
    margin-left: 2em !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb1 {
    margin-bottom: .5em !important;
}

.mb2 {
    margin-bottom: 1em !important;
}

.mb3 {
    margin-bottom: 1.5em !important;
}

.mb4 {
    margin-bottom: 2em !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mr1 {
    margin-right: .5em !important;
}

.mr2 {
    margin-right: 1em !important;
}

.mr3 {
    margin-right: 1.5em !important;
}

.mr4 {
    margin-right: 2em !important;
}

.txt-c {
    text-align: center;
}

.txt-l {
    text-align: left;
}

.txt-r {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.nomal {
    font-weight: normal;
}

.lighter {
    font-weight: lighter;
}

.pointer {
	cursor: pointer;
}

/* ----------------------------------------------------------------------------------------
 *
 * Opening
 *
 * ----------------------------------------------------------------------------------------*/

.body-overlay {
    width: 100%;
    height: 100%;
    display: block;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 99999;
    transition: opacity 600ms cubic-bezier(0.37, 0, 0.63, 1) 200ms;
}

.onload .body-overlay {
    opacity: 0;
    pointer-events: none;
}

.w100 {
	width: 100%!important;
}

/* ----------------------------------------------------------------------------------------
 *
 * Fadein
 *
 * ----------------------------------------------------------------------------------------*/


/* opacity */

.fadein-opacity {
    opacity: 0;
    transition: opacity 2s ease;
}


/* transform */

.fadein-transform {
    opacity: 0;
    transition: all 1s ease;
    transform: translateY(100px);
}


/* ----------------------------------------------------------------------------------------
 *
 * Scrolldown
 *
 * ----------------------------------------------------------------------------------------*/

.scrolldown {
    position: absolute;
    bottom: 42px;
    left: -42px;
    display: flex;
    align-items: center;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    color: var(--color-main);
}

.scrolldown p {
    margin-right: 10px;
}

.scrolldown::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: currentColor;
    animation: scrolldown 1s ease infinite;
    -webkit-animation: scrolldown 1.7s ease infinite;
    /* position: absolute; */
}

@-webkit-keyframes scrolldown {
    0% {
        transform: scaleX(1);
        transform-origin: 100% 0
    }
    15% {
        transform: scaleX(0);
        transform-origin: 100% 0
    }
    50% {
        transform: scaleX(0);
        transform-origin: 0 0
    }
    70% {
        transform: scaleX(1);
        transform-origin: 0 0
    }
    100% {
        transform: scaleX(1);
        transform-origin: 100% 0
    }
}

@keyframes scrolldown {
    0% {
        transform: scaleX(1);
        transform-origin: 100% 0
    }
    15% {
        transform: scaleX(0);
        transform-origin: 100% 0
    }
    50% {
        transform: scaleX(0);
        transform-origin: 0 0
    }
    70% {
        transform: scaleX(1);
        transform-origin: 0 0
    }
    100% {
        transform: scaleX(1);
        transform-origin: 100% 0
    }
}


/* ----------------------------------------------------------------------------------------
 *
 * Global
 *
 * ----------------------------------------------------------------------------------------*/

a {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    cursor: pointer;
}

a:hover {
    opacity: .7;
}

a.underline {
	text-decoration: underline;
}
figure {
    width: 300px;
}

img {
    width: 100%;
}

.row {
	display: flex;
}
@media screen and (max-width: 480px) {
	.row {
		flex-direction: column;
	}
}
/* br */

.tb_br {
    display: none;
}

.pc_br {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp_br {
        display: none;
    }
    .tb_br {
        display: block;
    }
    .pc_br {
        display: block;
    }
}

@media screen and (min-width: 900px) {
    .sp_br {
        display: none;
    }
    .tb_br {
        display: none;
    }
    .pc_br {
        display: block;
    }
}