@charset "utf-8";

/** =======================
 * common setting
 ===========================*/
body{
    width: 100%;
    position: relative;
	line-height: 1.8;
    color: #42454A;
	font-family :'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif!important;
    background: #F1F1F1;
	overflow: auto;
	height: 100%
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#drawer-navigation{ 
	display:none;
}

/** =======================
 * contents-wrap
 ===========================*/
.contents-wrap{
	padding: 5%;
	display: block;
	max-width: 980px;
	margin: 0 auto;
	font-family :'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

.contents-wrap h1 {
    color: #42454A;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 10px 10px 10px;
 }


/** =======================
 * accordion
 ===========================*/

.accordion .displayNone {
display: none;
}

 .accordion li{
    width: 100%;
    margin: 0 0 20px 0;
	padding: 5%;
	display: inline-block;
	filter: drop-shadow(2px 6px 6px rgba(0,0,0,0.1));
    background: #FFF;
    border-radius: 16px;
	-webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}

.accordion li h2{
    font-size: 15px;
    font-weight: 700;
	text-align: left;
}

.accordion a {
display: block;
}

.accordion .contentWrap {
    font-size: 14px;
	border-top: 1px solid #CBCBCB;
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
}

.accordion .contentWrap img{
	width: 100%;
	max-width: 400px;
	display: block;
	margin: 0 auto;
}

.accordion .contentWrap p{
	margin: 6% 0;
	color: #42454A;
    font-size: 14px;
}

.accordion .contentWrap .detail{
	margin: 0 0 10px;
 }

.accordion .contentWrap .detail a {
    display: block;
    text-decoration: none;
    color: #42454A;
    padding: 10px 20px;
	border: 1px solid;
	border-radius: 30px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
 }

.accordion .contentWrap .detail a:hover {
    background: #42454A;
    color: #FFF;
 }

.accordion h2{
padding:10px 40px 10px 10px;
}

.accordion .switch {
cursor:pointer;
font-weight: bold;
padding:10px 40px 10px 10px;
font-size: 14px;
position: relative;
}

.accordion .switch:after {
font-family: "Font Awesome 5 Free";
content: '\f106';
font-weight: 900;
position: absolute;
top: 60%;
right: 10px;
margin-top: -18px;
font-size: 18px;
-moz-transition: all, 0.25s, linear;
-o-transition: all, 0.25s, linear;
-webkit-transition: all, 0.25s, linear;
transition: all, 0.25s, linear;
color: #F97A58;
}
.accordion .switch.open:after {
-moz-transform: translate(0, 50%);
-ms-transform: translate(0, 50%);
-webkit-transform: translate(0, 50%);
transform: translate(0, 50%);
-moz-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
font-family: "Font Awesome 5 Free";
color: #C3C1C1;
}


/** =======================
 * modaal
 ===========================*/

html, body, .wrapper {
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.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;
}


label {
  cursor: pointer;
}

.btn {
	width: 100%;
	margin: 10px 0 0 0;
}

.btn label {
	display: inline-block;
    text-decoration: none;
    color: #42454A;
    padding: 10px 20px;
	border: 1px solid;
	border-radius: 30px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
	width: 100%;
	text-align: left;
}

.btn label:hover {
    background: #42454A;
    color: #FFF;
}

.btn.small label {
  font-size: 18px;
}

.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;
  height: 92%;
  margin: auto;
  z-index: 3;
}

.modalInner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: 100%;
  padding: 30px;
  cursor: default;
  background-color: #fff;
  border-radius: 16px;
  -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);
}

.modalCloseBtn {
  position: absolute;
  z-index: 15;
  top: -10px;
  right: -10px;
}

.modalCloseBtn label {
    display: inline-block;
    color: #383A40;
    text-decoration: none;
    font-size: 2em;
    background: #FFFFFF;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    border: 3px solid #A3A3A3;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
}

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

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

#step01_01:checked ~ .wrapper #step01_01Con,
#step01_02:checked ~ .wrapper #step01_02Con,
#step01_03:checked ~ .wrapper #step01_03Con,
#step02_01:checked ~ .wrapper #step02_01Con,
#step02_02:checked ~ .wrapper #step02_02Con,
#step02_03:checked ~ .wrapper #step02_03Con,
#step02_04:checked ~ .wrapper #step02_04Con,
#step02_05:checked ~ .wrapper #step02_05Con,
#step03_01:checked ~ .wrapper #step03_01Con,
#step03_02:checked ~ .wrapper #step03_02Con,
#step04_01:checked ~ .wrapper #step04_01Con,
#step04_02:checked ~ .wrapper #step04_02Con,
#step05_01:checked ~ .wrapper #step05_01Con,
#step05_02:checked ~ .wrapper #step05_02Con,
#step05_03:checked ~ .wrapper #step05_03Con,
#step05_04:checked ~ .wrapper #step05_04Con,
#step05_05:checked ~ .wrapper #step05_05Con{
  opacity: 1;
  visibility: visible;
}

.modalTtl {
	border: 1px solid #393B40;
	border-radius: 4px;
	padding: 5px 10px;
	text-align: center;
	font-size: 18px;
	color: #393B40;
}

.modalInner h4{
	font-size: 16px;
	color: #393B40;
	padding: 0 10px;
	margin: 20px 0 10px 0;
	font-weight: 700;
	border-left: 5px solid #FA7349;
}

.modalInner img{
	width: 100%;
}

.modalInner p{
	font-size: 14px;
	color: #393B40;
	padding: 5px 0 10px 0;
}


@media (max-width: 640px) {
	.modalCon {
	-webkit-overflow-scrolling: touch;	
	}	
}


/** =======================
 * faq
 ===========================*/

.contents-link {
    margin: 0 10px 10px 10px;
    width: 100%;
    margin: 0 0 20px 0;
	padding: 5%;
	display: inline-block;
	filter: drop-shadow(2px 6px 6px rgba(0,0,0,0.1));
    background: #42454A;
    border-radius: 16px;
	-webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}

.contents-link a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
	display: block;
}


