@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .is-tab {
    display: none;
  }
}

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

body {
  font-size: 1rem;
  color: #333;
  font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','klee','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', sans-serif;
  line-height: 1.5;
}

img {
  width: 100%;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media screen and (min-width: 1025px) {
  .header.change-color {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header.change-color ul li a {
    color: #333;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 170px;
  }
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .header__nav-item {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav-item {
    display: none;
  }
}

.header__nav-item + .header__nav-item {
  margin-left: 46px;
}

.header__nav-link {
  font-size: 1rem;
  display: block;
  color: #ffffff;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1025px) {
  .header__nav-link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .header__nav-link:hover {
    color: #189750;
  }
}

.header__btn {
  margin-left: 2em;
}

.header__link {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #189750;
  display: inline-block;
  padding: 14px 56px;
  margin-top: 0.5em;
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 1em;
}

@media screen and (max-width: 767px) {
  .header__link::after {
    margin-left: 0.5em;
  }
}

@media screen and (min-width: 1025px) {
  .header__link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header__link:hover {
    background: #71afed;
  }
}

@media screen and (max-width: 767px) {
  .header__link {
    padding: 12px 34px;
  }
}

.util__title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .util__title {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .util__title {
    font-size: 1.625rem;
  }
}

.util__link {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #189750;
  display: inline-block;
  padding: 1em 4em;
  -webkit-animation: ani 2s infinite;
          animation: ani 2s infinite;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .util__link {
    padding: 1em 3em;
  }
}

.util__link::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 120%;
  height: 100%;
  background: #71afed;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: skewX(-30deg) scale(0, 1);
          transform: skewX(-30deg) scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.util__link:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: skewX(-30deg) scale(1, 1);
          transform: skewX(-30deg) scale(1, 1);
}

.util__link::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-top: 0.5em;
  margin-left: 0.8em;
}

@media screen and (max-width: 767px) {
  .util__link::after {
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}

@media screen and (max-width: 767px) {
  .util__link {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .util__link {
    font-size: 1.25rem;
  }
}

@-webkit-keyframes ani {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes ani {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

.floating {
  position: fixed;
  right: 15px;
  bottom: 60px;
  display: none;
}

@media screen and (max-width: 767px) {
  .floating {
    right: 5px;
    bottom: 20px;
    opacity: 0.7;
  }
}

.floating a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #189750;
  line-height: 50px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.floating a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}

.floating a:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  cursor: pointer;
}

.top {
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__bg {
    padding-top: 120%;
    background: url(../img/top-bg.jpg) center center/cover;
  }
}

@media screen and (min-width: 1025px) {
  .top__bg {
    padding-top: 55%;
    background: url(../img/top-bg.jpg) center center/cover;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__bg {
    padding-top: 55%;
    background: url(../img/top-bg.jpg) center center/cover;
  }
}

.top__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 780px;
  width: 100%;
}

.top__text {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.top__text::before {
  content: "";
  width: 145px;
  height: 100px;
  display: inline-block;
  border-left: 20px solid #189750;
  border-top: 20px solid #189750;
  position: absolute;
  top: -100px;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .top__text::before {
    width: 100px;
    height: 50px;
    border-left: 8px solid #189750;
    border-top: 8px solid #189750;
    top: 15px;
    left: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__text::before {
    width: 100px;
    height: 50px;
    border-left: 10px solid #189750;
    border-top: 10px solid #189750;
    top: 55px;
    left: 10%;
  }
}

.top__text::after {
  content: "";
  width: 100px;
  height: 145px;
  display: inline-block;
  border-right: 20px solid #fff;
  border-top: 20px solid #fff;
  position: absolute;
  top: -100px;
  right: 0px;
}

@media screen and (max-width: 767px) {
  .top__text::after {
    width: 50px;
    height: 100px;
    border-right: 8px solid #fff;
    border-top: 8px solid #fff;
    top: 25px;
    right: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__text::after {
    width: 50px;
    height: 100px;
    border-right: 10px solid #fff;
    border-top: 10px solid #fff;
    top: 55px;
    right: 10%;
  }
}

@media screen and (max-width: 767px) {
  .top__text {
    font-size: 1.375rem;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__text {
    font-size: 2.125rem;
    margin-top: 6.5rem;
  }
}

.top__btn {
  text-align: center;
  margin-top: 3.5rem;
}

.top__btn::before {
  content: "";
  width: 100px;
  height: 145px;
  display: inline-block;
  border-left: 20px solid #fff;
  border-bottom: 20px solid #fff;
  position: absolute;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .top__btn::before {
    width: 50px;
    height: 100px;
    border-left: 8px solid #fff;
    border-bottom: 8px solid #fff;
    bottom: -56px;
    left: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__btn::before {
    width: 50px;
    height: 100px;
    border-left: 10px solid #fff;
    border-bottom: 10px solid #fff;
    bottom: 15px;
    left: 10%;
  }
}

.top__btn::after {
  content: "";
  width: 145px;
  height: 100px;
  display: inline-block;
  border-right: 20px solid #189750;
  border-bottom: 20px solid #189750;
  position: absolute;
  right: 0px;
  bottom: -30%;
}

@media screen and (max-width: 767px) {
  .top__btn::after {
    width: 100px;
    height: 50px;
    border-right: 8px solid #189750;
    border-bottom: 8px solid #189750;
    bottom: -55px;
    right: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__btn::after {
    width: 100px;
    height: 50px;
    border-right: 10px solid #189750;
    border-bottom: 10px solid #189750;
    bottom: 15px;
    right: 10%;
  }
}

@media screen and (max-width: 767px) {
  .top__btn {
    margin-top: 1.5rem;
  }
}

.worries {
  margin-top: 4.5rem;
}

.worries__message {
  text-align: center;
}

.worries__title {
  text-align: center;
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #189750;
}

@media screen and (max-width: 767px) {
  .worries__title {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__title {
    font-size: 1.875rem;
  }
}

.worries__text {
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .worries__text {
    font-size: 1rem;
    padding: 0 0 1em;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__text {
    font-size: 1.375rem;
  }
}

.worries__subtext {
  font-size: 2.125rem;
  text-align: center;
  font-weight: bold;
  margin-top: 4rem;
  letter-spacing: 0.1em;
  display: inline-block;
  border-bottom: 3px solid #71afed;
}

@media screen and (max-width: 767px) {
  .worries__subtext {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__subtext {
    font-size: 1.625rem;
    margin-top: 1.5rem;
  }
}

.worries__subtext span {
  font-size: 2.625rem;
}

@media screen and (max-width: 767px) {
  .worries__subtext span {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__subtext span {
    font-size: 1.875rem;
  }
}

.worries__list-box {
  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) {
  .worries__list-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.worries__list {
  position: relative;
  line-height: 1.5;
  padding: 0.03125rem 0 0 1rem;
}

@media screen and (max-width: 767px) {
  .worries__list {
    margin-top: 2em;
  }
}

.worries__list-text {
  font-size: 1.625rem;
  font-weight: bold;
  padding: 0 1.5rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .worries__list-text {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__list-text {
    font-size: 1.375rem;
  }
}

.worries__list-text + .worries__list-text {
  margin-top: 0.5rem;
}

.worries__list-text::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  left: 0;
  color: #71afed;
}

@media screen and (max-width: 767px) {
  .worries__list-text::before {
    left: 10px;
  }
}

.worries__icon {
  max-width: 234px;
  margin-top: 6em;
}

@media screen and (max-width: 767px) {
  .worries__icon {
    max-width: 130px;
    margin-left: auto;
    margin-top: 1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .worries__icon {
    max-width: 200px;
  }
}

@media screen and (min-width: 1025px) {
  .content-area {
    display: none;
  }
  .content-area p {
    font-size: 24px;
    text-align: start;
  }
  .content-area .content {
    display: none;
  }
  .content-area .content.show {
    margin: 50px 16px;
    padding: 1em;
    background-color: #fff;
    display: block;
    max-width: 820px;
    width: 100%;
  }
  .sp-content-area {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support {
    margin-top: 8rem;
  }
  .content-area {
    display: none;
  }
  .content-area p {
    font-size: 22px;
  }
  .content-area .content {
    display: none;
  }
  .content-area .content.show {
    margin: 50px 16px;
    padding: 1em;
    background-color: #fff;
    display: block;
    max-width: 680px;
    width: 100%;
  }
  .sp-content-area {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .content-area {
    display: none;
  }
  .sp-content-area {
    display: none;
  }
  .sp-content-area .sp-content {
    display: none;
  }
  .sp-content-area p {
    font-size: 18px;
  }
  .sp-content-area .sp-content.show {
    margin: 50px 16px;
    padding: 1em;
    background-color: #fff;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .support {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support {
    margin-top: 0;
  }
}

.support__top-box {
  background: #189750;
  padding: 1.5rem 0;
}

.support__top-text {
  font-size: 2.625rem;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .support__top-text {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__top-text {
    font-size: 2rem;
  }
}

.support__top-text span {
  font-size: 2.125rem;
}

@media screen and (max-width: 767px) {
  .support__top-text span {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__top-text span {
    font-size: 1.75rem;
  }
}

.support__box {
  background: #f5f5f5;
  padding: 4.5rem 0 5.5rem;
}

@media screen and (max-width: 767px) {
  .support__box {
    padding: 2.5rem 0;
  }
}

.support__title-box {
  text-align: center;
}

.support__title {
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #189750;
}

@media screen and (max-width: 767px) {
  .support__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__title {
    font-size: 1.875rem;
  }
}

.support__sub-text {
  font-size: 1.625rem;
}

@media screen and (max-width: 767px) {
  .support__sub-text {
    font-size: 1rem;
    margin-top: 8px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__sub-text {
    font-size: 1.375rem;
  }
}

.support__icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
  margin: 5rem auto 0;
}

@media screen and (max-width: 767px) {
  .support__icon-box {
    margin: 2.5rem auto 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__icon-box {
    margin: 3.5rem auto 0;
  }
}

.support__icon-item {
  width: calc(33.3% - 30px * 2 / 3);
  background: #fff;
  padding: 3em 1em;
  -webkit-box-shadow: 2px 2px 4px #757575;
          box-shadow: 2px 2px 4px #757575;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.support__icon-item:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  cursor: pointer;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__icon-item {
    width: calc(33% - 16px * 2 / 3);
  }
}

@media screen and (max-width: 767px) {
  .support__icon-item {
    width: calc(44% - 10px * 1 / 2);
    padding: 2em 1em;
    margin: 0 0.625rem;
  }
}

@media screen and (min-width: 1025px) {
  .support__icon-item:not(:nth-of-type(3n + 1)) {
    margin-left: 1.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__icon-item:not(:nth-of-type(3n + 1)) {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .support__icon-item:nth-child(n + 5) {
    margin-top: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .support__icon-item:nth-child(n + 3) {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__icon-item:nth-child(n + 5) {
    margin-top: 3rem;
  }
}

.support__icon-img {
  max-width: 123px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .support__icon-img {
    max-width: 70px;
  }
}

.support__icon-title {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

.support__icon-text {
  font-size: 1.625rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .support__icon-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .support__icon-text {
    font-size: 1.125rem;
  }
}

.profile {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .profile {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile {
    margin-top: 10rem;
  }
}

.profile__box {
  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;
  position: relative;
}

.profile__box::after {
  content: "";
  width: 85%;
  height: 100%;
  border: 16px solid #f3f3f3;
  position: absolute;
  top: 3%;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .profile__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .profile__box::after {
    width: 90%;
    height: 93%;
    border: 8px solid #f3f3f3;
    right: 3%;
    top: 10%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__box::after {
    content: "";
    width: 85%;
    height: 115%;
    border: 16px solid #f3f3f3;
    position: absolute;
    right: 10px;
    top: -10%;
    z-index: -1;
  }
}

.profile__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-right: 2rem;
}

@media screen and (max-width: 767px) {
  .profile__img {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__img {
    margin-right: 0;
  }
}

.profile__img img {
  max-height: 100%;
  height: 780px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 77%;
     object-position: 77%;
}

@media screen and (max-width: 767px) {
  .profile__img img {
    max-height: 330px;
    max-width: 300px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__img img {
    max-height: 460px;
  }
}

.profile__text-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0 1em;
}

@media screen and (max-width: 767px) {
  .profile__text-box {
    margin-top: 2em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__text-box {
    padding: 0 1em 0 2em;
  }
}

.profile__text {
  font-size: 1.625rem;
  padding-top: 6.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
}

.profile__text::after {
  content: "";
  width: 250px;
  height: 1px;
  display: inline-block;
  background: #333333;
  position: absolute;
  bottom: -7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__text::after {
    top: 104%;
  }
}

@media screen and (max-width: 767px) {
  .profile__text::after {
    bottom: -9%;
  }
}

@media screen and (max-width: 767px) {
  .profile__text {
    font-size: 1rem;
    padding-top: 0;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__text {
    font-size: 1.125rem;
    padding-top: 0;
    letter-spacing: 0.02em;
  }
}

.profile__sub-text {
  font-size: 1.375rem;
  color: #0c3b7a;
  margin-top: 5.5rem;
  line-height: 1.8;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .profile__sub-text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 3.5rem auto 0;
    width: 317px;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__sub-text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.feature__bottom {
  text-align: center;
  margin-top: 6em;
}

@media screen and (max-width: 767px) {
  .feature__bottom {
    margin-top: 2em;
  }
}

.section__img1 {
  max-height: 562px;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 13em;
}

@media screen and (max-width: 767px) {
  .section__img1 {
    margin-top: 5em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__img1 {
    margin-top: 8em;
  }
}

.flow {
  margin-top: 7.875rem;
}

@media screen and (max-width: 767px) {
  .flow {
    margin-top: 3em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow {
    margin-top: 2em;
  }
}

.flow__top-message {
  text-align: center;
}

.flow__top-title {
  font-size: 2.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .flow__top-title {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__top-title {
    font-size: 1.625rem;
  }
}

.flow__top-title span {
  font-size: 3.125rem;
  color: #189750;
}

@media screen and (max-width: 767px) {
  .flow__top-title span {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__top-title span {
    font-size: 2.125rem;
  }
}

.flow__container {
  margin-top: 6em;
  padding: 6em 0;
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .flow__container {
    margin-top: 3em;
    padding: 3em 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__container {
    margin-top: 3em;
    padding: 3em 0;
  }
}

.flow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4em;
}

@media screen and (max-width: 767px) {
  .flow__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__box {
    margin-top: 3em;
  }
}

@media screen and (min-width: 1025px) {
  .flow__item {
    width: calc(50% - 2em * 2 / 3);
  }
  .flow__item + .flow__item {
    margin-left: 2em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__item {
    width: calc(50% - 3em * 2 / 3);
  }
  .flow__item + .flow__item {
    margin-left: 3em;
  }
}

@media screen and (max-width: 767px) {
  .flow__item + .flow__item {
    margin-top: 2em;
  }
}

.flow__item-inner {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .flow__item-inner {
    margin-bottom: 0.5em;
  }
}

.flow__item-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.flow__item-title span {
  font-size: 2.375rem;
  color: #189750;
}

@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1rem;
  }
  .flow__item-title span {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__item-title {
    font-size: 24px;
  }
}

.flow__img {
  max-width: 520px;
  width: 100%;
}

.flow__message {
  margin-top: 0.5em;
}

.flow__text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 530px;
}

@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__text {
    font-size: 1.25rem;
  }
}

.section__img2 img {
  max-height: 562px;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice {
  margin-top: 6em;
}

@media screen and (max-width: 767px) {
  .voice {
    margin-top: 3em;
  }
}

.voice__box {
  margin-top: 7em;
}

@media screen and (max-width: 767px) {
  .voice__box {
    margin-top: 2rem;
  }
}

.voice__item {
  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;
  position: relative;
}

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

.voice__item:nth-child(odd):after {
  content: "";
  width: 80%;
  height: 125%;
  border: 16px solid #f3f3f3;
  position: absolute;
  right: 0%;
  bottom: -18%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(odd):after {
    width: 100%;
    height: 70%;
    border: 6px solid #f3f3f3;
    bottom: -1%;
    z-index: -1;
    left: -6px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__item:nth-child(odd):after {
    width: 80%;
    height: 110%;
    border: 16px solid #f3f3f3;
    right: 0%;
    bottom: -12%;
    z-index: -1;
  }
}

.voice__item:nth-child(even):after {
  content: "";
  width: 80%;
  height: 125%;
  border: 16px solid #f3f3f3;
  position: absolute;
  left: 0%;
  bottom: -18%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(even):after {
    width: 100%;
    height: 70%;
    border: 6px solid #f3f3f3;
    bottom: -1%;
    z-index: -1;
    left: -6px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__item:nth-child(even):after {
    width: 80%;
    height: 110%;
    border: 16px solid #f3f3f3;
    right: 0%;
    bottom: -12%;
    z-index: -1;
  }
}

.voice__item:nth-child(2n + 1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(2n + 1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.voice__item:nth-child(2n + 1) > .voice__text-box {
  padding-left: 3.5rem;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(2n + 1) > .voice__text-box {
    padding-left: 0;
  }
}

.voice__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.voice__item:nth-child(2n) > .voice__text-box {
  padding-right: 3.5rem;
}

@media screen and (max-width: 767px) {
  .voice__item:nth-child(2n) > .voice__text-box {
    padding-right: 0;
  }
}

.voice__item + .voice__item {
  margin-top: 9.5rem;
}

@media screen and (max-width: 767px) {
  .voice__item + .voice__item {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__item + .voice__item {
    margin-top: 9.5rem;
  }
}

.voice__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.voice__img img {
  max-width: 490px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .voice__img img {
    max-width: 350px;
  }
}

.voice__text-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.voice__name {
  font-size: 2rem;
  color: #189750;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .voice__name {
    font-size: 1.125rem;
    margin-top: 1rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__name {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.voice__text {
  font-size: 1.375rem;
  padding-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .voice__text {
    font-size: 1rem;
    padding: 1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__text {
    font-size: 1.125rem;
  }
}

.closing {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  background-color: #f5f5f5;
  margin-top: 10em;
}

@media screen and (max-width: 767px) {
  .closing {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 5em;
  }
}

.closing .color {
  color: #189750;
}

.closing__top-title {
  text-align: center;
  margin-bottom: 4em;
}

@media screen and (max-width: 767px) {
  .closing__top-title {
    margin-bottom: 3em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__top-title {
    margin-bottom: 3em;
  }
}

.closing__top-text {
  font-size: 1.625rem;
  margin-top: 2.5rem;
  padding: 0 6em;
}

@media screen and (max-width: 767px) {
  .closing__top-text {
    font-size: 1.125rem;
    font-weight: normal;
    padding: 0.5rem 1.8125rem;
    text-align: left;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__top-text {
    font-size: 1.25rem;
    text-align: start;
    padding: 0 4em;
  }
}

.closing__merit {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .closing__merit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .closing__merit-item {
    width: calc(50% - 80px / 2);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__merit-item {
    width: calc(50% - 40px / 2);
  }
}

.closing__merit-item:nth-child(even) {
  margin-left: 80px;
}

@media screen and (max-width: 767px) {
  .closing__merit-item:nth-child(even) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__merit-item:nth-child(even) {
    margin-left: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .closing__merit-item:nth-child(n + 3) {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__merit-item:nth-child(n + 3) {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .closing__merit-item:nth-child(n + 2) {
    margin-top: 1.5rem;
  }
}

.closing__merit-img img {
  height: 218px;
  -o-object-fit: cover;
     object-fit: cover;
}

.closing__merit-massege {
  padding: 1rem;
}

.closing__merit-text {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .closing__merit-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .closing__bottom {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__bottom {
    margin-top: 3.75rem;
  }
}

.closing__bottom-item {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .closing__bottom-item {
    padding: 8px;
    margin-top: 6.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__bottom-item {
    padding: 8px;
    margin-top: 0rem;
  }
}

@media screen and (min-width: 1025px) {
  .closing__bottom-item + .closing__bottom-item {
    margin-top: 3.5rem;
  }
}

.closing__bottom-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #0c3b7a;
  padding-left: 0.5em;
}

@media screen and (max-width: 767px) {
  .closing__bottom-title {
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__bottom-title {
    font-size: 1.5rem;
    padding-left: 4em;
    padding-bottom: 0.5em;
  }
}

.closing__bottom-title::before {
  content: "";
  position: absolute;
  background: url(../img/contact.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 90px;
  height: 90px;
  top: -25px;
  left: -3.5em;
}

@media screen and (max-width: 767px) {
  .closing__bottom-title::before {
    width: 65px;
    height: 65px;
    left: 50%;
    -webkit-transform: translate(-50%, -70px);
            transform: translate(-50%, -70px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__bottom-title::before {
    width: 65px;
    height: 65px;
    top: -10px;
    left: 0.5em;
  }
}

.closing__bottom-massege {
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  padding: 2.5rem;
  margin-top: 1rem;
  border: 2px solid #0c3b7a;
}

.closing__bottom-massege span {
  color: #0c3b7a;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .closing__bottom-massege {
    padding: 1.625rem;
    margin-top: 0.5rem;
  }
}

.closing__bottom-text {
  font-size: 1.75rem;
}

@media screen and (max-width: 767px) {
  .closing__bottom-text {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__bottom-text {
    font-size: 1.25rem;
  }
}

.closing__btn {
  margin-top: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .closing__btn {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .closing__btn {
    margin-top: 2.5rem;
  }
}

footer {
  background: #00104d;
}

.footer__copyright {
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
}
