@charset "UTF-8";
/* ----------------------------------------
   header
---------------------------------------- */
.l-header-s {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 88px;
  background-color: #F9F9F9;
  border-bottom: 3px solid #000;
}
.l-header-s__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .l-header-s__container {
    padding: 0 10px;
  }
}
.l-header-s__logo {
  width: 162px;
  flex-shrink: 0;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .l-header-s__logo {
    width: 130px;
  }
}
.l-header-s__logo img {
  width: 100%;
}
.l-header-s__logo-link {
  display: block;
}
@media screen and (min-width: 751px) {
  .l-header-s__logo-link {
    transition: opacity 0.3s;
  }
  .l-header-s__logo-link:hover {
    opacity: 0.3;
  }
}
.l-header-s__logo-txt {
  font-size: 14px;
  background-color: #001C68;
  color: #fff;
  display: block;
  width: 100%;
  padding: 1px;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .l-header-s__logo-txt {
    font-size: 12px;
  }
}
.l-header-s__btn-wrap {
  display: flex;
  width: 100%;
  max-width: 580px;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .l-header-s__btn-wrap {
    justify-content: flex-end;
  }
}
.l-header-s__btn {
  width: 48.8%;
}
@media screen and (max-width: 750px) {
  .l-header-s__btn {
    width: 100%;
    max-width: 283px;
  }
}
@media screen and (max-width: 750px) {
  .l-header-s__btn--dw {
    display: none;
  }
}
.l-header-s__btn:nth-of-type(n + 2) {
  margin-left: 2.4%;
}
.l-header-s__btn-link {
  background-color: #FFBD39;
  border-radius: 10px;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  border: 3px solid #FFBD39;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .l-header-s__btn-link {
    transition: 0.3s;
  }
  .l-header-s__btn-link:hover {
    color: #FFBD39;
    background-color: #fff;
  }
}
.l-header-s__btn-link--white {
  background-color: #fff;
  color: #FFBD39;
}
@media screen and (min-width: 751px) {
  .l-header-s__btn-link--white {
    transition: 0.3s;
  }
  .l-header-s__btn-link--white:hover {
    color: #fff;
    background-color: #FFBD39;
  }
}

/* ----------------------------------------
   footer
---------------------------------------- */
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .l-footer__bnr {
    margin-top: 50px;
  }
}

/* ----------------------------------------
   main
---------------------------------------- */
.l-main {
  margin-top: 88px;
}

/* ----------------------------------------
   p-shin
---------------------------------------- */
.p-shin {
  position: relative;
}

/* ----------------------------------------
   p-shin-side
---------------------------------------- */
.p-shin-side {
  position: fixed;
  top: 88px;
  left: 0;
  width: 380px;
  height: calc(100vh - 88px);
  padding: 2%;
  overflow-y: auto;
}
@media screen and (min-width: 1281px) {
  .p-shin-side {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-shin-side {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-side {
    padding: 10px;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-side {
    display: none;
  }
}
.p-shin-side.is-bottom {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
}
.p-shin-side__ttl {
  font-size: 37px;
  font-weight: bold;
  color: #001C68;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .p-shin-side__ttl {
    font-size: 29.6px;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-side__ttl {
    font-size: 24.05px;
  }
}
.p-shin-side__ttl-red {
  color: #D62257;
}
.p-shin-side__menu {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #DFF5FF;
  border-radius: 10px;
  padding-bottom: 35px;
}
.p-shin-side__menu-txt {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: block;
  border-bottom: 1px solid #fff;
  padding: 10px;
  color: #001C68;
}
@media screen and (max-width: 1024px) {
  .p-shin-side__menu-txt {
    font-size: 17px;
  }
}
.p-shin-side__list {
  margin: 0 25px;
}
@media screen and (max-width: 1024px) {
  .p-shin-side__list {
    margin: 0 15px;
  }
}
.p-shin-side__item {
  border-bottom: 1px solid #fff;
}
.p-shin-side__link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px 5px;
  display: block;
}
@media screen and (min-width: 751px) {
  .p-shin-side__link {
    transition: 0.3s;
  }
  .p-shin-side__link:hover {
    color: #FB677E;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-side__link {
    font-size: 14px;
  }
}
.p-shin-side__link::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #FB677E;
  border-right: 0;
  opacity: 0;
  transition: 0.3s;
}
.js-sec-link.is-current .p-shin-side__link::before {
  opacity: 1;
}

.p-shin-side__link--idt {
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .p-shin-side__link--idt {
    padding-left: 15px;
  }
}
.p-shin-side__link--idt::before {
  left: 5px;
}
@media screen and (max-width: 1024px) {
  .p-shin-side__link--idt::before {
    left: -5px;
  }
}
.js-sec-link.is-current .p-shin-side__link {
  color: #FB677E;
}

.p-shin-side__btn {
  margin-top: 20px;
}
.p-shin-side__btn-link {
  background-color: #FFBD39;
  color: #fff;
  border: 3px solid #FFBD39;
  border-radius: 10px;
  display: block;
  padding: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  .p-shin-side__btn-link {
    transition: 0.3s;
  }
  .p-shin-side__btn-link:hover {
    color: #FFBD39;
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-side__btn-link {
    font-size: 20px;
  }
}

/* ----------------------------------------
   p-shin-main
---------------------------------------- */
.p-shin-main {
  width: calc(100% - 380px);
  margin-left: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 140px;
}
@media screen and (max-width: 1200px) {
  .p-shin-main {
    width: 70%;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-main {
    width: 100%;
  }
}

@media screen and (min-width: 751px) {
  .p-shin-container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-container {
    padding: 0 4%;
  }
}

.p-shin-kv img {
  width: 100%;
}

.p-shin-lead {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
@media screen and (max-width: 1024px) {
  .p-shin-lead {
    display: block;
  }
}
.p-shin-lead__crown {
  max-width: 322.5px;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .p-shin-lead__crown {
    margin: 0 auto;
  }
}
.p-shin-lead__btn {
  width: 523px;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-shin-lead__btn {
    max-width: 523px;
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-lead__btn {
    margin: 15px auto 0;
  }
}
.p-shin-lead__btn-txt {
  font-size: 24px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-shin-lead__btn-txt {
    font-size: 15px;
  }
}
.p-shin-lead__btn-link {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  background-color: #FFBD39;
  border: 3px solid #FFBD39;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
@media screen and (min-width: 751px) {
  .p-shin-lead__btn-link {
    transition: 0.3s;
  }
  .p-shin-lead__btn-link:hover {
    color: #FFBD39;
    background-color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-lead__btn-link {
    font-size: 22px;
    padding: 10px;
  }
}

.p-shin-line {
  padding-top: 100px;
  margin-top: -100px;
  background: none;
  border: none;
}

.p-shin-box {
  background-color: #DFF5FF;
  border-radius: 10px;
  padding: 40px 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 751px) {
  .p-shin-box {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-box {
    border-radius: 0;
  }
}
.p-shin-box__ttl {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .p-shin-box__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .p-shin-box__ttl {
    font-size: 16px;
  }
}

.p-shin-anchor {
  max-width: 770px;
  margin: 0 auto;
}
.p-shin-anchor--2 {
  margin-bottom: 100px;
}
.p-shin-anchor__item {
  width: 100%;
  margin-bottom: 20px;
}
.p-shin-anchor__link {
  position: relative;
  border: 5px solid #001C68;
  border-radius: 10px;
  background-color: #fff;
  color: #001C68;
  padding: 25px;
  padding-left: 110px;
  display: block;
}
@media screen and (max-width: 1280px) {
  .p-shin-anchor__link {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .p-shin-anchor__link {
    padding-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-anchor__link {
    padding: 15px;
    padding-right: 35px;
    text-align: center;
    border-width: 3px;
  }
}
@media screen and (min-width: 751px) {
  .p-shin-anchor__link {
    transition: 0.3s;
  }
  .p-shin-anchor__link:hover {
    background-color: #001C68;
    color: #fff;
  }
}
.p-shin-anchor__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 21px solid #001C68;
  border-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-shin-anchor__link::after {
    right: 15px;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 16px solid #001C68;
  }
}
@media screen and (min-width: 751px) {
  .p-shin-anchor__link:hover::after {
    border-top: 21px solid #fff;
  }
}
.p-shin-anchor__link-txt {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .p-shin-anchor__link-txt {
    font-size: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-anchor__link-txt {
    font-size: 20px;
  }
}

.p-shin-sec {
  padding-top: 100px;
  padding-bottom: 150px;
  margin-top: -100px;
}
@media screen and (max-width: 750px) {
  .p-shin-sec {
    padding-bottom: 75px;
  }
}

.p-shin-ttl {
  color: #fff;
  background-color: #001C68;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  padding: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .p-shin-ttl {
    font-size: 24px;
  }
}

.p-shin-desc {
  background-color: #DFF5FF;
  padding: 20px;
  margin: 0 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .p-shin-desc {
    padding: 15px 10px;
    margin: 0;
    margin-bottom: 20px;
  }
}
.p-shin-desc__txt {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .p-shin-desc__txt--s {
    font-size: 14px;
  }
}
.p-shin-desc__txt-s {
  font-size: 14px;
  margin-left: 10px;
}
.p-shin-desc__txt-l {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #001C68;
}
@media screen and (max-width: 1024px) {
  .p-shin-desc__txt-l {
    font-size: 20px;
  }
}
.p-shin-desc__txt-m {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #001C68;
}
.p-shin-desc__txt-num {
  font-size: 30px;
}

.p-shin-graph {
  max-width: 568px;
  margin: 0 auto;
  margin-top: 40px;
}
.p-shin-graph__ttl {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}
.p-shin-graph__note {
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
}

.p-shin-cost {
  max-width: 806px;
  margin: 50px auto 0;
}
.p-shin-cost__txt {
  font-size: 16px;
  font-weight: 500;
  background-color: #ECECEC;
  padding: 5px 25px;
  margin-bottom: 15px;
  display: inline-block;
}
.p-shin-cost__img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-shin-cost__img {
    margin-bottom: 10px;
  }
}
.p-shin-cost__img img {
  width: 100%;
}
.p-shin-cost__b-txt {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.p-shin-cost__b-txt-red {
  font-size: 24px;
  color: #D62257;
}
@media screen and (max-width: 750px) {
  .p-shin-cost__b-txt-red {
    font-size: 22px;
  }
}
.p-shin-cost__b-txt-num {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .p-shin-cost__b-txt-num {
    font-size: 38px;
  }
}

.p-shin-problem {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .p-shin-problem {
    flex-direction: column-reverse;
  }
}
.p-shin-problem__img {
  width: 144px;
  margin-bottom: 20px;
  margin-right: 70px;
}
@media screen and (max-width: 750px) {
  .p-shin-problem__img {
    margin: 15px auto 0;
  }
}
.p-shin-problem__txt-area {
  position: relative;
  border: 2px solid #707070;
  border-radius: 35px;
  padding: 35px;
  max-width: 515px;
}
@media screen and (max-width: 750px) {
  .p-shin-problem__txt-area {
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .p-shin-problem__txt-area {
    padding: 20px 10px;
  }
}
.p-shin-problem__txt-area::after {
  content: "";
  position: absolute;
  background-image: url("../img/shinsotsu/icon_fukidashi.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 43px;
  height: 29px;
  top: 50%;
  transform: translateY(-50%);
  left: -43px;
}
@media screen and (max-width: 750px) {
  .p-shin-problem__txt-area::after {
    background-image: url("../img/shinsotsu/sp/icon_fukidashi.png");
    width: 41px;
    height: 33px;
    top: auto;
    left: 20%;
    transform: translate(0);
    bottom: -32px;
  }
}
.p-shin-problem__item {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 1em;
}
.p-shin-problem__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-shin-problem__item-l {
  color: #0096DB;
  font-size: 20px;
}

.p-shin-arrow {
  margin-bottom: 150px;
}
@media screen and (max-width: 750px) {
  .p-shin-arrow {
    margin-bottom: 75px;
  }
}
.p-shin-arrow__icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 74px solid transparent;
  border-left: 74px solid transparent;
  border-top: 62px solid #c2c2c2;
  border-bottom: 0;
  display: block;
  margin: 0 auto;
}

.p-shin-solution {
  background: #FFD5E2;
  background: linear-gradient(to top right, #FFF7E2 0%, #FFD5E2 100%);
  padding: 80px 20px;
}
@media screen and (max-width: 1024px) {
  .p-shin-solution {
    padding: 50px 0;
  }
}
.p-shin-solution__ttl {
  font-size: 45px;
  font-weight: bold;
  color: #001C68;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-shin-solution__ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-solution__ttl {
    font-size: 18px;
  }
}
.p-shin-solution__ttl-l {
  font-size: 56px;
}
@media screen and (max-width: 1200px) {
  .p-shin-solution__ttl-l {
    font-size: 44.8px;
  }
}
@media screen and (max-width: 1024px) {
  .p-shin-solution__ttl-l {
    font-size: 26px;
  }
}
.p-shin-solution__ttl-red {
  color: #D62257;
  font-size: 75px;
}
@media screen and (max-width: 1200px) {
  .p-shin-solution__ttl-red {
    font-size: 60px;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-solution__ttl-red {
    font-size: 35px;
  }
}

.p-shin-btn-1 {
  max-width: 356px;
  margin: 60px auto;
}
.p-shin-btn-1__link {
  font-size: 30px;
  font-weight: 500;
  border: 3px solid #FFBD39;
  background-color: #FFBD39;
  color: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 751px) {
  .p-shin-btn-1__link {
    transition: 0.3s;
  }
  .p-shin-btn-1__link:hover {
    color: #FFBD39;
    background-color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .p-shin-btn-1__link {
    font-size: 24px;
  }
}

.p-shin-employ {
  margin: 45px 0;
  text-align: center;
}
.p-shin-employ__inner {
  display: inline-block;
}
.p-shin-employ__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-shin-employ__list {
    display: block;
  }
}
.p-shin-employ__label {
  font-size: 16px;
  font-weight: 500;
  background-color: #707070;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
}
.p-shin-employ__label--navy {
  background-color: #001C68;
}
.p-shin-employ__cont {
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-shin-employ__txt {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
}
.p-shin-employ__txt::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 132px;
  height: 2px;
  border-radius: 100px;
  background-color: #001C68;
}
.p-shin-employ__txt--b {
  font-weight: bold;
}
.p-shin-employ__txt--red {
  color: #D62257;
  font-weight: bold;
  padding-bottom: 0;
}
.p-shin-employ__txt-num {
  font-size: 24px;
}
.p-shin-employ__txt-num--l {
  font-size: 40px;
}
.p-shin-employ__txt-kome {
  position: relative;
  top: -10px;
  font-size: 12px;
}
.p-shin-employ__arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #c2c2c2;
  border-right: 0;
  margin: 0 30px;
}
@media screen and (max-width: 1024px) {
  .p-shin-employ__arrow {
    transform: rotate(90deg);
    margin: auto;
  }
}
.p-shin-employ__note {
  font-size: 12px;
  text-align: right;
  margin-top: 20px;
}

.p-shin-rank__img-txt {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}
.p-shin-rank__img-area {
  max-width: 567px;
  margin: 0 auto;
}
.p-shin-rank__txt-area {
  margin: 0 50px 40px;
}
@media screen and (max-width: 1024px) {
  .p-shin-rank__txt-area {
    margin: 0 0 40px;
  }
}
.p-shin-rank__txt {
  font-size: 16px;
  font-weight: 500;
}
.p-shin-rank__txt-b {
  color: #0096DB;
}
.p-shin-rank__txt-l {
  font-size: 24px;
}
.p-shin-rank__source {
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
  text-align: right;
}

.p-shin-hedge {
  max-width: 700px;
  margin: 30px auto;
}
.p-shin-hedge__item {
  display: flex;
  margin: 20px 0;
}
.p-shin-hedge__img-area {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .p-shin-hedge__img-area {
    width: 70px;
  }
}
.p-shin-hedge__img {
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .p-shin-hedge__img {
    width: 60px;
    margin-left: 0;
  }
}
@media screen and (min-width: 600px) {
  .p-shin-hedge__img--1 {
    width: 93px;
  }
  .p-shin-hedge__img--2 {
    width: 113.5px;
  }
  .p-shin-hedge__img--3 {
    width: 113.5px;
  }
}
.p-shin-hedge__txt-area {
  width: 70%;
}
@media screen and (max-width: 599px) {
  .p-shin-hedge__txt-area {
    width: calc(100% - 70px);
  }
}
.p-shin-hedge__txt-l {
  color: #0096DB;
  font-size: 20px;
  font-weight: 500;
}
.p-shin-hedge__txt {
  font-size: 16px;
  font-weight: 500;
}

.p-shin-teach__txt-area {
  margin: 0 50px;
}
@media screen and (max-width: 1024px) {
  .p-shin-teach__txt-area {
    margin: 0;
  }
}
.p-shin-teach__txt {
  font-size: 16px;
  font-weight: 500;
}
.p-shin-teach__txt-l {
  font-size: 20px;
  color: #0096DB;
}
.p-shin-teach__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 30px auto 0;
}
@media screen and (max-width: 750px) {
  .p-shin-teach__wrap {
    display: block;
  }
}
.p-shin-teach__cont {
  border-radius: 10px;
  width: 46%;
  padding: 20px 10px;
}
@media screen and (max-width: 750px) {
  .p-shin-teach__cont {
    width: 100%;
  }
}
.p-shin-teach__cont--red {
  border: 2px solid #D62257;
}
.p-shin-teach__cont--navy {
  border: 2px solid #001C68;
}
.p-shin-teach__cont--yellow {
  border: 2px solid #FFBD39;
}
@media screen and (max-width: 750px) {
  .p-shin-teach__cont:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}
.p-shin-teach__img {
  margin: 0 auto 10px;
}
.p-shin-teach__img--1 {
  max-width: 298px;
}
.p-shin-teach__img--2 {
  max-width: 196px;
}
.p-shin-teach__img img {
  width: 100%;
}
.p-shin-teach__item {
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
.p-shin-teach__item--dot {
  padding-left: 1em;
}
.p-shin-teach__item--dot::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-shin-teach__b-txt {
  font-size: 12px;
  padding-left: 1em;
}
.p-shin-teach__arrow {
  width: 266px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-shin-teach__arrow {
    width: 71px;
    margin: 20px auto;
  }
}
.p-shin-teach__syain {
  width: 122px;
  margin: 0 auto;
}

.p-shin-case {
  padding-top: 100px;
  margin-top: -100px;
}
.p-shin-case__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .p-shin-case__head {
    margin-bottom: 30px;
  }
}
.p-shin-case__ttl {
  position: relative;
  font-size: 56px;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .p-shin-case__ttl {
    font-size: 30px;
    padding-bottom: 5px;
  }
}
.p-shin-case__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0096DB;
  width: 110%;
  height: 4px;
  border-radius: 100px;
}
.p-shin-case__txt {
  font-size: 16px;
  font-weight: 500;
}
.p-shin-case__txt-l {
  font-size: 20px;
  color: #0096DB;
}
.p-shin-case__img {
  max-width: 580px;
  margin: 15px auto 150px;
}
@media screen and (max-width: 750px) {
  .p-shin-case__img {
    margin-bottom: 75px;
  }
}
.p-shin-case__img img {
  width: 100%;
}

.p-shin-contact__ttl {
  color: #D62257;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}
.p-shin-contact__txt {
  font-size: 20px;
  font-weight: 500;
  color: #001C68;
  text-align: center;
  line-height: 2;
}
.p-shin-contact__btn {
  max-width: 448px;
  margin: 35px auto 0;
  text-align: center;
}
.p-shin-contact__btn-txt {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .p-shin-contact__btn-txt {
    font-size: 14px;
  }
}
.p-shin-contact__btn-link {
  color: #FFFFFF;
  background-color: #FFBD39;
  border-radius: 10px;
  font-size: 30px;
  font-weight: 500;
  border: 3px solid #FFBD39;
  display: block;
  padding: 10px;
}
@media screen and (min-width: 751px) {
  .p-shin-contact__btn-link {
    transition: 0.3s;
  }
  .p-shin-contact__btn-link:hover {
    color: #FFBD39;
    background-color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .p-shin-contact__btn-link {
    font-size: 22px;
  }
}