@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/




/* ここからモーダル用CSS */
html, body, .wrapper {
  width: 100%;
  height: 100%;
}



/*.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}*/
.flex.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content {
  max-width: 1080px;
  width: 92%;
  margin: 3em auto;
}
.content .ttl {
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 1px solid #dedede;
}
.content p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.modalCheck {
  display: none;
}

.mainVisual {
  min-height: 240px;
  height: 50%;
}
.mainVisual.main01 {
  background: url(https://unsplash.it/1024/768?image=1003) no-repeat 50% 90%;
  background-size: cover;
}
.mainVisual.main02 {
  background: url(https://unsplash.it/1024/768?image=40) no-repeat 50% 50%;
  background-size: cover;
}

label {
  cursor: pointer;
}

.btn {
  text-align: center;
}
.btn label {
/*
		  display:block;
		  width:100%;
		  
		  background-color:#f2edcf;
		padding:0.5em;
		margin:0 3px 0 0;
		border:2px solid #000;
		width:100%;
		font-size:12px;
		border:3px solid #004e2b;
		border-radius:5px;
		box-shadow: 3px 3px #004e2b;
		*/
		/*pointer-events: none;*/
		display:table-cell;
		vertical-align:middle;
		text-align:center;
		width:100%;
		padding:0.3em;
		color:#ad0003;
		transition:.3s;
		  
}
.btn label:hover {
  background-color: #ad0003;
		  color:#fff;
}
.btn.small label {
  font-size: 18px;
}


.close_btn {
	background-color:#000;
	color:#fff;
	width:32px;
	height:32px;
	position: absolute;
	  left: auto;
	  top: -4px;
	  right: -4px;
	  bottom: auto;
	  margin: auto;
	
	  font-size: 32px;
	  line-height: 32px;
	  color: #fff;
	  text-align:center;
	  border-radius:4px;
}

.close_btn label {
	color:#fff;
}

.modalWrap, .modalBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 10;
}

.modalWrap {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s cubic-bezier(1, 0, 0, 1);
  transition: 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  will-change: opacity;
}

.modalBg {
  cursor: pointer;
  opacity: 0.7;
  background-color: #000;
  z-index: 2;
}
.modalBg label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.modalCon {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  width: 92%;
  max-width: 640px;
  min-width:294px;
  height: 86%;
  margin: auto;
  z-index: 1000;
}

.modalInner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: 100%;
  padding: 0 1.5em 1.5em;
  cursor: default;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}


.modalInner section {
	width:100%;
	min-width:100%;
	margin:0 0 2em;
	padding:0;
}


.modalInner section .sc{
	width:100%;
	min-width:100%;
	height:30vh;
	margin:0;
	padding:1em 1em;
	border:1px solid #ccc;
	overflow-y: scroll;
	
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

.modalInner section .sc ul{
	margin-bottom:3em;
}
.modalInner section .sc ul:last-child{
	margin-bottom:0;
}


.modalCloseBtn {
  position: absolute;
  top: 0;
  right: 0;
  color:#fff;
  z-index:1;
}
.modalCloseBtn label {
  display: inline-block;
  padding: 0.5em;
  color: #333;
  text-decoration: none;
  font-size: 2em;
}

.modalCheck:not(:checked) ~ .wrapper > *:not(.modalWrap) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.modalCheck:not(:checked) ~ .wrapper .modalWrap {
  opacity: 0;
  visibility: hidden;
}

.modalCheck:checked ~ .wrapper > *:not(.modalWrap) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

#modal00:checked ~ .wrapper #modal00Con {
  opacity: 1;
  visibility: visible;
}

#modal01:checked ~ .wrapper #modal01Con {
  opacity: 1;
  visibility: visible;
}

#modal02:checked ~ .wrapper #modal02Con {
  opacity: 1;
  visibility: visible;
}

#modal03:checked ~ .wrapper #modal03Con {
  opacity: 1;
  visibility: visible;
}

#modal04:checked ~ .wrapper #modal04Con {
  opacity: 1;
  visibility: visible;
}

.modalTtl {
  padding: 2em 0.5em 1.5em;
  font-size: 2em;
  line-height: 1.3;
  text-align: center;
  font-weight:bold;
}

.modalText .modalCover {
  margin: 0 -1.5em 2em;
  display:flex;
}

.modalText .modalCover div {
	padding:1em;
	width:50%;
}

.modalText .modalCover div p {
	display:inline-block;
	height:15vh;
	margin-bottom:0;
	padding:0 1em;
	min-height:160px;
	font-weight:bold;
}

.modalText .modalCover div p span {
	color:#ad0003;
}


.modalText h4 {
	font-size:20px;
	font-weight:bold;
  margin-bottom: 1em;
  line-height: 1.4;
}

.modalText p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.modalText ul {
	margin-left:1.5em;
}
.modalText ul li {
	list-style:disc;
	margin-bottom:1em;
	line-height:1.4em;
}



/*<!--チェックが入ったら、ボタンを押せる-->*/

.notes_required,
.notes_required2,
.notes_required3,
.notes_required4 {
  text-align: center;
  border: 2px solid #ccc;
  padding: 30px 20px;
}
.notes_required .check_text_b,
.notes_required2 .check_text_b,
.notes_required3 .check_text_b,
.notes_required4 .check_text_b {
  font-size: 16px;
  margin:0;
}
.notes_required .checkBtn_area,
.notes_required2 .checkBtn_area,
.notes_required3 .checkBtn_area,
.notes_required4 .checkBtn_area  {
  max-width: 400px;
  margin: 15px auto 10px;
  border-radius: 12px;
  background: #f5f5f5;
  padding: 20px 0;
  transition-duration: 0.2s;
}
.notes_required._check .checkBtn_area,
.notes_required2._check .checkBtn_area2,
.notes_required3._check .checkBtn_area3,
.notes_required4._check .checkBtn_area4 {
  /*background: #f3d9d9;*/
}

.notes_required label,
.notes_required2 label,
.notes_required3 label,
.notes_required4 label {
  color: #333;
  font-size: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
  transition-duration: 0.3s;
  position: relative;
}
.notes_required label .label_inner,
.notes_required2 label .label_inner2,
.notes_required3 label .label_inner3,
.notes_required4 label .label_inner4 {
  padding-left: 32px;
}
.notes_required label .label_inner:before,
.notes_required2 label .label_inner2:before,
.notes_required3 label .label_inner3:before,
.notes_required4 label .label_inner4:before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid #737373;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -13px;
}
.notes_required._check label .label_inner:after,
.notes_required2._check label .label_inner2:after,
.notes_required3._check label .label_inner3:after,
.notes_required4._check label .label_inner4:after {
  content: '';
  width: 20px;
  height: 12px;
  border-top: 6px solid #d6042e;
  border-right: 6px solid #d6042e;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -.9em;
}
.notes_required label input,
.notes_required2 label input,
.notes_required3 label input,
.notes_required4 label input {
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .notes_required label:hover {
    /*border-bottom: 2px solid #ff7600;*/
  }
}
@media screen and (max-width: 1024px) {
  .notes_required label {
    font-size: 18px;
  }
  .notes_required .check_text_b {
    font-size: 14px;
  }
  .notes_required label .label_inner,
  .notes_required2 label .label_inner2,
  .notes_required3 label .label_inner3,
  .notes_required4 label .label_inner4 {
    padding-left: 32px;
  }
  .notes_required label .label_inner:before,
  .notes_required2 label .label_inner2:before,
  .notes_required3 label .label_inner3:before,
  .notes_required4 label .label_inner4:before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .notes_required._check label .label_inner:after,
  .notes_required2._check label .label_inner2:after,
  .notes_required3._check label .label_inner3:after,
  .notes_required4._check label .label_inner4:after {
    width: 16px;
    height: 8px;
    margin-top: -0.8em;
  }
}
@media screen and (max-width: 767px) {
  .notes_required {
    padding: 20px 15px;
  }
  .notes_required .check_text_b {
    font-size: 13px;
  }
  .notes_required._check label .label_inner:after,
  .notes_required2._check label .label_inner2:after,
  .notes_required3._check label .label_inner3:after,
  .notes_required4._check label .label_inner4:after {
    width: 16px;
    height: 8px;
    margin-top: -0.8em;
  }
}

/*------------------------------------------------------------
.btnArea
------------------------------------------------------------*/

.btnArea,
.btnArea2,
.btnArea3,
.btnArea4,
#btn_jichitai-link {
  max-width: 400px;
  margin: 30px auto 0;
  position: relative;
}
.btnArea input[type="submit"],
.btnArea2 input[type="submit"],
.btnArea3 input[type="submit"] ,
.btnArea4 input[type="submit"]  {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  z-index: -1;
  transition-duration: 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.btnArea input[type="submit"],
.btnArea2 input[type="submit"],
.btnArea3 input[type="submit"],
.btnArea4 input[type="submit"] {
  cursor: default;
  z-index: +1;
  outline: none;
  pointer-events: none;
}
.btnArea._check input[type="submit"],
.btnArea2._check input[type="submit"],
.btnArea3._check input[type="submit"],
.btnArea4._check input[type="submit"]  {
  z-index: -1;
  pointer-events: auto;
}

.btnArea + p,
.btnArea2 + p,
.btnArea3 + p,
.btnArea4 + p {
	margin-top:1em;
}


a.btn_one {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #969696;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 0px 0px 0px 0px #00407b;
  width: 100%;
  padding: 1em 2em;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  top:5px;
  pointer-events: none;
}
a.btn_one:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  right: 8%;
  margin-top: -11px;
}
._check a.btn_one._a {
  background: #3475b1;
  box-shadow: 0px 5px 0px 0px #104575;
  top:0px;
  pointer-events:auto;
}
a.btn_one._a:hover {
  background: #228bc8;
  opacity: 1;
}
._check a.btn_one._b {
  background: #459d3c;
  box-shadow: 0px 5px 0px 0px #255720;
}
a.btn_one._b:hover {
  background: #63b559;
  opacity: 1;
}


#btn_jichitai-link {
	display:block;
	color:#fff;
	
}

#btn_jichitai-link a {
	display:block;
  text-align:center;
  background-color:#ad0003;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
  padding: 1em 2em;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}

#btn_jichitai-link a:hover {
	background-color:#e52226;
}


#btn_jichitai-link a span {
	display:inline-block !important;
}


@media (max-width: 640px) {
  .content {
    margin: 1.5em auto;
  }

  .modalInner {
    padding-left: 1em;
    padding-right: 1em;
  }

  .modalTtl {
    font-size: 1.5em;
    padding-bottom: 1em;
  }

  .modalText .modalCover {
    margin: 0 -1em 1em;
	display:block;
  }

  .modalText .modalCover div {
	  width:100%;
  }

  .modalText .modalCover div p {
	  height:auto;
  }
 
.modalText .modalCover div p {
	display:inline-block;
	height:15vh;
	margin-bottom:0;
	padding:0 1em;
	min-height:100px;
	font-weight:bold;
}


}


@media (max-width: 320px) {

 
.modalText .modalCover div p {
	display:inline-block;
	height:17vh;
	margin-bottom:0;
	padding:0 1em;
	min-height:80px;
	font-weight:bold;
}


}
