﻿@charset "utf-8";


/* CSS ドキュメント */
body {
  animation: fadebody 2s ease alternate;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

/*fadebody
**********************/
@keyframes fadebody {
    0% {opacity: 0}
    100% {opacity: 1}
}

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


/************************
       LOADING
************************/

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1000;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #ffb860;
  z-index: 1100;
}


main {
	width: 100%;
	margin: 0 auto;
}

a {
	display: block;
	color: inherit;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

a:hover {
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


/*アニメーション線
**********************/
@keyframes border_lr {
	from {width: 0;}
	to {width: 100%;}
}

.border {
 animation-name: border_lr;
 animation-duration: 3s;
 animation-timing-function: ease;
 animation-delay: 1s;
 animation-iteration-count: 1;
 animation-fill-mode: both;
 width: 0;
 max-width: 1060px;
 height: 1px;
 background: #fff;
 margin-left: auto;
 margin-right: auto;
}

/*コンテンツ幅
**********************/
.inbox {
	width: 100%;
	max-width: 1080px;
	box-sizing: border-box;
	padding: 0 10px;
	margin: 0 auto;
}

.inbox2 {
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  margin: 0 auto;
}

.inbox3 {
  width: 100%;
  max-width: 466px;
  box-sizing: border-box;
  margin: 0 auto;
}


/******************
　　　　 img
*******************/
img {
  display: block;
  width: 100%;
  line-height: 0;
}

img.sp-img {
width: 100%;
height:auto;
}

/*切り抜き
******************/

.fit-img img {
width: 100%;
height: 500px;
object-fit: cover;
}

.object-fit-img {
object-fit: contain;
font-family: 'object-fit: contain;'
}


/******************
　　　　　font
*******************/
.gothick {font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;}

.mincho {font-family: "Sawarabi Mincho";}

.min {font-family: "Hannari";}

h1 {
	font-size: 2em;
	font-weight: bold;
}

h1.font18 {font-weight: normal;}

h2 {
	font-size: 1.5em;
}

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

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

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

/*フォントサイズ*/
.font12 {font-size: 12px;}
.font14 {font-size: 14px;}
.font16 {font-size: 16px;}
.font18 {font-size: 18px;}
.font20 {font-size: 20px;}
.font25 {font-size: 25px;}
.font30 {font-size: 30px;}
.font35 {font-size: 35px;}
.font40 {font-size: 40px;}
.font50 {font-size: 50px;}
.font60 {font-size: 60px;}

/*bold*/
.bold {font-weight: bold;}

/*フォントカラー*/
.red {color: #ff6464;}
.yellow {color: #ffdd39;}
.orange {color: #ffb300;}
.green {color: #079c49;}
.blue {color: #00b7ef;}
.glay {color: #aaa;}
.white {color: #fff;}
.purple {color:#cb005c;}
.pink {color: #eb68a3;}


/******************
　　　　　ブラインド
*******************/
.blind {background: rgba(0,0,0,0.5);}


/*****************
　 　　　margin
******************/

/*top*/
.mgn-t10 {margin-top: 10px !important;}

.mgn-t20 {margin-top: 20px !important;}

.mgn-t30 {margin-top: 30px !important;}

.mgn-t40 {margin-top: 40px !important;}

.mgn-t50 {margin-top: 50px !important;}

.mgn-t60 {margin-top: 60px !important;}

.mgn-t70 {margin-top: 70px !important;}

.mgn-t80 {margin-top: 80px !important;}

.mgn-t90 {margin-top: 90px !important;}

.mgn-t100 {margin-top: 100px !important;}

/*bottom*/
.mgn-b10 {margin-bottom: 10px !important;}

.mgn-b20 {margin-bottom: 20px !important;}

.mgn-b30 {margin-bottom: 30px !important;}

.mgn-b40 {margin-bottom: 40px !important;}

.mgn-b50 {margin-bottom: 50px !important;}

.mgn-b60 {margin-bottom: 60px !important;}

.mgn-b70 {margin-bottom: 70px !important;}

.mgn-b80 {margin-bottom: 80px !important;}

.mgn-b90 {margin-bottom: 90px !important;}

.mgn-b100 {margin-bottom: 100px !important;}

/*top-bottom*/

.mgn-tb10 {margin-top: 10px !important; margin-bottom: 10px !important;} 

.mgn-tb20 {margin-top: 20px !important; margin-bottom: 20px !important;}

.mgn-tb30 {margin-top: 30px !important; margin-bottom: 30px !important;}

.mgn-tb40 {margin-top: 40px !important; margin-bottom: 40px !important;}

.mgn-tb50 {margin-top: 50px !important; margin-bottom: 50px !important;}

.mgn-tb60 {margin-top: 60px !important; margin-bottom: 60px !important;}

.mgn-tb70 {margin-top: 70px !important; margin-bottom: 70px !important;}

.mgn-tb80 {margin-top: 80px !important; margin-bottom: 80px !important;}

.mgn-tb90 {margin-top: 90px !important; margin-bottom: 90px !important;}

.mgn-tb100 {margin-top: 100px !important; margin-bottom: 100px !important;}

/*left*/
.mgn-l10 {margin-left: 10px !important;}

.mgn-l20 {margin-left: 20px !important;}

.mgn-l30 {margin-left: 30px !important;}

.mgn-l40 {margin-left: 40px !important;}

.mgn-l50 {margin-left: 50px !important;}

/*right*/
.mgn-r10 {margin-right: 10px !important;}

.mgn-r20 {margin-right: 20px !important;}

.mgn-r30 {margin-right: 30px !important;}

.mgn-r40 {margin-right: 40px !important;}

.mgn-r50 {margin-right: 50px !important;}

/*left-right*/
.mgn-lr10 {margin: 0 10px !important;}

.mgn-lr20 {margin: 0 20px !important;}

.mgn-lr30 {margin: 0 30px !important;}

.mgn-lr40 {margin: 0 40px !important;}

.mgn-lr50 {margin: 0 50px !important;}

/*left-right*/
.mgn-a {
	margin-left: auto;
	margin-right: auto;
	}


/*****************
　 　　 padding
******************/

/*top*/
.pdg-t10 {padding-top: 10px !important;}

.pdg-t20 {padding-top: 20px !important;}

.pdg-t30 {padding-top: 30px !important;}

.pdg-t40 {padding-top: 40px !important;}

.pdg-t50 {padding-top: 50px !important;}

.pdg-t60 {padding-top: 60px !important;}

.pdg-t70 {padding-top: 70px !important;}

.pdg-t80 {padding-top: 80px !important;}

.pdg-t90 {padding-top: 90px !important;}

.pdg-t100 {padding-top: 100px !important;}

/*bottom*/
.pdg-b10 {padding-bottom: 10px !important;}

.pdg-b20 {padding-bottom: 20px !important;}

.pdg-b30 {padding-bottom: 30px !important;}

.pdg-b40 {padding-bottom: 40px !important;}

.pdg-b50 {padding-bottom: 50px !important;}

.pdg-b60 {padding-bottom: 60px !important;}

.pdg-b70 {padding-bottom: 70px !important;}

.pdg-b80 {padding-bottom: 80px !important;}

.pdg-b90 {padding-bottom: 90px !important;}

.pdg-b100 {padding-bottom: 100px !important;}

/*top-bottom*/
.pdg-tb10 {padding-top: 10px !important; padding-bottom: 10px !important;}

.pdg-tb20 {padding-top: 20px !important; padding-bottom: 20px !important;}

.pdg-tb30 {padding-top: 30px !important; padding-bottom: 30px !important;}

.pdg-tb40 {padding-top: 40px !important; padding-bottom: 40px !important;}

.pdg-tb50 {padding-top: 50px !important; padding-bottom: 50px !important;}

.pdg-tb60 {padding-top: 60px !important; padding-bottom: 60px !important;}

.pdg-tb70 {padding-top: 70px !important; padding-bottom: 70px !important;}

.pdg-tb80 {padding-top: 80px !important; padding-bottom: 80px !important;}

.pdg-tb90 {padding-top: 90px !important; padding-bottom: 90px !important;}

.pdg-tb100 {padding-top: 100px !important; padding-bottom: 100px !important;}

/*left*/
.pdg-l10 {padding-left: 10px !important;}

.pdg-l20 {padding-left: 20px !important;}

.pdg-l30 {padding-left: 30px !important;}

.pdg-l40 {padding-left: 40px !important;}

.pdg-l50 {padding-left: 50px !important;}

/*right*/
.pdg-r10 {padding-right: 10px !important;}

.pdg-r20 {padding-right: 20px !important;}

.pdg-r30 {padding-right: 30px !important;}

.pdg-r40 {padding-right: 40px !important;}

.pdg-r50 {padding-right: 50px !important;}

/*left-right*/
.pdg-lr10 {padding-left: 10px !important; padding-right: 10px !important;}

.pdg-lr20 {padding-left: 20px !important; padding-right: 20px !important;}

.pdg-lr30 {padding-left: 30px !important; padding-right: 30px !important;}

.pdg-lr40 {padding-left: 40px !important; padding-right: 40px !important;}

.pdg-lr50 {padding-left: 50px !important; padding-right: 50px !important;}


/*****************
　　　column:flex
******************/
.flex {
  display: -ms-flexbox; /* IE10 */
  display: -webkit-flex; /* Pc-safari */
  display: flex;
}

.flex-sb {
  -ms-flex-pack: justify; /* IE10 */
  -webkit-box-pack: justify; /* before Android4.3 */
  justify-content: space-between;
  }

.flex-c {
  -ms-flex-pack: center; /* IE10 */
  -webkit-box-pack: center; /* before Android4.3 */
  justify-content: center;
}

.flex-l {justify-content: flex-start;}

.flex-r {justify-content: flex-end;}

.flex-a {justify-content: space-around;}

.flex-al-c {
  -ms-flex-align: center; /* IE10 */
  -webkit-box-align: center; /* before Android4.3 */
  align-items: center;
}

.flex-wrap {
  -ms-flex-wrap: wrap; /* IE10 */
  -webkit-flex-wrap: wrap; /* before Android4.3 */
  flex-wrap: wrap;
}

.flex-logo li:first-child {margin-right: auto;}

.flex-logo li:first-child {
  margin-right: auto;
  width: 41%;
  max-width: 175px;
}

/*MENU*/

nav ul {
  text-align: justify;
  text-justify: distribute-all-lines;
  font-size: 0;
  line-height: 0;
  }

nav ul:after {
  content:"";
  display: inline-block;
  width: 100%;
  line-height:0;
  height: 0;
}

nav ul li {
	color: #fff;
  display: inline-block;
  vertical-align: middle;
  width: 175px;
	line-height: 1.2em;
	letter-spacing: normal;
  text-align: center;
  font-size: 15px;
  transition: all 0.5s;
}

nav ul li.last_li {
  width: 189px;
}

nav li a {
  padding: 15px 0;
  line-height: 1.2em;
  transition: all 0.5s;
}

nav ul li a:hover {
  color: #e968a1;
  transition: all 0.5s;
}

.fixed {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    width: 100%;
    z-index: 10000;
    transition: 0.5s;
}


/****************
    ページトップボタン
*****************/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    line-height: 70px;
    z-index: 110;
}

#page-top a {
    background: #fbc2db;
    text-decoration: none;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    display: block;
    border-radius: 50%;
}

#page-top a:hover {
    background: #eb68a3;
}

.ilb {
	display: inline-block;
	font-size: 8px;
}