@charset "UTF-8";

/* CSS Document */

/*-------------------------------------
				共通
---------------------------------------*/
html {
  scroll-behavior: smooth;
}

body{
	font-family: fot-seurat-pron, sans-serif, "Gothic MB101 Regular", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: 600;
	font-style: normal;
	font-size:16px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color:#666;
	background-color: #fff;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  /*vertical-align: bottom;*/
  /*width: 100%;*/
  height: auto;
}

a {
	word-break: break-all;
	color: #6dc0ff;
	text-decoration: underline;
	transition: 0.8s;
	-webkit-transition: 0.8s;
}

a:hover {
	opacity: 0.6;
}

a.inva {
	pointer-events:none;
}

p {
	word-break: break-all;
}

.font_x_n {
	font-family: xenera,sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font_x_b {
	font-family: xenera,sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font_s {
	font-family: fot-seurat-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.line01 {
	border-top: 1px dashed #ccc;
}

.wrap::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-repeat:no-repeat;
    background-position:50% 100%;
    background-image:url("../images/common/bg.png");
    background-size:cover;
}

@media(min-width:768px){
}

/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/

.pcOnly{display:; !important}
.spOnly{display:none;}
.spOnlyTxt{display:none;}

@media(max-width:768px){
	.pcOnly{display:none;}
	.spOnly{display:block;}
	.spOnlyTxt{display:inline;}
}

/*-------------------------------------
				画面遷移
---------------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #ea6088;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img {
	width: 250px;
	margin: 0 auto 15px;
	display: block;
}

/*画面遷移アニメーション*/
body{
    background:#ea6088;
}

body.appear{
    background:#fff;
}

.splashbg{
    display: none;
	content: "";
	position:fixed;
	transform: scale(100);
	background-color: #ea6088;/*伸びる背景色の設定*/
	z-index: 999;
    /*丸のスタートの形状*/
    top:calc(50% - 1rem);
    left:calc(50% - 1rem);
	width: 2rem;
	height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    border-radius: 50%;	
	animation-name:PageAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {/*丸のスタート位置と形状*/
		transform: scale(100);
	
	}
	100% {/*丸の終了位置と形状*/
		transform: scale(0);
		display: none;/*終了時は消える*/
	}
}
/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*-------------------------------------
			フェード
---------------------------------------*/
/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*-------------------------------------
				navi
---------------------------------------*/

#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: #ea6088;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	top:-50px;
    left:calc(50% - 50px);/*50%から円の半径を引いた値*/
    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.main_nav {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

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

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul.main_nav 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 .main_nav li{
	text-align: center; 
	list-style: none;
}

#g-nav .main_nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 130%;
	font-family: xenera,sans-serif;
    font-weight: 700;
    font-style: normal;
}

#g-nav .main_nav li a img {
	vertical-align: sub;
}

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

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

.openbtn span:nth-of-type(2) {
	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%;
}

#g-nav ul.sub_nav {
	display: flex;
	justify-content: center;
}

@media(min-width:768px){
.openbtn{
	display: none;
}
#container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#p-nav {
	background-color: #ea6088;
	width: 25%;
}
#main-area {
    width: 75%;
}
	
#p-nav h1 {
    width: 80%;
    margin: 40px auto 150px;
}
	
#p-nav h1 img {
    width: 100%;
}
	
#p-nav ul.main_nav {
	font-family: xenera,sans-serif;
    font-weight: 400;
    font-style: normal;
}
	
#p-nav ul.main_nav li a {
	color: #fff;
	text-decoration: none;
	font-size: 21px;
	padding: 0 0 0 10%;
	margin: 0 0 5% 0;
	display: block;
	position: relative;
}

#p-nav ul.main_nav li.current a,
#p-nav ul.main_nav li a:hover{
	opacity: 1;
}

#p-nav ul.main_nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 3px;
    background:rgba(0,160,232,1);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

#p-nav ul.main_nav li.current a::after,
#p-nav ul.main_nav li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
	
#p-nav ul.main_nav li ul li {
	/*margin-left: 20px;*/
}
	
#p-nav div {
    position: fixed;
    width: 25%;
}
	
#p-nav ul.sub_nav {
  display: flex;
  justify-content: center;
}
	
#p-nav ul.sub_nav li {
   margin: 8% 8% 0 0;
}
	
#p-nav ul.sub_nav li a {
   font-size: 35px;
}
	
}

/*-------------------------------------
			各article
---------------------------------------*/

article section {
	width: 94%;
	margin: 0 auto;
	padding: 70px 0;
}
article section h2 {
	position: relative;
    text-align: center;
	font-size: 40px;
	font-family: xenera,sans-serif;
    font-weight: 700;
    font-style: normal;
	color: #ea6088;
	line-height: 1.2;
	margin-bottom: 16px;
}

article section h2:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 6px;
    content: '';
    border-radius: 3px;
    background: #ea6088;
}

article section span.sub_title {
	color: #ea6088;
	text-align: center;
	display: block;
	font-size: 16px;
	margin-bottom: 25px;
}

@media(min-width:768px){
article section {
	width: 80%;
}
}

/*-------------------------------------
			footer
---------------------------------------*/

footer {
	background-color: #333;
	color: #fff;
	padding: 35px 0 20px;
}

footer h3 img {
	width: 220px;
	margin: 0 auto;
	display: block;
}

footer ul {
	display: flex;
    list-style: none;
	font-size: 20px;
	margin-top: 25px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

footer ul li {
	text-align: center;
	padding: 0 4%;
}

footer ul a {
	color: #fff;
	text-decoration: none;
	font-size: 200%;
}

footer p {
	padding-top: 15px;
	font-size: 12px;
	text-align: center;
	font-family: xenera,sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fo_notes {
	text-align: center;
	font-size: 12px;
	padding-top: 35px;
}

@media(min-width:768px){
footer .footer_area {
	display: flex;
}
footer .footer_logo {
    width: 50%;
}
footer .footer_share {
    width: 50%;
}
}
