@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

/* CSS Document */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: "Shippori Mincho", serif;
    font-style: normal;
	font-weight: 400;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background: #fff;
    display: none;
}
img {
	display: block;
	width: 100%;
}

/*====================================

    loading

====================================*/

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    display: grid;
    place-items: center;
}
.loaded {
    opacity: 0;
    visibility: hidden;
}

/*====================================

    .h1_logo

====================================*/

.h1_logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 140px;
    z-index: 100;
    display: block;
    z-index: 1000;
}
.h1_logo a {
    display: block;
}

/*====================================

    .nav

====================================*/

.nav {
}
.nav input#menuToggle {
    display: none;
}
.nav .open-lines {
    background-color: #fff;
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    top: 8px;
    mix-blend-mode: difference;
}
.nav .open-lines:before {
    content: "";
    background-color: #fff;
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: -7px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}
.nav .open-lines:after {
    content: "";
    background-color: #fff;
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: 5px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}
.nav .menuOpen {
    width: 42px;
    height: 40px;
    display: block;
    padding: 10px;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    border-radius: 3px;
    mix-blend-mode: difference;
}
.nav .menuOpen:hover .open-lines:before {
    top: -8px;
}
.nav .menuOpen:hover .open-lines:after {
    top: 6px;
}
.nav .nav-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(255,255,255, 1);
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
    z-index: 999;
}
.nav .nav-menu label {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-size: 100%;
    cursor: pointer;
}
.nav .nav-menu .menuContent {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20vh;
	width: 100%;
    z-index: 1;
}
.nav .nav-menu .menuContent ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #000;
}
.nav .nav-menu .menuContent ul li {
    width: 16.6666666667%;
    border-right: 1px solid #fff;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    text-align: center;
    display: grid;
    place-items: center;
    background: #000;
}
.nav .nav-menu .menuContent ul li:last-child {
    border-right: none;
}
.nav .nav-menu .menuContent ul li a {
    display: inline-block;
    box-sizing: border-box;
    color: #fff;
}
.nav .nav-menu .menuContent_man {
    position: relative;
    height: 80vh;
    display: grid;
	place-items: center;
	width: 25%;
	border-left: 1px solid #000;
    overflow: hidden;
}
.nav .nav-menu .menuContent_man a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: grid;
	place-items: center;
    line-height: 1em;
    text-decoration: none;
    -webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.nav .nav-menu .menuContent_man a h2 {
    color: #000;
    font-size: 130%;
    font-family: "Shippori Mincho", serif;
    line-height: 1em;
}
.nav .nav-menu .menuContent_man a span {
	display: block;
    width: 100%;
    text-align: center;
    font-size: 60%;
    padding-top: .5em;
}
.nav .nav-menu .menuContent_man .bg_list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: alpha(opacity=0);
 	-moz-opacity: 0;
 	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	-moz-opacity: 0;
	-khtml-opacity: 0;
	zoom:1;
	display: block;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	padding: 20px;
}
.nav .nav-menu .menuContent_man:hover a {
	filter: alpha(opacity=0);
 	-moz-opacity: 0;
 	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	-moz-opacity: 0;
	-khtml-opacity: 0;
	zoom:1;
}
.nav .nav-menu .menuContent_man:hover .bg_list {
	filter: alpha(opacity=100);
 	-moz-opacity:1;
 	opacity:1;
	-ms-filter: "alpha(opacity=100)";
	-moz-opacity:1;
	-khtml-opacity: 1;
	zoom:1;
}
.nav .nav-menu .menuContent_man .bg_list img {
	margin-bottom: 20px;
}
.nav .nav-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}
.nav .nav-menu ul li {
	padding: 10px 0;
}
.nav .nav-menu ul li img {
	width: 100%;
}
.nav .nav-menu ul li a {
    display: inline-block;
    font-size: 100%;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.2s;
    font-family: "Shippori Mincho", serif;
}
.nav .nav-menu ul li a:hover {
    color: #ccc;
    letter-spacing: .05em;
}
.nav .menuEffects {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}
.menuEffects ul,
.menuEffects .menuContent_man {
    transform: translateY(0%);
    transition: all 0.5s;
}
#menuToggle:checked ~ .menuEffects {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s;
}
#menuToggle:checked ~ .menuEffects ul,
#menuToggle:checked ~ .menuEffects .menuContent_man {
    opacity: 1;
}
#menuToggle:checked ~ .menuOpen .open-lines {
    background-color: transparent;
}
#menuToggle:checked ~ .menuOpen .open-lines:before {
    content: "";
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
#menuToggle:checked ~ .menuOpen .open-lines:after {
    content: "";
    background-color: white;
    transform: rotate(-45deg);
    position: relative;
    top: 0;
    right: 0;
    z-index: 1;
}
#menuToggle:not(:checked) ~ .menuEffects ul,
#menuToggle:not(:checked) ~ .menuEffects .menuContent_man {
    transform: translateY(-20px);
}



.line {
	display: inline-block;
	color: #000;
	text-decoration: none;
}
.line:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #000;
	transition: transform 0.25s cubic-bezier(0.835, -0.005, 0.06, 1);
	transform: scaleX(0);
	transform-origin: right;
}
.line:hover:after {
	transform-origin: left;
	transform: scaleX(1);
}

/*====================================

    .btn

====================================*/

.btn {
}
.btn a,
.btn buttom {
    font-size: 200%;
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: inherit;
    -webkit-text-stroke-width: .04rem;
    transition: background-size 200ms cubic-bezier(.4,.9,.3,1);
    background-image: linear-gradient(90deg,currentColor 100%,transparent 0);
    background-repeat: no-repeat;
    background-size: 0 100%;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: "Shippori Mincho", serif;
    color: #000;
    text-decoration: underline;
    border-bottom: 1px solid #000;
}
@media screen and (max-width : 1000px) {
    .btn a,
    .btn buttom {
        font-size: 150%;
    }
}
.btn a:hover,
.btn buttom:hover {
    background-size: 100% 100%;
    cursor: pointer;
}
.btn a span,
.btn buttom span {
    font-size: 30%;
}

/*====================================

    #wp_sd

====================================*/

#wp_sd {
}

/*====================================

    #page_ttl

====================================*/

#page_ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 0 40px;
    margin-bottom: 40px;
}
#page_ttl h2 {
    line-height: 1;
    font-size: 1000%;
    font-family: "Shippori Mincho", serif;
    font-feature-settings: "palt";
}
#page_ttl h3 {
    line-height: 1;
    font-size: 150%;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    margin-top: -2em;
    font-feature-settings: "palt";
}
@media screen and (max-width : 1000px) {
    #page_ttl {
    }
    #page_ttl h2 {
        font-size: 800%;
    }
    #page_ttl h3 {
        font-size: 150%;
        margin-top: -2em;
    }
}

/*====================================

    #footer

====================================*/

#footer {
    width: 100%;
    background: #333;
    padding: 100px 40px 40px 40px;
}
#footer .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    margin-bottom: 40px;
}
#footer .inner .map {
    flex: 1;
}
#footer .inner .map iframe {
    width: 100%;
    height: 100%;
}
#footer .inner .info {
    width: 300px;
}
#footer .inner .info .ft_logo {
    width: 140px;
    margin-bottom: 40px;
}
#footer .inner .info .ft_nav {
    margin-bottom: 200px;
}
#footer .inner .info .ft_nav ul {
}
#footer .inner .info .ft_nav ul li {
}
#footer .inner .info .ft_nav ul li:last-child {
}
#footer .inner .info .ft_nav ul li a {
}
#footer .inner .info .ft_nav ul li a span {
    font-family: "Shippori Mincho", serif;
    color: #fff;
    text-decoration: none;
    padding: 6px 0;
    display: inline-block;
}
#footer .inner .info .ft_nav ul li a span:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: transform 0.25s cubic-bezier(0.835, -0.005, 0.06, 1);
    transform: scaleX(0);
    transform-origin: right;
}
#footer .inner .info .ft_nav ul li a:hover span:after {
    transform-origin: left;
    transform: scaleX(1);
}
#footer .inner .info .ft_nav ul .name {
    padding-left: 1em;
}
#footer .inner .info .ft_nav ul .name span:before {
    content: '▶';
    transform: scale(0.3, 0.3) !important;;
    display: inline-block;
}

/*====================================

    copywright

====================================*/

.copywright {
    background: #333;
    padding: 20px 0;
}
.copywright ul {
}
.copywright ul li {
    margin: 0 20px;
    width: 100px;
}

/*====================================

    anime-up

====================================*/

@keyframes showTextFromBottom{
    0%{
        transform: translateY( 100% );
        opacity: 0;
    }
    100%{
        transform: translateY( 0px );
        opacity: 100;
    }
}
.anime-up.displayed span {
    animation: showText 1s backwards;
    display: inline-block;
    line-height: 1.5em;
}
.anime-up.displayed > span {
    overflow: hidden;
}
.anime-up.displayed > span > span {
    animation: showTextFromBottom 0.5s backwards;
}



























