@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "source-han-sans-japanese", sans-serif;
  color: #000;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
}
@media screen and (max-width: 1200px) {
  html {
    min-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
  }
}

section {
  overflow: hidden;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.button {
  position: relative;
  width: 300px;
  height: 60px;
  background-color: #fff;
  border: 2px solid #18324d;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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) {
  .button {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}
.button::before {
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #18324d;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover::before {
  left: 100%;
}
@media screen and (max-width: 767px) {
  .button:hover::before {
    left: 0;
  }
}
.button:hover span {
  color: #18324d;
}
@media screen and (max-width: 767px) {
  .button:hover span {
    color: #fff;
  }
}
.button:hover span::after {
  background-image: url("./img/icons/button-arrow-black.svg");
}
@media screen and (max-width: 767px) {
  .button:hover span::after {
    background-image: url("./img/icons/button-arrow-white.svg");
  }
}
.button span {
  z-index: 3;
  position: relative;
  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: 100%;
  height: 100%;
}
.button span::after {
  content: "";
  width: 23px;
  height: 9px;
  background: url("./img/icons/button-arrow-white.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button__sticky {
  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;
  opacity: 0;
  width: 78px;
  height: 78px;
  border-radius: 4px;
  background-color: #000000;
  position: fixed;
  bottom: 20px;
  right: 5%;
  z-index: 997;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1366px) {
  .button__sticky {
    right: 3%;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .button__sticky {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 70px;
  }
}
.button__sticky img {
  width: 30%;
  height: auto;
}
.button__sticky.active {
  opacity: 1;
}
.button__sticky:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .button__sticky:hover {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    text-align: center !important;
  }
}
.title__en {
  display: inline;
  position: relative;
  text-transform: uppercase;
  font-family: "josefin-sans", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  border-bottom: 4px solid #000000;
}
@media screen and (max-width: 1440px) {
  .title__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .title__en {
    font-size: 36px;
    border-bottom: 3px solid #00659f;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 360px) {
  .title__en {
    font-size: 28px;
  }
}
.title__en::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 100%;
  width: 100vw;
  height: 4px;
  background-color: #18324d;
}
@media screen and (max-width: 767px) {
  .title__en::before {
    font-size: 36px;
    height: 3px;
    bottom: -3px;
  }
}
.title__en--right::before {
  right: unset;
  left: 100%;
}
.title__en--philosophy {
  font: 700 6rem "josefin-sans", sans-serif;
  color: #00659f;
  border-bottom: 4px solid #00659f;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .title__en--philosophy {
    font-size: 5rem;
    padding-bottom: 10px;
  }
}
.title__en--philosophy::before {
  position: absolute;
  content: "";
  background: url("./img/service/bubble.png");
  background-size: cover;
  width: 568px;
  height: 583px;
  top: -147px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .title__en--philosophy::before {
    width: 468px;
    height: 483px;
    top: -120px;
    left: -27px;
  }
}
.title__en--philosophy::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 100%;
  width: 100vw;
  height: 4px;
  background-color: #00659f;
}
.title__en--bg-circle {
  display: block;
  min-width: 460px;
}
@media screen and (max-width: 1280px) {
  .title__en--bg-circle {
    min-width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .title__en--bg-circle {
    min-width: unset;
    width: 80%;
  }
}
.title__en--bg-circle::before {
  position: absolute;
  content: "";
  background: url("./img/common/bg-circle.png") no-repeat;
  background-size: contain;
  width: 536px;
  height: 536px;
  top: -107px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .title__en--bg-circle::before {
    width: 436px;
    height: 436px;
    top: -120px;
    left: -27px;
  }
}
@media screen and (max-width: 767px) {
  .title__en--bg-circle::before {
    width: 400px;
    top: -60px;
    left: unset;
    right: -40px;
  }
}
.title__en--w100 {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .title__en--w100 {
    width: 100%;
  }
}
.title__jp {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 38px;
}
@media screen and (max-width: 1280px) {
  .title__jp {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 18px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 360px) {
  .title__jp {
    font-size: 16px;
  }
}
.title__jp--philosophy {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #18324d;
}
@media screen and (max-width: 1280px) {
  .title__jp--philosophy {
    font-size: 2.6rem;
    margin-top: 28px;
  }
}
.title__jp--mt-lower {
  margin-top: 20px;
}
.title__jp--mt27 {
  margin-top: 27px;
}
.title__jp--f44 {
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .title__jp--f44 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .title__jp--f44 {
    font-size: 2.7rem;
    margin: 0;
  }
}
.title--left {
  margin-left: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .title--left {
    margin-left: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.title--right {
  margin-right: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .title--right {
    margin-right: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .title__wrap--sp-w100 {
    width: 100%;
  }
}
.title--pr15 {
  padding-right: 15px;
}
@media screen and (max-width: 1280px) {
  .title--pr15 {
    padding-right: 0;
  }
}

.header {
  z-index: 998;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
    padding-right: 10px;
    background-color: #fff;
  }
}
.header--active {
  background-color: #fff;
}
.header__page-title {
  z-index: 20;
  position: absolute;
  top: 5px;
  left: 15px;
  color: #333333;
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1280px) {
  .header__page-title {
    font-size: 0.88rem;
  }
}
@media screen and (max-width: 767px) {
  .header__page-title {
    display: none;
  }
}
.header__page-title--lower {
  font-size: 0.8rem;
}
@media screen and (max-width: 1280px) {
  .header__page-title--lower {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .header__page-title--lower {
    display: none;
  }
}
.header__page-title--contact {
  font-size: 0.77rem;
}
@media screen and (max-width: 1280px) {
  .header__page-title--contact {
    font-size: 0.72rem;
  }
}
@media screen and (max-width: 767px) {
  .header__page-title--contact {
    display: none;
  }
}
.header__logo {
  width: 350px;
  height: 100px;
  padding-top: 15px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    width: 330px;
  }
}
@media screen and (max-width: 1200px) {
  .header__logo {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 237px;
    height: 64px;
    padding: 0;
    margin-left: -20px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1440px) {
  .header__container {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    overflow: scroll;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 80px 30px 30px;
    background-color: #fff;
    top: 0;
    right: -100%;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__container--active {
  right: 0;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1366px) {
  .header__nav-list {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__nav-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    text-align: left;
  }
}
.header__nav-item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .header__nav-item:hover {
    opacity: 1;
  }
  .header__nav-item:hover .header__nav-link {
    color: #000 !important;
  }
}
.header__nav-item:hover .header__nav-link,
.header__nav-item:hover span.en {
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .header__nav-item:hover .header__nav-link,
  .header__nav-item:hover span.en {
    color: #000 !important;
  }
}
.header__nav-item--sublist {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-item--sublist::after {
  content: "";
  width: 13px;
  height: 8px;
  background: url("./img/icons/caret.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist::after {
    width: 16px;
    height: 2px;
    background: none;
    background-color: #000;
    left: unset;
    right: 0;
    bottom: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist::before {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #000;
    position: absolute;
    right: 6.5px;
    bottom: 54%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__nav-item--sublist.active {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist.active {
    opacity: 1;
    margin-bottom: 20px;
  }
  .header__nav-item--sublist.active .header__nav-link {
    color: #000 !important;
  }
}
.header__nav-item--sublist.active .header__nav-link,
.header__nav-item--sublist.active span.en {
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist.active .header__nav-link,
  .header__nav-item--sublist.active span.en {
    color: #000;
  }
}
.header__nav-item--sublist.active::after {
  bottom: -23px;
  background-image: url("./img/icons/caret-blue.svg");
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist.active::after {
    bottom: 50% !important;
  }
}
.header__nav-item--sublist.active::before {
  opacity: 0;
}
.header__nav-item--sublist .header__nav-link {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .header__nav-item--sublist .header__nav-link {
    padding-bottom: 0;
  }
}
.header__nav-link {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 13px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.header__nav-link .en {
  color: #666;
  font-size: 1rem;
  font-family: "josefin-sans", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
  .header__nav-link .en {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-link .en {
    font-size: 28px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    color: #000;
    font-family: "Jost", sans-serif;
    font-weight: 700;
  }
}
.header__sublist {
  width: 100%;
  height: 0;
  opacity: 0;
  background-color: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__sublist {
    top: 80px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header__sublist {
    opacity: 1;
    position: static;
    margin-top: -30px;
    max-height: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__sublist.active {
  top: 100px;
  opacity: 1;
  height: 300px;
}
.header__sublist.active .header__sublist-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__sublist.active .header__sublist-title,
.header__sublist.active .header__sublist-item {
  display: block;
}
.header__sublist-container {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__sublist-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .header__sublist-container {
    margin: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .header__sublist-container {
    margin: 0;
    padding: 0;
  }
}
.header__sublist-title {
  display: none;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-top: 43px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 0.6em;
}
@media screen and (max-width: 1200px) {
  .header__sublist-title {
    font-size: 3rem;
  }
}
.header__sublist-title .en {
  color: #00659f;
  font-size: 1rem;
  font-weight: 400;
  font-family: "josefin-sans", sans-serif;
  letter-spacing: 0;
}
.header__sublist-list {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: center;
      align-self: center;
  row-gap: 30px;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-left: 74px;
}
@media screen and (max-width: 767px) {
  .header__sublist-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    row-gap: 20px;
    margin-left: 0;
  }
}
.header__sublist-item {
  display: none;
  position: relative;
  width: 400px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-bottom: 18px;
  border-bottom: 2px solid #18324d;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__sublist-item {
    width: 250px;
    font-size: 1.4rem;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__sublist-item {
    display: block;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 2px dashed #18324d;
  }
}
.header__sublist-item::before {
  content: "";
  width: 13px;
  height: 8px;
  background: url("./img/icons/caret.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 6px;
  right: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__sublist-item:hover {
  opacity: 0.7;
  color: #00659f;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  border-bottom: 2px solid #00659f;
}
@media screen and (max-width: 767px) {
  .header__sublist-item:hover {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    color: #18324d;
    border-bottom: 2px dashed #18324d;
  }
}
.header__sublist-item:hover::before {
  background-image: url("./img/icons/caret-blue.svg");
}
@media screen and (max-width: 767px) {
  .header__sublist-item:hover::before {
    background-image: url("./img/icons/caret.svg");
  }
}
.header__nav-overlay {
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: -100vh;
  left: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.header__nav-overlay.active {
  top: 0;
  display: block;
}
.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__social {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .header__social-container {
    gap: 20px;
    width: 100%;
  }
}
.header__social-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;
  color: #fff;
  width: 200px;
  height: 50px;
  background-color: #225f9c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__social-box {
    width: 175px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-box {
    gap: 5px;
    width: 100%;
    height: 75px;
    background-color: #4caae0;
  }
}
.header__social-box--line {
  background-color: #dfa98d !important;
}
@media screen and (max-width: 767px) {
  .header__social-box--line {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.header__social-box--contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 150px;
  height: 100px;
  color: #000;
  background-color: #f8d59f !important;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .header__social-box--contact {
    width: 125px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-box--contact {
    gap: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    height: 75px;
  }
}
.header__social-box--contact::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: #ffde1c;
  position: absolute;
  top: 0;
  left: -45px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__social-box--contact:hover::before {
  width: 180%;
}
.header__social-icon {
  width: 25px;
  height: 25px;
  margin-right: 6px;
}
@media screen and (max-width: 1200px) {
  .header__social-icon {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-icon {
    margin-bottom: 20px;
  }
}
.header__social-icon--line {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 1200px) {
  .header__social-icon--line {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-icon--line {
    width: 30px;
    height: 30px;
    margin: 0 5px 0 0;
  }
}
.header__social-icon--contact {
  width: 20px;
  height: 14px;
}
@media screen and (max-width: 1200px) {
  .header__social-icon--contact {
    width: 18px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-icon--contact {
    width: 24px;
    height: 18px;
    margin: 0 10px 0 0;
  }
}
.header__social-text {
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header__social-text {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.header__social-text .tel {
  font-size: 1.8rem;
  font-family: "josefin-sans", sans-serif;
}
@media screen and (max-width: 1440px) {
  .header__social-text .tel {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__social-text .tel {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header__social-text .tel {
    font-size: 24px;
  }
}
.header__social-text--line {
  font-size: 1.6rem;
  line-height: 1.2em;
}
@media screen and (max-width: 1440px) {
  .header__social-text--line {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__social-text--line {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__social-text--line {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.header__social-text--contact {
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  .header__social-text--contact {
    font-size: 1.1rem;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .header__social-text--contact {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.header__social-bg {
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffde1c;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width: 1200px) {
  .header__social-bg {
    top: 15px;
    left: 20px;
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .header__social-bg {
    display: none;
  }
}
.header__social-contact {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-family: "josefin-sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.header__social-contact span {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .header__social-contact span {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }
}
.header__hamburger {
  cursor: pointer;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 42px;
  height: 42px;
  background-color: #00659f;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger--active {
  background-color: #fff;
}
.header__hamburger--active .header__hamburger-line {
  background-color: #00659f;
}
.header__hamburger--active .header__hamburger-line:first-child {
  -webkit-transform: translate(0, 8px) rotate(-45deg);
          transform: translate(0, 8px) rotate(-45deg);
}
.header__hamburger--active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger--active .header__hamburger-line:last-child {
  -webkit-transform: translate(0, -8.5px) rotate(45deg);
          transform: translate(0, -8.5px) rotate(45deg);
}
.header__hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-banner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-banner {
    margin-top: 64px;
  }
}
.page-banner__wrapper {
  position: relative;
  background: url("./img/service/content-bg.jpg") no-repeat center/100% 100%;
  background-size: cover;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1366px) {
  .page-banner__wrapper {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__wrapper {
    height: 100%;
    background-size: cover;
    background-position: left;
  }
}
.page-banner__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 400px;
  background-color: rgba(4, 123, 191, 0.48);
  z-index: 0;
}
@media screen and (max-width: 1366px) {
  .page-banner__wrapper::before {
    width: 43%;
    height: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .page-banner__wrapper::before {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__wrapper::before {
    width: 100%;
    height: 100%;
    background-color: rgba(4, 123, 191, 0.3);
  }
}
.page-banner__bg-container {
  overflow: hidden;
}
.page-banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 140px;
  gap: 123px;
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .page-banner__container {
    gap: 80px;
  }
}
@media screen and (max-width: 1366px) {
  .page-banner__container {
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__container {
    width: 100%;
    padding: 30px 0;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-banner__container--width-100 {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-banner__image {
  min-width: 600px;
  height: 400px;
  z-index: 1;
}
@media screen and (max-width: 1366px) {
  .page-banner__image {
    min-width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__image {
    min-width: unset;
    width: 75%;
    margin-left: 5%;
    height: 300px;
  }
}
@media screen and (max-width: 520px) {
  .page-banner__image {
    height: 200px;
  }
}
@media screen and (max-width: 360px) {
  .page-banner__image {
    height: 160px;
  }
}
.page-banner__title-wrap {
  position: relative;
  margin-top: 70px;
}
@media screen and (max-width: 1366px) {
  .page-banner__title-wrap {
    margin-top: 55px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title-wrap {
    margin: 0 0 0 30%;
  }
}
.page-banner__title {
  font: 400 11rem "caliban-std", sans-serif;
  letter-spacing: 0.1em;
  color: #18324d;
  border-bottom: 4px solid #18324d;
  padding-bottom: 15px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1600px) {
  .page-banner__title {
    font-size: 9rem;
  }
}
@media screen and (max-width: 1366px) {
  .page-banner__title {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title {
    font-size: 44px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-bottom: 3px solid #18324d;
  }
}
@media screen and (max-width: 360px) {
  .page-banner__title {
    font-size: 38px;
  }
}
.page-banner__title::before {
  position: absolute;
  content: "";
  background: url("./img/service/title-upper.png") no-repeat;
  background-size: cover;
  width: 42px;
  height: 44px;
  top: 0;
  left: -28px;
}
@media screen and (max-width: 767px) {
  .page-banner__title::before {
    width: 20px;
    height: 22px;
    left: -17px;
  }
}
.page-banner__title::after {
  position: absolute;
  content: "";
  background: url("./img/service/title-lower.png") no-repeat;
  background-size: cover;
  width: 42px;
  height: 44px;
  bottom: 16px;
  right: -35px;
}
@media screen and (max-width: 767px) {
  .page-banner__title::after {
    width: 20px;
    height: 22px;
    right: -17px;
  }
}
.page-banner__text, .page-banner__title-extend {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  color: #18324d;
  margin-top: 30px;
}
@media screen and (max-width: 1366px) {
  .page-banner__text, .page-banner__title-extend {
    font-size: 2.6rem;
    margin-top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__text, .page-banner__title-extend {
    font-size: 16px;
  }
}
.page-banner__text--jp, .page-banner__title-extend--jp {
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .page-banner__text--jp, .page-banner__title-extend--jp {
    margin-top: 6px;
  }
}
.page-banner__text--jp::after, .page-banner__title-extend--jp::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 75%;
  width: 100vw;
  height: 4px;
  background-color: #18324d;
}
@media screen and (max-width: 767px) {
  .page-banner__text--jp::after, .page-banner__title-extend--jp::after {
    left: 0;
    top: -9px;
    height: 3px;
    width: 400%;
  }
}
.page-banner__title-extend {
  font-weight: 700;
  position: absolute;
  top: 35px;
  left: 365px;
}
@media screen and (max-width: 1600px) {
  .page-banner__title-extend {
    top: 15px;
    left: 310px;
  }
}
@media screen and (max-width: 1366px) {
  .page-banner__title-extend {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title-extend {
    top: 0;
    left: 155px;
  }
}
@media screen and (max-width: 360px) {
  .page-banner__title-extend {
    left: 135px;
    margin-top: 16px;
  }
}

.top__mv {
  z-index: 10;
  position: relative;
  padding-bottom: 90px;
}
.top__mv::after {
  z-index: 8;
  content: "";
  width: 688px;
  height: 128px;
  background: url("./img/top/nudge-text.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
}
@media screen and (max-width: 1440px) {
  .top__mv::after {
    width: 625px;
    height: 110px;
    bottom: 20px;
    left: calc(42% - 50px);
  }
}
@media screen and (max-width: 1280px) {
  .top__mv::after {
    width: 575px;
    height: 100px;
    bottom: 30px;
    left: calc(45% - 50px);
  }
}
@media screen and (max-width: 1024px) {
  .top__mv::after {
    width: 500px;
    height: 90px;
    bottom: 40px;
    left: calc(47% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .top__mv::after {
    width: 260px;
    height: 40px;
    bottom: 70px;
    left: 45%;
  }
}
@media screen and (max-width: 520px) {
  .top__mv::after {
    width: 50%;
  }
}
@media screen and (max-width: 360px) {
  .top__mv::after {
    height: 30px;
    bottom: 75px;
  }
}
.top__mv-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 860px;
  background: url("./img/top/mv-banner.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .top__mv-wrap {
    height: 700px;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-wrap {
    height: 580px;
  }
}
@media screen and (max-width: 1024px) {
  .top__mv-wrap {
    height: 485px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-wrap {
    height: 380px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-wrap {
    height: 95vh;
    background-position: 60% 0;
  }
}
.top__mv-container {
  position: relative;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .top__mv-container {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-container {
    width: 70%;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-container {
    width: 100%;
    height: 60%;
  }
}
@media screen and (max-width: 1440px) {
  .top__mv-container--right {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-container--right {
    z-index: 10;
    height: unset;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-container--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 40%;
  }
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-height: 667px) {
    .top__mv-container--right {
      height: 45%;
    }
  }
}
.top__mv-image {
  width: 705px;
  height: 730px;
  position: absolute;
  right: -55px;
  bottom: 0;
  z-index: 5;
}
@media screen and (max-width: 1440px) {
  .top__mv-image {
    width: 465px;
    height: 580px;
    right: 0;
    bottom: -3px;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-image {
    width: 377px;
    height: 470px;
  }
}
@media screen and (max-width: 1024px) {
  .top__mv-image {
    width: 312px;
    height: 390px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-image {
    width: 260px;
    height: 300px;
    right: unset;
    left: 5%;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-image {
    left: -5%;
    bottom: -30px;
    width: 110%;
    height: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .top__mv-bg {
    height: 315px;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-bg {
    height: 235px;
  }
}
@media screen and (max-width: 1024px) {
  .top__mv-bg {
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-bg {
    height: 150px;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-bg {
    height: 45%;
  }
}
@media screen and (max-width: 360px) {
  .top__mv-bg {
    height: 115px;
  }
}
.top__mv-content {
  width: 100%;
  margin: 246px 0 0 90px;
}
@media screen and (max-width: 1600px) {
  .top__mv-content {
    margin-top: 260px;
  }
}
@media screen and (max-width: 1440px) {
  .top__mv-content {
    margin-top: 206px;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-content {
    margin-top: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .top__mv-content {
    margin: 130px 0 0 65px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    margin: 124px 0 0 0;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-content {
    padding-bottom: 20px;
    margin: 0;
  }
}
@supports (-webkit-touch-callout: none) {
  .top__mv-content {
    padding-bottom: 0;
  }
}
@media screen and (min-height: 667px) and (max-height: 736px) {
  .top__mv-content {
    padding-bottom: 0;
  }
}
.top__mv-title {
  color: #18324d;
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 25px;
  border-bottom: 4px solid #18324d;
}
@media screen and (max-width: 1600px) {
  .top__mv-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 3px solid #18324d;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-title {
    font-size: 20px;
    text-align: center;
    padding: 0 3% 20px;
  }
}
@media screen and (max-width: 360px) {
  .top__mv-title {
    font-size: 16px;
  }
}
@media screen and (min-height: 667px) and (max-height: 735px) and (max-width: 520px) {
  .top__mv-title {
    font-size: 16px;
  }
}
.top__mv-para {
  margin-top: 30px;
  font-size: 2.6rem;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .top__mv-para {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1280px) {
  .top__mv-para {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__mv-para {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-para {
    font-size: 11px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 520px) {
  .top__mv-para {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .top__mv-para {
    font-size: 12px;
  }
}
.top__concept {
  z-index: 5;
  position: relative;
  margin-top: -90px;
  padding-bottom: 80px;
}
.top__concept::before {
  z-index: 1;
  content: "";
  width: 50%;
  height: 860px;
  background: url("./img/top/triangle-tl.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1440px) {
  .top__concept::before {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .top__concept::before {
    width: 70%;
    height: 235px;
  }
}
.top__concept-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 920px;
  padding-top: 250px;
  background: url("./img/top/concept-banner.jpg") no-repeat top;
  background-size: 100% 100%;
}
@media screen and (max-width: 1440px) {
  .top__concept-wrap {
    height: 840px;
    padding-top: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .top__concept-wrap {
    height: 695px;
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-wrap {
    height: unset;
    gap: 30px;
    padding: 70px 0 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-size: cover;
  }
}
.top__concept-title {
  z-index: 2;
  width: 36%;
  max-width: 692px;
}
@media screen and (max-width: 1440px) {
  .top__concept-title {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-title {
    width: 100%;
  }
}
.top__concept-title .title__en {
  border-bottom: none;
}
.top__concept-title .title__en::before {
  right: 7%;
  width: 225%;
}
.top__concept-content {
  width: 100%;
  position: absolute;
  top: 230px;
}
@media screen and (max-width: 1440px) {
  .top__concept-content {
    top: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .top__concept-content {
    top: 130px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-content {
    z-index: 2;
    position: static;
  }
}
.top__concept-content-wrap {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__concept-content-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .top__concept-content-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
.top__concept-heading, .top__concept-para, .top__concept-buttons {
  width: 700px;
}
@media screen and (max-width: 1280px) {
  .top__concept-heading, .top__concept-para, .top__concept-buttons {
    width: 650px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-heading, .top__concept-para, .top__concept-buttons {
    width: 100%;
  }
}
.top__concept-heading {
  color: #18324d;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75em;
}
@media screen and (max-width: 1440px) {
  .top__concept-heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1280px) {
  .top__concept-heading {
    font-size: 3.2rem;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 1200px) {
  .top__concept-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-heading {
    font-size: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .top__concept-heading {
    font-size: 23px;
  }
}
.top__concept-para {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  margin: 40px 0 50px;
  text-align: justify;
}
@media screen and (max-width: 1200px) {
  .top__concept-para {
    font-size: 1.4rem;
    margin: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-para {
    font-size: 13px;
  }
}
.top__concept-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .top__concept-buttons {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-buttons {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__service {
  z-index: 8;
  position: relative;
  margin-top: -160px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__service {
    padding-top: 50px;
    margin-top: -100px;
  }
}
.top__service-person {
  z-index: 30;
  width: 100%;
  position: absolute;
  top: 30px;
}
@media screen and (max-width: 767px) {
  .top__service-person {
    top: -1px;
  }
}
@media screen and (max-width: 360px) {
  .top__service-person {
    top: 35px;
  }
}
.top__service-person-wrap {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__service-person-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .top__service-person-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__service-person-wrap {
    max-width: 50%;
    margin: 0;
  }
}
.top__service-person-image {
  width: 432px;
  height: 700px;
}
@media screen and (max-width: 1440px) {
  .top__service-person-image {
    width: 380px;
    height: 630px;
  }
}
@media screen and (max-width: 1200px) {
  .top__service-person-image {
    width: 330px;
    height: 547px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-person-image {
    width: 150px;
    height: 250px;
  }
}
@media screen and (max-width: 360px) {
  .top__service-person-image {
    width: 130px;
    height: 215px;
  }
}
.top__service-wrap {
  position: relative;
}
.top__service-wrap::before {
  z-index: -1;
  content: "";
  width: 80%;
  height: 1168px;
  background: url("./img/top/triangle-br.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: -80px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top__service-wrap::before {
    top: -60px;
    height: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-wrap::before {
    top: -50px;
    height: 249px;
  }
}
.top__service-title {
  z-index: 50;
  position: relative;
  height: 650px;
  padding-top: 185px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1440px) {
  .top__service-title {
    height: 555px;
    padding-top: 130px;
  }
}
@media screen and (max-width: 1200px) {
  .top__service-title {
    height: 470px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-title {
    height: unset;
    padding-top: 50px;
    margin-bottom: 62px;
  }
}
.top__service-title::before {
  content: "";
  width: 380px;
  height: 445px;
  background: url("./img/top/laptop-typing.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 345px;
  right: 5.2%;
}
@media screen and (max-width: 1440px) {
  .top__service-title::before {
    top: 290px;
    width: 320px;
    height: 350px;
  }
}
@media screen and (max-width: 1200px) {
  .top__service-title::before {
    top: 250px;
    width: 260px;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-title::before {
    top: 113px;
    right: 3%;
    width: 85px;
    height: 85px;
  }
}
.top__service-title .title {
  width: 104.3%;
}
@media screen and (max-width: 1600px) {
  .top__service-title .title {
    width: 105%;
  }
}
@media screen and (max-width: 1440px) {
  .top__service-title .title {
    width: 102%;
  }
}
@media screen and (max-width: 1200px) {
  .top__service-title .title {
    width: 103%;
  }
}
@media screen and (max-width: 767px) {
  .top__service-title .title {
    width: 115%;
  }
}
@media screen and (max-width: 520px) {
  .top__service-title .title {
    width: 145%;
  }
}
.top__service-title .title__jp {
  text-align: left;
}
.top__service-para {
  z-index: 50;
  width: 100%;
  position: absolute;
  top: 360px;
}
@media screen and (max-width: 1440px) {
  .top__service-para {
    top: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .top__service-para {
    top: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-para {
    position: static;
    padding: 30px 0 60px;
  }
}
.top__service-para-wrap {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top__service-para-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .top__service-para-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
.top__service-para-text {
  width: 700px;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 1280px) {
  .top__service-para-text {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__service-para-text {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
}
.top__service-list {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .top__service-list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__service-list {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__service-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 380px;
  height: 490px;
  border-radius: 4px;
  padding: 50px 35px 35px;
  background-color: #fff;
  -webkit-box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.03);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__service-item {
    width: 32%;
  }
}
@media screen and (max-width: 1024px) {
  .top__service-item {
    height: 480px;
    padding: 50px 25px 25px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item {
    gap: 20px;
    width: 100%;
    height: unset;
    padding: 20px 20px 50px;
  }
}
.top__service-item--2 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__service-item--2 {
    margin-top: 0;
  }
}
.top__service-item--3 {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .top__service-item--3 {
    margin-top: 0;
  }
}
.top__service-item:hover {
  -webkit-box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .top__service-item:hover {
    -webkit-box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.03);
            box-shadow: 5px 28px 27px rgba(0, 0, 0, 0.03);
  }
}
.top__service-item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: absolute;
  top: -30px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__service-item-heading {
    top: -25px;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-heading {
    gap: 10px;
    top: -18px;
  }
}
.top__service-item-number {
  color: #18324d;
  font-size: 7.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "josefin-sans", sans-serif;
}
@media screen and (max-width: 1280px) {
  .top__service-item-number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__service-item-number {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-number {
    font-size: 36px;
  }
}
.top__service-item-title {
  color: #0278bd;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__service-item-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__service-item-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-title {
    margin-top: 0;
    font-size: 20px;
  }
}
.top__service-item-image {
  width: 315px;
  height: 200px;
}
@media screen and (max-width: 1280px) {
  .top__service-item-image {
    height: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .top__service-item-image {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-image {
    width: 250px;
  }
}
.top__service-item-para {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .top__service-item-para {
    font-size: 13px;
  }
}
.top__service-item-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 39px;
  height: 39px;
  border-bottom-right-radius: 4px;
  background-color: #0278bd;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__service-item-button {
    height: 34px;
  }
}
.top__service-item-button::before {
  content: "";
  width: 42px;
  height: 17px;
  background: url("./img/icons/arrow-thick.svg") no-repeat center;
  background-position: 100% 100%;
  position: absolute;
  right: 15px;
  bottom: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__service-item-button::before {
    right: 12px;
  }
}
.top__service-button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__service-button {
    width: 90%;
    margin: 0 5%;
  }
}
.top__example-text, .top__point-desc, .top__greet-text {
  text-align: justify;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.75em;
}
@media screen and (max-width: 1280px) {
  .top__example-text, .top__point-desc, .top__greet-text {
    font-size: 1.4rem;
  }
}
.top__example {
  position: relative;
  padding-top: 163px;
  margin-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__example {
    margin-bottom: 80px;
    padding-top: 80px;
  }
}
.top__example::before {
  content: "";
  width: 1070px;
  height: 1170px;
  background: url("./img/top/exercise-bg.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__example::before {
    width: 100%;
    height: 300px;
    background-size: cover;
  }
}
.top__example-list {
  position: relative;
  z-index: 2;
  padding-top: 55px;
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__example-list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .top__example-list {
    max-width: 100%;
    padding: 45px 5% 0;
  }
}
.top__example-item {
  position: relative;
  width: 100%;
  background-color: #aaccdf;
  border-radius: 10px;
  padding: 50px 166px 50px 197px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  overflow: hidden;
  z-index: 1;
  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) {
  .top__example-item {
    padding: 25px 0;
    border-radius: 5px;
  }
}
.top__example-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top__example-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.top__example-voice {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 43.5px;
  padding: 15px 20px 15px 30px;
  min-height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__example-voice {
    width: 90%;
    border-radius: 30px;
    padding: 10px 15px;
    margin-top: 80px;
  }
}
.top__example-voice::before {
  content: "";
  z-index: -1;
  position: absolute;
}
.top__example-voice::after {
  content: "";
  width: 51px;
  height: 31px;
  background: url("./img/top/exercise-voice-arrow.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 28px;
}
@media screen and (max-width: 767px) {
  .top__example-voice::after {
    width: 41px;
    height: 31px;
    top: -15px;
  }
}
.top__example-voice:first-child::before {
  width: 175px;
  height: 521px;
  background: url("./img/top/exercise-person-left.svg") top no-repeat;
  left: -175px;
  top: -21px;
}
@media screen and (max-width: 767px) {
  .top__example-voice:first-child::before {
    background-size: cover;
    width: 80px;
    height: 80px;
    left: 50px;
    top: -80px;
  }
}
.top__example-voice:first-child::after {
  z-index: -1;
  left: -25px;
}
@media screen and (max-width: 767px) {
  .top__example-voice:first-child::after {
    left: 25px;
    -webkit-transform: rotate(128deg);
            transform: rotate(128deg);
  }
}
.top__example-voice:last-child {
  margin-left: 18px;
}
@media screen and (max-width: 767px) {
  .top__example-voice:last-child {
    margin-left: 0;
  }
}
.top__example-voice:last-child::before {
  width: 375px;
  height: 345px;
  background: url("./img/top/exercise-person-right.svg") top no-repeat;
  right: -245px;
  top: -60px;
}
@media screen and (max-width: 767px) {
  .top__example-voice:last-child::before {
    background-size: cover;
    width: 140px;
    height: 100px;
    right: 30px;
    top: -80px;
  }
}
.top__example-voice:last-child::after {
  z-index: -1;
  right: -25px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .top__example-voice:last-child::after {
    right: 25px;
    -webkit-transform: scaleX(-1) rotate(125deg);
            transform: scaleX(-1) rotate(125deg);
  }
}
.top__example-voice.last::before {
  top: -10px;
}
@media screen and (max-width: 767px) {
  .top__example-voice.last::before {
    top: -80px;
  }
}
.top__point {
  position: relative;
  padding-bottom: 252px;
}
@media screen and (max-width: 767px) {
  .top__point {
    padding: 50px 5% 50px;
  }
}
.top__point::before {
  content: "";
  width: 83.33%;
  height: 1085px;
  background: url("./img/top/point-bg.jpg") center no-repeat;
  background-size: cover;
  position: absolute;
  top: 29px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .top__point::before {
    height: 920px;
  }
}
@media screen and (max-width: 767px) {
  .top__point::before {
    width: 100%;
    height: 100%;
    top: 0;
  }
}
.top__point-desc {
  text-align: center;
  margin-top: 47px;
}
@media screen and (max-width: 1280px) {
  .top__point-desc {
    margin-top: 37px;
  }
}
.top__point-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.13%;
  margin-top: 76px;
}
@media screen and (max-width: 1280px) {
  .top__point-column {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .top__point-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
    margin-top: 30px;
  }
}
.top__point-wrap {
  width: 48.43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 3%;
}
@media screen and (max-width: 1280px) {
  .top__point-wrap {
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__point-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
.top__point-list {
  counter-reset: point-counter;
  max-width: 560px;
  width: 100%;
  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;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__point-list {
    max-width: 100%;
    gap: 25px;
  }
}
.top__point-item {
  position: relative;
  border-bottom: 1px solid #18324d;
}
.top__point-item::before {
  counter-increment: point-counter;
  content: counter(point-counter, decimal-leading-zero);
  font-size: 4.8rem;
  font-family: "josefin-sans", sans-serif;
  font-style: italic;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__point-item::before {
    font-size: 38px;
  }
}
@supports (-webkit-touch-callout: none) {
  .top__point-item::before {
    line-height: 0.5em;
  }
}
.top__point-item::after {
  content: "";
  width: 30px;
  height: 59px;
  background: url("./img/icons/arrow-right-black.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__point-item::after {
    height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .top__point-item::after {
    width: 20px;
    height: 35px;
  }
}
.top__point-item:hover::before {
  left: 20px;
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .top__point-item:hover::before {
    left: 0;
    color: #000;
  }
}
.top__point-item:hover::after {
  background-image: url("./img/icons/arrow-right-blue.svg");
}
@media screen and (max-width: 767px) {
  .top__point-item:hover::after {
    background-image: url("./img/icons/arrow-right-black.svg");
  }
}
.top__point-item:hover .top__point-link {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .top__point-item:hover .top__point-link {
    padding-left: 0;
  }
}
.top__point-item:hover .top__point-link::before {
  width: 650px;
}
@media screen and (max-width: 767px) {
  .top__point-item:hover .top__point-link::before {
    width: unset;
  }
}
.top__point-link {
  display: block;
  position: relative;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  padding: 57px 0 44px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__point-link {
    font-size: 3rem;
    padding: 47px 0 34px;
  }
}
@media screen and (max-width: 767px) {
  .top__point-link {
    font-size: 24px;
    padding: 47px 0 24px;
  }
}
@media screen and (max-width: 360px) {
  .top__point-link {
    font-size: 22px;
  }
}
.top__point-link::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -41px;
  left: 0;
  width: 0;
  height: 195px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__point-image {
  position: relative;
  width: 930px;
  height: 700px;
  background: url("./img/top/point-img-1.jpg") no-repeat center/cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top__point-image {
    width: 830px;
    height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .top__point-image {
    width: 100%;
    height: 250px;
  }
}
.top__point-image img {
  -o-object-position: top;
     object-position: top;
}
.top__point-image-label {
  position: absolute;
  bottom: 42px;
  left: 40px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .top__point-image-label {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__point-image-label {
    display: none;
  }
}
.top__after {
  position: relative;
  padding-bottom: 137px;
}
@media screen and (max-width: 767px) {
  .top__after {
    padding-top: 50px;
    padding-bottom: 0;
    margin-bottom: 50px;
  }
}
.top__after::before {
  content: "";
  width: 84.1%;
  height: 804px;
  background: url("./img/top/after-bg.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 29px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__after::before {
    height: 850px;
    width: 100%;
    top: 0;
  }
}
.top__after-wrap {
  position: relative;
  max-width: 1720px;
  width: 100%;
  margin: 53px auto 0;
}
@media screen and (max-width: 767px) {
  .top__after-wrap {
    max-width: 100%;
    margin-top: 45px;
  }
}
.top__after-image {
  width: 1056px;
  height: 702px;
}
@media screen and (max-width: 1280px) {
  .top__after-image {
    height: 602px;
    width: 785px;
  }
}
@media screen and (max-width: 767px) {
  .top__after-image {
    width: 100%;
    height: 250px;
  }
}
.top__after-detail {
  max-width: 540px;
  width: 100%;
  background-color: #fff;
  padding: 80px 50px;
  position: absolute;
  left: 55.81%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .top__after-detail {
    max-width: 440px;
    padding: 60px 35px;
  }
}
@media screen and (max-width: 1024px) {
  .top__after-detail {
    right: -60%;
  }
}
@media screen and (max-width: 767px) {
  .top__after-detail {
    position: static;
    max-width: 90%;
    margin: 0 auto;
    padding: 30px;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}
.top__after-text {
  text-align: justify;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.75em;
  margin-bottom: 44px;
}
@media screen and (max-width: 1280px) {
  .top__after-text {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.top__after-button {
  margin: 0 auto;
}
.top__greet {
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 1280px) {
  .top__greet {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__greet {
    margin-bottom: 50px;
  }
}
.top__greet::before {
  content: "";
  width: 80.7%;
  height: 1170px;
  background: url("./img/top/greet-bg.svg") top left no-repeat;
  background-size: contain;
  position: absolute;
  top: 154px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__greet::before {
    width: 100%;
    height: 485px;
    top: 200px;
    background-size: cover;
  }
}
.top__greet-main {
  max-width: 1180px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 5%;
}
@media screen and (max-width: 1280px) {
  .top__greet-main {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__greet-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__greet-image {
  width: 322px;
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .top__greet-image {
    width: 120px;
    height: 200px;
    margin: 0 auto;
    position: absolute;
    top: 0;
  }
}
.top__greet-image img {
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 767px) {
  .top__greet-image img {
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 767px) {
  .top__greet-title {
    width: 115%;
  }
}
@media screen and (max-width: 520px) {
  .top__greet-title {
    width: 140%;
  }
}
.top__greet-wrap {
  width: 55.93%;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .top__greet-wrap {
    width: 100%;
    position: relative;
    padding-top: 60px;
  }
}
.top__greet-heading {
  font-size: 4.4rem;
  font-weight: 700;
  color: #18324d;
  letter-spacing: 0.1em;
  margin: 42px 0 47px;
}
@media screen and (max-width: 1280px) {
  .top__greet-heading {
    font-size: 4rem;
    margin: 35px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__greet-heading {
    font-size: 26px;
    margin: 25px 0 30px;
    margin-top: 80px;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .top__greet-heading {
    font-size: 23px;
    margin-bottom: 20px;
  }
}
.top__greet-text {
  margin-bottom: 60px;
  padding-right: 70px;
}
@media screen and (max-width: 1280px) {
  .top__greet-text {
    margin-bottom: 50px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__greet-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.top__greet-button {
  margin-bottom: 50px;
  gap: 9.1%;
  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) {
  .top__greet-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.footer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 60px;
  }
}
.footer__contact {
  z-index: 993;
  position: relative;
  width: 100%;
  height: 410px;
  background: url("./img/common/footer-bg.jpg") no-repeat center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1024px) {
  .footer__contact {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact::before {
    z-index: 2;
    content: "";
    width: 90%;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer__contact-person {
  z-index: 1;
  position: absolute;
  width: 500px;
  height: 561px;
  right: 10.8%;
  top: -45px;
}
@media screen and (max-width: 1600px) {
  .footer__contact-person {
    width: 448px;
    height: 502px;
  }
}
@media screen and (max-width: 1440px) {
  .footer__contact-person {
    right: 8%;
  }
}
@media screen and (max-width: 1280px) {
  .footer__contact-person {
    right: 5%;
    top: -30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact-person {
    width: 420px;
    height: 475px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-person {
    right: 5%;
    width: 295px;
    height: 334px;
  }
}
@media screen and (max-width: 520px) {
  .footer__contact-person {
    width: 247px;
    height: 281px;
  }
}
@media screen and (max-width: 360px) {
  .footer__contact-person {
    width: 284px;
    height: 322px;
  }
}
.footer__contact-container {
  z-index: 2;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__contact-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-container {
    padding: 50px 5% 30px;
  }
}
.footer__contact-title {
  z-index: 2;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__contact-title {
    font-size: 2.6rem;
    line-height: 1em;
  }
}
.footer__contact-title .en {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "josefin-sans", sans-serif;
}
@media screen and (max-width: 1024px) {
  .footer__contact-title .en {
    font-size: 1.4rem;
  }
}
.footer__contact-text {
  z-index: 2;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .footer__contact-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-text {
    padding: 0 3%;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 520px) {
  .footer__contact-text {
    margin-bottom: 40px;
  }
}
.footer__contact-social-list {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-list {
    width: 100%;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__contact-social-item {
  width: 300px;
  height: 80px;
  background-color: #202020;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-item {
    width: 100%;
    height: 60px;
  }
}
.footer__contact-social-item--contact {
  position: relative;
  gap: 0;
  overflow: hidden;
}
.footer__contact-social-item--contact::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: #ffde1c;
  position: absolute;
  top: 0;
  left: -45px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__contact-social-item--contact:hover::before {
  width: 150%;
}
.footer__contact-social-icon {
  margin-right: 10px !important;
}
.footer__contact-social-icon--tel {
  margin-bottom: 8px;
}
.footer__contact-social-text .tel {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-text .tel {
    font-size: 20px;
  }
}
.footer__contact-social-text--line {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-text--line {
    font-size: 18px;
  }
}
.footer__contact-social-text--contact {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-text--contact {
    font-size: 12px;
  }
}
.footer__contact-social-row {
  font-size: 1.6rem;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__contact-social-row {
    gap: 5px;
    font-size: 15px;
  }
}
@media screen and (max-width: 360px) {
  .footer__contact-social-row {
    font-size: 13px;
  }
}
.footer__contact-social-row span {
  margin-top: 0;
}
.footer__nav {
  z-index: 994;
  position: sticky;
  width: 100%;
  height: 95px;
  background-color: #fff;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    height: unset;
    padding: 30px 0;
  }
}
.footer__nav-container {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 920px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .footer__nav-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-container {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__nav-logo {
  width: 260px;
  height: 95px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .footer__nav-logo {
    position: static;
    width: 50%;
    height: auto;
    background-color: transparent;
  }
}
@media screen and (max-width: 1440px) {
  .footer__nav-list {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    gap: 20px 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .footer__nav-item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    font-size: 12px;
  }
}
.footer__nav-item:hover {
  opacity: 0.7;
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .footer__nav-item:hover {
    opacity: 1;
    color: #000;
  }
}
.footer__copyright {
  z-index: 995;
  position: sticky;
  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: 100%;
  height: 40px;
  margin-top: 39px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: #dfa98d;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    height: 30px;
    font-size: 10px;
  }
}

.service {
  padding-bottom: 160px;
}
@media screen and (max-width: 1280px) {
  .service {
    padding-bottom: 0;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .service {
    margin-bottom: 60px;
  }
}
.service__wrapper {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1280px) {
  .service__wrapper {
    font-size: 1.4rem;
  }
}
.service__wrapper--triangle::before {
  content: "";
  position: absolute;
  top: 79px;
  left: -2px;
  width: 31.24%;
  height: 594px;
  background: url("./img/service/gradient-top.png") no-repeat center/100% 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__wrapper--triangle::before {
    top: -70px;
    width: 50%;
    height: 185px;
  }
}
.service__wrapper--triangle::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 69%;
  height: 1284px;
  background: url("./img/service/gradient-bottom.png") no-repeat center/100% 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__wrapper--triangle::after {
    width: 70%;
    height: 225px;
  }
}
@media screen and (max-width: 767px) {
  .service__wrapper--nudge {
    padding-bottom: 50px;
  }
}
.service__wrapper--nudge::before {
  position: absolute;
  content: "";
  background: url("./img/service/nudge-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 1363px;
  top: -440px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .service__wrapper--nudge::before {
    height: 1163px;
  }
}
@media screen and (max-width: 767px) {
  .service__wrapper--nudge::before {
    bottom: 0;
    top: -50px;
    height: unset;
    background-image: url("./img/service/nudge-bg-sp.png");
  }
}
.service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-top: 234px;
  gap: 115px;
}
@media screen and (max-width: 1280px) {
  .service__container {
    padding: 234px 3% 0;
  }
}
@media screen and (max-width: 767px) {
  .service__container {
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 120px 5% 0;
  }
}
.service__container--right {
  z-index: 1;
  position: relative;
  padding-top: 110px;
  gap: 190px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .service__container--right {
    gap: 0;
    padding-top: calc(20% + 20px);
  }
}
.service__container--right::before {
  content: "";
  width: 1280px;
  height: 420px;
  background-color: #fff;
  position: absolute;
  top: 86%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .service__container--right::before {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .service__container--right::before {
    width: 100%;
    height: 100%;
  }
}
.service__subtitle {
  font-size: 4.4rem;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  color: #18324d;
  margin-top: 34px;
}
@media screen and (max-width: 1280px) {
  .service__subtitle {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .service__subtitle {
    margin-top: 25px;
    text-align: center;
    font-size: 2.2rem;
  }
}
.service__subtitle--f38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 1280px) {
  .service__subtitle--f38 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .service__subtitle--f38 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 360px) {
  .service__subtitle--f38 {
    font-size: 2rem;
  }
}
.service__description {
  text-align: justify;
  padding-top: 50px;
  width: 590px;
}
@media screen and (max-width: 1280px) {
  .service__description {
    width: 490px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service__description {
    padding-top: 20px;
    width: 100%;
    text-align: left !important;
  }
}
.service__description--wd720 {
  width: 720px;
  line-height: 1.75em;
}
@media screen and (max-width: 1280px) {
  .service__description--wd720 {
    width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .service__description--wd720 {
    width: 100%;
    padding: 20px 5% 0;
    text-align: left;
  }
}
.service__title-wrap--right {
  text-align: right;
}
.service__title-wrap--logo {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .service__title-wrap--logo {
    padding-top: 20px;
  }
}
.service__title-circle {
  position: relative;
}
.service__title-circle::before {
  content: "";
  width: 536px;
  height: 538px;
  background: url("./img/service/title-circle-top.png") no-repeat center/cover;
  position: absolute;
  top: -147px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__title-circle::before {
    left: 50%;
    top: -70px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.service__title-circle::after {
  content: "";
  position: absolute;
  bottom: -110px;
  right: -40px;
  width: 78px;
  height: 128px;
  background: url("./img/service/comma.svg") no-repeat center/100% 100%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 1280px) {
  .service__title-circle::after {
    width: 55px;
    height: 90px;
    bottom: -135px;
    right: -55px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-circle::after {
    bottom: -400px;
    right: unset;
    left: 50%;
    -webkit-transform: scaleX(1) translateX(-50%);
            transform: scaleX(1) translateX(-50%);
  }
}
@media screen and (max-width: 360px) {
  .service__title-circle::after {
    bottom: -440px;
  }
}
.service__title-circle--2::before {
  content: "";
  width: 540px;
  height: 536px;
  background: url("./img/service/title-circle-bottom.png") no-repeat center/cover;
  position: absolute;
  top: -130px;
  left: -110px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__title-circle--2::before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.service__title-circle--2::after {
  content: "";
  position: absolute;
  bottom: -68%;
  left: -40px;
  width: 78px;
  height: 128px;
  background: url("./img/service/comma.svg") no-repeat center/100% 100%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 1280px) {
  .service__title-circle--2::after {
    width: 55px;
    height: 90px;
    bottom: -75%;
    left: -90px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-circle--2::after {
    bottom: -260px;
    right: unset;
    left: 50%;
    -webkit-transform: scaleX(1) translateX(-50%);
            transform: scaleX(1) translateX(-50%);
  }
}
.service__title-circle--no-line {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .service__title-circle--no-line {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .service__title-circle--no-line {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.service__title-circle--no-line::before {
  top: -120px;
}
@media screen and (max-width: 1280px) {
  .service__title-circle--no-line::before {
    left: -70px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-circle--no-line::before {
    left: 50%;
    top: -70px;
  }
}
.service__title-circle--no-line::after {
  content: none;
}
.service__title {
  font: 400 11rem "caliban-std", sans-serif;
  letter-spacing: 0.1em;
  color: #18324d;
  border-bottom: 4px solid #18324d;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .service__title {
    padding-bottom: 10px;
    font-size: 9rem;
  }
}
.service__title::before {
  content: "";
  width: 42px;
  height: 44px;
  background: url("./img/service/title-upper.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -28px;
}
@media screen and (max-width: 1280px) {
  .service__title::before {
    width: 32px;
    height: 34px;
    left: -17px;
  }
}
.service__title::after {
  content: "";
  width: 42px;
  height: 44px;
  background: url("./img/service/title-lower.png") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 16px;
  right: -35px;
}
@media screen and (max-width: 1280px) {
  .service__title::after {
    width: 32px;
    height: 34px;
    right: -17px;
  }
}
.service__title--left {
  position: relative;
  text-align: unset;
}
.service__title--left::before {
  content: "";
  width: 540px;
  height: 695px;
  background: url("./img/service/bubble2.png");
  background-size: cover;
  position: absolute;
  top: -117px;
  left: -107px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .service__title--left::before {
    width: 480px;
    height: 595px;
    top: -113px;
    left: -160px;
  }
}
.service__title--left::after {
  right: unset;
  left: 100%;
}
.service__image-container {
  width: 287px;
  height: 397px;
}
@media screen and (max-width: 1280px) {
  .service__image-container {
    width: 220px;
    height: 297px;
    position: relative;
    left: -50px;
    top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service__image-container {
    width: 176px;
    height: 245px;
    left: unset;
    top: unset;
    margin: 0 auto;
  }
}
@media screen and (max-width: 360px) {
  .service__image-container {
    top: 10px;
  }
}
.service__image-container--banner {
  width: 1280px;
  height: 500px;
  margin: 0 auto;
  padding-top: 75px;
}
@media screen and (max-width: 1280px) {
  .service__image-container--banner {
    left: unset;
    top: -10px;
    width: 100%;
    height: 340px;
    padding: 40px 3% 0;
  }
}
@media screen and (max-width: 767px) {
  .service__image-container--banner {
    top: unset;
    height: 200px;
    padding: 40px 5% 0;
  }
}
.service__title-jp {
  font-size: 6rem;
  color: #18324d;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 270px;
  padding-bottom: 143px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .service__title-jp {
    font-size: 5rem;
    margin-top: 240px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-jp {
    margin-top: 270px;
    padding: 0 5% 100px;
    font-size: 36px;
  }
}
.service__title-jp::after {
  content: "";
  width: 2px;
  height: 80px;
  background-color: #00659f;
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .service__title-jp::after {
    height: 60px;
  }
}
.service__mt {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .service__mt {
    margin-top: 70px;
  }
}
.service__mt--half {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service__mt--half {
    margin-top: 40px;
  }
}
.service__content-wrapper {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 75px;
  padding: 80px 5.2% 75px 0;
  counter-reset: service;
}
@media screen and (max-width: 1280px) {
  .service__content-wrapper {
    padding: 80px 3% 75px;
  }
}
@media screen and (max-width: 767px) {
  .service__content-wrapper {
    padding: 40px 5% 35px;
    gap: 40px;
  }
}
.service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1450px;
  width: 100%;
  counter-increment: service;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1600px) {
  .service__content {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .service__content {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.service__content--left {
  max-width: 1550px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 0;
}
@media screen and (max-width: 1280px) {
  .service__content--left {
    margin-left: -3%;
  }
}
@media screen and (max-width: 767px) {
  .service__content--left {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service__content-img {
  width: 59.38%;
  height: 574px;
}
@media screen and (max-width: 1280px) {
  .service__content-img {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-img {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .service__content-img {
    width: 100%;
    height: 200px;
  }
}
.service__content-img--left {
  width: 55.55%;
}
@media screen and (max-width: 767px) {
  .service__content-img--left {
    width: 100%;
  }
}
.service__content-info {
  text-align: justify;
  width: 34.82%;
  font-size: 1.6rem;
  line-height: 1.75em;
}
@media screen and (max-width: 1024px) {
  .service__content-info {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .service__content-info {
    width: 100%;
  }
}
.service__content-info--left {
  width: 38%;
  padding-right: 5.48%;
}
@media screen and (max-width: 767px) {
  .service__content-info--left {
    padding-right: 0;
    width: 100%;
  }
}
.service__content-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "josefin-sans", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #00659f;
  margin-bottom: 23.5px;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  .service__content-heading {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-heading {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .service__content-heading {
    margin-bottom: 0;
  }
}
.service__content-heading::before {
  content: counter(service, decimal-leading-zero);
  display: block;
}
@media screen and (max-width: 767px) {
  .service__content-heading::before {
    display: unset;
    position: absolute;
  }
}
.service__content-heading::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -31px;
  width: 34px;
  height: 56px;
  background: url("./img/service/comma.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 1280px) {
  .service__content-heading::after {
    width: 24px;
    height: 39px;
    right: -22px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-heading::after {
    width: 17px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .service__content-heading::after {
    right: -70px;
    bottom: -55px;
  }
}
.service__content-title {
  font-size: 6rem;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #18324d;
  margin-bottom: 34px;
}
@media screen and (max-width: 1440px) {
  .service__content-title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1280px) {
  .service__content-title {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .service__content-title {
    padding-left: 85px;
    margin-bottom: 15px;
  }
}
.service__flow-wrapper {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .service__flow-wrapper {
    padding: 0 3% 160px;
  }
}
@media screen and (max-width: 767px) {
  .service__flow-wrapper {
    padding: 0 5% 70px;
  }
}
.service__flow-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__flow-bg {
    top: 50%;
  }
}
.service__flow {
  z-index: 90;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 120px;
  padding-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service__flow {
    -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;
    margin-bottom: 80px;
  }
}
.service__flow--top0 {
  top: 0;
}
.service__flow-item {
  position: relative;
  border: 4px solid #00659f;
  border-radius: 10px;
  background-color: #fff;
  padding: 124px 44px 241px;
  width: 30.51%;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .service__flow-item {
    padding: 87px 31px 169px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .service__flow-item {
    width: 100%;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .service__flow-item:not(:last-child) {
    margin-bottom: 150px;
  }
}
.service__flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -47.5px;
  right: -43.5px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-left: 28px solid #00659f;
  border-bottom: 16px solid transparent;
}
@media screen and (max-width: 767px) {
  .service__flow-item:not(:last-child)::before {
    top: unset;
    right: unset;
    bottom: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-top: 28px solid #00659f;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: unset;
  }
}
.service__flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  right: -50%;
  height: 4px;
  background: url("./img/service/border-line.svg") no-repeat center/auto 4px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__flow-item:not(:last-child)::after {
    top: unset;
    right: unset;
    bottom: -50px;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    width: 100px;
  }
}
.service__flow-item--pb60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .service__flow-item--pb60 {
    padding-bottom: 40px;
  }
}
.service__item-heading {
  position: absolute;
  top: -78px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 251px;
  height: 173px;
  background: url("./img/service/laptop.svg") no-repeat center/100% 100%;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0;
  color: #00659f;
  padding-top: 45px;
}
@media screen and (max-width: 1024px) {
  .service__item-heading {
    width: 176px;
    height: 121px;
    font-size: 2rem;
    padding-top: 32px;
  }
}
.service__item-icon {
  position: absolute;
  width: 220px;
  height: 229px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .service__item-icon {
    width: 154px;
    height: 160px;
  }
}
.service__item-icon--2 {
  width: 280px;
  height: 271px;
  bottom: -35px;
  left: 60%;
}
@media screen and (max-width: 1024px) {
  .service__item-icon--2 {
    width: 196px;
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-icon--2 {
    bottom: 0;
    left: 55%;
  }
}
.service__item-icon--3 {
  width: 250px;
  height: 248px;
}
@media screen and (max-width: 1024px) {
  .service__item-icon--3 {
    width: 175px;
    height: 174px;
  }
}
.service__after-wrapper {
  max-width: 725px;
  width: 100%;
  margin: 0 auto;
  text-align: justify;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  line-height: 1.75em;
}
@media screen and (max-width: 1280px) {
  .service__after-wrapper {
    font-size: 1.4rem;
  }
}
.service__after-subheading {
  font-size: 4.4rem;
  line-height: 1.2045454545em;
  letter-spacing: 0.1em;
  color: #18324d;
  text-align: center;
  margin-top: 34px;
}
@media screen and (max-width: 1280px) {
  .service__after-subheading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .service__after-subheading {
    font-size: 28px;
    margin-top: 40px;
  }
}
.service__after-block-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .service__after-block-container {
    gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 50px auto;
  }
}
.service__after-block-container::before {
  content: "x";
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "josefin-sans", sans-serif;
  font-size: 15.8rem;
  font-weight: 300;
  color: #18324d;
}
@media screen and (max-width: 1280px) {
  .service__after-block-container::before {
    font-size: 11.2rem;
  }
}
@media screen and (max-width: 767px) {
  .service__after-block-container::before {
    top: 50%;
    font-size: 80px;
  }
}
@supports (-webkit-touch-callout: none) {
  .service__after-block-container::before {
    top: 46%;
  }
}
.service__after-block {
  position: relative;
  left: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #18324d;
}
@media screen and (max-width: 1280px) {
  .service__after-block {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .service__after-block {
    left: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 26px;
  }
}
.service__after-block::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 329px;
  height: 329px;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .service__after-block::before {
    width: 296px;
    height: 296px;
  }
}
@media screen and (max-width: 767px) {
  .service__after-block::before {
    top: 50%;
    width: 200px;
    height: 200px;
  }
}
.service__after-block--img {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .service__after-block--img {
    left: unset;
    padding-bottom: 20px;
  }
}
.service__after-logo {
  width: 265px;
  height: 321px;
}
@media screen and (max-width: 1280px) {
  .service__after-logo {
    width: 247px;
    height: 298px;
  }
}
@media screen and (max-width: 767px) {
  .service__after-logo {
    width: 124px;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .service__after-logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.service__service {
  position: relative;
  padding: 720px 0 70px;
  margin-top: -555px;
}
@media screen and (max-width: 1280px) {
  .service__service {
    margin-top: -715px;
  }
}
@media screen and (max-width: 1200px) {
  .service__service {
    margin-top: -645px;
    padding-top: 620px;
  }
}
@media screen and (max-width: 767px) {
  .service__service {
    margin-top: -140px;
    padding: 200px 5% 50px;
  }
}
.service__service::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("./img/service/office-bg.png") center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

main {
  overflow: hidden;
}

@media screen and (max-width: 1280px) {
  .lower-lp {
    margin-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp {
    margin-top: 170px;
  }
}
@media screen and (max-width: 520px) {
  .lower-lp {
    margin-top: 120px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp {
    margin-top: 80px;
  }
}
.lower-lp__content-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 112px auto 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 110px;
  padding: 0 130px 0 80px;
}
@media screen and (max-width: 1440px) {
  .lower-lp__content-wrap {
    padding: 0 130px;
  }
}
@media screen and (max-width: 1280px) {
  .lower-lp__content-wrap {
    padding: 0 5% !important;
    gap: 70px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 50px auto;
  }
}
.lower-lp__content-wrap--w100 {
  max-width: unset;
  -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;
  gap: 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #f2f9fd;
  padding-bottom: 80px !important;
}
@media screen and (max-width: 1280px) {
  .lower-lp__content-wrap--w100 {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__content-wrap--w100 {
    padding-bottom: 0 !important;
  }
}
.lower-lp__content-wrap--w100::before {
  content: "";
  position: absolute;
  width: 31.25%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("./img/common/gradient-top.svg") no-repeat;
  background-size: contain;
  z-index: 1;
}
.lower-lp__content-wrap--w100::after {
  content: "";
  position: absolute;
  width: 68.75%;
  height: 100%;
  top: 0;
  right: 0;
  background: url("./img/common/gradient-bottom.svg") no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 1;
}
.lower-lp__content-wrap--w1180 {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  gap: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lower-lp__content-wrap--w1180 {
    max-width: 100%;
    padding: 0 5%;
  }
}
.lower-lp__content-wrap--pick-up {
  max-width: unset;
  overflow: hidden;
  padding: 0;
  background-image: url("./img/common/pickup-bg.jpg");
  background-size: cover;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .lower-lp__content-wrap--pick-up {
    margin: 0 auto 60px;
  }
}
.lower-lp__heading-wrap {
  min-width: 526px;
  height: 526px;
  position: relative;
  padding: 120px 26px 0 40px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__heading-wrap {
    min-width: 460px;
    padding: 90px 26px 0 40px;
    height: unset;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__heading-wrap {
    padding: 90px 26px 0 40px;
  }
}
.lower-lp__heading-desc-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
  padding-top: 80px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__heading-desc-wrap {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__heading-desc-wrap {
    padding-top: 0;
    gap: 30px;
    text-align: center;
  }
}
.lower-lp__jp-para {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lower-lp__jp-para {
    font-size: 1.3rem;
  }
}
.lower-lp__content-title-wrap {
  max-width: 1180px;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .lower-lp__content-title-wrap {
    margin-bottom: 30px;
  }
}
.lower-lp__content-title-wrap--mb0 {
  margin-bottom: 0;
}
.lower-lp__content-title-wrap--mt80 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lower-lp__content-title-wrap--mt80 {
    margin-top: 40px;
  }
}
.lower-lp__content-title {
  width: 100%;
  height: 80px;
  background-color: #dfa98d;
  color: #fff;
  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;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower-lp__content-title {
    height: 50px;
    font-size: 2.3rem;
  }
}
.lower-lp__article-wrap {
  max-width: 1440px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 80px;
  position: relative;
  margin: 120px 0;
}
@media screen and (max-width: 1280px) {
  .lower-lp__article-wrap {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__article-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin: 60px 0;
  }
}
@media screen and (max-width: 375px) {
  .lower-lp__article-wrap {
    margin: 30px 0;
  }
}
.lower-lp__article-wrap--flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .lower-lp__article-wrap--flex-end {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__article-wrap--flex-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lower-lp__article-img {
  width: 751px;
  height: 501px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lower-lp__article-img {
    width: 100%;
    height: unset;
  }
}
.lower-lp__article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-lp__article-desc-wrap {
  width: 50%;
  max-width: 720px;
  min-height: 452px;
  background-color: #fff;
  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: absolute;
  top: 100px;
  right: 0;
  padding: 0 130px 0 60px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__article-desc-wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__article-desc-wrap {
    position: relative;
    width: 100%;
    padding: 30px;
    height: unset;
    top: unset;
  }
}
@media screen and (max-width: 375px) {
  .lower-lp__article-desc-wrap {
    padding: 20px;
  }
}
.lower-lp__article-desc-wrap--left {
  right: unset;
  left: 0;
  padding: 60px 50px 40px 130px;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  .lower-lp__article-desc-wrap--left {
    padding: 60px 50px 40px;
  }
}
@media screen and (max-width: 1280px) {
  .lower-lp__article-desc-wrap--left {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__article-desc-wrap--left {
    min-height: unset;
    padding: 0;
    background-color: transparent;
  }
}
.lower-lp__article-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00659f;
  margin-bottom: 44px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower-lp__article-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
.lower-lp__article-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #00659f;
  bottom: -20px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lower-lp__article-title::after {
    bottom: -10px;
  }
}
.lower-lp__flow-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00659f;
  border-bottom: 2px solid #00659f;
  padding: 0 0 15px 20px;
  margin-bottom: 65px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .lower-lp__flow-title {
    margin-bottom: 30px;
  }
}
.lower-lp__flow-title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 50%;
  background-color: #00659f;
  top: calc(50% - 8px);
  left: 0;
}
.lower-lp__flow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  position: relative;
}
.lower-lp__flow-wrap::before {
  content: "";
  position: absolute;
  width: 60%;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 4px dotted #00659f;
}
@media screen and (max-width: 1280px) {
  .lower-lp__flow-wrap {
    gap: 30px;
  }
}
.lower-lp__item-title {
  font-size: 3rem;
  font-weight: 700;
  color: #00659f;
}
.lower-lp__flow-text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.lower-lp__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  margin-top: 110px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__list-wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__list-wrap {
    gap: 60px;
    margin-top: 50px;
  }
}
.lower-lp__list-item {
  font-size: 1.6rem;
  line-height: 1.2em;
  padding-left: 17px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower-lp__list-item {
    font-size: 1.3rem;
  }
}
.lower-lp__list-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00659f;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.lower-lp__list-item--check::before {
  content: "✔";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  color: #00659f;
  background-color: transparent;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  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;
}
.lower-lp__table-info-wrap {
  margin: 80px 0;
}
@media screen and (max-width: 1280px) {
  .lower-lp__table-info-wrap {
    margin: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__table-info-wrap {
    margin: 40px 0;
  }
}
.lower-lp__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f3f3eb;
  border-top: 5px solid #fff;
}
@media screen and (max-width: 767px) {
  .lower-lp__table-row {
    border-width: 3px;
  }
}
.lower-lp__table-row--h250 {
  height: 250px;
}
@media screen and (max-width: 767px) {
  .lower-lp__table-row--h250 {
    height: unset;
    min-height: 150px;
  }
}
.lower-lp__row-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #dfa98d;
  color: #fff;
  max-width: 300px;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lower-lp__row-title {
    padding: 10px;
    font-size: 1.3rem;
    max-width: 120px;
  }
}
.lower-lp__row-desc {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lower-lp__row-desc {
    padding: 10px;
    font-size: 1.3rem;
  }
}
.lower-lp__FAQ-container {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-container {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__FAQ-container {
    margin-bottom: 20px;
  }
}
.lower-lp__FAQ-wrap {
  background-color: #d9eef8;
  border-radius: 10px;
  padding: 20px 50px 40px 44px;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-wrap {
    border-radius: 5px;
    padding: 10px 25px 20px 20px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__FAQ-wrap {
    border-radius: 5px;
    padding: 15px;
  }
}
.lower-lp__FAQ-qestion {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 30px 270px 30px 52px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-qestion {
    font-size: 1.3rem;
    padding: 15px 80px 20px 40px;
  }
}
@media screen and (max-width: 375px) {
  .lower-lp__FAQ-qestion {
    padding: 15px 15px 15px 35px;
  }
}
.lower-lp__FAQ-qestion::before {
  content: "Q";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-family: "josefin-sans", sans-serif;
  font-size: 4.5rem;
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-qestion::before {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 375px) {
  .lower-lp__FAQ-qestion::before {
    font-size: 2.6rem;
    top: 30px;
  }
}
.lower-lp__FAQ-answer {
  text-align: justify;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  background-color: #fff;
  padding: 20px 150px 20px 80px;
  border-radius: 43.5px;
  position: relative;
  margin-left: 90px;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-answer {
    font-size: 1.3rem;
    margin-left: 0;
    padding: 20px 20px 20px 60px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__FAQ-answer {
    padding: 15px 15px 15px 50px;
  }
}
.lower-lp__FAQ-answer::before {
  content: "A";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  font-family: "josefin-sans", sans-serif;
  font-size: 4.5rem;
  color: #00659f;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-answer::before {
    font-size: 2.8rem;
    left: 20px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__FAQ-answer::before {
    font-size: 2.6rem;
    top: 32px;
    left: 25px;
  }
}
.lower-lp__pick-up-wrap {
  max-width: 1440px;
  width: 100%;
  padding: 60px 130px 70px 410px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .lower-lp__pick-up-wrap {
    padding: 60px 0 70px 300px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-wrap {
    padding: 30px 0;
  }
}
.lower-lp__pick-up-wrap::before {
  content: "";
  position: absolute;
  width: 343px;
  height: 100%;
  background: url("./img/company/pick-up.png") no-repeat;
  top: 0;
  left: 46px;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__pick-up-wrap::before {
    width: 280px;
    left: 20px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-wrap::before {
    margin-top: 30px;
    left: 0;
    width: 140px;
    height: 110px;
    background-size: cover;
  }
}
@media screen and (max-width: 520px) {
  .lower-lp__pick-up-wrap::before {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__wrap-sp {
    width: 100%;
    padding-left: 160px;
  }
}
@media screen and (max-width: 520px) {
  .lower-lp__wrap-sp {
    padding-left: 140px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__wrap-sp {
    padding-left: 120px;
  }
}
.lower-lp__pick-up-title {
  font: 700 6rem "josefin-sans", sans-serif;
  color: #18324d;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 520px) {
  .lower-lp__pick-up-title {
    font-size: 3rem;
  }
}
.lower-lp__pick-up-title::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 4px;
  background-color: #18324d;
  bottom: -4px;
  left: 5px;
}
.lower-lp__pick-up-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1280px) {
  .lower-lp__pick-up-desc {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-desc {
    margin-top: 30px;
  }
}
@media screen and (max-width: 360px) {
  .lower-lp__pick-up-desc {
    margin-top: 20px;
  }
}
.lower-lp__pick-up-label {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #18324d;
  min-width: 310px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-label {
    font-size: 2rem;
    min-width: unset;
  }
}
@media screen and (max-width: 520px) {
  .lower-lp__pick-up-label {
    font-size: 1.8rem;
  }
}
.lower-lp__pick-up-detail {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #18324d;
  max-width: 590px;
  padding: 24px 60px 0 20px;
}
@media screen and (max-width: 1280px) {
  .lower-lp__pick-up-detail {
    padding: 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .lower-lp__pick-up-detail {
    max-width: unset;
    padding: 0;
    font-size: 1.3rem;
  }
}
.lower-lp__FAQ-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
.lower-lp__FAQ-table td {
  border: 1px solid #000;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .lower-lp__FAQ-table td {
    padding: 4px;
  }
}

.contact {
  margin: 115px 0 90px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin: 50px 0 70px;
  }
}
.contact__heading {
  width: 100%;
  height: 80px;
  background-color: #0278bd;
  color: #fff;
  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;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    height: auto;
    font-size: 18px;
    padding: 10px;
    text-align: center;
  }
}
.contact__wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .contact__wrap {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    padding: 0 5%;
  }
}
.contact__line-text, .contact__privacy-disc-item, .contact__privacy-text, .contact__phone-sub, .contact__form-container, .contact__form-select, .contact__form-checkbox-label {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .contact__line-text, .contact__privacy-disc-item, .contact__privacy-text, .contact__phone-sub, .contact__form-container, .contact__form-select, .contact__form-checkbox-label {
    font-size: 14px;
  }
}
.contact__text {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 13px;
  }
}
.contact__item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact__item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.contact__line {
  display: block;
  max-width: 450px;
  width: 100%;
  background-color: #06c755;
  text-align: center;
  margin: 50px auto 0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact__line {
    margin-top: 25px;
  }
}
.contact__line-text, .contact__line-main, .contact__phone-num, .contact__phone-sub {
  display: block;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}
.contact__line-text {
  text-align: center;
  border-bottom: 1px solid #fff;
  padding: 5px 0;
}
.contact__line-main {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  padding: 5px 0 15px;
}
@media screen and (max-width: 767px) {
  .contact__line-main {
    font-size: 16px;
  }
}
.contact__line-main::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("./img/icons/line.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 11px;
  left: -40px;
}
.contact__phone {
  display: block;
  max-width: 450px;
  width: 100%;
  margin: 50px auto;
  background-color: #4caae0;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact__phone {
    margin-top: 25px;
  }
}
.contact__phone-wrap {
  padding: 10px 0 15px;
}
.contact__phone-sub {
  padding: 5px 0;
  text-align: center;
}
.contact__phone-sub--border {
  border-bottom: 1px solid #fff;
}
.contact__phone-num {
  font-size: 2.4rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .contact__phone-num {
    font-size: 20px;
  }
}
.contact__phone-num::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("./img/icons/phone.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .contact__phone-num::before {
    top: 3px;
  }
}
.contact__form {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin: 25px 0;
  }
}
.contact__form-row {
  border: 1px solid #4caae0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact__form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__form-row:not(:last-child) {
  border-bottom: 0;
}
.contact__form-label {
  width: 30%;
  padding: 0 30px;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #225f9c;
  color: #fff;
  letter-spacing: 0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}
.contact__form-required {
  background-color: #4caae0;
  border-radius: 10px;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .contact__form-required {
    border-radius: 5px;
    padding: 5px 15px;
  }
}
.contact__form-container {
  position: relative;
  width: 70%;
  padding: 35px 30px;
  background-color: #f2f9fd;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact__form-container {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}
.contact__form-field {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #4caae0;
  border-radius: 5px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact__form-field {
    height: 40px;
    font-size: 16px;
  }
}
.contact__form-field--w30 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contact__form-field--w30 {
    width: 100%;
  }
}
.contact__form-field:focus, .contact__form-textarea:focus, .contact__form-select:focus {
  outline: none;
}
.contact__form-field.errorInput, .contact__form-textarea.errorInput, .contact__form-select.errorInput {
  border: 1px solid #f00 !important;
  background-color: #ffebeb !important;
}
.contact__form-select {
  width: 30%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #4caae0;
  padding: 0 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__form-select {
    width: 100%;
  }
}
.contact__form-select--small {
  width: 70px;
  margin-right: 3px;
}
.contact__form-select--medium {
  width: 92px;
}
.contact__form-checkbox {
  accent-color: #225f9c;
}
.contact__form-checkbox-label {
  padding-left: 10px;
}
.contact__form-textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: 1px solid #4caae0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact__form-textarea {
    min-height: 80px;
    font-size: 16px;
  }
}
.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact__buttons {
    margin-top: 20px;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.contact__form-button {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #225f9c;
  width: 200px;
  height: 70px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  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) {
  .contact__form-button {
    font-size: 16px;
    height: 50px;
    width: 100%;
  }
}
.contact__form-button:hover {
  background-color: #4caae0;
}
.contact__form-button--back {
  background-color: #666;
}
.contact__form-button--back:hover {
  background-color: rgba(102, 102, 102, 0.8);
}
.contact__privacy {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    margin-top: 25px;
  }
}
.contact__privacy-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact__privacy-item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.contact__privacy-text {
  text-align: justify;
  letter-spacing: 0.1em;
}
.contact__privacy-disc {
  padding-left: 40px;
  margin-top: 20px;
}
.contact__privacy-disc-item {
  list-style: disc;
}
.contact__complete-text {
  display: block;
  width: 100%;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .contact__complete-text {
    font-size: 13px;
    margin-top: 0;
  }
}
.contact__complete-button {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__complete-button {
    margin: 40px auto 0;
  }
}
.contact__error-message {
  display: block;
  color: #f00;
  font-size: 1.3rem;
  margin: 10px 0 -20px 0;
}
@media screen and (max-width: 767px) {
  .contact__error-message {
    font-size: 12px;
    margin: 5px 0 -5px 0;
  }
}

.sticky-footer {
  z-index: 997;
  position: fixed;
  bottom: -61px;
  left: 0;
  width: 100%;
  height: 60px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sticky-footer.active {
  bottom: 0;
}
.sticky-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sticky-footer .footer__contact-social-item {
  width: 28%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sticky-footer .footer__contact-social-item--contact {
  gap: 0;
  width: 44%;
}
.sticky-footer .footer__contact-social-item--contact .header__social-box--line {
  gap: 3px;
}
.sticky-footer .footer__contact-social-text .tel {
  font-size: 12px;
}
.sticky-footer .header__social-text {
  font-size: 10px !important;
}
.sticky-footer .footer__contact-social-icon {
  width: 14px;
  height: 14px;
  margin-right: 0 !important;
}
.sticky-footer .footer__contact-social-icon--tel {
  margin-bottom: 0;
}
.sticky-footer .footer__contact-social-row {
  font-size: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 360px) {
  .sticky-footer .footer__contact-social-row {
    font-size: 6px;
  }
}
.sticky-footer .header__social-contact span {
  margin-top: 0;
  font-size: 10px;
}
.sticky-footer .header__social-icon--contact {
  width: 18px;
  height: 12px;
  margin-right: 0;
}

.breadcrumbs {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.6rem;
  position: absolute;
  bottom: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    position: static;
    margin-top: 20px;
    padding: 0 5%;
    font-size: 14px;
  }
}
.breadcrumbs__item {
  padding-right: 30px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.breadcrumbs__item--link {
  position: relative;
}
.breadcrumbs__item--link::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 100%;
  background-image: url("./img/icons/caret.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  -webkit-transform: rotate(-92deg);
          transform: rotate(-92deg);
}
.breadcrumbs__item--link:hover {
  color: #00659f;
}

.white {
  color: #fff;
}

.white-bg {
  background: #fff;
}

.black {
  color: #000;
}

.black-bg {
  background: #000;
}

.primary {
  color: #00659f;
}

.primary-bg {
  background: #00659f;
}

.overflow {
  overflow: hidden;
}

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

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

.tablet {
  display: none;
}
@media screen and (max-width: 1280px) {
  .tablet {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tablet {
    display: none;
  }
}

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

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.text-left {
  text-align: left;
}

.hidden {
  display: none;
}

.anchor {
  margin-top: -120px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: -84px;
    padding-top: 84px;
  }
}
