@charset "UTF-8";
/* color */
.bg_thema {
  background-color: #52a7e0;
}

.bg_dark {
  background-color: #006EB9;
}

.bg_white {
  background-color: #FFFFFF;
}

.main_contents {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 10px 10px 10px;
}

.main_fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 10px 10px 10px;
}

body {
  margin-top: 55px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.more_bold {
  text-shadow: 0.5px 0.5px #000, -0.5px 0.5px #000, -0.5px -0.5px #000, 0.5px -0.5px #000, 0.5px 0px #000, 0px 0.5px #000, -0.5px 0px #000, 0px -0.5px #000;
}

h1 {
  font-weight: bold;
}

h2 {
  padding: 20px 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  line-height: 48px;
}

h3 {
  padding: 20px 0 0 0;
  font-size: 33px;
  font-weight: 900;
  text-align: center;
  line-height: normal;
}

h4 {
  font-weight: 700;
}
h4.english {
  opacity: 0.7;
  text-align: center;
}
h4.lead {
  color: #006EB9;
  font-weight: bold;
}

.nav-item {
  line-height: 20px;
}
.nav-item .japanese {
  font-size: 16px;
  font-weight: 700;
  border-bottom: solid 2px #52a7e0;
}
.nav-item .english {
  opacity: 0.7;
  font-size: 12px;
}

.top_space {
  height: 30px;
}

.marker {
  background: linear-gradient(transparent 90%, #52a7e0 50%);
}

.flow_box {
  margin: 20px 0;
  border: solid 2px #52a7e0;
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
  background-color: #acd5e1;
}
.flow_box h5 {
  font-weight: 700;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 40px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.sample5-2::before {
  width: 35px;
  height: 35px;
  border-top: 5px solid #52a7e0;
  border-right: 5px solid #52a7e0;
  transform: rotate(135deg);
}

ul.pr_point {
  border: solid 2px #52a7e0;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}
ul.pr_point li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important; /*ポチ消す*/
}
ul.pr_point li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  position: absolute;
  left: 1em; /*左端からのアイコンまで*/
  color: #52a7e0; /*アイコン色*/
}

.v_center {
  display: grid;
  place-items: center;
}

.qa-h {
  font-size: 20px;
  margin-top: 40px;
}

.qa-6 {
  margin-bottom: 5px;
  border-bottom: 2px solid #52a7e0;
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 0.5em;
  font-weight: 600;
  font-size: 1.5em;
}

.qa-6 summary::before {
  color: #006EB9;
  content: "Q";
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

.qa-6 p::before {
  left: 0.6em;
  color: #ff0000;
  line-height: 1.5;
  content: "A";
}

.contact_h {
  border-top: 1px solid #006EB9;
  margin: 0 auto;
}

.contact {
  color: #52a7e0;
}

.contact_form {
  font-size: 1.1em;
  line-height: 1.3em;
  background-color: #FFFFFF;
  padding: 0;
  color: #006EB9;
}
.contact_form .require {
  font-size: 0.8em;
  color: #FFFFFF;
  background-color: #ff0000;
  padding: 2px;
  border-radius: 2px;
  margin-left: 5px;
}

label {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .form_group {
    display: flex;
    width: 100%;
    flex-wrap: nowrap; /* 折り返さない */
    align-items: flex-start; /* 高さの違いは上揃え */
    flex-direction: row;
    margin-bottom: 20px;
  }
  .form_group label {
    display: inline-block;
    width: 240px;
    flex-shrink: 0; /* labelは絶対に縮めない */
    vertical-align: middle;
  }
  .form_group input, .form_group select, .form_group textarea {
    display: block;
    flex: 1 1 auto;
    width: auto;
    min-width: 0; /* ←これも超重要！幅計算ミス防止 */
    box-sizing: border-box;
  }
  .form_group textarea {
    height: auto;
    min-height: 200px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .form_group {
    display: block;
  }
  .form_group label {
    margin-bottom: 8px;
  }
  .form_group input, .form_group select {
    margin-bottom: 13px;
  }
}
input, select {
  margin: 0;
  height: 40px;
  width: 100%;
  background-color: #acd5e1;
  border: none;
  border-radius: 5px;
  padding: 10px;
}

#check {
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

select {
  height: 60px;
}

textarea {
  width: 100%;
  background-color: #acd5e1;
  border: none;
  border-radius: 5px;
  padding: 10px;
  height: auto;
  min-height: 200px;
  box-sizing: border-box;
}

button {
  font-weight: bold;
  border-radius: 20px;
  border: none;
}
button.confirm {
  width: 200px;
  height: 60px;
  background-color: #acd5e1;
  color: #006EB9;
}
button.confirm:hover {
  background-color: #006EB9;
  color: #FFFFFF;
}
button.correct {
  margin-top: 20px;
  width: 160px;
  height: 40px;
  border-radius: 15px;
  font-size: 16px;
  background-color: #f99082;
  color: #bd1600;
}
button.correct:hover {
  background-color: #bd1600;
  color: #FFFFFF;
}
button.yoyaku_menu {
  width: 120px;
  height: 40px;
  background-color: #ff0000;
  color: #FFFFFF;
  font-weight: bold;
}
button.yoyaku_menu:hover {
  background-color: #ff0000;
  opacity: 0.5;
  color: #FFFFFF;
}
button.yoyaku {
  font-size: 28px;
  padding: 2px 30px 2px 30px;
  vertical-align: middle;
  height: 80px;
  background-color: #ff0000;
  color: #FFFFFF;
  font-weight: bold;
}
button.yoyaku:hover {
  background-color: #ff0000;
  opacity: 0.5;
  color: #FFFFFF;
}

footer.mhc_footer {
  color: #FFFFFF;
  padding: 20px 0;
  font-size: 0.9em;
}
footer.mhc_footer h4 {
  font-size: 1.1em;
}
footer.mhc_footer h5 {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}
footer.mhc_footer a:link {
  text-decoration: none;
  color: #FFFFFF;
}
footer.mhc_footer a:visited {
  text-decoration: none;
  color: #FFFFFF;
}
footer.mhc_footer a:hover {
  text-decoration: none;
  color: #52a7e0;
}/*# sourceMappingURL=base.css.map */