@charset "utf-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  word-break:break-word;
}
.font-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* flex */
.d-flex {
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.container {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/* header */
#header .container {
  padding: 90px 0 35px;
  position: relative;
}
#header .logo {
  position: absolute;
  left: 30px;
  top: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 16%);
}

#header h1 {
  color: #00a0e9;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;

}
/* #main */
#main {
  padding-bottom: 165px;
}
.form {
  background-color: #edfaff;
  padding: 58px 40px 130px;
}
.form h2 {
  color: #00a0e9;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
}
.form h2 span {
  display: inline-block;
  padding: 0 30px;
  background: url(../img/line1.svg) no-repeat left center,
    url(../img/line2.svg) no-repeat right center;
}
.subitle {
  margin-bottom: 70px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.errors {
  background-color: #ffefef;
  border: 1px solid #ff0000;
  color: #ff0000;
  padding: 12px 24px;
  margin: 0 0 20px;
}
.box {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 0 0 30px;
  position: relative;
}
.circle {
  position: absolute;
  left: 17px;
  top: 14px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: #00a0e9;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.circle span {
  font-size: 18px;
}
.box dl {
  font-size: 18px;
}
.box dt {
  padding: 40px 24px 10px 120px;
  background-color: #f2f5f3;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}
.box dd {
  padding: 30px 24px 40px 125px;
  word-break: break-all;
}
.box dd p {
  margin: 20px 0 10px;
}
.box dd p:last-child {
  margin-bottom: 0;
}
.check-list {
  margin-bottom: -15px;
  font-size: 16px;
}
.check-list li {
  margin: 0 40px 15px 0;
}
::-webkit-input-placeholder {
  /* Edge */
  color: #b5b5b5;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b5b5b5;
}
::placeholder {
  color: #b5b5b5;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  display: flex;
  align-items: center;
}
input[type="checkbox"] + label .ico {
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}
input[type="checkbox"]:checked + label .ico::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 6px;
  border-bottom: 3px solid #00a0e9;
  border-right: 3px solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -60%) rotate(45deg);
}
input[type="radio"] + label .ico {
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}
input[type="radio"]:checked + label .ico::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  background-color: #fff;
  border: 1px solid #cecece;
  padding: 8px 18px;
  font-size: 18px;
  width: 100%;
}
textarea {
  min-height: 150px;
}
.err {
  color: #ff0000;
  font-size: 15px;
}
select {
  background: url(../img/ico1.svg) no-repeat right 15px center #fff;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  min-width: 350px;
}
.submit button {
  font-size: 16px;
  font-weight: bold;
  color: #00a0e9;
  background: url(../img/ico2.svg) no-repeat right 18px center #fff;
  border: 2px solid;
  border-radius: 29px;
  width: 300px;
  text-align: center;
  padding: 13px;
  letter-spacing: 0.1em;
  margin: 3px;
  transition: 0.3s;
}
.submit button.is-back {
  width: 144px;
  background-image: none;
  color: #999;
}
.submit button.is-back span {
  display: inline-block;
  padding-left: 30px;
  background: url(../img/ico3.svg) no-repeat left bottom 3px;
}
.submit button:hover {
  opacity: 0.7;
}
.form-group {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
}
.form-group dt {
  margin-bottom: 10px;
}
.hissu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 22px;
  font-size: 12px;
  font-weight: bold;
  background-color: #fff;
  color: #ff0000;
  border: 1px solid #ff4444;
  border-radius: 3px;
  margin-left: 10px;
  padding-bottom: 1px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 767px) {
  #header .container {
    padding: 90px 0 25px;
  }
  #header .logo {
    left: 0;
  }
  #header .logo img {
    width: 86px;
  }
  #header h1 {
    font-size: 18px;
    margin-left: 5px;
  }
  /* #main */
  #main {
    padding-bottom: 60px;
  }
  .form {
    padding: 30px 15px 60px;
  }
  .form h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .form h2 span {
    background-size: auto 100%, auto 100%;
  }
  .subitle {
    margin-bottom: 40px;
  }
  .errors {
    padding: 10px 15px;
    margin: 0 0 15px;
  }
  .circle {
    left: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .circle span {
    font-size: 14px;
  }
  .box dl {
    font-size: 16px;
  }
  .box dt {
    padding: 25px 10px 10px 80px;
    background-color: #f2f5f3;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
  }
  .box dd {
    padding: 30px 15px;
  }
  .box dd p {
    margin: 15px 0 5px;
  }
  .check-list {
    margin-bottom: -10px;
  }
  .check-list li {
    margin: 0 25px 10px 0;
  }
  select {
    min-width: 100%;
  }
}
/* footer */
#footer {
  background-image: linear-gradient(to bottom, #69d3ee 0, #b2ebfa 100%);
  position: relative;
}
#footer::before {
  content: "";
  width: 100%;
  height: 10px;
  background: url(../img/bg3.jpg) repeat center top;
  position: absolute;
  left: 0;
  top: -10px;
}
#contact {
  padding: 40px 0;
  position: relative;
  letter-spacing: 0.1em;
}
.footer_left {
  width: 197px;
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer h3 {
  font-size: 26px;
  font-weight: bold;
  padding: 0 0 20px;
  margin: 0 0 30px;
  border-bottom: 1px solid #000;
}
.footer_right {
  width: calc(100% - 197px);
}
.footer_right h4 {
  font-size: 20px;
  font-weight: bold;
}
.footer_right p {
  margin: 18px 0 0;
}
.footer_right p.address {
  margin-top: 6px;
}
.under {
  text-decoration: underline;
}
.copyright {
  background-color: #fff;
  padding: 23px 0 40px;
  font-size: 13px;
}
.copyright a {
  display: inline-block;
  padding: 0 7px;
}
.pagetop {
  position: absolute;
  right: 22px;
  top: -42px;
  z-index: 11;
  cursor: pointer;
}
.linkout {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
}
.linkout span::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/target.svg) no-repeat center / contain;
  display: inline-block;
  margin-left: 10px;
}
.close {
  position: absolute;
  right: 28px;
  top: 28px;
  cursor: pointer;
}
@media screen and (min-width: 1199px) {
  .copyright a:hover {
    text-decoration: underline;
  }
  #footer .logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #contact {
    flex-direction: column;
  }
  #contact {
    padding: 30px 0;
  }
  .footer_left {
    width: auto;
    padding-right: 0;
    text-align: center;
  }
  .fogo img {
    width: 100px;
  }
  #footer h3 {
    font-size: 20px;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }
  .footer_right {
    width: auto;
    padding-left: 0;
    border-left: none;
    padding-top: 30px;
  }
  .footer_right h4 {
    font-size: 17px;
  }
  .footer_right p {
    margin: 10px 0 0;
  }
  .copyright {
    padding: 20px 0 40px;
    font-size: 11px;
  }
  .copyright .container {
    display: block;
  }
  .copyright ul {
    margin-bottom: 10px;
  }
  .copyright a:hover {
    text-decoration: underline;
  }
  .pagetop {
    top: -32px;
    right: 2%;
  }
  .pagetop img {
    width: 42px;
  }
  .close {
    right: 15px;
    top: 15px;
  }
  .close a {
    display: block;
    line-height: 0;
  }
  .close img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
}

/* add 20221012 */

.modal_list02 {
  text-align: center;
  margin-bottom: 40px;
}

.modal_ttl02 {
  display: inline-block;
  color: #00A0E9;
  font-size: 28px;
  position: relative;
  padding: 0 25px;
  margin: 0 auto 20px;
}

.modal_ttl02::before,
.modal_ttl02::after {
  content: "";
  width: 15px;
  height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}

.modal_ttl02::before {
  left: 0;
  background-image: url(../img/partner/line_l.png);
}

.modal_ttl02::after {
  right: 0;
  background-image: url(../img/partner/line_r.png);
}

.modal_list02 ul {
  max-width: 980px;
  display: flex;
  margin: 0 auto;
}

.modal_list02 ul li {
  width: calc((100% - 60px) /3);
  margin: 0 10px 15px;

}


.modal_list02 ul .m-tag {
  position: relative;
  top: 20px;
  left: 10px;
  display: flex;
  align-items: center;
  color: #212121;
  font-size: 14px;
  font-weight: 700;
}

.modal_list02 ul .m-tag span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faeb75;
  font-size: 34px;
  margin-right: 5px;
}


.modal_list02 li figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.modal_list02 li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal_list02 .m_card .name {
  color: #212121;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-align: center;
  /*border-bottom: 1px dashed #707070;
  padding-bottom: 10px;*/
  margin-bottom: 10px;
}

.modal_list02 .m_card .company {
  display: flex;
  align-items: center;
  background: #707070;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.modal_list02 .m_card .txt {
  color: #666666;
  font-size: 10px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .modal_ttl02 {
    font-size: 22px;
    padding: 0 20px;
  }

  .modal_ttl02::before,
  .modal_ttl02::after {
    width: 10px;
    height: 35px;
  }
}

@media screen and (max-width: 1024px) {
  .modal_ttl02 {
    font-size: 18px;
  }

  .modal_list02 ul {
    margin: 0 -10px;
  }

  .modal_list02 ul .m-tag {
    top: 10px;
  }

  .modal_list02 ul .m-tag span {
    width: 55px;
    height: 55px;
    font-size: 25px;
  }

}

@media screen and (max-width: 767px) {

  .modal_ttl01 {
    font-size: 16px;
  }

  .modal_list02 {
    margin-bottom: 20px;
  }

  .modal_ttl02 {
    font-size: 16px;
    padding: 0 15px;
  }

  .modal_list02 ul {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .modal_list02 ul li {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
  }
}