@charset "utf-8";
/* CSS Document */
*{
    box-sizing: border-box;
}
html{
	overflow-y : scroll;
}
body {
	background: #ffffff;
	font-size-adjust: 100%;
	position: relative;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: #232323;
}
a {
	color: #232323;
	text-decoration: none;
}
a:hover {
    opacity: 0.7;
}

.sp {
	display: none;
}
.coming {
  max-width: 450px;
  width: 80%;
  height: auto;
}
/*------------------
  ヘッダー
-------------------*/
.out_header .pc {
    background-color: rgb(255,255,255,0.2);
    position: fixed;
    z-index: 100;
    width: 100%;
}
.out_header .pc .inner {
    display: flex;
	justify-content: space-between;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
}
.out_header .pc h1 img {
	margin: 10px 0 0 10px;
}
.out_header .pc ul {
	display: flex;
	justify-content: space-between;
	margin: 1.4rem 0 1.2em;
}
.out_header .pc ul li {
	margin-left: 1rem;
	text-align: center;
}
.out_header .pc ul li a {
	display: inline-block;
	padding: 5px 10px;
}
.out_header .pc ul li a:hover {
	opacity: 0.8;
}

/*------------------
  ページタイトル
-------------------*/
.page_title {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
	  margin: 0 auto;
    background-image: url(../img/common/title_img.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.page_title h1 {
    text-align: center;
    font-size: 2.4em
}
.page_title h1 span {
    font-size: 60%;
}

/*------------------
  h2
-------------------*/
.main_contents h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    text-align: center;
    font-size: 2.4em;
    color: #3fa9f5;
    margin-bottom: 60px;
    line-height: 1.5;
    padding: 0.5em;
}
.main_contents h2 span {
    font-size: 44%;
}
/*------------------
  メイン
-------------------*/
.main_contents .inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 1rem 80px;
    text-align: center;
}

.main_contents .read {
    margin-bottom: 60px;
}

/*------------------
  ボタン
-------------------*/
.button a,
.button input,
.btn_confirm input {
      color: #ffffff;
    padding: 1em 0;
    max-width: 500px;
    font-size: 0.84em;
    font-weight: 500;
    width: 70%;
    display: block;
    background-color: #3fa9f5;
    margin: 2rem auto 1rem;
    border-radius: 30px;
    box-shadow: 0px 5px 0px 0px rgb(224 224 224);
    max-width: 360px;
}
.button a:hover {
    opacity: 0.8;
    transform: translate(0px, 5px);
    box-shadow: none;
   transition: all 0.3s ease;
}
.button a span {
    margin-left: 18px;
    color: #85b88c;
}
.pushright:hover span {

}
/*------------------
 ボタン矢印
-------------------*/

/*------------------
 トップへ戻るボタン
-------------------*/
/* トップへ戻るボタン */
.page_top_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0.2em 0.6em;
  transition: 0.3s;
}

/* マウスオーバー時 */
.page_top_btn:hover {
  opacity: 0.8;
}


html{
  scroll-behavior: smooth;
}
/*------------------
  フッター
-------------------*/
footer {
  background-color: #3fa9f5;
}
footer .inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
}
footer .footer_nav ul {
  display: flex;
  justify-content: space-around;
}
footer .footer_nav ul li img {
  margin-right: 7px;
  width: 22px;
  height: auto;
}
footer .footer_nav ul li a {
  color: #fff
}
footer .copy_right {
  color: #fff;
	text-align: center;
	font-size: 0.6rem;
	padding: 1rem 0;
  border-top: 2px #fff dotted;
}
footer .copy_right .footer_logo img {
  max-width: 60px;
  width: 100%;
  height: auto;
  margin: 1em 0;
}
#toggle {
		display: none;
	}


/*スマホ対応*/  
@media screen and (max-width:501px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
.coming {
    width: 60%;
}
/*------------------
  ハンバーガーメニュー
-------------------*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #3fa9f5;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(63, 169, 245, 0.95);
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
  height: 100%;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: auto;
  text-align: left;
  display: inline-block;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:first-child {
    margin-top: 70px;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li a img {
  margin-right: 10px;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}
/*------------------
  ページタイトル
-------------------*/
.page_title {
    min-height: 120px;
    width: 100%;
}
.page_title h1 {
    text-align: center;
    font-size: 1.3rem;
}
.main_contents h2 {
    font-size: 160%;
}
/*------------------
  メイン設定
-------------------*/
.main_contents .inner {
    padding: 40px 1rem 40px;
}
.main_contents .read {
    margin-bottom: 30px;
    font-size: 16px;
}
/*------------------
　ボタン
-------------------*/	
.button a {
    padding: 0.6rem 0;
    max-width: 300px;
    margin: 2rem auto 0;
    font-size: 12px;
}
/*------------------
  フッター
-------------------*/   
footer .inner {
    padding: 0rem 0;
    min-height: auto;
}
footer .footer_nav ul {
    display: block;
    padding: 2rem 0 2rem;
}
footer ul li {
    margin-left: 2rem;
    margin-bottom: 0.5em;
}
footer ul a {
    font-size: 14px;
}

}




