@charset "utf-8";
@import url("jQuery.css");

/*==================================================
フェードイン
===================================*/
.fadein {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  transform: translate3d(0, -20px, 0);
  opacity: 1;
}


/*==================================================
アコーディオン
===================================*/

.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.icon-box-inner {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 12px;
	font-weight: bold;
	border: solid 2px #222;
    width: 180px;
	height: 20px;
    padding: 10px 30px;
	margin: 0 auto;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.icon-box-inner::before,
.icon-box-inner::after{
    position: absolute;
    content:'';
    width: 10px;
    height: 2px;
    background-color: #cd0000;
}

.icon-box-inner::before{
    top: 44%;
    right: 18px;
    transform: rotate(45deg);
}

.icon-box-inner::after{    
    top: 44%;
    right: 12px;
    transform: rotate(-45deg);
}

/*　closeというクラスがついたら形状変化　*/

.icon-box-inner.close::before{
	transform: rotate(135deg);
}

.icon-box-inner.close::after{
	transform: rotate(-135deg);
}

/*アコーディオンで現れるエリア*/
.menu {
    display: none;/*はじめは非表示*/
	margin: 20px auto;
	padding-top: 20px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
	background-color: #fdf9ea;
    width:100%;
    margin:0px auto 40px;
	padding: 60px 0 10px 0;
}

.slider img {
    width: 500px;
    height:auto;
}

.slider .slick-slide {
    margin:0 60px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin: 20px 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:15px;/*ドットボタンのサイズ*/
    height:15px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#cd0000;/*ドットボタンの現在地表示の色*/
}

/*==================================================
フルスライド
===================================*/

.fullslide-item01 {
    background: url("../images/mainvisual-s1.jpg");
}

.fullslide-item02 {
    background: url("../images/mainvisual-2.jpg");
}

.fullslide-item03 {
    background: url("../images/mainvisual-s3.jpg");
}

.fullslide-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	
}

.scroll-nav {
	display: none;
}

@media only screen and (min-width: 960px) {

.l-header {
	overflow: hidden;
}
	
.fullslide {
	float: right;
  	position:relative;
	z-index: 1;
	width: 920px;
	height: 754px;
}
	
.fullslide-item01 {
    background: url("../images/mainvisual-1.jpg");
}

.fullslide-item02 {
    background: url("../images/mainvisual-2.jpg");
}

.fullslide-item03 {
    background: url("../images/mainvisual-3.jpg");
}

.fullslide-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 754px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	overflow: hidden;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	
}

/*========= 途中からナビゲーションが変化するのためのCSS ===============*/
.scroll-nav {
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	height: 100px;
	width: 100vw;
	margin: 0 -500%;
	padding: 0 500%;
	background: url("../images/background_nav.jpg") repeat 0 0;
	color: #fff;
	z-index: 999;
}

.scroll-nav__inner {
	display: flex;
	height: 100px;
	justify-content: flex-start;
	align-items: center;

}
	
.scroll-nav ul {
    padding-left: 200px;
    text-align: center;
}
	
.scroll-nav li {
	list-style: none;
	display: inline;
	padding: 0 30px;
}

.l-gnav-scroll a:link {
	text-decoration: none;
	color: #fff;
}

.l-gnav-scroll a:hover,a:focus,a:active {
	text-decoration: underline;
	color: #cd0000;
}
	
.scroll-nav-logo {
	font-family: 'Sawarabi Mincho', sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #cd0000;
	text-shadow: 1px 2px 3px #fff;
	text-align: center;
}
	
.scroll-nav-logo span {
	font-size: 16px;	
}
	
.scroll-nav-info {
    /* font-size: 12px;
    text-align: center; */
    display: none;
}
	

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
	
}

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

  to {
    opacity: 1;
	transform: translateY(-80px);
  }
}




