@charset "UTF-8";

/* header
================================================= */
header {
  width: 100%;
  padding: 0;
  background: #a8dff3;
}
header h1 {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  text-align: center;
}
header.small {
  padding: 5% 0;
  background: #a8dff3;
}
header.small h1 {
  width: 60%;
}
header.small h1 span {
  color: #1467b4;
}
@media print, screen and (min-width: 600px) {
  header {  }
  header h1 {  }
  header.small { padding: 3% 0; }
  header.small h1 { width: 45%; max-width: 500px; }
}
@media print, screen and (min-width: 960px) {
  header {  }
  header h1 {  }
  header.small { padding: 50px 0; }
  header.small h1 {  }
}


/* main
================================================= */
main {
  margin: 10% auto;
  background: #fff;
}
.col-a > section,
.col-b > section {
  margin-top: 9vw;
  padding: 1px 0;
}

.wrap {
	width: 90%;
	max-width: 1230px;
	margin: auto;
}

.wrap.center_box {
	max-width: 768px;
	margin: auto;
}

@media print, screen and (min-width: 600px) {
  main { margin: 7% auto; }
  main > div.wrap.flex { display: flex; justify-content: space-between; }
  main > div.wrap.flex > .col-a { width: 46.5%; }
  main > div.wrap.flex > .col-b { width: 46.5%; }
  .col-a > section, .col-b > section { margin-top: 4.5vw; }
  .col-a > section:first-child, .col-b > section:first-child { margin-top: 0; }
}
@media print, screen and (min-width: 960px) {
  main { margin: 50px auto; }
  .col-a > section, .col-b > section { margin-top: 50px; }
}

/* text decoration */
.text-small {
  font-size: 0.85em;
}
.text-large {
  font-size: 1.25em;
}
.text-bold {
  font-weight: bold;
}
.text-red {
  color: #C80028;
}
.text-center {
  text-align: center;
}

/* h2 & h3 & p */
.wrap h1 {
  margin: 1.6em auto 0.8em;
  font-size: 3.0rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  color: #007c40;
}

h2 {
  margin-bottom: 0.5em;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  background: #007c40;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
h3 {
  display: inline-block;
  margin: 2.0em 0 0.4em;
  font-size: 1.6rem;
  font-weight: bold;
}

h3.attention {
  margin: 2.0em 0 0.4em;
  padding: 0.2em 0.9em;
	border-radius: 2px;
	background: #1f85e3;
	color: #ffffff;
}
h4 {
	margin: 0 0 0.4em;
	padding: 0 0 0.2em;
	font-size: 1.8rem;
	font-weight: bold;
}
h5 {
	margin: 0.6em 0 0.4em;
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: dotted #666666 1px;
}
h2 + h3 {
  margin-top: 0.5em;
}
p + p {
  margin-top: 0.8rem;
}
@media print, screen and (min-width: 960px) {
.wrap h1 { font-size: 3.6rem; }
  h2 { font-size: 2.0rem; }
  h3 { font-size: 1.7rem; }
}
@media print, screen and (min-width: 1366px) {
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.9rem; }
}

/* button */
.btn {
  display: flex;
  align-items:center;
  justify-content: center;
  width: 90%;
  max-width: 300px;
  height: 65px;
  margin: 0.4em auto;
  padding: 0 1.6rem;
  border-radius: 100vh;
  background: #C60A34;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}
.btn:hover,
.btn:active {
  background: #FF8100;
}
.btn.close {
  border-color: #D6D6D6;
  background: #D6D6D6;
  color: #878787;
}

/*comotto_ボタン*/
.go_comotto {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0.4em auto;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-radius: 100vh;
  background: #ffffff;
  color: #0100fb;
  border: solid 3px #0100fb;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}
.go_comotto span {
  font-size: 2.4rem;
}
.go_comotto::before {
	display: block;
	position: absolute;
    transform: rotate(45deg);
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 10px;
    border-top: 4px solid #cc0033;
    border-right: 4px solid #cc0033;
    content: '';
	top: 3.6rem;
	left: 0.6rem;
	transition: .2s;
}
.go_comotto:visited {  color: #0100fb; }
.go_comotto:hover,
.go_comotto:active {
  color: #ffb532;
  background: #0100fb;
}
.go_comotto:hover::before {
    border-top: 4px solid #ffb532;
    border-right: 4px solid #ffb532;
}

/*DL_ボタン*/
.btn_download {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0.4em auto;
  padding: 0.8rem 0 0.4rem 1.6rem;
  border-radius: 100vh;
  background: #4594de url("../image/icon_download.svg") no-repeat left 1.6rem center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.btn_download:visited { color: #ffffff; }
.btn_download:hover,
.btn_download:active {
  color: #ffffff;
  background: #666666 url("../image/icon_download.svg") no-repeat left 1.6rem bottom 10px;
}

/* elements flex */
div.flex.col1,
div.flex.col2,
div.flex.col3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  margin-bottom: -14px;
}
* + div.flex.col1,
* + div.flex.col2,
* + div.flex.col3 {
	margin-top: 14px;
}
div.flex.col1.small {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
div.flex.col2,
div.flex.col3 {
  justify-content: space-between;
}
div.flex.col1 > *,
div.flex.col2 > *,
div.flex.col3 > * {
  margin-bottom: 14px;
}
div.flex.col3 > * {
  width: 48%;
}
@media print, screen and (min-width: 960px) {
  div.flex.col1 > *, div.flex.col2 > *, div.flex.col3 > * { margin-bottom: 20px; }
  div.flex.col2 > * { width: 48%; }
  div.flex.col3 > * { width: 31%; }
  div.flex.col3 > *:nth-child(3n+2):last-child { margin-left: auto; margin-right: 34.5%; }
}

/* figure */
figure img {
  margin: 0.5em 0;
}
figcaption {
  margin-top: 3px;
  line-height: 1.4;
}
figcaption .name {
  display: block;
  margin-top: 5px;
  text-align: center;
}
figcaption .position {
  display: block;
  margin-top: 2px;
  font-size: 1.7rem;
  text-align: center;
}
figure + p.profile {
  margin-top: -14px;
  margin-bottom: 14px;
}

/*condition*/
ul.condition  {
	margin:  0 0 4%;
	border-top: 2px dotted #C9C9C9;
}
.condition li {
	position: relative;
	padding: 0.6em 0 0.6em 1.8em ;
	border-bottom: 2px dotted #C9C9C9;
	font-size: 2rem;
	font-weight: bold;
}
.condition li::before {
	position: absolute;
	display: block;
	content: "";
	top:  1em;
	left: 0.2em;
	background: #feb533;
	padding: 0.5em;
}

 /* add */
main section img {
  border: 1px solid #C9C9C9;
}
.add {
	margin-top: 4%;
	margin-bottom: 0;
}
.add.zoom {
	border: solid 2px #0b5cff;
	padding: 4%;
	border-radius: 5px;
}
.add.zoom h4 {
	border-bottom: solid #0b5cff 2px;
	color: #0b5cff;
}
.add.youtube {
	border: solid 2px #FF0000;
	padding: 4%;
	border-radius: 5px;
}
.add.youtube h4 {
	border-bottom: solid #FF0000 2px;
	color: #FF0000;
}

/*step*/
.area_step {
	width: 100%;
	margin:  3em 0;
	padding: 1.6em 0;
	background: #d4e6c5;
}

.step {
	position: relative;
	border: solid 2px #007c40;
	margin: 0 auto calc(40px + 6%);
	padding: 4%;
	border-radius: 5px;
	background: #ffffff;
}

.step:last-of-type::after {
	margin: 0 auto;
}

.step::after {
	display: block;
	position: absolute;
	content: "";
	bottom: -40px;
	left: calc( 50% - 40px);
    width: 80px;
    height: 40px;
	background: url("../image/step_arrow.svg") no-repeat;
}

.step:last-of-type::after {
	display: none;
}

.step h2 {
	text-align: center;
	width:calc(100% + 8.6% + 4px) ;
	margin:calc(-4.3% + -2px) 0 2% calc(-4.3% + -2px);
	padding: 0.8em 0;
	border-radius: 5px 5px 0 0;
}

.note {
	margin-bottom: 1.4em;
	padding: 4.5% 5%;
	border-radius: 8px;
	background: #ECECEC;
}
.note h3 {
	margin-top: -0.25em;
	color: #009a86;
	font-size: 1.2em;
}
.apply {
	margin-top: 7%;
}
p + .apply {
	margin-top: calc(7% - 0.4em);
}
.apply button {
  display: flex;
  align-items:center;
  justify-content: center;
  width: 90%;
  max-width: 300px;
  height: 65px;
  margin: 0.4em auto;
  padding: 0 1.6rem;
	border: 0;
  border-radius: 100vh;
  background: #999999;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}
.apply button.entry-btnStyle_checked {
  background: #C60A34;
  cursor: pointer;
}
.apply button.entry-btnStyle_checked:hover,
.apply button.entry-btnStyle_checked:active {
  background: #FF8100;
}
.apply div.check {
  margin-bottom: 8px;
  text-align: center;
}
img.step-pic {
  width: 90%;
  max-width: 450px;
  margin: 0.5em auto;
}
.wrap.form {
  width: 90%;
  max-width: 460px;
  margin: 0 auto;
}
.wrap.form section + section {
  margin-top: 15%;
}
.wrap.form h4 {
  text-align: center;
}
@media print, screen and (min-width: 1366px) {
  .apply { margin-top: 5%; }
  p + .apply { margin-top: calc(5% - 0.4em); }
}

/*form_link Page bttun*/
.form_link_box { margin-bottom: 2em; }

.form_btn {
  display: block;
  position: relative;
  width: 90%;
  max-width: 300px;
  margin: 0.4em auto;
  padding: 1.6rem;
  border-radius: 100vh;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1rem;
  transition: .2s;
}
.form_btn span { font-size: 2.4rem; }
.form_btn.zoom { background: #0b5cff; }
.form_btn.youtube { background: #FF0000; }

.form_btn::after {
	display: block;
	position: absolute;
    transform: rotate(45deg);
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 10px;
    border-top: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    content: '';
	top: 3.6rem;
	right: 3.2rem;
	transition: .2s;
}
.form_btn:visited {  color: #ffffff; }
.form_btn:hover,
.form_btn:active {
  background: #666666;
  color: #ffffff;
}

.form_btn:hover::after {
	right: 2.4rem;
}
