@charset "UTF-8";
/*----------- 文字種類 --------------*/
/*----------- 色 --------------*/
/*----------- 余白 --------------*/
/*----------- 幅 --------------*/
/*----------- 文字サイズ(最小〜最大値) --------------*/
html {
  font-size: 100%;
}

body {
  color: #333;
  min-width: 360px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #EAEAEA;
  line-height: normal;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .pc-hide {
    display: block;
  }
}
@media screen and (min-width: 1281px) {
  .pc-hide {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}
@media screen and (min-width: 1281px) {
  .sp-hide {
    display: block;
  }
}

.container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.section {
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 70px;
  }
}

.section__heading {
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -120px;
  width: 100px;
  height: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: -webkit-gradient(linear, left top, right top, from(#227EAE), to(rgba(34, 126, 174, 0)));
  background: linear-gradient(to right, #227EAE 0%, rgba(34, 126, 174, 0) 100%);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .section__heading::before {
    width: 60px;
    height: 12px;
    left: -50px;
  }
}
.section__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 100px;
  height: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: -webkit-gradient(linear, left top, right top, from(#C4C4C4), to(rgba(196, 196, 196, 0)));
  background: linear-gradient(to right, #C4C4C4 0%, rgba(196, 196, 196, 0) 100%);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  opacity: 0;
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
}
@media screen and (max-width: 767px) {
  .section__heading::after {
    width: 60px;
    height: 12px;
    left: -40px;
  }
}
.section__heading.inview {
  opacity: 1;
}
.section__heading.inview::before {
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .section__heading.inview::before {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
}
.section__heading.inview::after {
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .section__heading.inview::after {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
}

.line__btn__container {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .line__btn__container {
    margin-top: 50px;
  }
}

.line__btn {
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  font-family: "Noto Serif JP", serif;
  padding: 25px 30px;
  color: #fff;
  background-color: #227EAE;
  position: relative;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.line__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #227EAE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.line__btn:hover {
  background-color: rgba(34, 126, 174, 0.9);
}
.line__btn:hover::before {
  width: 100%;
  height: 100%;
}

/*---------- keyvisual ----------*/
.keyvisual-section {
  position: relative;
  overflow: hidden;
}
.keyvisual-section::before {
  content: "";
  position: absolute;
  right: -30%;
  width: 90%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(70deg, rgba(34, 126, 174, 0.5) 0%, #227EAE 100%);
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .keyvisual-section::before {
    right: auto;
    bottom: -30%;
    width: 100%;
    -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }
}
.keyvisual-section .line__btn__container {
  margin-top: 50px;
  margin-left: 10px;
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 0.5s 1s;
  transition: all 0.5s 1s;
}
@media screen and (max-width: 767px) {
  .keyvisual-section .line__btn__container {
    margin-left: 0;
    display: block;
  }
}
.keyvisual-section .line__btn__container.inview {
  opacity: 1;
}
.keyvisual-section .line__btn {
  background-color: #fff;
  color: #227EAE;
}
.keyvisual-section .line__btn::before {
  border-color: #fff;
}
.keyvisual-section .line__btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.keyvisual-section.inview::before {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .keyvisual-section.inview::before {
    bottom: 0;
  }
}

.keyvisual__container {
  padding: 70px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .keyvisual__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0 70px;
  }
}

.keyvisual__img__container {
  padding-right: 100px;
  text-align: right;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .keyvisual__img__container {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

.keyvisual__content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .keyvisual__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
  }
}

.keyvisual__img {
  max-width: 650px;
  max-height: 650px;
  border: 15px solid #EAEAEA;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .keyvisual__img {
    max-width: 500px;
    max-height: 500px;
  }
}
.keyvisual__img.inview {
  opacity: 1;
}

.keyvisual__main-copy {
  font-size: clamp(1.563rem, 1.138rem + 1.89vw, 3.438rem);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.3;
  color: #227EAE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.5s 0.5s;
  transition: all 0.5s 0.5s;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.keyvisual__main-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.keyvisual__main-copy span {
  background-color: #fff;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .keyvisual__main-copy span {
    padding: 5px;
  }
}
.keyvisual__main-copy span:last-child {
  margin-bottom: 0;
}

.keyvisual__body-copy {
  color: #fff;
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 35px;
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s 0.6s;
  transition: all 0.5s 0.6s;
}
@media screen and (max-width: 767px) {
  .keyvisual__body-copy {
    width: 100%;
    margin-top: 30px;
  }
}
.keyvisual__body-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.keyvisual__lead-copy {
  color: #fff;
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  margin-top: 35px;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s 0.7s;
  transition: all 0.5s 0.7s;
}
@media screen and (max-width: 767px) {
  .keyvisual__lead-copy {
    margin-top: 30px;
  }
}
.keyvisual__lead-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*---------- needs ----------*/
.needs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .needs__list {
    margin-top: 50px;
    gap: 30px;
  }
}

.needs__list__item {
  width: calc(50% - 70px);
  padding: 30px 30px;
  background-color: #fff;
  border: 1px solid #227EAE;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .needs__list__item {
    width: 100%;
    padding: 25px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.needs__list__item.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.needs__list__check {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #227EAE;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .needs__list__check {
    width: 35px;
    height: 35px;
    position: absolute;
    top: -15px;
    left: -10px;
  }
}
.needs__list__check::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 18px;
  height: 12px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.needs__list__text {
  display: block;
  width: calc(100% - 50px);
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .needs__list__text {
    padding-left: 0;
    width: 100%;
  }
}

/*---------- trouble ----------*/
.trouble__container {
  background: linear-gradient(100deg, #227eae 0.6%, rgba(34, 126, 174, 0.3) 100%);
  padding: 100px 0;
}

.trouble__heading {
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.trouble__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .trouble__heading::before {
    top: -55px;
    left: 45%;
    width: 35px;
    height: 35px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.trouble__heading::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -40px;
  width: 35px;
  height: 35px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .trouble__heading::after {
    top: -30px;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.trouble__list {
  max-width: 1200px;
  margin: 80px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .trouble__list {
    margin-top: 50px;
  }
}

.trouble__list__item {
  color: #fff;
  font-size: clamp(1rem, 0.915rem + 0.38vw, 1.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 60%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 70px;
  border-bottom: 1px solid #fff;
  padding-right: 70px;
  padding-bottom: 10px;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .trouble__list__item {
    max-width: 95%;
    padding-right: 30px;
    margin-top: 40px;
  }
}
.trouble__list__item:first-child {
  margin-top: 0;
}
.trouble__list__item::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 20px;
  background-image: url(../img/trouble-litem-pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .trouble__list__item::before {
    background-image: url(../img/trouble-litem-sp.svg);
    bottom: -6px;
    right: -5px;
  }
}
.trouble__list__item:nth-child(odd) {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.trouble__list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
  padding-right: 0;
  padding-left: 70px;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
@media screen and (max-width: 767px) {
  .trouble__list__item:nth-child(even) {
    padding-left: 30px;
  }
}
.trouble__list__item:nth-child(even)::before {
  right: auto;
  left: 0;
  background-position: left;
}
@media screen and (max-width: 767px) {
  .trouble__list__item:nth-child(even)::before {
    left: -5px;
  }
}
.trouble__list__item.inview {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.trouble__summary {
  background-color: #fff;
  padding: 50px;
  color: #227EAE;
  font-size: clamp(1.125rem, 0.884rem + 1.07vw, 2.188rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .trouble__summary {
    padding: 40px 20px;
    margin-top: 80px;
  }
}
.trouble__summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid #227EAE;
  -webkit-transition: all 0.5s 1s;
  transition: all 0.5s 1s;
}
.trouble__summary.inview {
  opacity: 1;
}
.trouble__summary.inview::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
@media screen and (max-width: 767px) {
  .trouble__summary.inview::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
  }
}

/*---------- solution ----------*/
.solution__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 130px 50px;
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .solution__list {
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 90px;
  }
}

.solution__list__item {
  background-color: #fff;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media screen and (max-width: 767px) {
  .solution__list__item {
    padding: 0 30px;
  }
}
.solution__list__item.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.solution__list__item::before, .solution__list__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .solution__list__item::before, .solution__list__item::after {
    height: 30px;
  }
}
.solution__list__item::before {
  top: -39px;
  -webkit-clip-path: polygon(5% 0, 95% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(5% 0, 95% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
}
@media screen and (max-width: 767px) {
  .solution__list__item::before {
    top: -29px;
  }
}
.solution__list__item::after {
  bottom: -39px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}
@media screen and (max-width: 767px) {
  .solution__list__item::after {
    bottom: -29px;
  }
}

.solution__list__heading {
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  font-weight: bold;
  color: #227EAE;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 15px;
  text-align: center;
  background-image: linear-gradient(to right, #227EAE 3px, transparent 3px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
}

.solution__list__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .solution__list__text {
    margin-top: 15px;
  }
}

/*---------- profile ----------*/
.profile__heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  color: #fff;
  padding: 35px 90px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .profile__heading {
    padding: 20px 0;
    width: auto;
  }
}
.profile__heading::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  background: -webkit-gradient(linear, left top, right top, from(#227EAE), to(rgba(34, 126, 174, 0.5)));
  background: linear-gradient(to right, #227EAE 0%, rgba(34, 126, 174, 0.5) 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.profile__heading.inview {
  opacity: 1;
}
.profile__heading.inview::before {
  left: 0;
}

@media screen and (max-width: 767px) {
  .profile__content__career {
    max-width: 500px;
    margin: 90px auto 0;
  }
}

dl.profile__content__career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

dl.profile__content__career dt {
  font-weight: normal;
  width: 120px;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  dl.profile__content__career dt {
    width: 90px;
  }
}

dl.profile__content__career dd {
  font-weight: normal;
  width: calc(100% - 120px);
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  dl.profile__content__career dd {
    width: calc(100% - 90px);
  }
}

p.profile__content__career {
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  line-height: 2.8;
  margin-top: 50px;
}

.profile__wrap {
  margin: 95px 150px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .profile__wrap {
    margin: 70px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.profile__img__container {
  width: 50%;
  padding-right: 130px;
}
@media screen and (max-width: 767px) {
  .profile__img__container {
    width: calc(100% - 60px);
    padding-right: 0;
  }
}

.profile__img__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .profile__img__inner {
    margin: 0 auto;
  }
}
.profile__img__inner::before, .profile__img__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.profile__img__inner::before {
  top: 0;
  left: 0;
  border: 2px solid #227EAE;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.profile__img__inner::after {
  bottom: 0;
  right: 0;
  background-color: #227EAE;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.profile__img__inner.inview::before {
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  .profile__img__inner.inview::before {
    top: -10px;
    left: -10px;
  }
}
.profile__img__inner.inview::after {
  bottom: -20px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .profile__img__inner.inview::after {
    bottom: -10px;
    right: -10px;
  }
}

.profile__img {
  max-width: 400px;
  max-height: 400px;
}

.profile__content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .profile__content {
    width: 100%;
    margin-top: 70px;
  }
}

.profile__content__name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  color: #227EAE;
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile__content__name {
    margin: 0 auto;
  }
}
.profile__content__name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -30px;
  width: 100%;
  height: 4px;
  background-color: #227EAE;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.profile__content__name::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 100%;
  height: 2px;
  background-color: #227EAE;
  opacity: 0;
  -webkit-transition: all 0.5s 0.3s;
  transition: all 0.5s 0.3s;
}
.profile__content__name.inview::before {
  opacity: 1;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .profile__content__name.inview::before {
    left: 10px;
  }
}
.profile__content__name.inview::after {
  opacity: 1;
  left: 0;
}

.story__container {
  padding: 150px 100px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 110px auto 0;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .story__container {
    margin-top: 50px;
    padding: 60px 30px;
  }
}
.story__container::before, .story__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s 0.5s;
  transition: all 0.5s 0.5s;
  z-index: -1;
}
.story__container::before {
  border: 4px solid #227EAE;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .story__container::before {
    border-width: 2px;
  }
}
.story__container::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 126, 174, 0.8)), to(rgba(34, 126, 174, 0.4)));
  background: linear-gradient(to right, rgba(34, 126, 174, 0.8) 0%, rgba(34, 126, 174, 0.4) 100%);
  bottom: 0;
  right: 0;
  z-index: -1;
}
.story__container.inview::before {
  top: -10px;
  left: -10px;
}
@media screen and (max-width: 767px) {
  .story__container.inview::before {
    top: -5px;
    left: -5px;
  }
}
.story__container.inview::after {
  bottom: -10px;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .story__container.inview::after {
    bottom: -5px;
    right: -5px;
  }
}

.story__heading {
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.story__text {
  color: #fff;
  margin-top: 70px;
  line-height: 2;
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
}
@media screen and (max-width: 767px) {
  .story__text {
    margin-top: 40px;
  }
}
.story__text span {
  display: block;
  margin-bottom: 20px;
}

/*---------- works ----------*/
.works-section {
  overflow: hidden;
  padding-bottom: 20px;
}

.works__img__container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 75px auto 0;
}
@media screen and (max-width: 767px) {
  .works__img__container {
    margin-top: 50px;
  }
}

.works__img {
  max-width: 700px;
  max-height: 700px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 767px) {
  .works__img {
    -webkit-box-shadow: 15px 15px 15px #bebebe, -15px -15px 15px #ffffff;
            box-shadow: 15px 15px 15px #bebebe, -15px -15px 15px #ffffff;
    max-height: 500px;
  }
}
.works__img.inview {
  -webkit-box-shadow: 30px 30px 30px #bebebe, -30px -30px 30px #ffffff;
          box-shadow: 30px 30px 30px #bebebe, -30px -30px 30px #ffffff;
}

.works__list {
  max-width: 1000px;
  margin: 130px auto 0;
}
@media screen and (max-width: 767px) {
  .works__list {
    margin: 80px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.works__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .works__list__item {
    margin: 50px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.works__list__item:last-child {
  margin-bottom: 0;
}
.works__list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .works__list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works__list__item:nth-child(even) .works__list__icon-container {
  margin-right: 0;
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .works__list__item:nth-child(even) .works__list__icon-container {
    margin: 0 auto;
  }
}
.works__list__item:nth-child(even) .works__list__content {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.works__list__item:nth-child(even) .works__list__content.inview {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.works__list__icon {
  position: relative;
  width: 120px;
  height: 120px;
  border: 2px solid #227EAE;
  display: block;
}
@media screen and (max-width: 767px) {
  .works__list__icon {
    width: 50px;
    height: 50px;
  }
}
.works__list__icon::before, .works__list__icon::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .works__list__icon::before, .works__list__icon::after {
    width: 20px;
    height: 20px;
  }
}
.works__list__icon::before {
  top: -20px;
  left: calc(100% - 20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #EAEAEA;
  border: 1px solid #227EAE;
}
@media screen and (max-width: 767px) {
  .works__list__icon::before {
    top: -10px;
    left: calc(100% - 10px);
  }
}
.works__list__icon::after {
  bottom: -20px;
  right: calc(100% - 20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #227EAE;
}
@media screen and (max-width: 767px) {
  .works__list__icon::after {
    bottom: -10px;
    right: calc(100% - 10px);
  }
}
.works__list__icon.inview::before {
  left: -20px;
}
@media screen and (max-width: 767px) {
  .works__list__icon.inview::before {
    left: -10px;
  }
}
.works__list__icon.inview::after {
  right: -20px;
}
@media screen and (max-width: 767px) {
  .works__list__icon.inview::after {
    right: -10px;
  }
}

.works__list__icon-container {
  margin-right: 80px;
}
@media screen and (max-width: 767px) {
  .works__list__icon-container {
    margin: 0 auto;
  }
}

.works__list__heading {
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.works__list__heading span {
  color: #227EAE;
}

.works__list__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  line-height: 1.7;
  margin-top: 20px;
}

.works__sub-heading {
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 130px auto 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .works__sub-heading {
    margin-top: 80px;
  }
}
.works__sub-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -105%;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 126, 174, 0)), to(rgba(34, 126, 174, 0.5)));
  background: linear-gradient(to right, rgba(34, 126, 174, 0) 0%, rgba(34, 126, 174, 0.5) 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.works__sub-heading.inview::before {
  left: 0;
}

.works__images__wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .works__images__wrap {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works__images__inner {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .works__images__inner {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
}
.works__images__inner:first-child {
  margin-right: 70px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .works__images__inner:first-child {
    margin-top: 0;
    margin-right: 0;
    text-align: center;
  }
}

.works__images__img {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-height: 700px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .works__images__img {
    max-height: 500px;
  }
}
.works__images__img.inview {
  -webkit-box-shadow: 30px 30px 30px #bebebe, -30px -30px 30px #ffffff;
          box-shadow: 30px 30px 30px #bebebe, -30px -30px 30px #ffffff;
}
@media screen and (max-width: 767px) {
  .works__images__img.inview {
    -webkit-box-shadow: 15px 15px 15px #bebebe, -15px -15px 15px #ffffff;
            box-shadow: 15px 15px 15px #bebebe, -15px -15px 15px #ffffff;
  }
}

.works__list__content {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .works__list__content {
    margin-top: 20px;
  }
}
.works__list__content.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*---------- voice ----------*/
.voice__container {
  padding: 120px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .voice__container {
    padding: 80px 30px;
  }
}

.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.voice__list {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .voice__list {
    margin-top: 50px;
  }
}

.voice__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .voice__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
}
.voice__list__item:first-child {
  margin-top: 0;
}

.voice__img {
  -webkit-clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.voice__img__container {
  position: relative;
  max-width: 300px;
  max-height: 300px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .voice__img__container {
    max-width: 220px;
    max-height: 220px;
  }
}
.voice__img__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 99%;
  height: 99%;
  background-color: #227EAE;
  -webkit-clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.voice__img__container.inview::before {
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
}

.voice__content {
  width: 70%;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .voice__content {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
}

.voice__heading {
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #227EAE;
  padding-bottom: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.voice__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #227EAE;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.voice__heading.inview::before {
  left: 0;
}

.voice__position {
  margin-top: 20px;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
}

.voice__text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  line-height: 2;
}

/*---------- flow ----------*/
.flow__container {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__container {
    padding: 20px 0;
    margin-top: 50px;
  }
}

.flow__arrow {
  width: 100%;
  height: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#227EAE), to(rgba(34, 126, 174, 0.5)));
  background: linear-gradient(to right, #227EAE 0%, rgba(34, 126, 174, 0.5) 100%);
  -webkit-clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
          clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 767px) {
  .flow__arrow {
    width: 80px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    -webkit-clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
            clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -30px 20px 0;
}
@media screen and (max-width: 767px) {
  .flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    margin-left: 50px;
  }
}

.flow__list__item {
  width: calc(33.3333333333% - 30px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .flow__list__item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.flow__list__item::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -35px;
  width: 120px;
  height: 120px;
  border-top: 3px solid #EAEAEA;
  border-right: 3px solid #EAEAEA;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__list__item::before {
    width: 85px;
    height: 85px;
    top: auto;
    right: auto;
    left: -60px;
    bottom: -35px;
    border-top: none;
    border-bottom: 3px solid #EAEAEA;
  }
}
.flow__list__item::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  top: 0px;
  right: 0px;
  background-color: #bebebe;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
}
@media screen and (min-width: 1281px) {
  .flow__list__item:nth-child(2)::after {
    -webkit-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
  }
  .flow__list__item:nth-child(2) .flow__list__step {
    -webkit-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
  }
  .flow__list__item:nth-child(2) .flow__list__content {
    -webkit-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
  }
  .flow__list__item:nth-child(3)::after {
    -webkit-transition: all 0.3s 1s;
    transition: all 0.3s 1s;
  }
  .flow__list__item:nth-child(3) .flow__list__step {
    -webkit-transition: all 0.3s 1s;
    transition: all 0.3s 1s;
  }
  .flow__list__item:nth-child(3) .flow__list__content {
    -webkit-transition: all 0.3s 1s;
    transition: all 0.3s 1s;
  }
}
.flow__list__item.inview::after {
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .flow__list__item:last-child {
    margin-bottom: 0;
  }
}
.flow__list__item:last-child::before {
  display: none;
}

.flow__list__content {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 40px 30px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.flow__list__content.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.flow__list__step {
  color: #fff;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .flow__list__step {
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.flow__list__step.inview {
  opacity: 1;
}
.flow__list__step span {
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .flow__list__step span {
    margin-left: 0;
    margin-top: 10px;
  }
}

.flow__list__heading {
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  font-weight: bold;
  line-height: 1.7;
  color: #227EAE;
  text-align: center;
}

.flow__list__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .flow__list__text {
    margin-top: 20px;
  }
}

/*---------- faq ----------*/
.faq__container {
  max-width: 1200px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .faq__container {
    margin-top: 50px;
  }
}

.faq__question {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 80px 40px 40px;
  position: relative;
  border-bottom: 2px solid #227EAE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__question {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    padding-right: 45px;
  }
}
.faq__question:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__question::before, .faq__question::after {
    width: 25px;
    right: 15px;
  }
}
.faq__question::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq__question.active::before {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.faq__question__icon {
  border-radius: 50%;
  border: 3px solid #227EAE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90px;
  height: 90px;
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #227EAE;
}
@media screen and (max-width: 767px) {
  .faq__question__icon {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }
}

.faq__question__text {
  width: calc(100% - 90px);
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .faq__question__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto 0;
  }
}

.faq__answer {
  display: none;
  border: solid #227EAE;
  border-width: 1px 2px 2px 2px;
  -webkit-box-shadow: inset 10px 10px 20px #c1c1c1, inset -10px -10px 20px #ffffff;
          box-shadow: inset 10px 10px 20px #c1c1c1, inset -10px -10px 20px #ffffff;
}

.faq__answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .faq__answer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}

.faq__answer__icon {
  border-radius: 50%;
  background-color: #227EAE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .faq__answer__icon {
    width: 40px;
    height: 40px;
  }
}

.faq__answer__text {
  width: calc(100% - 90px);
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .faq__answer__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 0;
  }
}

.present__container {
  max-width: 1200px;
  width: 100%;
  margin: 20px auto;
  padding: 80px 60px;
  margin-top: 130px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .present__container {
    width: 100%;
    padding: 40px 20px;
    margin-top: 80px;
  }
}
.present__container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(34, 126, 174, 0.3) 0%, #227EAE 100%);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .present__container::before {
    height: calc(100% + 20px);
    width: calc(100% + 20px);
  }
}
.present__container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .present__container::after {
    height: calc(100% + 20px);
    width: calc(100% + 20px);
  }
}
@media screen and (min-width: 1281px) {
  .present__container.inview::after {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .present__container.inview::after {
    width: 100%;
    height: 100%;
  }
}

.present__heading {
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  padding: 0 30px 25px 30px;
  border-bottom: 2px solid #227EAE;
  position: relative;
  color: #227EAE;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .present__heading {
    padding: 0 0 20px 0;
  }
}
.present__heading::before, .present__heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background-color: #227EAE;
}
@media screen and (max-width: 767px) {
  .present__heading::before, .present__heading::after {
    width: 15px;
    height: 15px;
  }
}
.present__heading::before {
  left: -10px;
}
.present__heading::after {
  right: -10px;
}

.present__text {
  margin-top: 80px;
  font-size: clamp(1rem, 0.873rem + 0.57vw, 1.563rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .present__text {
    margin-top: 40px;
    text-align: left;
  }
}

/*---------- message ----------*/
.message__container {
  background-color: #fff;
  padding: 160px 0 300px;
}
@media screen and (max-width: 767px) {
  .message__container {
    padding: 100px 0 200px;
  }
}

.message__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.message__heading::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -70px;
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#227EAE), to(rgba(34, 126, 174, 0)));
  background: linear-gradient(to right, #227EAE 0%, rgba(34, 126, 174, 0) 100%);
}
@media screen and (max-width: 767px) {
  .message__heading::before {
    top: -55px;
    left: 45%;
    width: 35px;
    height: 35px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.message__heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -40px;
  width: 35px;
  height: 35px;
  background: -webkit-gradient(linear, left top, right top, from(#227EAE), to(rgba(34, 126, 174, 0)));
  background: linear-gradient(to right, #227EAE 0%, rgba(34, 126, 174, 0) 100%);
}
@media screen and (max-width: 767px) {
  .message__heading::after {
    top: -35px;
    left: 52%;
    width: 25px;
    height: 25px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.message__img__container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .message__img__container {
    margin-top: 80px;
  }
}

.message__img__inner {
  position: relative;
  z-index: 0;
}
.message__img__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #227EAE;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.message__img__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #227EAE;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .message__img__inner::after {
    width: 90%;
  }
}
.message__img__inner.inview::before {
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  .message__img__inner.inview::before {
    left: -10px;
  }
}
.message__img__inner.inview::after {
  bottom: -60px;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .message__img__inner.inview::after {
    bottom: -40px;
    right: -10px;
  }
}

.message__img {
  max-width: 600px;
  max-height: 700px;
}
@media screen and (max-width: 767px) {
  .message__img {
    max-height: 500px;
  }
}

.message__sub-heading__bg {
  position: relative;
  right: -45px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .message__sub-heading__bg {
    right: -5px;
  }
}

.message__sub-heading {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .message__sub-heading {
    font-size: 25px;
  }
}

.message__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  line-height: 2;
  max-width: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
}

.message__text span {
  display: block;
  margin-bottom: 20px;
}