@charset "utf-8";
/* CSS Document */
*{
    box-sizing: border-box;
}
html{
	overflow-y : scroll;
}
body {
	background: #ffffff;
	font-size-adjust: 100%;
	position: relative;
	font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
}
a {
	color: #000000;
	text-decoration: none;
}
.sp {
	display: none;
}

/*------------------
  ヘッダー
-------------------*/
.out_header .pc {
    background-color: #1c1f26; 
}
.out_header .pc .inner {
    display: flex;
	justify-content: space-between;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}
.out_header .pc h1 {
    line-height: 0;
}
.out_header .pc h1 img {
	max-width: 200px;
    width: 100%;
    height: auto;
    padding: 5px;
}
.out_header .pc ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.out_header .pc ul li {
	margin-left: 2rem;
	text-align: center;
}
.out_header .pc ul li a {
	display: inline-block;
	padding: 5px 10px;
    font-size: 14px;
    color: #fff;
}
.out_header .pc ul li a:hover {
	opacity: 0.8;
}

/*------------------
  ページタイトル
-------------------*/
.page_title {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
	margin: 0 auto;
    background: linear-gradient(rgba(200,200,200,1), rgba(200,200,200,0.8)),
  url('https://dummyimage.com/1920x220/111/ffffff');
    /*background-image: url(../img/common/title_img.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.page_title h1 {
    text-align: center;
    font-size: 200%;
}
.page_title h1 span {
    font-size: 60%;
}

/*------------------
  h2
-------------------*/
.main_contents h2 {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 40px;
}
.main_contents h2 span {
    font-weight: normal;
    font-size: 87.5%;
    color: #808080;
}
/*------------------
  メイン
-------------------*/
.main_contents .inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 20px;
    padding-bottom: 6rem;
    text-align: center;
}
.main_contents section:nth-child(even) {
    background: #f5f5f5;
}
.main_contents .read {
    margin-bottom: 60px;
}
.bread {
    max-width: 1080px;
    width: 100%; 
    margin: 0 auto;
    font-size: 14px;
    padding: 0.75rem;
}
/*------------------
  ボタン
-------------------*/
.button a,
.button input,
.btn_confirm input {
    color: #fff;
    padding: 0.8rem 0;
    max-width: 300px;
    width: 100%;
    display: block;
    background-color: #d35400;
    text-align: center;
    margin: 3rem auto 0;
    border-radius: 4px;
    font-weight: bold;
}
.button a:hover {
    opacity: 0.8;
}
/*------------------
 ボタン矢印
-------------------*/
.arrow{
  position: relative;
}
.arrow:before,
.arrow:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 60px;
  height: 2px;
  background: #fff;
}
.arrow:before{
  width: 40px;
  transform: translate(30px, 0px);
}
.arrow:after{
  width: 15px;
  transform-origin: right center;
  transform: translate(30px, 0px) rotate(25deg);
}
/*------------------
 トップへ戻るボタン
-------------------*/
/* トップへ戻るボタン */
.page_top_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0.2em 0.6em;
  text-align: center;
  background: #d35400;
  color: #fff;
  transition: 0.3s0;
  border: 1px solid #fff;
  border-radius: 5px;
}

/* マウスオーバー時 */
.page_top_btn:hover {
  opacity: 0.8;
}
.page_top_btn span {
  position: relative;
  padding-left: 25px;
  display: block;
}
.page_top_btn span:before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 8px;
  width: 13px;    /* くの字を山なりに見た時、左側の長さ */
  height: 13px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 3px solid #fff;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #fff;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(-45deg);    /* くの字の向き */
}
html{
  scroll-behavior: smooth;
}
/*------------------
  フッター
-------------------*/
footer {
   background: linear-gradient(rgba(200,200,200,1), rgba(200,200,200,0.8)),
   url('https://dummyimage.com/1920x400/111/ffffff');
   /*background-image: url(../img/common/footer_back.jpg);*/
   background-repeat: no-repeat;
   background-position: bottom center;
   background-size: cover;
}
footer .inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 0;
  min-height: 300px;
}
footer ul {
  display: flex;
  justify-content: space-around;
}
footer ul li {

}
footer ul a {

}
footer ul a:hover {
  opacity: 0.8;
}
footer .copy_right {
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 0.6rem;
	padding: 1rem 0;
}
footer .copy_right a {
    display: inline-block;
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    padding-bottom: 0.5rem;
}
footer .copy_right a:nth-child(1):after {
    content: "|";
    padding: 0 10px;
}

#toggle {
		display: none;
	}


/*スマホ対応*/  
@media screen and (max-width:501px) {
.pc {
	display: none;
}
.sp {
	display: block;
}

/*------------------
  ハンバーガーメニュー
-------------------*/
#menu-trigger,
#menu-trigger span {
  display: inline-block;
  transition: all .4s;
  z-index: 100;
}
#menu-trigger {
  position: absolute;
  width: 32px;
  height: 32px;
  top:14px;
  right:14px;
  text-shadow: black 0 0 5px;
}
#menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
#menu-trigger span:nth-of-type(1) {
  top: 0;
  text-shadow: black 0 0 5px;
}
#menu-trigger span:nth-of-type(2) {
  top: 10px;
  text-shadow: black 0 0 5px;
}
#menu-trigger span:nth-of-type(3) {
  top: 20px;
  text-shadow: black 0 0 5px;
}
#menu-trigger::after {
  position: absolute;
  top:30px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #fff;
  font-size: 0.6rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
#menu-trigger.active::after {
  content: 'CLOSE';
	top:30px;
}
#menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
.sp nav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
	background-color: #000;
	z-index: 50;
    height: 62px;
}
.sp nav img {
    height: 52px;
    width: auto;
    padding-top: 10px;
}
.sp nav ul {
    padding: 1rem 0;
    background-color: #000;
}
.sp nav li {
    padding: 1rem 0;
}
.sp nav li a {
	color: #fff;
}
.sp nav li:last-child {
    padding-bottom: 30em;
}
/*------------------
  ページタイトル
-------------------*/
.page_title {
    position: relative;
    min-height: 120px;
    width: 100%;
    top: 62px;
}
.page_title h1 {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    position: static;
    text-shadow: black 0 0 5px;
  }
.main_contents h2 {
    font-size: 160%;
}
/*------------------
  メイン設定
-------------------*/
.main_contents .inner {
    padding: 40px 1rem 40px;
}
/*------------------
　ボタン
-------------------*/	
.button a {
    padding: 0.6rem 0;
    max-width: 300px;
    margin: 2rem auto 0;
}
/*------------------
  フッター
-------------------*/   
footer .inner {
    padding: 0rem 0;
    min-height: auto;
}
footer ul {
    display: block;
    padding: 2rem 0 2rem;
}
footer ul li {
    margin-left: 2rem;
    list-style-type: initial;
}
footer ul a {
    font-size: 14px;
}	
}




