@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-weight: 500;
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  /*font-size: 1.5rem;*/
  margin: 0;
  letter-spacing: -0.05em;
  position: relative;
  overflow-x: hidden;
  line-height: 1.75;
}

.mincho {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

.bg_beige {
  background: #F8F5F1;
}

.bg_white {
  background: #fff;
}

.bg_pink {
  background: #FDEFEA;
}

a {
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #232323;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

span {
  display: inline-block;
}

img {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
}

/*----------------------------------------------------------------------------------------
header.scss
----------------------------------------------------------------------------------------*/
.l-header {
  position: relative;
}
.l-header__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.l-header__inner::before {
  position: absolute;
  right: 0;
  display: block;
  content: "";
  background-color: #ebf5ff;
  width: 120px;
  height: 120px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: -1;
}
.l-header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__logo {
  width: 30%;
  max-width: 385px;
  margin: 30px 0;
}
.l-header__tel {
  width: 43%;
  max-width: 541px;
  text-align: right;
  margin: 20px 20px 0;
}
.l-header img {
  margin: 10px 0;
}

.l-header__low-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.l-header__low-btn {
  width: 55%;
  max-width: 560px;
  margin: 20px 0;
}
.l-header__low-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
.l-header__low-flex a {
  position: relative;
  height: 60px;
  color: #fff;
  border-radius: 10px;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 600;
  text-align: center;
  padding: 15px;
}
.l-header__low-flex a:first-child {
  background: #004b95;
  width: 300px;
}
.l-header__low-flex a:last-child {
  background: #0c7def;
  width: 240px;
}
.l-header__low-flex a p {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .l-header__inner::before {
    width: 80px;
    height: 80px;
  }
  .l-header__logo {
    width: 40%;
  }
  .l-header__tel {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .l-header__inner::before {
    width: 80px;
    height: 80px;
  }
  .l-header__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-header__logo {
    width: 60%;
    margin: 0 10px;
  }
  .l-header__tel {
    width: 80%;
    margin: 0 10px 0 auto;
  }
  .l-header__low-btn {
    width: 100%;
  }
  .l-header__low-flex {
    gap: 0 2%;
  }
  .l-header__low-flex a {
    font-size: 1.4rem;
    height: 40px;
  }
  .l-header__low-flex a:first-child {
    width: 60%;
  }
  .l-header__low-flex a:last-child {
    width: 38%;
  }
}
/*----------------------------------------------------------------------------------------
footer.scss
----------------------------------------------------------------------------------------*/
.l-footer {
  background: #ebf5ff;
  padding: 90px 0 0;
}
.l-footer-inner {
  width: 96%;
  max-width: 1115px;
  /*margin: 0 0 0 auto;*/
  margin: 0 auto;
}
.l-footer__logo {
  width: 100%;
  max-width: 480px;
  margin-bottom: 40px;
}
.l-footer__logo img {
  width: 100%;
  max-width: 480px;
}
.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-footer__detail {
  width: 55%;
  margin-right: 2%;
  margin-bottom: 50px;
}
.l-footer__detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__detail ul li {
  margin-bottom: 8px;
}
.l-footer__detail ul li:first-child {
  margin-right: 30px;
}
.l-footer__detail ul li a {
  font-size: 1.5rem;
}
.l-footer__detail ul li a:hover {
  opacity: 0.6;
}
.l-footer__name {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.l-footer__address {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.l-footer__tel {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.l-footer__tel span {
  background: #fff;
  color: #004b95;
  font-weight: 500;
  border-radius: 20px;
  padding: 0px 10px;
  font-size: 1.8rem;
}
.l-footer__tel a {
  font-size: 4rem;
  font-weight: 700;
  color: #004b95;
}
.l-footer__tel.tel02 span {
  font-size: 1.4rem;
  color: #232323;
}
.l-footer__tel.tel02 a {
  font-size: 2.4rem;
  color: #232323;
}
.l-footer__nav {
  width: 30%;
  margin-bottom: 50px;
}
.l-footer__nav ul li {
  position: relative;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.l-footer__nav ul li:first-child {
  padding-bottom: 8px;
}
.l-footer__nav ul li:first-child::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3em;
  border-bottom: 1px solid rgba(160, 160, 160, 0.5);
}
.l-footer__nav ul li a:hover {
  opacity: 0.6;
}
.l-footer__stickers {
  width: 80px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.l-footer__stickers input {
  width: 80px;
}
.l-footer__privacy {
  background: #004b95;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  padding: 5px;
  color: #fff;
}
.l-footer__privacy a {
  /*width: 160px;*/
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 20px;
}
.l-footer__privacy a:hover {
  opacity: 0.6;
}
.l-footer__copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 20px;
}

.p-footer-btn {
  display: none;
}

.totop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15%;
  right: 1%;
  z-index: 999;
}
.totop a {
  width: 100%;
  height: 100%;
  text-align: center;
  background: #004b95;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  line-height: 1.2;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 45px 0 0;
  }
  .l-footer-inner {
    width: 90%;
    margin: 0 auto;
  }
  .l-footer__logo {
    margin-bottom: 40px;
  }
  .l-footer__name {
    font-size: 2rem;
  }
  .l-footer__address {
    font-size: 1.5rem;
  }
  .l-footer__nav {
    width: 70%;
    margin-bottom: 0;
  }
  .l-footer__nav ul {
    margin-bottom: 30px;
  }
  .l-footer__nav ul li {
    font-size: 1.6rem;
  }
  .l-footer__stickers {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__privacy {
    /*padding-bottom: 90px;*/
  }
  .l-footer__detail {
    width: 100%;
    margin-bottom: 40px;
  }
  .l-footer__detail ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/*----------------------------------------------------------------------------------------
container.scss
----------------------------------------------------------------------------------------*/
.l-inner {
  position: relative;
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

.l-inner02 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.l-inner03 {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.l-inner04 {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.l-inner05 {
  position: relative;
  width: 96%;
  max-width: 840px;
  margin: 0 auto;
}

.l-inner06 {
  position: relative;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-inner03 {
    width: 96%;
  }
}
/*----------------------------------------------------------------------------------------
component.scss
----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------
common.scss
----------------------------------------------------------------------------------------*/
.p-common__btn {
  width: 480px;
}
.p-common__btn a {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #0c7def), color-stop(50%, #0070e4));
  background: linear-gradient(to bottom, #0c7def 50%, #0070e4 50%);
  border-radius: 10px;
  width: 100%;
  height: 80px;
  color: #fff;
  text-align: center;
}
.p-common__btn a p {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 1.563vw + 1.2rem, 3.2rem);
}

.p-common__contact-btn {
  width: 400px;
  text-align: center;
  margin: 0 auto;
}
.p-common__contact-btn a {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #009570), color-stop(50%, #008470));
  background: linear-gradient(to bottom, #009570 50%, #008470 50%);
  border-radius: 10px;
  width: 100%;
  height: 70px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.p-common__contact-btn a p {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2.8rem;
  font-size: clamp(2.2rem, 1.172vw + 1.3rem, 2.8rem);
}
.p-common__contact-btn p.txt {
  font-size: 1.5rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .p-common__btn {
    width: 320px;
  }
  .p-common__btn a {
    height: 60px;
  }
  .p-common__contact-btn {
    width: 320px;
  }
  .p-common__contact-btn a {
    height: 60px;
  }
}
/*----------------------------------------------------------------------------------------
top.scss
----------------------------------------------------------------------------------------*/
.p-top__mv {
  margin-top: -40px;
}
.p-top__mv-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.p-top__mv-inner::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: #ebf5ff;
  width: 120px;
  height: 120px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: -1;
}
.p-top__mv-box {
  position: relative;
}
.p-top__mv-txt {
  position: relative;
  width: 62%;
  max-width: 758px;
  padding-bottom: 3%;
  padding-left: 4.68%;
}
.p-top__mv-txt img {
  margin-bottom: 8%;
}
.p-top__mv-txt p {
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 600;
  margin-bottom: 8%;
  line-height: 1.8;
}
.p-top__mv-img {
  position: absolute;
  right: 3.1%;
  bottom: 6%;
  z-index: -1;
  width: 51.57%;
}
.p-top__problem {
  background: #ebf5ff;
  padding: 100px 0;
  text-align: center;
  margin-top: 90px;
}
.p-top__problem h2 {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 20px;
}
.p-top__problem p {
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 300;
}
.p-top__point {
  padding: 100px 0;
  text-align: center;
}
.p-top__point h2 {
  font-size: 4rem;
  font-size: clamp(3.2rem, 1.563vw + 2rem, 4rem);
  margin: 0 auto 40px;
}
.p-top__point-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
.p-top__point-box {
  width: 31.66%;
  max-width: 380px;
  text-align: center;
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.p-top__point-title {
  background: linear-gradient(60deg, #4b80b4, #004b95);
  padding: 5.3%;
  border-radius: 30px 30px 0 0;
}
.p-top__point-title img {
  width: 20%;
}
.p-top__point-title p {
  font-size: 3.2rem;
  font-size: clamp(2.2rem, 1.953vw + 0.7rem, 3.2rem);
  font-weight: 600;
  color: #fff4a0;
  line-height: 1.375;
  margin-top: 10px;
}
.p-top__point-txt {
  padding: 8% 5.3%;
}
.p-top__point-txt p {
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 300;
  line-height: 1.8888888889;
}
.p-top__bg {
  height: 300px;
}
.p-top__bg img {
  max-width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__service {
  padding: 100px 0;
  text-align: center;
}
.p-top__service h2 {
  font-size: 4rem;
  font-size: clamp(3.2rem, 1.563vw + 2rem, 4rem);
  margin: 0 auto 40px;
}
.p-top__service table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0;
  border: 1px solid #009570;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, 1.563vw + 0.4rem, 2.4rem);
}
.p-top__service table th {
  background: #a0a0a0;
  color: #fff;
  padding: 19px 0;
  font-weight: 600;
}
.p-top__service table th:first-child {
  width: 22%;
}
.p-top__service table th:nth-child(2) {
  background: #4bb49a;
  color: #fff4a0;
  width: 44%;
}
.p-top__service table td {
  background: #fafafa;
  padding: 19px 0;
  font-weight: 300;
}
.p-top__service table td:nth-child(2) {
  background: #e4f4f0;
}
.p-top__service table td.cl_02 {
  background: #f0f0f0;
}
.p-top__service table td.cl_03 {
  background: #d3ede6;
}
.p-top__service table td.cl_04 {
  font-size: 3.2rem;
  font-size: clamp(2rem, 2.344vw + 0.2rem, 3.2rem);
  font-weight: 600;
  color: #009570;
  padding: 15px 0;
}
.p-top__flow {
  padding: 0 0 80px;
  text-align: center;
}
.p-top__flow h3 {
  width: 65%;
  margin: 0 auto 30px;
}
.p-top__flow-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top__flow-flex img {
  height: 300x;
  margin: 20px auto;
}
.p-top__btn {
  background-image: url(../images/img_13.png);
  background-size: cover;
  padding: 50px 0;
  text-align: center;
}
.p-top__btn .p-common__btn {
  margin: 0 auto;
}
.p-top__list {
  padding: 80px 0;
  text-align: center;
}
.p-top__list h2 {
  font-size: 2.8rem;
  font-size: clamp(2.2rem, 1.172vw + 1.3rem, 2.8rem);
  font-weight: 400;
  margin: 0 auto 40px;
}
.p-top__list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 70px;
}
.p-top__list-box {
  text-align: left;
  margin: 0 auto;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 600;
  width: 62%;
}
.p-top__list-box p {
  color: #fff;
  background: #009570;
  padding: 5px 20px;
  margin-bottom: 20px;
}
.p-top__list-box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top__list-box-flex ul {
  border-left: 1px solid #009570;
  padding: 0 30px 0 20px;
  width: 50%;
}
.p-top__list-box-flex ul li {
  width: 100%;
}
.p-top__list-box:last-child {
  width: 31%;
}
.p-top__list-box:last-child ul {
  width: 100%;
}
.p-top__qanda {
  padding: 80px 0 40px;
  text-align: center;
}
.p-top__qanda h2 {
  width: 18%;
  margin: 0 auto 40px;
}
.p-top__qanda-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
.p-top__qanda-box {
  text-align: left;
}
.p-top__qanda-box:last-child {
  width: 54%;
}
.p-top__qanda-box dl {
  width: 100%;
  margin: 40px 0;
}
.p-top__qanda-box dl dt {
  position: relative;
  border-top: 1px dotted #004b95;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-weight: 600;
  padding: 5px 10px;
  width: 100%;
}
.p-top__qanda-box dl dt img {
  margin-right: 10px;
}
.p-top__qanda-box dl dt p {
  display: inline-block;
  vertical-align: top;
  width: 85%;
}
.p-top__qanda-box dl dt::after {
  display: block;
  content: "▲";
  background: #76b6f6;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 10px;
}
.p-top__qanda-box dl dt.close::after {
  content: "▼";
}
.p-top__qanda-box dl dd {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  font-weight: 600;
  padding: 5px 10px;
}
.p-top__qanda-box dl dd img {
  margin-right: 10px;
}
.p-top__qanda-box dl dd p {
  display: inline-block;
  vertical-align: top;
  width: 94%;
}
.p-top__guide {
  padding: 0 0 80px;
}
.p-top__guide h3 {
  background: #f0f0f0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 6px;
}
.p-top__guide-txt {
  padding: 40px 20px 20px;
  border-bottom: 10px solid #dcdcdc;
}
.p-top__guide-txt h4 {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  font-weight: 300;
}
.p-top__guide-txt p {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  font-weight: 300;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-top__mv {
    margin-top: 0;
  }
  .p-top__mv-inner::before {
    width: 80px;
    height: 80px;
  }
  .p-top__mv-txt {
    padding-left: 3.5%;
  }
  .p-top__mv-img {
    width: 50%;
  }
  .p-top__problem {
    padding: 50px 0;
    margin-top: 50px;
  }
  .p-top__point {
    padding: 50px 0;
  }
  .p-top__bg {
    height: 200px;
  }
  .p-top__bg img {
    height: 200px;
  }
  .p-top__service {
    padding: 50px 0;
  }
  .p-top__flow {
    padding: 30px 0 30px;
  }
  .p-top__list {
    padding: 40px 0;
  }
  .p-top__list-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
  }
  .p-top__qanda {
    padding: 40px 0;
  }
  .p-top__qanda-flex {
    gap: 0 5%;
  }
  .p-top__qanda-box {
    width: 35%;
  }
  .p-top__qanda-box:last-child {
    width: 60%;
  }
  .p-top__qanda-box dl {
    margin: 20px 0;
  }
  .p-top__qanda-box dl dd p {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .p-top__mv {
    margin-top: 20px;
  }
  .p-top__mv-txt {
    padding: 0 2%;
    width: 100%;
  }
  .p-top__mv-img {
    width: 90%;
    position: relative;
    right: 0;
    bottom: 0;
    margin: 5% auto;
    padding-bottom: 5%;
  }
  .p-top__problem h2 {
    width: 100%;
  }
  .p-top__problem p {
    text-align: left;
  }
  .p-top__point h2 {
    font-size: 2.4rem;
  }
  .p-top__point-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top__point-box {
    width: 85%;
    margin: 0 auto;
  }
  .p-top__service h2 {
    font-size: 2.4rem;
  }
  .p-top__service .sp_scroll {
    width: 100%;
    overflow-x: scroll;
    padding: 10px;
  }
  .p-top__service .sp_scroll table {
    width: 740px;
  }
  .p-top__flow h3 {
    width: 80%;
    margin: 0 auto 10px;
  }
  .p-top__flow-flex img {
    height: 150px;
  }
  .p-top__list-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .p-top__list-box {
    width: 48%;
    margin: 20px auto;
  }
  .p-top__list-box-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top__list-box-flex ul {
    width: 100%;
    padding: 0 5px 0 5px;
  }
  .p-top__list-box:last-child {
    width: 48%;
  }
  .p-top__qanda h2 {
    width: 25%;
  }
  .p-top__qanda-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .p-top__qanda-box {
    width: 60%;
    margin: 10px auto;
  }
  .p-top__qanda-box:last-child {
    width: 100%;
  }
  .p-top__qanda-box dl {
    margin: 20px auto;
  }
  .p-top__qanda-box dl dd p {
    width: 90%;
  }
  .p-top__guide {
    padding: 0 0 40px;
  }
}
/*----------------------------------------------------------------------------------------
low.scss
----------------------------------------------------------------------------------------*/
.p-low__mv {
  position: relative;
  background-image: url(../images/img_18.png);
  width: 100%;
  height: 200px;
}
.p-low__mv-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 200px;
  margin: 0 auto;
}
.p-low__mv img {
  position: relative;
  top: 50%;
  left: 7.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-low__search {
  padding: 100px 0 0;
}
.p-low__search h2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}
.p-low__search h2::after {
  display: block;
  content: "";
  width: 4em;
  border-bottom: 1px solid #004b95;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .p-low__mv {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75%;
    height: 150px;
  }
  .p-low__mv-inner {
    height: 150px;
  }
  .p-low__mv img {
    left: 0;
  }
  .p-low__search {
    padding: 50px 0 0;
  }
  .p-low__search h2 {
    font-size: 2rem;
  }
}
.p-low__tab {
  margin: 60px auto 40px;
}
.p-low__tab .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-low__tab .js-tab {
  position: relative;
  background: #ebf5ff;
  border-bottom: 10px solid #e0f0ff;
  color: #004b95;
  font-weight: 300;
  text-align: center;
  font-size: 2rem;
  font-size: clamp(1.6rem, 0.781vw + 1rem, 2rem);
  /*width: 48%;
  max-width: 400px;*/
  width: 100%;
  padding: 12px;
}
.p-low__tab .js-tab.active {
  background: #004b95;
  border-bottom: 10px solid #0c7def;
  color: #fff;
}
.p-low__tab .js-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #e0f0ff;
}
.p-low__tab .js-tab.active::after {
  border-top-color: #0c7def;
}

/* 検索枠 */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.search-form {
  position: relative;
  border: 1px solid #004b95;
  padding: 20px 40px;
  margin: 20px auto 100px;
}
.search-form::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 20px solid #76b6f6;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.search-group {
  border-bottom: 1px dotted #76b6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}
.search-group.bdr_non {
  border-bottom: none;
}
.search-group h3 {
  width: 25%;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-size: clamp(1.6rem, 0.781vw + 1rem, 2rem);
  font-weight: 300;
  text-align: center;
  margin: 5px 0;
}
.search-group h3 p {
  width: 5.5em;
  text-align: left;
  margin: 0 auto;
}
.search-group h3 span {
  color: #004b95;
}
.search-group-flex {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-group-flex label {
  width: 25%;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  font-size: clamp(1.6rem, 0.781vw + 1rem, 2rem);
  font-weight: 300;
  margin: 5px 0;
}
.search-group-flex.flex02 label {
  width: auto;
  min-width: 33%;
}
.search-group-flex input[type=checkbox] {
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  margin-right: 5px;
}

.search-btn {
  text-align: center;
  margin-top: 30px;
}
.search-btn button {
  width: 240px;
  padding: 10px 20px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#85bef7), to(#0c7def));
  background: linear-gradient(#85bef7, #0c7def);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 2rem;
  font-size: clamp(1.6rem, 0.781vw + 1rem, 2rem);
  margin: 10px auto;
}

.p-low__list {
  margin-top: 60px;
  padding-bottom: 0;
  /* 一覧カード */
}
.p-low__list .teacher-card {
  margin-bottom: 60px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}
.p-low__list .teacher-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #004b95;
  color: #fff;
  padding: 0 10px;
}
.p-low__list .teacher-head .num {
  font-weight: 700;
  background: #0c7def;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  font-size: 2.4rem;
  font-weight: 600;
  padding: 6px 50px 6px 10px;
}
.p-low__list .teacher-head .date {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.3;
}
.p-low__list .teacher-body table {
  table-layout: 100%;
  width: 100%;
  border-spacing: 0;
}
.p-low__list .teacher-body th,
.p-low__list .teacher-body td {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 15px;
}
.p-low__list .teacher-body th {
  width: 15%;
  color: #004b95;
  background: #e0f0ff;
}
.p-low__list .teacher-body td {
  width: 35%;
  background: #fafafa;
}
.p-low__list .teacher-body tr:nth-of-type(2n) th {
  background: #ebf5ff;
}
.p-low__list .teacher-body tr:nth-of-type(2n) td {
  background: #fff;
}
.p-low__list .teacher-btn {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
}
.p-low__list .teacher-btn a {
  position: relative;
  display: inline-block;
  min-width: 360px;
  padding: 5px;
  border: 1px solid #004b95;
  color: #004b95;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  font-size: 1.8rem;
}
.p-low__list .teacher-btn a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: #004b95;
  width: 12px;
  height: 12px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.p-caution {
  margin-bottom: 80px;
}
.p-caution p {
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  .search-form {
    padding: 20px;
    margin-bottom: 50px;
  }
  .search-form::after {
    bottom: -30px;
  }
  .search-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .search-group h3 {
    width: 100%;
    margin: 0;
  }
  .search-group h3 p {
    width: 100%;
  }
  .search-group-flex {
    width: 100%;
  }
  .search-group-flex label {
    width: 33.33%;
    margin: 0;
  }
  .search-group-flex.flex02 label {
    width: auto;
    min-width: 50%;
  }
  .p-low__list {
    margin-top: 30px;
  }
  .p-low__list .teacher-head .num {
    font-size: 2rem;
  }
  .p-low__list .teacher-head .date {
    font-size: 1.4rem;
  }
  .p-low__list .teacher-body th {
    display: block;
    width: 100%;
    padding: 5px 10px;
  }
  .p-low__list .teacher-body td {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
  .p-low__list .teacher-body tr:nth-of-type(2n) th {
    background: #e0f0ff;
  }
  .p-low__list .teacher-body tr:nth-of-type(2n) td {
    background: #fafafa;
  }
  .p-low__list .teacher-btn a {
    font-size: 1.6rem;
    min-width: 300px;
  }
}
.p-low-detail-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px auto;
}
.p-low-detail-title {
  position: relative;
  background: #d4eaff;
  width: 22%;
  max-width: 200px;
}
.p-low-detail-title p {
  color: #004b95;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-low-detail-title::before {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  content: "";
  background-color: #fff4a0;
  width: 30px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.p-low-detail-title::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: block;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 30px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.p-low-detail-box {
  width: 76%;
  max-width: 740px;
  border-top: 1px solid #004b95;
  border-bottom: 1px solid #004b95;
}
.p-low-detail table.table01 {
  table-layout: fixed;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 300;
  color: #004b95;
  border-spacing: 0;
}
.p-low-detail table.table01 th {
  width: 10%;
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #dbe6f0;
}
.p-low-detail table.table01 th:first-child {
  width: 30%;
  padding: 8px 15px;
}
.p-low-detail table.table01 tr:first-child th {
  border-bottom: 1px solid #004b95;
  padding: 5px;
}
.p-low-detail table.table01 td {
  border-bottom: 1px solid #dbe6f0;
  padding: 5px 4px;
}
.p-low-detail table.table01 td p {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #004b95;
  border-radius: 4px;
  line-height: 1;
}
.p-low-detail table.table01 td p.check {
  background: #004b95;
}
.p-low-detail table.table01 tr:last-child th,
.p-low-detail table.table01 tr:last-child td {
  border-bottom: none;
}
.p-low-detail table.table02 {
  table-layout: fixed;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 300;
  color: #004b95;
  border-spacing: 0;
}
.p-low-detail table.table02 th {
  width: 35%;
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #dbe6f0;
}
.p-low-detail table.table02 td {
  width: 15%;
  border-bottom: 1px solid #dbe6f0;
  border-right: 1px solid #dbe6f0;
  padding: 5px 4px;
}
.p-low-detail table.table02 td:last-child {
  border-right: none;
}
.p-low-detail table.table02 td p {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 1;
}
.p-low-detail table.table02 td p.check {
  background: #004b95;
}

.p-low__pr {
  padding: 40px 0 80px;
  overflow-x: hidden;
  overflow-y: clip;
}
.p-low__pr h2 {
  position: relative;
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 1.563vw + 1.2rem, 3.2rem);
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
}
.p-low__pr-bdr01 {
  border: 10px solid #cceae3;
  margin: 60px auto;
}
.p-low__pr-bdr02 {
  position: relative;
  border: 20px solid #ebf5f0;
  padding: 60px;
}
.p-low__pr-bdr02 p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.25;
}
.p-low__pr-bdr02 img {
  position: absolute;
  left: 93%;
  top: 50%;
}

@media screen and (max-width: 480px) {
  .p-low-detail-flex {
    margin-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-low-detail-title {
    width: 100%;
    max-width: 100%;
    height: 70px;
  }
  .p-low-detail-box {
    width: 100%;
  }
  .p-low-detail table.table01 th:first-child {
    font-size: 1.6rem;
    text-align: center;
    padding: 8px 8px;
  }
  .p-low-detail table.table02 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-low-detail table.table02 th {
    display: block;
    width: 70%;
  }
  .p-low-detail table.table02 td {
    position: relative;
    display: block;
    width: 30%;
    border-right: none;
  }
  .p-low-detail table.table02 td p {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-low-detail table.table02 .sp-non {
    display: none;
  }
  .p-low__pr {
    padding-top: 40px;
  }
  .p-low__pr-bdr01 {
    margin: 30px auto;
  }
  .p-low__pr-bdr02 {
    padding: 20px 30px 20px 20px;
  }
  .p-low__pr-bdr02 p {
    font-size: 1.6rem;
  }
  .p-low__pr img {
    top: 40%;
  }
}
/*----------------------------------------------------------------------------------------
none.scss
----------------------------------------------------------------------------------------*/
@media (min-width: 769px) {
  .u-tab-appea {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-tab-none {
    display: none;
  }
}
@media (min-width: 481px) {
  .u-sp-appea {
    display: none;
  }
}
@media (max-width: 480px) {
  .u-sp-none {
    display: none;
  }
}