@charset "utf-8";
/*###### リセットCSS ######*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.8;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}

/*###### 固定CSS ######*/
html, body{
	height:100%;
	background-color:#20b6c2;
	color: #224975;
	font-family: 'Noto Sans JP', sans-serif,"游ゴシック体", "Yu Gothic";
  line-height: 1.7;
  margin: 0 auto;
  font-size: 16px;
}
img {
    height: auto;
    vertical-align: bottom;
    max-width: 100%;
}
a {
  color:#224975;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  transition: .3s;
  opacity: .6;
}
button {
  font-family:  'Noto Sans JP', sans-serif;
  border: none;
}
button:hover {
  cursor: pointer;
  opacity: .8;
}
section {
  width: 100%;
  position: relative;
}
ul {
  list-style: none;
}
input,
select,
textarea {
  border-radius: 0; 
}


.index picture {
  margin: 0 auto;
  display: block;
  width: fit-content;
}
.visual__sp {
  max-width: 100vw;
}
#cta {
  background: #e2f1f1;
  text-align: center;
  padding: 50px 0;
}
.cta__heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.cta__lead {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
.cta__lead br {
  display: none;
}
.cta__btn {
  margin: 0 auto;
  max-width: 320px;
  border-radius: 50vh;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffcb00 0%, #fff000 100%);
  color: #224975;
}
.cta__btn a {
  display: block;
  padding: 15px 70px;
}
@media screen and (max-width: 480px) {
  #cta {
    padding: 40px 20px;
  }
  .cta__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .cta__lead {
    margin-bottom: 20px;
  }
  .cta__lead br {
    display: block;
  }
  .cta__btn {
    max-width: 320px;
    border-radius: 50vh;
  }
  .cta__btn a {
    padding: 10px 50px;
  }
}

#form {
  background: #fff;
  padding: 60px;
  margin: 0 auto 60px;
  max-width: 1000px;
}
.form__heading {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}
.form__lead {
  font-weight: 600;
  margin: 0 auto 30px;
  width: fit-content;
}
.form__table {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.form__table th,.form__table td{
  display: block;
  width: 100%;
}
.form__table th {
  margin-bottom: 10px;
}
.form__table td {
  margin-bottom: 20px;
}
.form__table td input,.form__table td select {
  width: 100%;
  background: #f0f0f0;
  padding: 10px;
  border: none;
  font-size: 16px;
}
.form__table td .form__open input,.form__table td.phone-number input {
  width: fit-content;
}
.form__table td textarea {
  width: 100%;
  background: #f0f0f0;
  padding: 10px;
  border: none;
  line-height: 1.5;
  font-size: 16px;
}
.form__table td select {
  background: #fff;
  border: 1px solid #ccc;
}
.form__open {
  margin-right: 20px;
}
.form__table th.form__pp {
  text-align: center;
  margin-bottom: 30px;
}
.required {
  background: #20b6c2;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50vh;
  padding: 0 10px;
  margin-right: 10px;
}
.form__submit {
  text-align: center;
}
.form__table button {
  padding: 15px 70px;
  max-width: 320px;
  border-radius: 50vh;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  background: #fff000;
	color: #224975;
}
@media screen and (max-width: 768px) {
  #form {
    max-width: 90vw;
    padding: 40px;
  }
}
@media screen and (max-width: 480px) {
  #form {
    padding: 20px;
  }
  .form__heading {
    font-size: 22px;
  }
  .form__lead {
    font-size: 14px;
  }
  .form__table button {
    padding: 10px 50px;
    max-width: 320px;
    border-radius: 50vh;
  }
}

#openModal {
  color: #20b6c2;
  text-decoration: underline;
}
.modalArea {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.modalBg {
  width: 100vw;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  font-size: 25px;
}
.g-recaptcha {
  margin: 0 auto 30px;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .modalWrapper {
      width: 90%;
      height: 90%;
      overflow-y: scroll;
  }
}

footer {
  background: #e2f1f1;
  text-align: center;
  padding: 60px 0;
}
.footer__logo {
  max-width: 250px;
  margin-bottom: 20px;
}
.footer__address {
  margin-bottom: 20px;
}
.footer__address br {
  display: none;
}
address {
  font-size: 13px;
  font-style: normal;
}

.foot__btn-wrap {
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: #00000017;
  padding: 15px;
}
.foot__btn {
  padding: 20px 40px;
  max-width: 450px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffcb00 0%, #fff000 100%);
  color: #224975;
}
.foot__btn a {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
}
.foot__btn-icon {
  width: 20px;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 40px 0;
  }
  .footer__logo {
    max-width: 200px;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__address br {
    display: block;
  }
  .foot__btn {
    padding: 10px 40px;
    max-width: unset;
    font-size: 18px;
	width: 90vw
  }
}