@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/*** all ***/

*:focus {
  outline:none;
}
html{
  font-size: 16px;
}
body{
  -webkit-text-size-adjust: 100%;
	line-height: 1.5;
  letter-spacing: 0;
}
body, .font_sans-serif{
	font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}

h2, h3, h4, h5, h6{
  line-height: 1.5;
}

input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
textarea{
  overflow: auto
}

/*---------------------------------------------------------------------------*/

#wrap{
  max-width: 562.5px;
  margin: 0 auto;
  overflow: hidden;
}
.btn_wrap {
  bottom: 25.5%;
}
.btn_wrap2 {
  bottom: 21%;
}


.img1 .btn_wrap {
  bottom: 18.5%;
}

.img1 .btn_wrap2 {
  bottom: 15.5%;
}

.img9 .btn_wrap {
  bottom: 16%;
}

.img9 .btn_wrap2 {
  bottom: 13%;
}

.modal-wrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px;
	background: #e5caff;
}

/*モーダルを開くボタン*/
.modal-open{
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0 auto;
  cursor: pointer;
}
.modal-border {
    z-index: 0;
	border: 1px solid #222;
	height: 10px;
	opacity: 0.5;
}
.modal-open:hover {
	opacity: 0.5;
	transition: 0.5s;
}
.privacy a{
	color: #222;
}
.privacy:hover{
	opacity: 0.5;
	transition: 0.5s;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -7px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}
.table{
   width: 100%;
}
.box:not(:first-child) {
	padding-top: 20px;
}
.box{
	display: flex;
	justify-content: space-between;
}
p.name {
	width: 20%;
	font-weight: 600;
	vertical-align:top;
}

p.text{
	width: 80%;
	padding-left: 20px;
	vertical-align:top;
}

/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
}

/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
}