@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*-------------------------------------------
base
-------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Outfit";
  color: #333;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

img, svg {
  max-width: 100%;
  vertical-align: bottom;
}

p {
  margin: 0;
}

h3 {
  margin: 0;
}

li {
  list-style: none;
}

.section-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 9px;
  line-height: 1.5;
}

.section-subtitle {
  text-align: center;
  color: #4282b8;
  font-size: 1.2rem;
}

.wave-svg-inline {
  background-color: #4282b8;
  width: 100%;
  height: 124px;
  position: relative;
}
.wave-svg-inline.green {
  background-color: #fff;
}
.wave-svg-inline.green svg {
  fill: #4282b8;
}

svg {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  fill: #fff; /* 色を変更 */
}

/*-------------------------------------------
.loading
-------------------------------------------*/
.loading {
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
}

.loading img {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-------------------------------------------
.header
-------------------------------------------*/
.header {
  background: #fff;
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.header .logo-box {
  display: flex;
  align-items: center;
}
.header .logo-box .title-box {
  margin-left: 14px;
}
.header .logo-box .title-box h1 {
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.header .logo-box .title-box p {
  color: #4282b8;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
}
.header .logo-box .logo img {
  vertical-align: middle;
}
.header-nav ul {
  display: flex;
  align-items: center;
}
.header-nav ul li {
  margin-right: 29px;
}
.header-nav ul li a {
  color: #333;
  font-size: 1.2rem;
}
.header-nav ul li:nth-child(4) {
  margin-right: 12px;
}
.header-nav ul .entry {
  text-align: center;
  background: #4282B8;
  width: 180px;
  height: 50px;
  border-radius: 30px;
  margin-right: 0;
}
.header-nav ul .entry a {
  color: #fff;
  line-height: 50px;
  display: block;
}
.header-nav ul .entry:hover {
  opacity: 0.7;
  transition: 0.1s;
}
.header .drawer-toggle {
  display: none;
}

/*-------------------------------------------
.modal
-------------------------------------------*/
#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background-color: #fff;
  padding: 30px;
  margin-right: 20px;
  margin-left: 20px;
  width: 500px;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  padding: 40px 20px 96px;
}
.modal-container h2 {
  font-size: 2.4rem;
  margin-bottom: 22px;
}
.modal-container .modal-form {
  text-align: left;
}
.modal-container .modal-form .label {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 11px;
  line-height: 1.5;
  color: #606266;
}
.modal-container .modal-form .text-box {
  width: 100%;
  border: 1px solid #DCDFE6;
  padding: 12px 14px;
  box-sizing: border-box;
}
.modal-container .modal-form .text-box::-moz-placeholder {
  color: #C1C1C1;
  font-size: 1.6rem;
}
.modal-container .modal-form .text-box::placeholder {
  color: #C1C1C1;
  font-size: 1.6rem;
}
.modal-container .modal-form:first-child {
  margin-bottom: 29px;
}
.modal-container .sign-in {
  background: #1E5099;
  color: #fff;
  font-size: 1.4rem;
  margin-top: 34px;
  padding: 8px 30px;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1.5;
  border: none;
}
.modal-container .sign-in:hover {
  opacity: 0.7;
  transition: 0.1s;
}
.modal-container .new {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #448AFF;
  font-size: 1.4rem;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
}

.modal-btn {
  text-align: center;
  background: #8DB4D4;
  width: 180px;
  height: 50px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 1.2rem;
}
.modal-btn:hover {
  opacity: 0.7;
  transition: 0.1s;
}

/*-------------------------------------------
.entry-form
-------------------------------------------*/
.entry-form {
  padding: 172px 0 75px;
  width: 100%;
}
.entry-form-wrapper .form-list {
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 15px;
  background: #fff;
  padding: 114px 100px 124px;
  box-sizing: border-box;
  line-height: 26px;
}
.entry-form-wrapper .form-list h2 {
  font-size: clamp(4rem, 2.873rem + 4.81vw, 7.2rem);
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: -1px;
}
.entry-form-wrapper .form-list h3 {
  font-size: clamp(1.6rem, 1.459rem + 0.6vw, 2rem);
  letter-spacing: 2px;
  margin-bottom: 59px;
  padding-left: 8px;
}
.entry-form-wrapper .form-list p {
  font-size: 1.4rem;
  line-height: 2.7;
  margin-bottom: 59px;
}
.entry-form-wrapper .form-list .form-item {
  display: flex;
  margin-bottom: 60px;
  line-height: 40px;
}
.entry-form-wrapper .form-list .form-item:last-of-type {
  margin-bottom: 44px;
}
.entry-form-wrapper .form-list .form-item.achievement-mb {
  margin-bottom: 64px;
}
.entry-form-wrapper .form-list .form-item.graduate-mb {
  margin-bottom: 64px;
}
.entry-form-wrapper .form-list .form-item .inquiry-type-list {
  margin-right: auto;
}
.entry-form-wrapper .form-list .form-item .inquiry-type-list .inquiry-type-item {
  text-align: left;
  height: 28px;
  margin-bottom: 10px;
}
.entry-form-wrapper .form-list .form-item .inquiry-type-list .inquiry-type-item .radio-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #F3F6FA;
  background: #F3F6FA;
  margin-right: 15px;
}
.entry-form-wrapper .form-list .form-item .inquiry-type-list .inquiry-type-item .radio-btn:checked {
  border: 7px solid #F3F6FA;
  background: #4282b8;
}
.entry-form-wrapper .form-list .form-item .inquiry-type-list .inquiry-type-item label {
  font-weight: normal;
  line-height: 26px;
  font-size: 1.6rem;
}
.entry-form-wrapper .form-list .form-item label {
  font-size: 1.4rem;
  flex-basis: 252px;
  text-align: left;
  font-weight: 500;
}
.entry-form-wrapper .form-list .form-item label span {
  color: #fff;
  font-size: clamp(1.2rem, 1.13rem + 0.3vw, 1.4rem);
  font-weight: 400;
  padding: 7px 9px;
  margin-right: 15px;
  background: #4282b8;
}
.entry-form-wrapper .form-list .form-item label .optional {
  color: #909090;
  background: #DDDDDD;
}
.entry-form-wrapper .form-list .form-item input, .entry-form-wrapper .form-list .form-item textarea {
  flex-basis: 466px;
  border: 1px solid #000;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.entry-form-wrapper .form-list .form-item input {
  height: 40px;
}
.entry-form-wrapper .form-list .form-item input.age {
  flex-basis: 152px;
  margin-right: auto;
}
.entry-form-wrapper .form-list .form-item input.income {
  flex-basis: 152px;
  margin-right: auto;
}
.entry-form-wrapper .form-list .form-item ::-moz-placeholder {
  color: #C1C1C1;
  font-size: clamp(1.2rem, 1.13rem + 0.3vw, 1.4rem);
}
.entry-form-wrapper .form-list .form-item ::placeholder {
  color: #C1C1C1;
  font-size: clamp(1.2rem, 1.13rem + 0.3vw, 1.4rem);
}
.entry-form-wrapper .form-list .form-item .text-box, .entry-form-wrapper .form-list .form-item .text-area {
  padding-left: 8px;
  box-sizing: border-box;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper {
  flex-basis: 466px;
  padding-top: 7px;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.5;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper textarea {
  width: 100%;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper textarea.achievement {
  height: 290px;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper textarea.graduate {
  height: 200px;
}
.entry-form-wrapper .form-list .form-item .text-area-wrapper textarea.pr {
  height: 200px;
}
.entry-form-wrapper .form-list .button-wrapper {
  width: 100%;
  text-align: center;
}
.entry-form-wrapper .form-list .button-wrapper .button {
  position: relative;
  font-size: 1.4rem;
  font-weight: normal;
  color: #fff;
  padding: 14px 32px;
  border: none;
  background: #4282b8;
  margin-left: auto;
}
.entry-form-wrapper .form-list .button-wrapper .button:disabled {
  opacity: 0.7;
}
.entry-form-wrapper .form-list .button-wrapper .button:hover {
  opacity: 0.7;
  transition: 0.1s;
}
.entry-form-wrapper .form-list .button-wrapper .button i {
  margin-left: 8px;
}
.entry-form-wrapper .form-list .checkbox-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.entry-form-wrapper .form-list .checkbox-wrapper .checkbox .check {
  width: 16px;
  height: 16px;
  background: #F9FBFD;
  border: 1px solid #E0E5EB;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.entry-form-wrapper .form-list .checkbox-wrapper .checkbox span {
  margin-left: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
}
.entry-form-wrapper .form-list .end-message {
  display: none;
  text-align: center;
  color: #35A1C3;
}
.entry-form-wrapper .form-list .false-message {
  display: none;
  text-align: center;
  color: #35A1C3;
}

/*-------------------------------------------
.footer
-------------------------------------------*/
.footer {
  position: relative;
  background: #F5F5F7;
  padding: 49px 0 96px;
}
.footer-inner {
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
  align-items: center;
}
.footer-inner .footer-logo {
  margin: 0 auto 16px;
  width: 180px;
}
.footer-inner .footer-logo img {
  width: 100%;
}
.footer-inner p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 1px;
}
.footer-inner .number-wrapper {
  display: flex;
  margin: 40px auto 40px;
  justify-content: center;
}
.footer-inner .number-wrapper .tel-box {
  padding: 8px 40px;
  border: 2px solid #4282b8;
  margin-right: 40px;
}
.footer-inner .number-wrapper .tel-box p {
  color: #4282b8;
  line-height: 1.9;
  font-size: clamp(1.2rem, 1.059rem + 0.6vw, 1.6rem);
}
.footer-inner .number-wrapper .fax-box {
  padding: 8px 40px;
  border: 2px solid #4282b8;
}
.footer-inner .number-wrapper .fax-box p {
  color: #4282b8;
  line-height: 1.9;
  font-size: clamp(1.2rem, 1.059rem + 0.6vw, 1.6rem);
}
.footer-inner .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer-inner .icon-wrapper .fa-blue {
  color: #4282b8;
  margin-right: 8px;
}
.footer-inner .icon-wrapper .fa-facebook {
  margin-left: 40px;
}
.footer-inner .icon-wrapper p {
  color: #4282b8;
  font-size: 1.6rem;
}
.footer-inner small {
  font-size: 0.9rem;
}
.footer .to-top {
  position: absolute;
  left: 54px;
  bottom: 72px;
  width: 50px;
}
.footer .to-top img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  /*-------------------------------------------
  .header-sp
  -------------------------------------------*/
  .header {
    background: #fff;
    height: 60px;
    line-height: 60px;
  }
  .header .logo-box .logo {
    width: 31px;
  }
  .header .logo-box .logo img {
    vertical-align: middle;
  }
  .header .logo-box .title-box h1 {
    font-size: 1.4rem;
  }
  .header .logo-box .title-box p {
    font-size: 1rem;
  }
  .header .header-nav {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 3;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-nav ul {
    flex-direction: column;
  }
  .header .header-nav ul li {
    margin-right: 0;
    line-height: normal;
    margin-bottom: 36px;
  }
  .header .header-nav ul li a {
    color: #333;
  }
  .header .header-nav ul .entry a {
    color: #fff;
  }
  .header .header-nav .nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
  }
  .header .header-nav .nav .burger-logo {
    width: 72px;
    height: 72px;
    display: block;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header .header-nav .nav .header-logo {
    top: 132px;
  }
  .header .header-nav .nav .nav-list {
    display: none;
  }
  .header .header-nav .nav .sp-nav-list {
    display: block;
    position: absolute;
    top: 369px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .header .header-nav .nav .sp-nav-list .sp-nav-item {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .header .header-nav .nav .sp-nav-list .sp-nav-item a {
    font-weight: bold;
  }
  .header .header-nav.fade {
    visibility: visible;
    opacity: 0.9;
  }
  .header .drawer-toggle {
    z-index: 200;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 48px;
    height: 48px;
  }
  .header .drawer-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #333;
    vertical-align: top;
  }
  .header .drawer-toggle span:nth-child(1) {
    top: 18px;
  }
  .header .drawer-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .drawer-toggle span:nth-child(3) {
    bottom: 18px;
  }
  .header .drawer-toggle.close span {
    top: 24px;
    left: 15px;
    width: 18px;
    margin: 0;
  }
  .header .drawer-toggle.close span:first-child {
    transform: rotate(45deg);
  }
  .header .drawer-toggle.close span:nth-child(2) {
    display: none;
  }
  .header .drawer-toggle.close span:last-child {
    transform: rotate(-45deg);
  }
  .noscroll {
    overflow: hidden;
  }
  /*-------------------------------------------
  .entry-form-sp
  -------------------------------------------*/
  .entry-form-wrapper {
    padding: 0 4vw;
  }
  .entry-form-wrapper .form-list {
    padding: 64px 4vw;
  }
  .entry-form-wrapper .form-list p {
    line-height: 2;
  }
  .entry-form-wrapper .form-list .form-item {
    display: block;
  }
  .entry-form-wrapper .form-list .form-item input {
    width: 100%;
    margin-top: 8px;
  }
  .entry-form-wrapper .form-list .form-item input.radio-btn {
    margin-top: 0;
  }
  .entry-form-wrapper .form-list .form-item .inquiry-type-list .inquiry-type-item label {
    font-size: 1.4rem;
  }
  .entry-form-wrapper .form-list .button-wrapper .button {
    padding: 24px 64px;
  }
  .entry-form-wrapper .form-list .button-wrapper .button-more-icon {
    right: 32px;
  }
  /*-------------------------------------------
  .footer-sp
  -------------------------------------------*/
  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-inner .number-wrapper {
    display: block;
  }
  .footer-inner .number-wrapper .tel-box {
    margin: 0 auto 16px;
    width: 80%;
  }
  .footer-inner .number-wrapper .fax-box {
    margin: 0 auto;
    width: 80%;
  }
  .footer-inner p {
    font-size: 1.2rem;
  }
  .footer .to-top {
    left: 16px;
    bottom: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /*-------------------------------------------
  .header-tb
  -------------------------------------------*/
  .header {
    padding: 0 16px;
  }
  .header .logo-box .logo {
    width: 31px;
  }
  .header .logo-box .title-box h1 {
    font-size: 1.3rem;
  }
  .header .logo-box .title-box p {
    font-size: 1rem;
  }
  .header .header-nav ul li {
    margin-right: 16px;
  }
  .header .header-nav ul li a {
    font-size: 1.1rem;
  }
  .header .header-nav ul .modal-btn {
    width: 160px;
    height: 45px;
  }
  .header .header-nav ul .entry {
    width: 160px;
    height: 45px;
    margin-right: 0;
  }
  .header .header-nav ul .entry a {
    line-height: 45px;
  }
  /*-------------------------------------------
  .entry-form-tb
  -------------------------------------------*/
  .entry-form {
    padding: 172px 4vw 75px;
  }
  .entry-form-wrapper .form-list .form-item input {
    flex-basis: 255px;
  }
}
/*# sourceMappingURL=style.css.map */