@charset "UTF-8";
@import url("common.css");
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Raleway:wght@200;400&display=swap');

/*ヘッダー*/

.header{
  position: fixed;
  z-index: 30;
  left: 0;
  top:  0;
  width: 100%;
  background: #fff;
}
.header_inner {
  position: relative;
  align-items: center;
  height: 56px;
  margin-top: auto;
}
.logo{
  position: absolute;
}
nav li{
　margin-bottom: 10px;
}
nav li a{
　margin-bottom: 10px;
}
.main{  
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 30px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: -17px;
    top: 8px;
    width: 60px; /* クリックしやすい幅 */
    height: 60px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    letter-spacing: 2px;
    font-family: 'Raleway';
    font-size:15px;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    text-align: center;
    display: block;
    padding: 10px 0;
	border-bottom: 0px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .nav_item:nth-child(4) {
   display: flex;
   align-items: center;
   justify-content: center;
    }
  .nav_item:nth-child(5) {
   display: flex;
   align-items: center;
   justify-content: center;
    }
  .hamburger_border {
    position: absolute;
    left:3px;
    width: 20px;
    height: 1.5px;
    background-color: #333;
    transition: all .3s;
  }
  .hamburger_border_top {
    top: 10px;
  }
  .hamburger_border_center {
    top: 18px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
	top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
	top: 20px;
  }
}
/* sp */

@media only screen and (min-width: 768px) {
  .header_inner{
    max-width: 1280px;
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    margin:20px 30px;
    }

  .nav_list{
    text-align: right;
    line-height: -10;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 10px;
	padding-right: 30px;
    }
  .nav_list li a{
    color: #000;
	font-size: 16px;
    font-family: "Raleway";
    letter-spacing: 2px;
	text-decoration: none;
	text-align-last: center;
    }
/*PC*/
/* container */
	.wrapper{
	min-width: 768px;
	padding-top: 5px;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 20px;
    background-color:#fff;
}
.wrapper .container{
	display:block;
    width:100vw;
    margin:100;
    padding:50px 50px 50px 50px;
}
/* content */
@media (min-width: 768px) {
    .wrapper .container .content {
        display: inline-flex;
        align-items: center;
        justify-content: center;
}
/* PC時のみ順番を入れ替える */
@media (min-width: 768px) {
    .wrapper .content {
        flex-direction:row-reverse;
    }
.img{
	width:30%;
	height:30%;
	float:left;
}
/*フッターPCのスタイル*/
.footer{
    display: block;
	flex-grow: 1;
	max-width: 100vw;
	height: 60px;
	text-align: center;
	flex-grow: 1;
	font-size: 10px;
	padding-top: 10px;
	background-color: #000;
	color: #fff;
	}	
/*フッターSPのスタイル*/
	@media only screen and (min-width: 600px){
.footer{
	display: block;
	text-align: center;
	background-color: #000;
	color: #fff;
	}
   }
/*ロゴ画像のスタイル*/
@media screen and (max-width:320px){
}
/*PC用のスタイル*/
@media screen and (min-width:320px){
}
