@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  background-color: #FFFFFF;
  scroll-behavior: smooth;
	text-transform: none;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  color: #181818;
  line-height: 2.4rem;
  text-align: center;
	max-width: 1440px;
  margin: 0 auto;
}
h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 4.0rem;
	line-height: 4rem;
	text-align: left;
  margin: 150px auto 60px;
}
h2 {
font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 5.0rem;
    line-height: 8rem;
    text-align: left;
}
h3 {
  font-family: 'Roboto', sans-serif;
}
h3, p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 3rem;
	text-align: left;
	text-align:justify;
}
@media(max-width: 1060px) {
  h1, h2 {
    margin: 70px auto 30px;
  }
  h3, p {
    font-size: 1.4rem;
		text-align:justify;
  }
}

/*モーダル*/
.modal_sp {
  display: none;
}
.modal {
  line-height: 2.3rem;
}
.modal th, .modal_sp th {
  width: 30%;
  padding-left: 20px;
  padding-right: 20px;
}
.modal td, .modal_sp th {
  width: 70%;
  padding-left: 20px;
  padding-right: 20px;
}
.modal_th_odd, .modal_td_odd {
  height: 65px;
  font-size: 1.6rem;
  padding-top: 0;
  font-weight: 300;
  background-color: #D9D9D9;
}
.modal_th_even, .modal_td_even {
  height: 65px;
  font-size: 1.6rem;
  padding-top: 0;
  font-weight: 300;
  background-color: #fff;
}
.modal_open_2 {
	margin-top: 20px;
}
/* モーダル本体の指定 + モーダル外側の背景の指定 */
.wrapper_modal_1, .wrapper_modal_2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 80%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 100;
	list-style-position: inside;
}
/*モーダル本体の擬似要素の指定*/
.wrapper_modal_1:before, .wrapper_modal_2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.wrapper_modal_1.active, .wrapper_modal_2.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal_body_1, .modal_body_2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 70%;
}
/*モーダルを閉じるボタンの指定*/
.modal_close_1, .modal_close_2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal_content_1 {
  background: #fff;
  text-align: left;
  padding: 50px 30px;
  color: #161616;
  border-radius: 10px;
  line-height: 3.0rem;
}
.modal_content_2 {
  background: #fff;
  text-align: left;
  padding: 50px 100px;
  color: #161616;
  border-radius: 10px;
  line-height: 3.0rem;
}
	.modal_content_2_h2 {
		margin: 0px auto 40px;
		font-size: 2.5rem;
		font-family: 'Zen Kaku Gothic New', sans-serif;
	}
	.modal_content_2_h3 {
		margin-top: 40px;
		font-size: 1.8rem;
		font-family: 'Zen Kaku Gothic New', sans-serif;
	}
	.modal_content_2 ol {
		list-style-position: inside;
	}
	.modal_content_2 li {
		font-weight: 300;
		font-size: 1.4rem;
	}
	.modal_content_2 a {
		font-weight: 300;
		font-size: 1.4rem;
	}
@media(max-width: 1060px) {
  .modal_sp {
    display: block;
    background-color: #fff;
  }
  .modal {
    display: none;
  }
  .wrapper_modal_1, .wrapper_modal_2 {
    padding: 40px 0;
  }
  .modal_body_1, .modal_body_2 {
    width: 80%;
  }
  .modal_content_1 {
    background: #fff;
    text-align: left;
    padding: 50px 0;
    color: #161616;
    border-radius: 10px;
    line-height: 3.0rem;
    width: 100%;
  }
  .modal_th_odd, .modal_td_odd {
    font-size: 1.4rem;
    padding: 10px;
  }
  .modal_th_even, .modal_td_even {
    font-size: 1.4rem;
    padding: 10px;
  }
  .modal_text_title_sp {
    font-weight: 400;
  }
  .modal_th_odd, .modal_th_even {
    width: 1%;
  }
}
@media(max-width: 660px) {
	.modal_content_2 {
  padding: 50px 25px;
}
}
/* スクロールをきっかけにふわっと----------------------------------------- */

.fadeUp {
animation-name: fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

.delay-time{
animation-delay: 0.5s;
}

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

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
 
.fadeUpTrigger{
    opacity: 0;
}
/* その場でふわっとスクロール----------------------------------------- */
.fadeUp-top{
animation-name:fadeInAnime;
animation-duration:2.0s;
animation-delay: 1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
