@charset "UTF-8";

* {
	margin: 0px;
	padding: 0px;
}
a{
	text-decoration: none;
}
img {
	border-width: 0px;
	line-height: 0;
	margin: 0px;
	padding: 0px;
}
br {
	letter-spacing: normal;
}
ul li {
	list-style-type: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
}
.red{
	color: red;
	font-size: 90%;
	text-indent: -1em;
	padding-left: 1em;
}
.att_red{
	color: red;
	font-size: 75%;
	margin-bottom: 15px;
}
.clear{
    clear: both;
}
body {
	width: 100%;
	height: 100vh;
	/*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
    font-family: 'Zen Kurenaido', sans-serif!important;
	font-weight: 500;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	/**/
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	/**/
    transition: all 1s;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;  /* 背景カラー */
    z-index: 9999;  /* 一番手前に */
    pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;  /* 初期値 : 透過状態 */
    -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
}
body.fadeout::after {
    opacity: 1;
}
body.fadeout article{
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}
.img_size{
	width: 100%;
}
#top-head{
	width: 100%;
}
.open #global-nav {
	z-index: 1000;
	visibility: visible;
}
#global-nav {
	visibility: hidden;
	position: fixed;
	display: table;
	vertical-align: middle;
	color: #fff;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	font-size: 16px;
}
#global-nav ul {
	display: table-cell;
	vertical-align: middle;
	list-style: none;
}
#global-nav a {
	text-decoration: none;
	display: block;
	padding: 10px 0;
}

/* ***********************************************************
* nav-list
* *********************************************************** */
#global-nav ul li {
	opacity: 0;
	-webkit-transform: scaleX(0) translateX(-260px);
	transform: scaleX(0) translateX(-260px);
	-webkit-transition: none;
	transition: none;
}
.open #global-nav ul li {
	opacity: 1;
	-webkit-transform: scaleX(1) translateX(0);
	transform: scaleX(1) translateX(0);

	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;

	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.open #global-nav ul li:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.open #global-nav ul li:nth-child(3) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.open #global-nav ul li:nth-child(4) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}
.open #global-nav ul li:nth-child(5) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

/* ***********************************************************
* #nav-bg
* *********************************************************** */
.open #nav-bg {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
}

/* ***********************************************************
* #nav-toggle
* *********************************************************** */
#nav-toggle {
	display: block;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
	cursor: pointer;
	z-index: 1;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	left: 0;
	zoom: 1;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.open #nav-toggle {
	top: 10%;
	z-index: 1002;
	background: transparent;
}
.open #nav-toggle span {
	background: #fff;
}


/*下層ページナビ*/
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eee;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes gnaviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: 0;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height: 50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #333;
  	width: 45%;
}

.openbtn span:nth-of-type(1) {
	width: 25%;
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	width: 35%;
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
#header{
    width: 100%;
    height: 50px;
    position: fixed;
    z-index: 1;
    top: 0;
}
h1{
	margin-left: 10px;
}
h1 a{
	color: #333;
	font-size: 70%;
}
.st0{
	font-family:'UDDigiKyokashoN-R';
}
.st1{
	font-size:83.1591px;
}
svg {
	fill: none;
	stroke-linejoin: round;
	stroke-dasharray: 500px;
	stroke-dashoffset: 500px;
	animation: line_animation 3s both;
}
@keyframes line_animation {
	0% {
	stroke-dashoffset: 500px; /*# 0秒では間隔を300px */
	}
	100% {
	stroke-dashoffset: 0px; /*# 3秒後に間隔を0px */
	}
}
/*オープニングアニメーション*/
.start{
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
}
.start .op_box{
	width: 50%;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
}
.start .op_box figcaption {
	color: #0034FF;
	font-size: 2.8vw;
	line-height: 150%;
	text-align: center;
}
.start .op_box img{
	width: 80%;
	line-height: 0;
}
.start .op_box .logo_mess{
	color: #0034FF;
	font-size: 1.8vw;
	text-align: center;
	margin-top: 10px;
}
/*オープニングアニメーションここまで*/
.pulse-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0 0 20px #f8f8ff;
	cursor: pointer;
}
.pulse-btn p {
	width: 100%;
	color: #fff;
	line-height: 0;
	/*
	font-family: 'Kiwi Maru', serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: 'Zen Kurenaido', sans-serif;
	*/
}
.pulse-btn p img{
	width: 100%;
}
.pulse-btn::after {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.background {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1000;
}
.back {
	position: absolute;
	top: 2em;
	right: 2em;
	z-index: 100;
	color: #222;
	text-decoration: none;
	transition: color .3s;
}
.back:hover {
	color: #aaa;
}

/**
 * Enhanced experience
 *
 * Credit: https://skeate.github.io/2015/07/13/Wrapping-Text-to-Fit-Shaped-Containers-with-CSS.html
 */

@supports (shape-outside: circle(50%)) {
  .circle-content {
    height: 100%;
    margin: 0;
  }
  
  .circle::before,
  .circle-content::before {
    content: "";
    height: 100%;
    width: 50%;
  }
  
  .circle::before {
    float: left;
    shape-outside: polygon(
      0 0, 100% 0, 60% 4%, 40% 10%, 20% 20%, 10% 28.2%, 5% 34.4%, 0 50%,
      5% 65.6%, 10% 71.8%, 20% 80%, 40% 90%, 60% 96%, 100% 100%, 0 100%
    );
  }
  
  .circle-content::before {
    float: right;
    shape-outside: polygon(
      100% 0, 0 0, 40% 4%, 60% 10%, 80% 20%, 90% 28.2%, 95% 34.4%, 100% 50%,
      95% 65.6%, 90% 71.8%, 80% 80%, 60% 90%, 40% 96%, 0 100%, 100% 100%
    );
  }
}

/*index.php*/
.f--05 {font-size: 3vh; }
.f--10 { font-size: 5vh; }
.f--15 { font-size: 10vh; }
.f--20 { font-size: 13vh; }
.text-wrap {
	/*font-family: 'Zen Kurenaido', sans-serif;*/
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-content: space-between;
}
.text__box {
	height: calc(100% / 6);
	display: flex;
	justify-content: center;
	align-items: center;
}
[class^="c--"] { opacity: 0;color: #ddd; }
.c--01 { animation: showElm 0.1s ease-in 0.0s 1 forwards; }
.c--02 { animation: showElm 0.1s ease-in 0.1s 1 forwards; }
.c--03 { animation: showElm 0.1s ease-in 0.2s 1 forwards; }
.c--04 { animation: showElm 0.1s ease-in 0.3s 1 forwards; }
.c--05 { animation: showElm 0.1s ease-in 0.4s 1 forwards; }
.c--06 { animation: showElm 0.1s ease-in 0.5s 1 forwards; }
.c--07 { animation: showElm 0.1s ease-in 0.6s 1 forwards; }
.c--08 { animation: showElm 0.1s ease-in 0.7s 1 forwards; }
.c--09 { animation: showElm 0.1s ease-in 0.8s 1 forwards; }
.c--10 { animation: showElm 0.1s ease-in 0.9s 1 forwards; }
.c--11 { animation: showElm 0.1s ease-in 1.0s 1 forwards; }
.c--12 { animation: showElm 0.1s ease-in 1.1s 1 forwards; }
.c--13 { animation: showElm 0.1s ease-in 1.2s 1 forwards; }
.c--14 { animation: showElm 0.1s ease-in 1.3s 1 forwards; }
.c--15 { animation: showElm 0.1s ease-in 1.4s 1 forwards; }
.c--16 { animation: showElm 0.1s ease-in 1.5s 1 forwards; }
.c--17 { animation: showElm 0.1s ease-in 1.6s 1 forwards; }
.c--18 { animation: showElm 0.1s ease-in 1.7s 1 forwards; }
.c--19 { animation: showElm 0.1s ease-in 1.8s 1 forwards; }
.c--20 { animation: showElm 0.1s ease-in 1.9s 1 forwards; }
.c--21 { animation: showElm 0.1s ease-in 1.0s 1 forwards; }
.c--22 { animation: showElm 0.1s ease-in 1.1s 1 forwards; }
.c--23 { animation: showElm 0.1s ease-in 1.2s 1 forwards; }
.t--01 { animation: showText 0.2s ease-in 1.7s 1 forwards; }
.t--02 { animation: showText 0.2s ease-in 1.9s 1 forwards; }
.t--03 { animation: showText 0.2s ease-in 2.1s 1 forwards; }
.t--04 { animation: showText 0.2s ease-in 2.3s 1 forwards; }
.t--05 { animation: showText 0.2s ease-in 2.5s 1 forwards; }
.t--06 { animation: showText 0.2s ease-in 2.7s 1 forwards; }
@keyframes showElm{
	0%{ opacity: 0;}
	100%{ opacity: 1;}
}
@keyframes spreadElm{
	0%{ height: 0;}
	100%{ height: 20vw;}
}
@keyframes showText{
	0%{ font-size: 0;line-height: 0;}
	100%{ font-size: 10vw;line-height: 20vw;}
}


/*about.php*/
.ms-section {
	font-size: 17px;
	text-align: center;
	display: inline-block;
}
.ms-left .bg{
	background-color: #fff!important;
}
.ms-right .bg{
	background-color: #fff!important;
}
.ms-section figure img{
	width: 70%;
	line-height: 0;
	margin: 0 auto;
	padding: 0;
}
.ms-section figcaption .part{
	font-size: 13px;
}
.ms-section .yuuya{
	color: #fff;
}
.ms-section .kamei{
	color: #fff;
}
.ms-section .satoru{
	color: #fff;
}
.cp_timeline04 {
	position: relative;
	margin: 3em auto;
	padding-bottom: 2em;
    height: 90vh;
    overflow-y: scroll;
}
.cp_timeline04:before {
	position: absolute;
	top: 0px;
	left: 45px;
	width: 2px;
	height: 100%;
	content: '';
	background: #ccc;
}
.cp_timeline04 .timeline_item {
	margin: 0px 0px 0px 80px;
}
.cp_timeline04 .timeline_item .time_date .time {
	font-family: serif;
	font-size: 3em;
	font-weight: bold;
	position: relative;
	margin: 0;
	letter-spacing: 3px;
	color: rgba(83,83,83,0.1);
}
.cp_timeline04 .timeline_item .time_date .time:before {
	position: absolute;
	top: 50%;
	left: -42px;
	width: 10px;
	height: 10px;
	content: '';
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	border: 2px solid #ccc;
	background: #fff;
}
.cp_timeline04 .timeline_item .time_date .flag {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
	margin-top: -60px;
	color: #880e4f;
}
.cp_timeline04 .timeline_item .desc {
	font-size: 0.8em;
	text-align: left;
	line-height: 20px;
	margin-top: 10px;
	padding-left: 20px;
	border-left: 1px solid #880e4f;
}
.cp_timeline04 .timeline_item .desc p{
	text-indent: -1em;
	padding-left: 1em;
}
.cp_timeline04 .timeline_item .desc p a{
	color: #000;
}
.chart_top_sp{
	margin-top: 15px;
}
.bold {
	font-weight: 900;
	font-size: 65px;
}
.con-1r {
	background-color: black;
	color: white;
}
.con-2l {
	background-color: #ffc107; 
}
.con-2r {
	color:#ffc107;
}
.con-3l {
	color: #ab47bc;
}
.con-3r {
	background-color: #ab47bc;
	color: white;
}
.con-4l {
	background-color : #66bb6a;
	color:white;
}
.con-4r {
	color: #66bb6a;
}
.con-5l {
	color: #ec407a;
}
.con-5r{
	background-color: #ec407a;
	color: white; 
}
.con-6l {
	background-color: #29b6f6;
	color: white;
}
.con-6r {
	color: #29b6f6;
}
.con-7l {
	color: #ffc107; 
}
.con-7r {
	background-color: #ffc107;
}
.con-8r, .con-8l{
	color: #f44336;
}
.fa-heart {
	animation: beat 350ms cubic-bezier(0,.77,1,.4) infinite alternate;
}

@keyframes beat {
  0%{
    transform: scale(0.98);
  }
  100%{
    transform: scale(1.25);
  }
}

@media only screen and (max-width: 892px){
  .bold{
    font-size: 45px;
  }
  .ms-section {
    font-size: 20px;
  }
  
}

@media only screen and (max-width: 637px){
  .bold{
    font-size: 32px;
  }
  .ms-section {
    font-size: 17px;
  }
  .special {
    font-size: 22px;
  }
  
}

/*スクロールダウン全体の場所*/
.scrolldown2{
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 10px;
	left: 50%;
}
/*Scrollテキストの描写*/
.scrolldown2 span{
	/*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
	/*テキストの形状*/
	color: #333;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown2:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom:0;
	left:-4px;
	/*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background: #333;
	/*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
	circlemove 1.6s ease-in-out infinite,
	cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }
/* 線の描写 */
.scrolldown2:after{
	content:"";
	/*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
	/*線の形状*/
	width:2px;
	height: 50px;
	background: #333;
}

.ms-viewing-2 .scrolldown2{
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	top: 10px;
	left: 50%;
}



main{
    display: block;
    overflow: hidden;
    padding: 80px 0;
}
#sub_main{
	width: 90%;
	margin: 50px auto 0 auto;
}
.cont{
	position: absolute;
	top: 0;
}
.wrap,
.wrap-l{
	width: 90%;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
    main{
        padding: 100px 0;
    }

	.wrap{
        width: 800px;
    }

    .wrap-l{
        width: 1000px;
    }
}


/*--------------------- */
/* ------ common ------ */
/* -------------------- */


.mv{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv-ttl{
    text-align: center;
    font-size: 60px;
    font-size: 30px;
    font-weight: bold;
}

.demo-ttl{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin: 0 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 768px) {
    .mv-ttl{
        font-size: 60px;
    }
}


/*--------------------- */
/* ------ demo03 ------ */
/* -------------------- */

/* common */
.demo03-section{
    margin-top: 80px;
}

.demo03-section:first-of-type{
    margin-top: 0;
}

/* zoom block */
.zoom-block{
    overflow: hidden;
}

.zoom-block-bg{
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

/* slide block */
.slide-block{
    margin-top: 40px;
}

.slide-block:first-of-type{
    margin-top: 0;
}

.slide-block-contents{
    margin-top: 20px;
}

.slide-block-ttl{
    font-size: 18px;
    font-weight: bold;
}

.slide-block-txt{
    margin-top: 10px;
}

/* fade up block */
.fade-up-block-image{
    margin-top: 20px;
}

.fade-up-block-image:first-of-type{
    margin-top: 0;
}

/* marker block */
.marker-block{
    margin-top: 40px;
}

.marker-block:first-of-type{
    margin-top: 0;
}

.marker-block-contents{
    margin-top: 20px;
}

.marker-block-ttl{
    font-size: 18px;
    font-weight: bold;
}

.marker-block-txt{
    margin-top: 10px;
}

/* fade left block */
.fade-left-block-item{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.fade-left-block-item:first-of-type{
    margin-top: 0;
}

.fade-left-block-num{
    color: #fff;
    background-color:#FFA500;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.fade-left-block-txt{
    width: calc(100% - 40px);
    margin-left: 10px;
}
@media screen and (min-width: 768px) {
    /* common */
    .demo03-section{
        margin-top: 200px;
    }

    /* slide block */
    .slide-block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 60px;
    }

    .slide-block:nth-child(odd){
        flex-direction: row-reverse;
    }

    .slide-block-image{
        width: 48%;
    }

    .slide-block-contents{
        width: 48%;
        margin-top: 0;
    }

    /* fade up block */
    .fade-up-block{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .fade-up-block-image{
        width: 32%;
    }

    .fade-up-block-image:nth-child(-n+3){
        margin-top: 0;
    }

    /* marker block */
    .marker-block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .marker-block-image{
        width: 48%;
    }

    .marker-block-contents{
        width: 48%;
        margin-top: 0;
    }

    /* fade left block */
    .fade-left-block-txt{
        line-height: 1.8;
    }
}


/*------------------------------ */
/* ------ animation style ------ */
/* ----------------------------- */


/* fade zoom */
.u-fade-type-zoom.is-active{
    transition: 8s;
    transform: scale(1.06);
}

/* fade up */
.u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
}

.u-fade-type-up.is-active{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}

.is-active .u-fade-type-up{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2){transition-delay: .4s;}
.is-active .u-fade-type-up:nth-child(3){transition-delay: .8s;}
.is-active .u-fade-type-up:nth-child(4){transition-delay: 1.2s;}
.is-active .u-fade-type-up:nth-child(5){transition-delay: 1.6s;}
.is-active .u-fade-type-up:nth-child(6){transition-delay: 2s;}

/* fade left */
.u-fade-type-left{
    transform: translateX(50px);
    opacity: 0;
}

.u-fade-type-left.is-active{
    transition: .6s;
    transform: translateX(0);
    opacity: 1;
}

.is-active .u-fade-type-left{
    transition: .6s;
    transform: translateX(0);
    opacity: 1;
}

.is-active .u-fade-type-left:nth-child(2){transition-delay: .2s;}
.is-active .u-fade-type-left:nth-child(3){transition-delay: .4s;}
.is-active .u-fade-type-left:nth-child(4){transition-delay: .6s;}
.is-active .u-fade-type-left:nth-child(5){transition-delay: .8s;}

/* img */
.u-fade-type-slide{
    position: relative;
}

.u-fade-type-slide::after{
    content: '';
    display: block;
    width: 100%;
    transform: scaleX(1);
    transform-origin: 100% 0;
    height: 100%;
    background-color: #eee;
    position: absolute;
    top: 0;
    right: 0;
}

.u-fade-type-slide.is-active::after{
    transition: .6s;
    transform: scaleX(0);
}

/* single marker */
.u-fade-type-marker {
    background: linear-gradient(to right, transparent 50%,  rgba(255, 165, 0, 0.3) 50%);
    background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
    background-repeat: repeat-x;
    background-size: 200% .6em;
    background-position: 0 .6em;
    padding-bottom: .6em;
}

.u-fade-type-marker.is-active{
    transition: all 1.2s ease;
    background-position: -100% .6em;
}

/*========= タイピング ===============*/
.js-target{
	width: 90%;
	margin: 0 auto;
}
.strong_txt{
	font-size: 20px;
}


/*news.php*/
.news_sp{
	padding-top: 30%;
}
/*リスト*/
.flex-container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-item {
	flex-basis: 30%;
}
.image-wrap{
	position: relative;
	overflow: hidden;
	padding-top: 60%;
	margin: 10px 5px 0 5px;
}
.image-wrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.btm_sp{
	margin-bottom: 15px;
}


/*work.php*/
.news_list{
	font-size: 0;
	letter-spacing: -4em;
}
.news_list li{
	font-size: 14px;
	letter-spacing: normal;
	display: inline-block;
}
.news_list li{
	width: 22.84%;
	margin-right: 2.88%;
}
.news_list li:nth-child(4n) {
	margin-right: 0;
}
.news_list li img{
	width: 100%;
}


/*contct.php*/
form{
	width: 100%;
}
.form-group{
	box-sizing: border-box;
}
h2.heading {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: left;
  color: #506982;
  border-bottom: 1px solid #506982;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.controls {
  text-align: left;
  position: relative;
}
.controls input[type="text"],
.controls input[type="email"],
.controls input[type="number"],
.controls input[type="date"],
.controls input[type="tel"],
.controls textarea,
.controls button,
.controls select {
  padding: 16px 2%;
  border: 1px solid #c6c6c6;
  width: 96%;
  margin-bottom: 18px;
  color: #888;
  font-family: 'Lato', 'sans-serif';
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.controls input[type="text"]:focus, .controls input[type="text"]:hover,
.controls input[type="email"]:focus,
.controls input[type="email"]:hover,
.controls input[type="number"]:focus,
.controls input[type="number"]:hover,
.controls input[type="date"]:focus,
.controls input[type="date"]:hover,
.controls input[type="tel"]:focus,
.controls input[type="tel"]:hover,
.controls textarea:focus,
.controls textarea:hover,
.controls button:focus,
.controls button:hover,
.controls select:focus,
.controls select:hover {
  outline: none;
  border-color: #9FB1C1;
}
.controls input[type="text"]:focus + label, .controls input[type="text"]:hover + label,
.controls input[type="email"]:focus + label,
.controls input[type="email"]:hover + label,
.controls input[type="number"]:focus + label,
.controls input[type="number"]:hover + label,
.controls input[type="date"]:focus + label,
.controls input[type="date"]:hover + label,
.controls input[type="tel"]:focus + label,
.controls input[type="tel"]:hover + label,
.controls textarea:focus + label,
.controls textarea:hover + label,
.controls button:focus + label,
.controls button:hover + label,
.controls select:focus + label,
.controls select:hover + label {
  color: #bdcc00;
  cursor: text;
}
.controls .fa-sort {
  position: absolute;
  right: 10px;
  top: 17px;
  color: #999;
}
.controls select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.controls label {
  position: absolute;
  left: 8px;
  top: 12px;
  width: 60%;
  color: #999;
  font-size: 16px;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0);
  -moz-transition: color 0.3s, top 0.3s, background-color 0.8s;
  -o-transition: color 0.3s, top 0.3s, background-color 0.8s;
  -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s;
  transition: color 0.3s, top 0.3s, background-color 0.8s;
  background-color: white;
}
.controls label.active {
  top: -15px;
  color: #555;
  background-color: white;
  width: auto;
}
.controls textarea {
  resize: none;
  height: 200px;
}

button {
  cursor: pointer;
  background-color: #1b3d4d;
  border: none;
  color: #fff;
  padding: 12px 0;
  float: right;
}
button:hover {
  background-color: #224c60;
}

.clear:after {
  content: "";
  display: table;
  clear: both;
}

.grid {
  background: white;
}
.grid:after {
  /* Or @extend clearfix */
  content: "";
  display: table;
  clear: both;
}

[class*='col-'] {
  float: left;
  padding-right: 10px;
}
.grid [class*='col-']:last-of-type {
  padding-right: 0;
}

.col-2-3 {
  width: 66.66%;
}

.col-1-3 {
  width: 33.33%;
}

.col-1-2 {
  width: 50%;
}

.col-1-4 {
	width: 100%;
	margin: 0 auto;
}
.submit_sp{
	width: 50%;
	text-align: center;
	margin: 0 auto;
}
#submit{
	border-radius: 6px;
	margin-bottom: 25px;
}
.agree_chk{
	font-size: 13px;
	margin-bottom: 25px;
}
.agree_center{
	margin-bottom: 10px;
}
input {
	vertical-align: middle;
}
.chk{
	width: 18px;
	height: 18px;
}

@media (max-width: 760px) {
  .col-1-4-sm, .col-1-3, .col-2-3 {
    width: 100%;
  }

  [class*='col-'] {
    padding-right: 0px;
  }
}
.col-1-8 {
  width: 12.5%;
}
#modal-content {
	width: 86%;
	height: 80%;
	margin: 0;
	padding: 10px 2%;
	border: 2px solid #aaa;
	border-radius: 6px;
	background: #fff;
	position: fixed;
	display: none;
	z-index: 2;
} 
#modal-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0, 0.75);
}
.button-link {
	color: #00f;
	text-decoration: underline;
}
.button-link:hover {
	cursor: pointer;
	color: #f00;
}
.modal_conf_table_sp{
	height: 90%;
	overflow-y: scroll;
	word-break: break-all;
}
.modal_conf_table{
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}
.modal_conf_table caption{
	color: #000;
	background: #ddd;
	border-radius: 2px;
	padding: 2%;
}
.modal_conf_table th{
	color: #333;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	padding: 2%;
}
.modal_conf_table td{
	padding: 2% 2% 25px 2%;
}
.modal_submit_sp{
	font-size: 0;
	text-align: center;
	letter-spacing: -4em;
	margin-top: 2%;
}
.modal_submit_sp li{
	width: 40%;
	font-size: 14px;
	text-align: center;
	letter-spacing: normal;
	background-color: #333;
	display: inline-block;
	box-sizing: border-box;
	margin: 0 5%;
}
.modal_submit_sp li a{
	text-decoration: none;
}
.modal_submit_sp li .button-link{
	color: #fff;
	display: block;
    padding: 10px 2%;
}

/*inst.php*/
.insta_table{
	width: 100%;
	table-layout: fixed;
}
.insta_table td{
	width: 33.3%;
	padding: 10px 0;
}
.over_img {
	width: 100%;
	height: 100%;
	line-height: 0;
	text-align: center;
	position: relative;	/* 相対位置指定 */
	overflow: hidden;
}
.caption{
	color: #000;
	font-size: 100%;
	text-align: left;
	line-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	display: none\9;
	*display: none;
}
.caption_pro{
	font-size: 90%;
}
.over_img .mask{
	width: 100%;
	height: 100%;
	position: absolute;	/* 絶対位置指定 */
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	background-color: rgba(255,255,255,0.8);	/* マスクは半透明 */
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.over_img:hover .mask {
	opacity: 1;	/* マスクを表示する */
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
}
.over_img img{
	width: 300px;
	height: 300px;
	object-fit: cover;
	object-position: center center;
	border-radius: 300px;
	/*border-radius: 50%;*/
	border: 1px solid #ddd;
}
.insta_btn{
    width: 50%;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    background-color: #333;
    margin: 20px auto 0 auto;
    padding: 5px 0;
}
.insta_btn a{
	color: #fff;
}


  
/**********スマホ**********/
@media screen and (max-width: 768px) {
	h1 img{
		width: 15%;
	}
	/*index.php*/
	.f--05 {font-size: 3vh; }
	.f--10 { font-size: 5vh; }
	.f--15 { font-size: 6vh; }
	.f--20 { font-size: 9vh; }
	.text__box {
		height: calc(100% / 7);
	}
	/*about.php*/
	.ms-section {
		font-size: 14px;
	}
	.js-target{
		text-align: left;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		margin: 0;
	}
	#machida{
		display: none;
	}
	#kamei{
		display: none;
	}
	#smaother{
		display: none;
	}
	.cp_timeline04 .timeline_item .time_date .time {
		font-size: 3em;
	}
	.cp_timeline04:before {
		left: 15px;
	}
	.cp_timeline04 .timeline_item .time_date .time:before {
		left: -32px;
	}
	.cp_timeline04 .timeline_item {
		margin: 0px 0px 0px 40px;
	}
	.cp_timeline04 .timeline_item .desc {
		text-align: left;
		padding-left: 0px;
		border-top: 1px solid #880e4f;
		border-left: none;
	}
	
	
	/*news.php*/

	
	
	/*about.php*/
	.news_list li{
		width: 48.56%;
		margin-right: 2.88%;
	}
	.news_list li:nth-child(2n) {
		margin-right: 0;
	}
	
	
	/*inst.php*/
	.over_img img{
		width: 100px;
		height: 100px;
	}
}


.section-center{
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 6;
	text-align: center;
	transform: translateY(-50%);
}
/*
h1{
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 7vw;
	line-height: 1;
	color: #ffeba7;
	text-align: center;
	-webkit-text-stroke: 2px #ffeba7;
	text-stroke: 2px #ffeba7;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}
*/

#menu-icon:checked,
#menu-icon:not(:checked){
	position: absolute;
	left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
	position: fixed;
	top: 63px;
	right: 75px;
	display: block;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	cursor: pointer;
	z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
	position: absolute;
	content: '';
	display: block;
	width: 30px;
	height: 20px;
	z-index: 20;
	top: 0;
	left: 0;
	border-top: 2px solid #ececee;
	border-bottom: 2px solid #ececee;
	transition: border-width 100ms 1500ms ease, 
			  top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
			  height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
			  background-color 200ms ease,
			  transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
	position: absolute;
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	z-index: 20;
	top: 10px;
	right: 4px;
	background-color: #ececee;
	margin-top: -1px;
	transition: width 100ms 1750ms ease, 
			  right 100ms 1750ms ease,
			  margin-top 100ms ease, 
			  transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
	top: 10px;
	transform: rotate(45deg);
	height: 2px;
	background-color: #ececee;
	border-width: 0;
	transition: border-width 100ms 340ms ease, 
			  top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
			  height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
			  background-color 200ms 500ms ease,
			  transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
	width: 30px;
	margin-top: 0;
	right: 0;
	transform: rotate(-45deg);
	transition: width 100ms ease,
			  right 100ms ease,  
			  margin-top 100ms 500ms ease, 
			  transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
	position: fixed;
	top: 33px;
	right: 50px;
	display: block;
	width: 80px;
	height: 80px;
	padding: 0;
	margin: 0;
	z-index: 9;
	overflow: hidden;
	box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
	background-color: #353746;
	animation: border-transform 7s linear infinite;
	transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
			  right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
			  transform 250ms 1100ms ease,
			  width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
			  height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
	animation-play-state: paused;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 200%;
	height: 200%;
	transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
			  right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
			  transform 250ms 700ms ease,
			  width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
			  height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 6;
	text-align: center;
	transform: translateY(-50%);
	list-style: none;
}
.nav ul li{
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 10px 0;
	text-align: center;
	list-style: none;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: all 250ms linear;
}
.nav ul li:nth-child(1){
	transition-delay: 200ms;
}
.nav ul li:nth-child(2){
	transition-delay: 150ms;
}
.nav ul li:nth-child(3){
	transition-delay: 100ms;
}
.nav ul li:nth-child(4){
	transition-delay: 50ms;
}
.nav ul li a{
	font-family: 'Montserrat', sans-serif;
	font-size: 9vh;
	text-transform: uppercase;
	line-height: 1.2;
	font-weight: 800;
	display: inline-block;
	position: relative;
	color: #ececee;
	transition: all 250ms linear;
}
.nav ul li a:hover{
	text-decoration: none;
	color: #ffeba7;
}
.nav ul li a:after{
	display: block;
	position: absolute;
	top: 50%;
	content: '';
	height: 2vh;
	margin-top: -1vh;
	width: 0;
	left: 0;
	background-color: #353746;
	opacity: 0.8;
	transition: width 250ms linear;
}
.nav ul li a:hover:after{
	width: 100%;
}
.menu-icon:checked ~ .nav  ul li {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 350ms ease,
			  transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
	transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
	transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
	transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
	transition-delay: 1640ms;
}
.logo {
	position: absolute;
	top: 60px;
	left: 50px;
	display: block;
	z-index: 11;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
}
@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 55px;
  }
  .logo {
    left: 30px;
  }
  .nav{
    right: 30px;
  }
  h1{
    font-size: 9vw;
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    /*-webkit-text-fill-color: #ffeba7;
    text-fill-color: #ffeba7;
    color: #ffeba7;
	*/
  }
  .nav ul li a{
    font-size: 8vh;
  }
}
