@charset "utf-8";
/* CSS Document */
.header {
  width: 100%;
  background-image: url("../image/background1.jpg");
    background-repeat: repeat;
  background-size: contain;  
  padding-bottom: 120px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
}

.header__logo img {
  width: 110px;
  margin-left: 50px;
  margin-top: 20px;
  padding: 0 auto;
}
.header__nav ul {
  display: flex;
  background-color: #000000;
  margin : 50px 100px 100px auto;;
  
}
.header__nav ul li {
  color: #fff;
  font-family: Oswald;
  font-size: 2.0rem;
  padding: 12px 21px;
  font-weight: 300;
}
.header__nav ul li a {
  text-decoration: none;
  color:#fff;
}
.header-sp {
  display: none;
}
.header-sp__logo {
  display: none;
}
@media (max-width:1500px) {
  .header__nav ul { 
    margin: 0;
   margin-top: 50px ;
    margin-right: 80px;
    margin-bottom: 80px
}
}
@media (max-width:1370px) {
  .header__nav ul { 
    margin: 0;
   margin-top: 50px ;
    margin-right: 50px;
    margin-bottom: 60px
}
}
@media (max-width: 1000px) {
  
  .header-inner {
    display: none;
  }
    .header-sp {
    display: block;
  }

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    left: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#333;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #FFFFFF;
  font-family: Oswald;
  font-size: 1.6rem;
	text-decoration: none;
	padding:9px 50px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
  border-bottom: solid 1px #fff;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	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: #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%;
}
    .header-sp__logo {
    display: block;
 width: 100%;
    background:#000;
    text-align: center;
    padding: 5px;
  }
  .header-sp__logo img {
    width: 55px;
  }
}
.section {
  background-image: url("../image/background1.jpg");
  background-repeat: repeat;
  background-size: contain;
}
.section h1 {
  text-align: center;
  color:#fff;
  font-size: 7.0rem;
  font-family: Oswald;
  margin-bottom: 150px;
}
@media(max-width:850px) {
  .section h1 {
  font-size: 4.5rem;
  margin-bottom: 100px;
}
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

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

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.8rem;
    font-weight: 600;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
  color:#fff;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

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

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
  font-weight: 600;
}

.section-button {
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
  margin: 0 auto;
}
.section-button__sp {
  display: none;
}
.section-button button {
  position: relative;
   background-color:#000000;
  border-radius: 0 100px 100px 0;
  width: 260px;
  height: 100px;
  z-index: 1000;
}
.section-button button a {
  color:#fff;
  font-family: Oswald;
  font-size: 2.0rem;
  text-decoration: none;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.2rem;
}
.section-button button img {
  width:70px;
  height: 70px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media(max-width:768px) {
  .title {
    font-size: 1.5rem;
  }
  .box {
    font-size: 1.5rem
  }
  
  .section-button {
    display: none;
  }
.section-button__sp {
  display: block;
   text-align: center;
    margin: 0 auto;
  padding-bottom: 60px;
  padding-top: 30px;
}
  .section-button__sp button {
   background-color:#000000;
  width: 250px;
  height: 50px; 
}
.section-button__sp button a {
  color:#fff;
  font-family: Oswald;
  font-size: 2.0rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
}
  }
  
.section-footer {
  background-color:#000000;
  height: 250px;
  position: relative;
}
.section-footer h1 {
  font-family: Oswald;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  font-weight: 400;
}

.section-footer ul {
  padding-top: 50px;
   display: flex;
  justify-content: center;
}
.section-footer ul li {
  color:#fff;
  font-family: Oswald;
  font-size: 1.8rem;
  padding: 0 20px;
}
.section-footer ul li a {
  text-decoration: none;
  color:#fff;
}
.section-footer img {
  width: 40px;
  position: absolute;
  right: 10%;
  top: 15%;
}
.section-footer small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color:#fff;
  padding-top: 70px;
}
@media (max-width:750px) {
  .section-footer {
    height: 430px;
  }
  .section-footer ul {
    display: block;
    margin-bottom: 20px;
  }
  .section-footer ul li {
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .section-footer small {
    padding: 0;
    padding: 10px;
  }
  .section-footer img {
  width: 40px;
  position: absolute;
  right: 10%;
  top: 25%;
}
}