@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
  height: 100%;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

img {
  display: block;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

/* ----- アニメーション ----- */
.fade-up {
  opacity: 0;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
  animation: fade-up 1s ease-out forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
}

.fade-in.is-active {
  opacity: 1;
  animation: fade-in 1s ease-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.visible-lr {
  position: relative;
  overflow: hidden;
}

.visible-lr img {
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease-out;
}

.visible-lr.visible img {
  clip-path: inset(0 0 0 0);
}

.visible-rl {
  position: relative;
  overflow: hidden;
}

.visible-rl img {
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.5s ease-out;
}

.visible-rl.visible img {
  clip-path: inset(0 0 0 0);
}

/* ----- header ----- */
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 3rem 5rem;
  }
}
.l-header__logo a {
  transition: 0.3s;
}
.l-header__logo a img {
  width: 16rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo a img {
    width: 32rem;
  }
  .l-header__logo a img:hover {
    opacity: 0.5;
  }
}
.l-header__icons {
  display: flex;
  gap: 1rem;
}
.l-header__icons-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 4.25rem;
  height: 4.25rem;
  background-color: #ff1d25;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__icons-mail {
    width: 8.5rem;
    height: 8.5rem;
  }
}
.l-header__icons-mail img {
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header__icons-mail img {
    width: 4rem;
  }
  .l-header__icons-mail img:hover {
    opacity: 0.5;
  }
}
.l-header__btn {
  width: 4.25rem;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header__btn {
    width: 8.5rem;
    height: 8.5rem;
  }
}
.l-header__btn--hum {
  transition: 0.3s;
  z-index: 100;
}
.l-header__btn--hum:hover {
  cursor: pointer;
}
.l-header__btn--hum-line, .l-header__btn--hum-line::before, .l-header__btn--hum-line::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  margin: 0 auto;
  background: #231815;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__btn--hum-line, .l-header__btn--hum-line::before, .l-header__btn--hum-line::after {
    width: 4rem;
    height: 0.4rem;
  }
}
.l-header__btn--hum-line {
  position: relative;
}
.l-header__btn--hum-line::before {
  position: absolute;
  top: -0.6rem;
}
@media screen and (min-width: 768px) {
  .l-header__btn--hum-line::before {
    top: -1.2rem;
  }
}
.l-header__btn--hum-line::after {
  position: absolute;
  top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .l-header__btn--hum-line::after {
    top: 1.2rem;
  }
}
.l-header__menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__menu-wrap {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-header__menu-wrap {
    max-width: 120rem;
    display: flex;
    align-items: start;
    gap: 19rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__menu-logo {
    width: 50%;
  }
}
.l-header__menu-logo img {
  width: 12rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-header__menu-logo img {
    width: 24rem;
  }
}
.l-header__menu-list {
  width: fit-content;
  border-top: 0.1rem solid #fff;
  margin: 8rem auto;
}
@media screen and (min-width: 768px) {
  .l-header__menu-list {
    width: 50%;
    margin: 0;
  }
}
.l-header__menu-list-item {
  display: block;
  font-size: 1.5rem;
  line-height: 4.5rem;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 0.1rem solid #fff;
  padding-right: 8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__menu-list-item {
    padding-right: 0;
    line-height: 9rem;
  }
}
.l-header__menu-list-item::after {
  content: url(../img/icon-arrow-right-white.svg);
  display: block;
  width: 2rem;
  height: auto;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-header__menu-list-item::after {
    width: 4rem;
    right: 1.5rem;
  }
}

.l-header__menu.js-active {
  visibility: visible;
  opacity: 1;
}

.l-header__btn--hum.js-active .l-header__btn--hum-line {
  position: relative;
  width: 0;
  height: 0;
}
.l-header__btn--hum.js-active .l-header__btn--hum-line::before,
.l-header__btn--hum.js-active .l-header__btn--hum-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-header__btn--hum.js-active .l-header__btn--hum-line::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__btn--hum.js-active .l-header__btn--hum-line::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ----- main ----- */
/* ----- footer ----- */
.l-footer {
  background-color: #dee5f4;
  text-align: center;
  padding: 4rem 2rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 8.5rem 0 2rem;
  }
}
.l-footer__logo {
  width: 18rem;
  margin: 0 auto 2.4rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin: 0 auto 4.8rem;
  }
}
.l-footer address {
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.1rem solid #000;
}
.l-footer address p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .l-footer address {
    margin-bottom: 5.5rem;
  }
}
.l-footer__menu {
  width: fit-content;
  margin: 0 auto 4.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__menu {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }
}
.l-footer__menu-list {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-list {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menu-list {
    align-items: center;
  }
}
.l-footer__menu-list-item {
  line-height: 3rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-list-item {
    border-bottom: 0.05rem solid #000;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menu-list-item {
    border-left: 0.05rem solid #000;
    padding-left: 1.5rem;
  }
  .l-footer__menu-list-item:hover {
    opacity: 0.5;
  }
}
.l-footer__menu-list-item:first-of-type {
  border-left: 0;
}
.l-footer__menu-list-item:last-of-type {
  border-bottom: 0;
}
.l-footer__home {
  width: 2rem;
  height: auto;
  margin: auto;
}
.l-footer__mail {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.2rem 2rem;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #fff;
  background-color: #ff1d25;
  border-radius: 1rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer__mail {
    justify-content: space-between;
    width: 17rem;
  }
  .l-footer__mail:hover {
    opacity: 0.5;
  }
}
.l-footer__mail::after {
  content: url(../img/icon-mail.svg);
  display: inline-block;
  width: 3rem;
  height: auto;
}

.c-btn {
  display: block;
  color: #fff;
  text-align: center;
  background-color: #2375b1;
  width: 21rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2rem 0;
  border-radius: 1rem;
  margin: 3rem auto;
  position: relative;
}
.c-btn::after {
  content: url(../img/icon-arrow-right-white.svg);
  display: inline-block;
  width: 2.7rem;
  height: auto;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.c-btn--green {
  background-color: #39b54a;
}
.c-btn--gray {
  background-color: #808080;
}

.c-section {
  max-width: 120rem;
  margin: 5rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section {
    margin: 10rem auto;
  }
}
.c-section__wrap {
  max-width: 80rem;
  margin: 0 auto;
}
.c-section__lead {
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: left;
  margin: 3rem auto;
}
.c-section__content {
  text-align: left;
}
.c-section__content-heading1 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .c-section__content-heading1 {
    font-size: 2.4rem;
  }
	.c-section__lead {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: left;
  margin: 3rem auto;
}
}
.c-section__content p {
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 4.8rem;
  }
}

.c-title1 {
  text-align: center;
  display: block;
  margin: 3rem auto;
}
.c-title1-catch {
  color: #2375b1;
  display: block;
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  margin: 0 0 0.5rem;
}
.c-title1-title {
  color: #2375b1;
  display: block;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-title1-title {
    font-size: 8rem;
  }
}
.c-title1-sub {
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.4em;
}

.c-title2 {
  font-size: 3rem;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .c-title2 {
    font-size: 6rem;
  }
}

.c-title3 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .c-title3 {
    font-size: 4.8rem;
  }
}
.c-title3 img {
  display: block;
  width: auto;
  height: 8.8rem;
  margin: 0 auto 1.6rem;
}
.c-title3 .cls-1,
.c-title3 .cls-2 {
  stroke: #000;
}

.u-deco-text {
  height: 7.5rem;
  margin: 3rem auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .u-deco-text {
    height: 20rem;
  }
}
.u-deco-text span {
  display: block;
  text-align: center;
  color: #f2f2f2;
  font-size: 7.5rem;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .u-deco-text span {
    font-size: 20rem;
  }
}

.c-member {
  text-align: left;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .c-member {
    max-width: 96rem;
    display: flex;
    align-items: start;
    gap: 5rem;
  }
}
.c-member__img {
  margin: 0 auto;
  width: 50%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-member__img {
    width: 30%;
    margin-bottom: 0;
  }
}
.c-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-member__content {
  color: #505050;
}
@media screen and (min-width: 768px) {
  .c-member__content {
    width: 100%;
  }
}
.c-member__content-name {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-member__content-name {
    margin-bottom: 3.2rem;
  }
}
.c-member__content-name span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-member__content-name span {
    margin-bottom: 2rem;
  }
}
.c-member__content-title {
  color: #4d4d4d;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 0 0 0.6rem;
  border-bottom: 0.1rem solid #505050;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .c-member__content-title {
    padding: 0 0 1.2rem;
    margin: 0 0 2rem;
  }
}
.c-member__content-text {
  line-height: 2;
  letter-spacing: 0.05em;
}
.c-member__content-text p {
  margin-bottom: 1em;
}
.c-member__content-text p:last-of-type {
  margin-bottom: 0;
}

.c-img-box {
  text-align: left;
  margin: 3rem 0;
}
@media screen and (min-width: 768px) {
  .c-img-box {
    display: grid;
    grid-template-columns: 52% 48%;
    grid-template-rows: auto auto;
    gap: 0.5rem 5rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-img-box--reverse {
    grid-template-columns: 48% 52%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 768px) {
  .c-img-box--reverse .c-img-box__img {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-img-box--reverse .c-img-box__title {
    grid-column: 1;
    grid-row: 1;
  }
  .c-img-box--reverse .c-img-box__text {
    grid-column: 1;
    grid-row: 2;
  }
}
.c-img-box__img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-img-box__img {
    grid-column: 1;
    grid-row: 1/span 2;
    margin-bottom: 0;
  }
}
.c-img-box__img img {
  width: 100%;
}
.c-img-box__title {
  color: #2375b1;
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  grid-column: 2;
  grid-row: 1;
}
@media screen and (min-width: 768px) {
  .c-img-box__title {
    align-self: end;
    margin-bottom: 0;
  }
}
.c-img-box__text {
  align-self: start;
  line-height: 1.75;
  letter-spacing: 0.025em;
  margin: 0 0 2rem;
  grid-column: 2;
  grid-row: 2;
}

.c-card-list {
  width: 100%;
  display: grid;
  margin: 3rem 0;
}
.c-card-list__item {
  text-align: left;
}
.c-card-list__img img {
  width: 100%;
}
.c-card-list__content {
  margin: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-card-list__content {
    margin: 2.5rem 0 0;
  }
}
.c-card-list__content-title {
  color: #2375b1;
  line-height: 1.6;
  padding-bottom: 0.8rem;
  border-bottom: 0.05rem solid #2375b1;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .c-card-list__content-title {
    padding-bottom: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.c-card-list__content-text {
  line-height: 1.75;
  letter-spacing: 0.025em;
}
.c-card-list--row2 {
  grid-template-columns: repeat(1, 1fr);
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .c-card-list--row2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-card-list--row2 .c-card-list__content-title {
  font-size: 2.4rem;
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-card-list--row2 .c-card-list__content-title {
    font-size: 2.8rem;
  }
}
.c-card-list--row3 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-card-list--row3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
  }
}
.c-card-list--row3 .c-card-list__content-title {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .c-card-list--row3 .c-card-list__content-title {
    font-size: 2.4rem;
  }
}
.c-card-list--row4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-card-list--row4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
}
.c-card-list--row4 .c-card-list__content-title {
  font-size: 2rem;
}

.c-table {
  width: 100%;
  line-height: 1.8;
  margin: 3rem auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-table__wrap {
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0.8rem;
}
.c-table__heading-row, .c-table__heading-col, .c-table__content {
  text-align: left;
  padding: 1rem;
	font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-table__heading-row, .c-table__heading-col, .c-table__content {
    padding: 2rem;
    white-space: wrap;
	  vertical-align: middle;
	  font-size: 1.8rem;
  }
}
.c-table__heading-row {
  width: 24rem;
  color: #fff;
  background-color: #55a0ce;
}
.c-table__heading-col {
  background-color: #dce8ff;
	    
}
.c-table__content {
  background-color: #f4f4f4;
	padding: 1rem;
}

.c-list {
  margin-bottom: 0.8rem;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .c-list {
    display: flex;
  }
}
.c-list__title, .c-list__content {
  text-align: left;
  line-height: 1.4;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .c-list__title, .c-list__content {
    line-height: 1;
    padding: 4rem;
  }
}
.c-list__title {
  color: #fff;
  background-color: #55a0ce;
}
@media screen and (min-width: 768px) {
  .c-list__title {
    width: 24rem;
  }
}
.c-list__content {
  flex-grow: 1;
  background-color: #f4f4f4;
}

.c-faq {
  margin: 3rem auto;
}
.c-faq__que, .c-faq__answer {
  position: relative;
}
.c-faq__que {
  background-color: #f4f4f4;
}
.c-faq__que::before {
  content: "Q";
  width: 4rem;
  height: 100%;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #ff1d25;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .c-faq__que::before {
    width: 12rem;
    height: 12rem;
    line-height: 12rem;
    font-size: 6rem;
  }
}
.c-faq__answer {
  margin-left: 4rem;
  background-color: #c9d1e4;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-faq__answer {
    margin-left: 12rem;
  }
}
.c-faq__answer::before {
  content: "A";
  width: 4rem;
  height: 100%;
  line-height: 6rem;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #55a0ce;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .c-faq__answer::before {
    width: 12rem;
    height: 12rem;
    line-height: 12rem;
    font-size: 6rem;
  }
}
.c-faq__switch {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #b3b3b3;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-faq__switch {
    width: 5.5rem;
    height: 5.5rem;
    right: 3rem;
    top: 3rem;
    transform: translateY(0);
  }
}
.c-faq__switch::before, .c-faq__switch::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c-faq__switch::before, .c-faq__switch::after {
    width: 2rem;
    height: 0.4rem;
  }
}
.c-faq__switch::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-faq__switch.js-open::before {
  transform: translate(-50%, -50%) rotate(0);
}
.c-faq__content {
  min-height: 12rem;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.4;
  padding: 2rem;
  margin: 0 2.5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .c-faq__content {
    padding: 0 4rem;
    line-height: 1;
    margin: 0 0 0 12rem;
  }
}