@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&family=Open+Sans:ital,wght@1,700;1,800&display=swap");
.txt--yellow {
  color: #FFB34B;
  font-weight: 700;
}
.txt--blue {
  color: #1B5A88;
}
.txt--dot {
  padding-top: 0.4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #FFB34B, #FFB34B 100%, transparent);
}
.txt--num {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

.mb-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .mb-only {
    display: block;
  }
}
img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

html, body {
  color: #424242;
}

iframe {
  width: 100%;
  height: 100%;
}

.main {
  margin-top: 181.06px;
}

@media screen and (max-width: 1079px) {
  .main {
    margin-top: 78.39px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    margin-top: 75px;
  }
}
.btn {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 5px;
  font-weight: bold;
}
.btn--mail {
  background: #FFB34B;
  color: #fff;
  transition: 0.5s;
}
.btn--mail:hover, .btn--mail:focus {
  background-color: #FFBD63;
}
.btn--line {
  background-color: #06C755;
  color: #fff;
  position: relative;
  transition: 0.5s;
}
.btn--line .btn__icon--l {
  width: 15%;
}
.btn--line:hover:before, .btn--line:focus:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
  opacity: 0.1;
}
.btn span {
  display: block;
  text-align: center;
}
.btn__icon--l {
  display: inline-block;
  width: 10%;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.btn__icon--r {
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.btn__wrap {
  display: flex;
  justify-content: space-between;
}
.btn__wrap .btn {
  width: calc((100% - 10px) / 2);
}
.btn--scrollTop {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background-color: #1B5A88;
  color: #fff;
  border: 1px solid currentColor;
  position: relative;
  cursor: pointer;
}
.btn--scrollTop .arrow-top {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.btn--scrollTop .btn__txt {
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1079px) {
  .btn {
    padding: 0.5em 0.6em;
  }
  .btn--mail .btn__icon--l {
    height: auto;
  }
  .btn--line {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    height: 33px;
    padding: 0 0 0 30px;
  }
  .btn--mail .btn__icon--l {
    width: 10%;
  }
  .btn--line {
    background-color: #06C755;
    color: #fff;
  }
  .btn--line .btn__icon--l {
    height: auto;
    width: 20%;
    max-width: 28px;
  }
  .btn--scrollTop {
    width: 47px;
    height: 47px;
  }
  .btn--scrollTop .arrow-top {
    font-size: 1.25rem;
    width: 13px;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
  }
  .btn--scrollTop .btn__txt {
    font-size: 10px;
  }
}
.tel:before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.menu {
  display: none;
}

@media screen and (max-width: 1079px) {
  .menu {
    display: block;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .menu .menu__line {
    position: absolute;
    display: block;
    background-color: #1B5A88;
    height: 2px;
    width: 100%;
    transition: all 0.5s;
  }
  .menu .top {
    top: 0;
  }
  .menu .middle {
    top: 10px;
  }
  .menu .bottom {
    top: 20px;
  }
  .menu.js-active .top, .menu.js-active .middle, .menu.js-active .bottom {
    transition: 0.5s;
  }
  .menu.js-active .top {
    transform: translateY(10px) rotate(-45deg);
  }
  .menu.js-active .middle {
    opacity: 0;
  }
  .menu.js-active .bottom {
    transform: translateY(-10px) rotate(45deg);
  }
}
.card {
  background-color: #fff;
  color: #1B5A88;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}
.card__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card figcaption {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (max-width: 1079px) {
  .card__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .card__wrap {
    gap: 20px;
  }
  .card figcaption {
    height: 45px;
    font-size: 13px;
    line-height: 17px;
  }
}
.media {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.media:not(:last-child) {
  margin-bottom: 30px;
}
.media__img {
  width: 30%;
}
.media__txt {
  width: 65%;
  font-size: 18px;
  line-height: 1.5;
}
.media__txt--num {
  font-size: 30px;
  margin-right: 1em;
}
.media__ttl {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.media--reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.media--reverse .media__img {
  width: 45%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}
.media--reverse .media__txt {
  width: 50%;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .media {
    flex-direction: column;
  }
  .media__img {
    width: 100%;
  }
  .media__txt {
    width: 100%;
    margin-top: 24px;
    line-height: 1.7;
    font-size: 14px;
  }
  .media__txt--num {
    font-size: 24px;
    margin-right: 15px;
  }
  .media__ttl {
    font-size: 20px;
  }
  .media--reverse {
    flex-direction: column;
  }
  .media--reverse .media__img {
    width: 100%;
  }
  .media--reverse .media__txt {
    width: 100%;
    font-size: 14px;
  }
}
.table {
  font-size: 1.25em;
}
.table__head {
  background-color: #1B5A88;
  color: #fff;
}
.table__header {
  vertical-align: middle;
  padding: 20px 0;
}
.table__header--col {
  width: 20%;
  padding: 2%;
  color: #1B5A88;
  vertical-align: middle;
}
.table__row {
  border-bottom: 2px solid #1B5A88;
}
.table__txt {
  vertical-align: middle;
  padding-top: 2%;
  padding-right: 2%;
  padding-bottom: 2%;
}
.table__txt--small {
  font-size: 0.9em;
}

@media screen and (max-width: 1079px) {
  .table {
    width: 1080px;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 767px) {
  .table {
    font-size: 16px;
  }
}
.header {
  background-color: #1B5A88;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
  padding: 0 15px;
}
@media screen and (max-width: 1079px) {
  .header__container {
    max-width: 100%;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: inline-block;
}
.header__ttl--main {
  font-size: 1.5em;
  line-height: 1.333;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
.header__ttl--sub {
  font-size: 2em;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
.header__info--mb {
  display: none;
}
.header__tel {
  font-size: 2.125em;
  margin-bottom: 10px;
  font-weight: 700;
}
.header__btn {
  font-size: 1.5em;
  border: 1px solid currentColor;
  border-radius: 5px;
  margin-left: auto;
  font-weight: 700;
  transition: 0.5s;
}
.header__btn .hover-img {
  display: none;
}
.header__btn:hover, .header__btn:focus {
  background-color: #fff;
  color: #1B5A88;
}
.header__btn:hover .switch-img, .header__btn:focus .switch-img {
  display: none;
}
.header__btn:hover .hover-img, .header__btn:focus .hover-img {
  display: block;
}
.header__btn .btn {
  padding: 0.5em 3em;
}
.header__nav {
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}
@media screen and (max-width: 1079px) {
  .header__nav {
    max-width: 100%;
  }
}
.header__nav ul {
  display: flex;
  justify-content: center;
}
.header__nav ul li {
  width: calc((100% - 16px) / 7);
  border-left: 2px solid currentColor;
}
.header__nav ul li:last-child {
  border-right: 2px solid currentColor;
}
.header__link {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.5s;
}
.header__link:hover, .header__link:focus {
  background-color: #fff;
  color: #1B5A88;
}

@media screen and (max-width: 1079px) {
  .header {
    padding-top: 10px;
  }
  .header__info {
    display: none;
  }
  .header__info--mb {
    display: flex;
  }
  .header__tel {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    margin-bottom: unset;
    background-color: #fff;
    color: #1B5A88;
    font-size: 1.5em;
    border-radius: 5px;
    position: relative;
  }
  .header__tel:before {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__tel > span {
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__btn {
    width: 55px;
    height: 55px;
    border: unset;
    background-color: #fff;
    color: #1B5A88;
    position: relative;
  }
  .header__btn > span {
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__icon {
    margin-right: auto;
    margin-left: auto;
  }
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__ttl--main {
    font-size: 14px;
    line-height: 1.333;
    font-family: "Noto Serif JP", serif;
  }
  .header__ttl--sub {
    font-size: 20px;
    line-height: 1.25;
    font-family: "Noto Serif JP", serif;
  }
}
.drawer {
  overflow-y: scroll;
  position: fixed;
  transform: translateY(-100%);
  transition: 0.5s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background-color: #fff;
  color: #1B5A88;
}
.drawer__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
  padding: 10px 15px;
}
@media screen and (max-width: 1079px) {
  .drawer__container {
    max-width: 100%;
  }
}
.drawer__list {
  margin-top: 30px;
}

@media screen and (max-width: 1079px) {
  .drawer {
    font-size: 3.7vw;
    padding-top: 78.39px;
  }
  .drawer.js-open {
    transform: translateY(0%);
    transition: 0.5s;
  }
  .drawer__item {
    border-bottom: 1px solid currentColor;
  }
  .drawer__item + .drawer__item {
    margin-top: 10px;
  }
  .drawer__link {
    display: block;
    line-height: 1.5;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .drawer {
    padding-top: 75px;
  }
}
.section {
  padding: 50px 0;
}
.section__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
  padding: 0 15px;
}
@media screen and (max-width: 1079px) {
  .section__inner {
    max-width: 100%;
  }
}
.section__ttl {
  font-size: 2.1875em;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  border-bottom: 2px solid #1B5A88;
}
.section__ttl--sub {
  font-size: 2.1875em;
  font-weight: bold;
  text-align: center;
  background-color: #1B5A88;
  color: #fff;
  padding: 50px 0;
  position: relative;
}
.section__ttl--sub:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 40px solid #1B5A88;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
}

@media screen and (max-width: 1079px) {
  .section__ttl {
    font-size: 5.1vw;
  }
  .section__ttl--sub {
    font-size: 5.1vw;
    padding: 3vw 0;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  .section__ttl {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .section__ttl--sub {
    font-size: 24px;
    line-height: 34px;
  }
  .section__ttl--sub:before {
    border-top: 4.2vw solid #1B5A88;
    border-right: 6vw solid transparent;
    border-left: 6vw solid transparent;
  }
}
.hero {
  background-color: #1B5A88;
  color: #fff;
  position: relative;
}
.hero__inner {
  padding: 5% 0;
  width: 50%;
}
.hero__ttl {
  background-color: #fff;
  color: #1B5A88;
  padding: 20px 0 20px 1.15em;
  font-size: 2.375em;
  margin-bottom: 30px;
  font-weight: bold;
}
.hero__txt {
  margin-top: 30px;
  font-weight: bold;
}
.hero__txt p {
  font-size: 2.125em;
  line-height: 1.6;
  display: inline-block;
}
.hero__list {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-weight: 700;
}
.hero__circle {
  width: calc((100% - 60px) / 3);
  padding-top: calc((100% - 60px) / 3);
  position: relative;
}
.hero__circle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  color: #1B5A88;
}
.hero__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #1B5A88;
}
.hero__txt--small {
  display: block;
  font-size: 1.6875em;
}
.hero__txt--medium {
  display: block;
  font-size: 1.5625em;
}
.hero__txt--large {
  display: block;
  font-size: 1.9375em;
}
.hero__bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../img/hero-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 0 0 20px;
  width: 45%;
  overflow: hidden;
}
.hero__wrap {
  position: relative;
  padding-top: 66.6666%;
}
.hero__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  font-weight: 700;
}
.hero__btn .btn {
  height: 80px;
}

@media screen and (min-width: 1080px) and (max-width: 1330px) {
  .hero__bg {
    width: 48.5%;
  }
  .hero__btn .btn__icon--l {
    left: 3%;
  }
  .hero__btn .btn__icon--r {
    right: 3%;
  }
}
@media screen and (max-width: 1079px) {
  .hero {
    font-size: 3vw;
  }
  .hero__inner {
    padding: 53.3328% 0 0 0;
    width: 100%;
    position: relative;
  }
  .hero__txt {
    position: absolute;
    top: 20%;
    left: 0;
    width: 70%;
    margin-top: unset;
    z-index: 2;
  }
  .hero__txt p {
    display: block;
    font-size: 1.4em;
  }
  .hero__ttl {
    padding: 20px 0;
    text-align: center;
    font-size: 1.5em;
  }
  .hero__circle {
    width: calc((100% - 40px) / 3);
    padding-top: calc((100% - 40px) / 3);
  }
  .hero__txt--small {
    font-size: 1.35em;
  }
  .hero__txt--medium {
    font-size: 1.2em;
  }
  .hero__txt--large {
    font-size: 1.5em;
  }
  .hero__bg {
    top: 10px;
    transform: none;
    width: 80%;
  }
  .hero__btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding-bottom: 28px;
  }
  .hero__ttl {
    padding: 5% 0;
    margin-bottom: 5%;
  }
}
.trouble {
  background-color: #EFEFEF;
  padding-bottom: 0;
}
.trouble__list {
  margin-right: 100px;
  margin-top: 40px;
  margin-left: 100px;
  margin-bottom: 30px;
}
.trouble__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25em;
  font-weight: bold;
  border-radius: 5px;
}
.trouble__item--icon {
  margin-right: 10px;
}
.trouble__body {
  background-color: #1B5A88;
  color: #fff;
  padding-top: 135px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.trouble__body:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 90px solid #EFEFEF;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
}
.trouble__ttl {
  font-size: 2.1875em;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.trouble__txt {
  margin-top: 50px;
  font-size: 1.25em;
  line-height: 2;
}
.trouble__card {
  margin-right: 100px;
  margin-top: 2rem;
  margin-left: 100px;
}

@media screen and (max-width: 1079px) {
  .trouble__list {
    margin-right: unset;
    margin-left: unset;
  }
  .trouble__item {
    font-size: 3vw;
  }
  .trouble__body {
    font-size: 3vw;
  }
  .trouble__ttl {
    font-size: 1.7em;
  }
  .trouble__txt {
    font-size: 1em;
  }
  .trouble__card {
    margin-right: unset;
    margin-left: unset;
  }
}
@media screen and (max-width: 767px) {
  .trouble__body {
    padding-top: 15vw;
    padding-bottom: 5vw;
  }
  .trouble__body:before {
    border-top: 10vw solid #EFEFEF;
  }
  .trouble__item {
    font-size: 14px;
    position: relative;
    padding-left: 42px;
  }
  .trouble__item--icon {
    width: 22px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  .trouble__ttl {
    font-size: 24px;
  }
  .trouble__txt {
    margin-top: 5vw;
    font-size: 14px;
  }
}
.merit__media {
  padding: 50px 0;
}
.merit__wrap {
  padding-top: 100px;
  margin-right: 100px;
  margin-left: 100px;
}
.merit__wrap .media__img {
  width: auto;
}
.merit__wrap .media__img img {
  -o-object-fit: none;
     object-fit: none;
}
.merit__list {
  margin-top: 20px;
}
.merit__item {
  line-height: 1.75;
  margin-bottom: 0.3em;
  padding-left: 2em;
  position: relative;
  font-weight: bold;
}
.merit__item:before {
  background-color: #FFB34B;
  border-radius: 5px;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: calc((1.75em - 20px) / 2);
  left: 0.2em;
}
.merit__ttl {
  margin-top: 7.5rem;
  color: #1B5A88;
  font-size: 2.1875em;
  text-align: center;
  font-weight: bold;
}
.merit__table {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1079px) {
  .merit {
    padding: 40px 0;
  }
  .merit__wrap {
    margin-right: unset;
    margin-left: unset;
  }
}
@media screen and (max-width: 767px) {
  .merit__wrap {
    padding-top: 8.4vw;
  }
  .merit__item {
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .merit__ttl {
    margin-top: 40px;
    font-size: 24px;
  }
}
.flow {
  background-color: #EFEFEF;
}
.flow__list {
  margin-top: 50px;
  margin-left: 48px;
}
.flow__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 3em 2.5em 3em 73px;
  border-radius: 10px;
}
.flow__item:not(:last-child) {
  margin-bottom: 30px;
}
.flow__num {
  background-color: #1B5A88;
  color: #fff;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.flow__num--small {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.375em;
}
.flow__num--large {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 2em;
  display: block;
}
.flow__ttl {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
}
.flow__txt {
  width: 60%;
}

@media screen and (max-width: 1079px) {
  .flow__list {
    margin-left: 33px;
  }
  .flow__item {
    padding: 3em 15px 3em 48px;
  }
  .flow__num {
    width: 66px;
    height: 66px;
    left: -33px;
  }
  .flow__num--small {
    font-size: 15px;
  }
  .flow__num--large {
    font-size: 1.75em;
  }
  .flow__ttl {
    font-size: 1.375em;
  }
  .flow__txt {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .flow {
    font-size: 3vw;
    padding: 40px 0;
  }
  .flow__list {
    margin-left: unset;
  }
  .flow__item {
    flex-direction: column;
    margin-top: 33px;
    padding: 48px 2em 2em;
  }
  .flow__item:not(:last-child) {
    margin-bottom: 63px;
  }
  .flow__num {
    width: 66px;
    height: 66px;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
  }
  .flow__num--large {
    font-size: 28px;
  }
  .flow__ttl {
    font-size: 22px;
    line-height: 1.45;
    text-align: center;
  }
  .flow__txt {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }
}
.review__inner {
  margin-top: 50px;
}
.review__media {
  font-size: 18px;
}
.review__media:not(:last-child) {
  margin-bottom: 70px;
}
.review__img {
  border-radius: 15px;
  overflow: hidden;
}
.review__info {
  margin-bottom: 30px;
}
.review__row {
  display: flex;
  align-items: center;
}
.review__row:not(:last-child) {
  margin-bottom: 15px;
}
.review__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  width: 20%;
}
.review__cont {
  font-size: 18px;
}

@media screen and (max-width: 1079px) {
  .review__ttl {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .review__inner {
    margin-top: 40px;
  }
  .review__media {
    font-size: 3vw;
  }
  .review__media:not(:last-child) {
    margin-bottom: 40px;
  }
  .review__ttl {
    font-size: 20px;
  }
  .review__txt {
    font-size: 16px;
  }
  .review__cont {
    font-size: 14px;
  }
}
.about__inner {
  margin-top: 100px;
}
.about__media {
  font-size: 18px;
  line-height: 28px;
}
.about__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 0;
    font-size: 3vw;
  }
  .about__inner {
    margin-top: 7.2vw;
  }
  .about__ttl {
    font-size: 20px;
  }
}
.promise {
  background-color: #1B5A88;
  color: #fff;
}
.promise__head {
  text-align: center;
  font-weight: bold;
}
.promise__icon {
  display: inline-block;
}
.promise__ttl {
  font-size: 2.1875em;
}
.promise__list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.promise__item {
  width: calc((100% - 90px) / 3);
  padding: 1em;
  border: 2px solid currentColor;
  border-radius: 10px;
}
.promise__num {
  font-size: 1.875em;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.promise__heading {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  line-height: 1.333;
  margin-bottom: 20px;
}
.promise__txt {
  line-height: 1.75;
}

@media screen and (max-width: 1079px) {
  .promise {
    font-size: 3vw;
  }
  .promise__list {
    flex-direction: column;
  }
  .promise__item {
    width: 100%;
    padding: 6vw;
  }
  .promise__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .promise {
    padding-top: 20px;
  }
  .promise__icon {
    width: 55px;
  }
  .promise__ttl {
    margin-top: 27px;
    font-size: 24px;
  }
  .promise__list {
    margin-top: 30px;
  }
  .promise__num {
    font-size: 26px;
  }
  .promise__heading {
    font-size: 20px;
    line-height: 32px;
  }
  .promise__txt {
    font-size: 14px;
  }
}
.contact__inner {
  margin-top: 50px;
  margin-right: 100px;
  margin-left: 100px;
}
.contact__inner input, .contact__inner textarea {
  display: block;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 5px;
  margin-top: 10px;
  padding: 1em;
}
.contact__inner input {
  height: 62px;
}
.contact__inner textarea {
  height: 216px;
}
.contact__ttl {
  font-weight: bold;
}
.contact__row {
  font-size: 1.25em;
}
.contact__row:not(:last-child) {
  margin-bottom: 30px;
}
.contact__privacy {
  margin-top: 80px;
}
.contact__submit {
  text-align: center;
  margin-top: 30px;
}
.contact__btn {
  display: inline-block;
  background: #FFB34B;
  color: #fff;
  position: relative;
  padding: 1rem 100px;
  font-size: 1.125em;
  font-weight: bold;
  letter-spacing: 1em;
  border-radius: 10px;
  transition: 0.5s;
}
.contact__btn:before {
  content: "";
  background-image: url(../../img/arrow.png);
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
.contact__btn:hover, .contact__btn:focus {
  background-color: #FFBD63;
}
.contact__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1079px) {
  .contact__inner {
    margin-right: unset;
    margin-left: unset;
  }
  .contact__row {
    font-size: 1em;
  }
  .contact__privacy {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    font-size: 14px;
  }
  .contact__ttl {
    font-size: 14px;
  }
  .contact__btn {
    font-size: 18px;
  }
  .contact__inner input {
    height: 40px;
  }
  .contact__inner textarea {
    height: 130px;
  }
}
.required {
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  margin-left: 10px;
  background: #FFB34B;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}
.privacy__ttl {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1rem;
}
.privacy__wrap {
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 1em 2em 1em 1em;
  height: 200px;
  overflow-y: scroll;
}
.privacy__heading {
  color: #1B5A88;
  font-weight: bold;
  font-size: 1.125em;
  margin-bottom: 10px;
}
.privacy__txt {
  line-height: 1.75;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .privacy__ttl {
    font-size: 16px;
  }
  .privacy__heading {
    font-size: 16px;
  }
  .privacy__txt {
    font-size: 14px;
  }
  .privacy__wrap {
    height: 185px;
  }
}
.faq {
  background-color: #EFEFEF;
}
.faq__list {
  margin-top: 30px;
  margin-right: 100px;
  margin-left: 100px;
}
.faq__item {
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.faq__item.js-active .faq__row--q::after {
  transform: translateY(-50%) rotate(0);
  transition: 0.5s;
}
.faq__item:not(:last-child) {
  margin-bottom: 30px;
}
.faq__row {
  display: flex;
}
.faq__row--q {
  font-size: 1.125em;
  position: relative;
  padding: 1em;
}
.faq__row--q:before {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #1B5A88;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.faq__row--q::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #1B5A88;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.faq__row--q .faq__icon {
  color: #1B5A88;
}
.faq__row--q .faq__txt {
  font-weight: bold;
}
.faq__row--a {
  padding-top: 20px;
  line-height: 1.75;
  transition: 0.5s;
  padding: 0 1em 1em;
}
.faq__row--a .faq__icon {
  color: #FFB34B;
  font-size: 1.125em;
}
.faq__icon {
  font-weight: bold;
  margin-right: 10px;
}

.js-answer {
  display: none;
}

@media screen and (max-width: 1079px) {
  .faq__list {
    margin-right: unset;
    margin-left: unset;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    font-size: 3vw;
  }
  .faq__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .faq__row--q {
    font-size: 16px;
  }
  .faq__row--q:before {
    width: 1.14em;
  }
  .faq__row--q::after {
    content: "";
    width: 1.14em;
  }
  .faq__row--q .faq__txt {
    font-size: 16px;
  }
  .faq__row--a {
    padding: 0 16px 16px;
  }
  .faq__row--a .faq__icon {
    font-size: 16px;
  }
  .faq__row--a .faq__txt {
    font-size: 14px;
  }
}
.cv {
  background-image: url(../img/cv-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.cv__ttl {
  font-size: 2.1875em;
  font-weight: bold;
  text-align: center;
}
.cv__inner {
  margin-top: 50px;
  margin-right: 100px;
  margin-left: 100px;
}
.cv__row {
  display: flex;
  justify-content: space-between;
}
.cv__item {
  width: calc((100% - 80px) / 2);
}
.cv__heading {
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 10px;
}
.cv__mail {
  background: #FFB34B;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.5rem;
  border: 2px solid #FFB34B;
  border-radius: 10px;
  height: 70px;
  padding: 20px 0;
  transition: 0.5s;
}
.cv__mail .btn__icon--r {
  line-height: 1;
}
.cv__mail:hover {
  background-color: #FFBD63;
}
.cv__tel {
  background-color: #fff;
  color: #424242;
  font-weight: bold;
  font-size: 1.75em;
  line-height: 1.5rem;
  text-align: center;
  border: 2px solid #FFB34B;
  border-radius: 10px;
  height: 70px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.cv__tel .btn__icon--l {
  position: unset;
  transform: none;
  width: 35px;
  margin-right: 10px;
}
.cv__tel span {
  display: inline;
}
.cv__tel:hover, .cv__tel:focus {
  position: relative;
}
.cv__tel:hover:before, .cv__tel:focus:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
  opacity: 0.1;
}
.cv__line {
  background-color: #fff;
  border: 2px solid #06C755;
  margin-top: 30px;
  color: #424242;
  border-radius: 15px;
  transition: 0.5s;
}
.cv__line .btn__icon--l {
  width: 11%;
  left: 10px;
}
.cv__line .btn__icon--r {
  right: 20px;
}
.cv__line .cv__txt--line {
  display: inline-block;
}
.cv__line:hover, .cv__line:focus {
  position: relative;
}
.cv__line:hover:before, .cv__line:focus:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
  opacity: 0.1;
}
.cv__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.125em;
  font-weight: bold;
}
.cv__txt--line {
  font-size: 1.3em;
  color: #06C755;
}
.cv__img {
  display: inline-block;
  margin-left: 1.5rem;
}
.cv__link {
  display: block;
}

@media screen and (max-width: 1079px) {
  .cv {
    background-image: url(../img/cv-bg-sp.jpg);
    background-position: top center;
  }
  .cv__inner {
    margin-right: unset;
    margin-left: unset;
  }
  .cv__row {
    flex-direction: column;
  }
  .cv__item {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .cv__item:not(:last-child) {
    margin-bottom: 25px;
  }
  .cv__mail {
    padding: 0.5rem 0.6rem;
  }
  .cv__tel {
    padding: 0.5rem 0.6rem;
  }
  .cv__line {
    padding: 1em;
  }
  .cv__img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cv {
    font-size: 3vw;
    padding: 20px 0;
  }
  .cv .btn {
    height: auto;
  }
  .cv__ttl {
    font-size: 24px;
  }
  .cv__inner {
    margin-top: 20px;
  }
  .cv__heading {
    font-size: 18px;
  }
  .cv__mail {
    font-size: 16px;
  }
  .cv__mail .btn__icon--l {
    width: 26px;
    line-height: 1;
  }
  .cv__mail .btn__icon--r {
    width: 17px;
  }
  .cv__tel {
    font-size: 18px;
  }
  .cv__tel .btn__icon--l {
    width: 24px;
  }
  .cv__line {
    padding: 1em 0;
  }
  .cv__line .btn__icon--l {
    width: 64px;
    line-height: 1;
    left: 10px;
  }
  .cv__line .btn__icon--r {
    width: 7%;
    max-width: 49px;
    line-height: 1;
  }
  .cv__line__txt--line {
    font-size: 26px;
  }
  .cv__txt {
    font-size: 20px;
    display: block;
    text-align: center;
    padding-left: 10px;
  }
}
.company__row {
  display: flex;
  justify-content: space-between;
}
.company__txt {
  width: 50%;
  line-height: 1.4;
}
.company__ttl {
  font-size: 2.125em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.company__ttl--sub {
  font-size: 2.75em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
.company__info {
  font-size: 1.25em;
  margin-top: 30px;
}
.company__info--post {
  display: block;
  font-weight: bold;
}
.company__info--address {
  font-weight: bold;
}
.company__tel {
  font-size: 2.125em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
}
.company__tel a {
  display: block;
}
.company__icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}
.company__map {
  width: 45%;
}

@media screen and (max-width: 1079px) {
  .company__row {
    flex-direction: column;
  }
  .company__txt {
    width: 100%;
  }
  .company__map {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 767px) {
  .company {
    font-size: 3vw;
    padding-top: 24px;
  }
  .company__ttl {
    font-size: 20px;
  }
  .company__ttl--sub {
    font-size: 28px;
  }
  .company__tel {
    font-size: 1.7em;
  }
  .company__tel a {
    line-height: 36px;
  }
  .company__icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
}
.footer {
  background-color: #1B5A88;
  color: #fff;
  padding: 50px 0 30px;
}
.footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
  padding: 0 15px;
}
@media screen and (max-width: 1079px) {
  .footer__inner {
    max-width: 100%;
  }
}
.footer__nav ul {
  display: flex;
  justify-content: space-between;
}
.footer__item {
  font-size: 1.25em;
  font-weight: bold;
}
.footer__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.footer__link:hover, .footer__link:focus {
  text-decoration: underline;
}
.footer__copy {
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .footer {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
    margin-bottom: 53px;
  }
  .footer__nav ul {
    flex-direction: column;
  }
  .footer__item {
    font-size: 14px;
  }
  .footer__item:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer__copy {
    font-size: 12px;
  }
}
.foot-fix {
  display: none;
}
.foot-fix__btn {
  position: fixed;
  bottom: 0;
  z-index: 50;
  width: 100%;
  background-color: #fff;
  padding: 10px 15px;
  font-size: 3vw;
  display: none;
}
.foot-fix__top {
  position: fixed;
  right: 50px;
  bottom: 50px;
}

@media screen and (max-width: 1079px) {
  .foot-fix__btn {
    display: block;
  }
  .foot-fix__top {
    right: 10px;
    bottom: 80px;
  }
}
.popup {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.popup__inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.popup__content {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  max-width: 1110px;
  padding: 0 15px;
  width: 100%;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 15px;
  background-color: #fff;
  border-radius: 15px;
  cursor: default;
}
@media screen and (max-width: 1079px) {
  .popup__content {
    max-width: 100%;
  }
}
.popup__wrap {
  position: relative;
  overflow-y: scroll;
  height: 100%;
}
.popup__btn {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.popup__btn .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
}
.popup__btn .icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__btn .icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 1079px) {
  .popup__content {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .popup {
    font-size: 3vw;
  }
}
/*# sourceMappingURL=style.css.map */