@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.anim {
  backface-visibility: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1.75s !important;
}

.anim--delay {
  animation-delay: 1s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1.75s ease 0s 1 alternate forwards;
}

.mainHeader {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #73CDD5;
  padding: 0 2.2222222222rem;
  animation-delay: 1s !important;
}
@media all and (max-width: 1280px) {
  .mainHeader {
    padding-right: 0;
  }
}
@media all and (max-width: 1024px) {
  .mainHeader {
    padding-left: 3.3333333333rem;
    padding-right: 3.3333333333rem;
    position: fixed;
    z-index: 90;
  }
}
@media all and (max-width: 640px) {
  .mainHeader {
    padding-left: 1.1111111111rem;
    padding-right: 1.1111111111rem;
  }
}
.mainHeader.active {
  z-index: 990;
}
.mainHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.mainHeader__logo {
  width: 8rem;
}
@media all and (max-width: 1280px) {
  .mainHeader__logo {
    width: 6.1111111111rem;
  }
}
@media all and (max-width: 1024px) {
  .mainHeader__logo {
    width: 5.3333333333rem;
  }
}
.mainHeader__logo img {
  width: 100%;
}
.mainHeader__right {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .mainHeader__right {
    gap: 1.6666666667rem;
    height: 3.8888888889rem;
  }
}
.mainHeader__contactBT {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(0deg, #AA1A2F 0%, #CF4358 100%);
  font-size: 1.1111111111rem;
  font-weight: bold;
  color: #fff;
  padding: 0.4em 1.5em;
  border-radius: 3em;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .mainHeader__contactBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainHeader__contactBT:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.mainHeader__contactBT:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (min-width: 1025px) {
  .mainHeader__contactBT {
    display: none;
  }
}

.spBT {
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  width: 2.2222222222rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
  z-index: 999;
  background-color: transparent;
}
@media all and (min-width: 1025px) {
  .spBT {
    display: none;
  }
}
.spBT__barWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 1.8333333333rem;
  height: 0.1111111111rem;
  translate: 0 -30%;
}
.spBT__barWrap .bar {
  height: 0.1111111111rem;
  background-color: #fff;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap .bar:hover {
  text-decoration: none;
}
.spBT__barWrap .bar:first-child {
  translate: 0 -0.5555555556rem;
}
.spBT__barWrap .bar:last-child {
  translate: 0 0.5555555556rem;
}
.spBT.active .spBT__barWrap .bar {
  background-color: #1E788F;
}
.spBT.active .spBT__barWrap .bar:first-child {
  translate: 0 0;
  rotate: 45deg;
}
.spBT.active .spBT__barWrap .bar:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap .bar:last-child {
  translate: 0 0;
  rotate: -45deg;
}

@media all and (max-width: 1024px) {
  .gNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 24.3333333333rem;
    height: 100vh;
    z-index: 990;
    transform: translateX(102%);
    transition: transform 0.4s ease 0s;
    background-color: #fff;
  }
  .gNav.active {
    transform: translateX(0%);
  }
  .gNav__inner {
    position: absolute;
    top: 4.4444444444rem;
    left: 0;
    height: calc(100vh - 4.4444444444rem);
    width: 100%;
    z-index: 10;
    padding: 0;
    overflow: auto;
  }
}
@media all and (max-width: 640px) {
  .gNav {
    width: 19.4444444444rem;
  }
}
.gNav__contentWrap {
  display: flex;
  gap: 1.6666666667rem;
}
@media all and (max-width: 1024px) {
  .gNav__contentWrap {
    gap: 2.2222222222rem;
    flex-direction: column-reverse;
    padding-bottom: 2.7777777778rem;
  }
}
.gNav__logo {
  width: 8rem;
  margin-left: 2.2222222222rem;
}
@media all and (min-width: 1025px) {
  .gNav__logo {
    display: none;
  }
}
.gNav__mainNav {
  display: flex;
}
@media all and (max-width: 1024px) {
  .gNav__mainNav {
    width: 100%;
    flex-direction: column;
  }
}
.gNav__mainNav a {
  text-decoration: none;
}
@media all and (min-width: 1025px) {
  .gNav__mainNav__item.top {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__item {
    border-top: 0.0555555556rem solid #1E788F;
  }
  .gNav__mainNav__item:last-child {
    border-bottom: 0.0555555556rem solid #1E788F;
  }
}
.gNav__mainNav__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.5555555556rem;
  color: #fff;
  padding: 0 1.6666666667rem;
  font-size: 1.1111111111rem;
  font-weight: bold;
  line-height: 1.2;
  transition: all 0.2s ease 0s;
}
.gNav__mainNav__item > a:hover {
  text-decoration: none;
}
@media (min-width: 1025px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (min-width: 1025px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    background-color: #1E788F;
  }
}
@media all and (min-width: 1025px) {
  .gNav__mainNav__item > a:active {
    background-color: #1E788F;
  }
}
@media (max-width: 1160px) {
  .gNav__mainNav__item > a {
    padding: 0 1.1111111111rem;
  }
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__item > a {
    padding: 1rem 2.2222222222rem;
    height: auto;
    color: #1E788F;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (max-width: 1024px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    background-color: #1E788F;
    color: #fff;
  }
  .gNav__mainNav__item > a:hover path {
    fill: #fff;
  }
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__item > a:active {
    background-color: #1E788F;
    color: #fff;
  }
  .gNav__mainNav__item > a:active path {
    fill: #fff;
  }
}
@media all and (min-width: 1025px) {
  .gNav__mainNav__item > a .arrow {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__item > a .arrow {
    width: 1rem;
  }
  .gNav__mainNav__item > a .arrow svg {
    display: block;
    width: 100%;
  }
  .gNav__mainNav__item > a .arrow path {
    transition: all 0.2s ease 0s;
  }
  .gNav__mainNav__item > a .arrow path:hover {
    text-decoration: none;
  }
}
.gNav__btWrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.5555555556rem;
  color: #fff;
  padding: 0 2rem;
  font-size: 1.1111111111rem;
  font-weight: bold;
  line-height: 1.2;
  background: linear-gradient(0deg, #AA1A2F 0%, #CF4358 100%);
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .gNav__btWrap a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .gNav__btWrap a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.gNav__btWrap a:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 1280px) {
  .gNav__btWrap a {
    padding: 0 1.6666666667rem;
  }
}
@media all and (max-width: 1024px) {
  .gNav__btWrap a {
    width: 16.6666666667rem;
    margin: 0 auto;
    height: 5rem;
    border-radius: 5em;
    font-size: 1.3333333333rem;
  }
  .gNav__btWrap a:after {
    content: "を申し込む";
  }
}

html {
  font-size: 18px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 640px) {
  html {
    font-size: 4.1859vw;
  }
}

body {
  font-size: 18px;
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #414141;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 640px) {
  body {
    font-size: 0.8888888889rem;
  }
}

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

img {
  height: auto;
}

button,
select {
  color: #414141;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.o_tab {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

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

@media all and (min-width: 641px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1280px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 1024px) {
  .o_tab {
    display: block !important;
  }
}
@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.br {
  display: none;
}
@media all and (min-width: 1025px) {
  .br.pc {
    display: inline;
  }
}
@media all and (max-width: 1280px) and (min-width: 1025px) {
  .br.pc2 {
    display: inline;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .br.tab {
    display: inline;
  }
}
@media all and (max-width: 640px) {
  .br.sp {
    display: inline;
  }
}

.serif {
  font-family: "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Yu Mincho", serif;
}

.container {
  padding: 6.6666666667rem 0 0;
  position: relative;
}
@media all and (max-width: 1024px) {
  .container {
    padding: 5.5555555556rem 0 0;
  }
}
@media all and (max-width: 640px) {
  .container {
    padding: 3.8888888889rem 0 0;
  }
}

.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1400px;
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .inner {
    padding-left: 3.3333333333rem;
    padding-right: 3.3333333333rem;
  }
}
@media all and (max-width: 640px) {
  .inner {
    padding-left: 1.1111111111rem;
    padding-right: 1.1111111111rem;
  }
}

.inner-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

@media all and (max-width: 640px) {
  .sp-flex-end {
    display: flex;
    justify-content: flex-end;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
}

.commonHeading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-weight: bold;
  gap: 1.1111111111rem;
  line-height: 1;
}
.commonHeading .en {
  font-size: 0.8888888889rem;
}
.commonHeading .ja {
  font-size: 2rem;
}
@media all and (max-width: 640px) {
  .commonHeading .ja {
    font-size: 1.7777777778rem;
  }
}
.commonHeading .bar {
  width: 100%;
  height: 0.0555555556rem;
  background-color: currentColor;
  position: relative;
}
.commonHeading .bar:before {
  content: "";
  height: 0.1666666667rem;
  width: 8.3333333333rem;
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: currentColor;
}

.cvBT {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 33.3333333333rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.7777777778rem;
  height: 6.9444444444rem;
  border-radius: 6.9444444444rem;
  padding: 0.5em;
  gap: 1em;
  background: linear-gradient(0deg, #AA1A2F 0%, #CF4358 100%);
}
@media (hover: none) {
  .cvBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .cvBT:hover {
    text-decoration: none;
  }
  .cvBT:hover .arrow {
    translate: 20%;
  }
}
.cvBT:active {
  text-decoration: none;
}
.cvBT:active .arrow {
  translate: 20%;
}
@media all and (max-width: 1024px) {
  .cvBT {
    height: 6.1111111111rem;
  }
}
@media all and (max-width: 640px) {
  .cvBT {
    font-size: 1.3333333333rem;
    height: 5rem;
  }
}
.cvBT .arrow {
  transition: all 0.2s ease 0s;
  width: 1.15em;
}
.cvBT .arrow:hover {
  text-decoration: none;
}
.cvBT .arrow img {
  width: 100%;
}

.top-fv {
  color: #fff;
  background: linear-gradient(180deg, #1E788F 0%, #195767 100%);
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.top-fv__inner {
  max-width: 77.7777777778rem;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1280px) {
  .top-fv__inner {
    padding: 0 1.1111111111rem;
  }
}
@media all and (max-width: 1024px) {
  .top-fv__inner {
    padding: 0 7.813vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__inner {
    padding: 0 1.6666666667rem;
  }
}
.top-fv__content-wrap {
  max-width: 66.6666666667rem;
  margin: 0 auto;
  padding: 2.7777777778rem 0;
}
@media all and (max-width: 1024px) {
  .top-fv__content-wrap {
    padding: 3.906vw 0 7.813vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__content-wrap {
    padding: 1.1111111111rem 0 2.2222222222rem;
  }
}
.top-fv__header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 8;
}
@media (min-width: 1321px) {
  .top-fv__header {
    width: calc(100% + 52px);
  }
}
@media all and (max-width: 1024px) {
  .top-fv__header {
    align-items: flex-end;
    margin-bottom: 3.906vw;
    font-size: 2.083vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8888888889rem;
    margin-bottom: 0;
  }
}
.top-fv__header__headingWrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.5em;
}
@media all and (max-width: 1024px) {
  .top-fv__header__headingWrap {
    gap: 1.5em;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header__headingWrap {
    gap: 0.65em;
  }
}
.top-fv__header__heading {
  display: flex;
  align-items: center;
  gap: 1.1111111111rem;
}
@media (max-width: 1260px) {
  .top-fv__header__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5555555556rem;
    margin-bottom: 2.2222222222rem;
  }
}
@media all and (max-width: 1024px) {
  .top-fv__header__heading {
    margin-bottom: 0;
    gap: 0.5em;
  }
}
.top-fv__header__heading .label {
  font-size: 1.3333333333rem;
  background-color: #fff;
  color: #1E788F;
  padding: 0.2em 0.5em;
  flex-shrink: 0;
}
@media all and (max-width: 1024px) {
  .top-fv__header__heading .label {
    font-size: 2.344vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header__heading .label {
    font-size: 1rem;
  }
}
.top-fv__header__heading .main {
  font-size: 2rem;
}
@media all and (max-width: 1024px) {
  .top-fv__header__heading .main {
    font-size: 4.3vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header__heading .main {
    font-size: 1.7777777778rem;
  }
  .top-fv__header__heading .main br.o_tab {
    display: none !important;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header__empowered {
    line-height: 1.6;
  }
}
.top-fv__header__label {
  width: 9.2222222222rem;
}
.top-fv__header__label img {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .top-fv__header__label {
    width: 18vw;
    margin-bottom: 1vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__header__label {
    width: 6.6666666667rem;
    margin-left: 0.5555555556rem;
  }
}
.top-fv__img {
  position: absolute;
  width: 700px;
  bottom: 0;
  right: 0;
}
@media all and (max-width: 1280px) {
  .top-fv__img {
    width: 62%;
    right: -10%;
  }
}
@media all and (max-width: 1024px) {
  .top-fv__img {
    width: 50%;
    right: 0;
  }
}
@media all and (max-width: 640px) {
  .top-fv__img {
    position: relative;
    margin-left: auto;
    width: 19.8888888889rem;
    right: -1.6666666667rem;
    margin-top: -6.4444444444rem;
    margin-bottom: 1.6666666667rem;
  }
}
.top-fv__img__person {
  width: 51.71%;
  margin-left: 70px;
  position: relative;
  z-index: 4;
}
@media all and (max-width: 1024px) {
  .top-fv__img__person {
    width: 30.65vw;
    left: 21%;
    margin-left: 0;
  }
}
@media all and (max-width: 640px) {
  .top-fv__img__person {
    width: 11.9444444444rem;
    left: auto;
    margin-left: auto;
    margin-right: 1.1111111111rem;
  }
}
.top-fv__img__bg {
  position: absolute;
  width: 100%;
  right: 0;
  top: 15%;
}
.top-fv__img__bg:before {
  content: "";
  position: absolute;
  width: 110%;
  height: 100%;
  background-color: #195767;
  bottom: 0;
  right: 0;
  translate: -2% -13%;
  display: block;
}
@media all and (max-width: 1024px) {
  .top-fv__img__bg:before {
    width: 70.63vw;
    height: 21.12vw;
    translate: -35% -46%;
  }
}
@media all and (max-width: 640px) {
  .top-fv__img__bg:before {
    width: 19.8888888889rem;
    height: 7.4444444444rem;
    translate: -12% -26%;
  }
}
.top-fv__img__bg img {
  position: relative;
  z-index: 3;
}
@media all and (max-width: 1024px) {
  .top-fv__img__bg {
    width: 100%;
    aspect-ratio: 384/208;
    top: auto;
    bottom: 0;
  }
  .top-fv__img__bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media all and (max-width: 640px) {
  .top-fv__img__bg {
    width: 19.8888888889rem;
    aspect-ratio: 348/134;
  }
}
.top-fv__main {
  position: relative;
  z-index: 5;
  max-width: 30.1111111111rem;
}
@media all and (max-width: 1024px) {
  .top-fv__main {
    max-width: 100%;
  }
}
@media all and (max-width: 640px) {
  .top-fv__main {
    max-width: 17.7777777778rem;
  }
}
.top-fv__main__lead {
  font-size: 4rem;
  line-height: 1.2;
  padding-bottom: 1.1111111111rem;
  margin-bottom: 1.1111111111rem;
  position: relative;
}
.top-fv__main__lead:after {
  content: "";
  height: 0.1111111111rem;
  width: 300%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
@media all and (max-width: 1024px) {
  .top-fv__main__lead {
    font-size: 6.8vw;
    padding-bottom: 0.4em;
    margin-bottom: 0.4em;
  }
  .top-fv__main__lead br {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .top-fv__main__lead {
    font-size: 2.6666666667rem;
  }
  .top-fv__main__lead br {
    display: block;
  }
}
.top-fv__main__text {
  font-size: 1.3333333333rem;
}
@media all and (max-width: 1024px) {
  .top-fv__main__text {
    width: 39.47vw;
    font-size: 2.63vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv__main__text {
    width: 100%;
    font-size: 0.8888888889rem;
  }
}

.top-topics {
  padding: 3.3333333333rem 0;
}
@media all and (max-width: 1024px) {
  .top-topics {
    padding: 2.7777777778rem 0 2.2222222222rem;
  }
}
.top-topics__header {
  display: flex;
  align-items: baseline;
  gap: 2.7777777778rem;
  margin-bottom: 2.2222222222rem;
}
@media all and (max-width: 1024px) {
  .top-topics__header {
    flex-direction: column;
    gap: 0.8333333333rem;
  }
}
@media all and (max-width: 640px) {
  .top-topics__header {
    gap: 0.5555555556rem;
    margin-bottom: 1.1111111111rem;
  }
}
.top-topics__heading {
  font-weight: bold;
  font-size: 2rem;
}
@media all and (max-width: 640px) {
  .top-topics__heading {
    font-size: 1.7777777778rem;
  }
}
.top-topics__lead {
  font-weight: bold;
  font-size: 1.3333333333rem;
  color: #1E788F;
  line-height: 1.6;
}
@media all and (max-width: 640px) {
  .top-topics__lead {
    font-size: 1rem;
  }
}
.top-topics__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3888888889rem;
}
@media all and (max-width: 1024px) {
  .top-topics__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6666666667rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
  }
}
@media all and (max-width: 640px) {
  .top-topics__list {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.top-topics__list a {
  display: block;
  transition: all 0.2s ease 0s;
}
.top-topics__list a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .top-topics__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-topics__list a:hover {
    color: #1E788F;
  }
}
.top-topics__list a:active {
  color: #1E788F;
}
@media all and (max-width: 640px) {
  .top-topics__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7777777778rem;
  }
}
.top-topics__list figure {
  aspect-ratio: 14/9;
  margin-bottom: 1.1111111111rem;
}
@media all and (max-width: 640px) {
  .top-topics__list figure {
    width: 35%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.top-topics__list figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-topics__list p {
  line-height: 1.4;
  font-weight: bold;
}
@media all and (max-width: 640px) {
  .top-topics__list p {
    width: 60%;
  }
}
.top-topics__footer {
  margin-top: 2.2222222222rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  gap: 1.1111111111rem;
}
.top-topics__footer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0.1111111111rem solid #1E788F;
  width: 20rem;
  font-weight: bold;
  font-size: 1.3333333333rem;
  color: #1E788F;
  transition: all 0.2s ease 0s;
  padding: 0.75em;
}
.top-topics__footer a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .top-topics__footer a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-topics__footer a:hover {
    background-color: #1E788F;
    color: #fff;
  }
}
.top-topics__footer a:active {
  background-color: #1E788F;
  color: #fff;
}
.top-topics__caption {
  font-size: 0.8888888889rem;
}

.top-cv {
  background-color: #F2F2EB;
  padding: 3.8888888889rem 0;
}
@media all and (max-width: 1024px) {
  .top-cv {
    padding: 2.7777777778rem 0;
  }
}
@media all and (max-width: 640px) {
  .top-cv {
    padding-bottom: 3.3333333333rem;
  }
}
.top-cv__inner {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1280px) {
  .top-cv__inner {
    gap: 1.6666666667rem;
  }
}
@media all and (max-width: 1024px) {
  .top-cv__inner {
    flex-direction: column;
  }
}
.top-cv__heading {
  width: 31.7777777778rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.1111111111rem;
  color: #1E788F;
  font-weight: bold;
  font-size: 2.6666666667rem;
}
@media all and (max-width: 1180px) {
  .top-cv__heading {
    width: 23.8888888889rem;
    font-size: 2rem;
  }
}
@media all and (max-width: 1024px) {
  .top-cv__heading {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .top-cv__heading {
    font-size: 1.8888888889rem;
  }
}
.top-cv__heading .main {
  display: flex;
  align-items: center;
  gap: 1.3888888889rem;
  border-bottom: 0.1111111111rem solid #1E788F;
  padding-bottom: 1.1111111111rem;
}
.top-cv__heading .main .icon {
  width: calc(143 / 48 * 1em);
  flex-shrink: 0;
}
@media all and (max-width: 1024px) {
  .top-cv__heading .main .icon {
    width: 4.8888888889rem;
  }
}
@media all and (max-width: 640px) {
  .top-cv__heading .main .icon {
    width: 4.4444444444rem;
    gap: 1.1111111111rem;
  }
}
.top-cv__heading .sub {
  text-align: center;
  font-size: 0.75em;
}
.top-cv__btWrap {
  flex: 1;
}
@media all and (min-width: 1281px) {
  .top-cv__btWrap {
    translate: 1.9444444444rem 0;
  }
}
@media all and (max-width: 1024px) {
  .top-cv__btWrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.top-doctor-questions__header {
  background-color: #164e77;
  color: #fff;
  padding: 1.5555555556rem 0;
}
@media all and (max-width: 1024px) {
  .top-doctor-questions__header {
    padding: 1.1111111111rem;
  }
}
.top-doctor-questions__heading {
  max-width: 55.5555555556rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8888888889rem;
  font-size: 2rem;
}
@media all and (max-width: 1024px) {
  .top-doctor-questions__heading {
    font-size: 1.3333333333rem;
  }
}
.top-doctor-questions__heading .icon {
  width: 3.5388888889rem;
}
.top-doctor-questions__mainWrap {
  padding: 3.3333333333rem 0;
  background-color: #f6f6f6;
}
.top-doctor-questions__main {
  display: flex;
  align-items: flex-start;
  gap: 3.3333333333rem;
  margin-bottom: 2.7777777778rem;
}
@media all and (max-width: 1024px) {
  .top-doctor-questions__main {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 640px) {
  .top-doctor-questions__main {
    padding: 0;
    margin-bottom: 2.2222222222rem;
    gap: 2.2222222222rem;
    overflow: hidden;
  }
}
.top-doctor-questions__img {
  width: 49%;
  margin-left: -1.6666666667rem;
  border-radius: 1.1111111111rem;
  overflow: hidden;
}
.top-doctor-questions__img img {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .top-doctor-questions__img {
    margin-left: 0;
    width: 100%;
    max-width: 26.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .top-doctor-questions__img {
    max-width: 100%;
  }
}
@media all and (min-width: 1025px) {
  .top-doctor-questions__content {
    max-width: 34.4444444444rem;
    padding-right: 2.2222222222rem;
  }
}
.top-doctor-questions__list {
  display: flex;
  flex-direction: column;
  gap: 1.7777777778rem;
  font-size: 1.3333333333rem;
  color: #164E77;
  font-weight: bold;
  line-height: 1.5;
}
@media all and (max-width: 640px) {
  .top-doctor-questions__list {
    font-size: 1rem;
  }
}
.top-doctor-questions__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8333333333rem;
}
.top-doctor-questions__list li .icon {
  flex-shrink: 0;
  width: 2.1111111111rem;
}
.top-doctor-questions__summary {
  font-size: 2rem;
  line-height: 1.5;
  border: 0.1111111111rem solid #164E77;
  padding: 0.45em 0.2em;
  color: #164E77;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .top-doctor-questions__summary {
    font-size: 1.3333333333rem;
  }
}
@media all and (max-width: 640px) {
  .top-doctor-questions__summary {
    text-align: left;
    padding: 0.75em 0.2em;
    margin: 0 auto;
    max-width: calc(100% - 1.1111111111rem);
  }
}

.top-service {
  overflow: hidden;
  padding: 4.4444444444rem 0 0;
  background-color: #f2f2eb;
}
@media all and (max-width: 1024px) {
  .top-service {
    padding: 3.3333333333rem 0 0;
  }
}
.top-service__lead {
  margin: 3.3333333333rem 0 2.5rem;
}
@media all and (max-width: 1024px) {
  .top-service__lead {
    margin: 2.2222222222rem 0;
  }
}
.top-service__lead .main {
  font-size: 3.3333333333rem;
  line-height: 1.25;
  margin-bottom: 0.3em;
}
@media all and (max-width: 1024px) {
  .top-service__lead .main {
    font-size: 2.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .top-service__lead .main {
    font-size: 2.8888888889rem;
  }
}
.top-service__lead .sub {
  font-size: 1.1111111111rem;
  font-weight: bold;
  line-height: 1.5;
}
.top-service__sectionWrap {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333rem;
}
.top-service__section__heading {
  font-size: 2rem;
  font-weight: bold;
  color: #1E788F;
  line-height: 1.4;
  margin-bottom: 1.1111111111rem;
}
@media all and (max-width: 640px) {
  .top-service__section__heading {
    font-size: 1.3333333333rem;
  }
}
.top-service__section1-wrap {
  display: flex;
  margin-bottom: 3.3333333333rem;
}
.top-service__section1-wrap .textWrap {
  max-width: 33.6666666667rem;
}
.top-service__section1-wrap .graphWrap {
  max-width: 30rem;
}
@media all and (min-width: 1025px) {
  .top-service__section1-wrap {
    justify-content: space-between;
  }
  .top-service__section1-wrap .textWrap {
    width: 50%;
  }
  .top-service__section1-wrap .graphWrap {
    width: 46%;
  }
}
@media all and (max-width: 1024px) {
  .top-service__section1-wrap {
    flex-direction: column;
    gap: 2.7777777778rem;
  }
}
.top-service__section1-wrap .graph__row {
  display: flex;
  gap: 0 0.5555555556rem;
}
.top-service__section1-wrap .graph__row:last-child .graph__dt {
  border-bottom: 0.0555555556rem solid #414141;
}
.top-service__section1-wrap .graph__row:last-child .graph__dd {
  border-bottom: 0.0555555556rem solid #414141;
}
.top-service__section1-wrap .graph__dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.3333333333rem;
  gap: 0.5555555556rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  font-size: 1.3333333333rem;
  border-top: 0.0555555556rem solid #414141;
  flex-shrink: 0;
}
.top-service__section1-wrap .graph__dd {
  flex: 1;
}
.top-service__section1-wrap .graph dl .row {
  display: flex;
  padding: 0.8333333333rem;
  border-top: 0.0555555556rem solid #414141;
  line-height: 1.4;
}
@media all and (max-width: 640px) {
  .top-service__section1-wrap .graph dl .row {
    flex-direction: column;
    gap: 0.2777777778rem;
    align-items: flex-start;
    padding: 0.8333333333rem 0.8333333333rem 0.8333333333rem 2.2222222222rem;
  }
}
.top-service__section1-wrap .graph dl dt {
  flex: 5.5;
  flex-shrink: 0;
}
.top-service__section1-wrap .graph dl dd {
  flex: 4.5;
  display: flex;
  font-weight: bold;
  gap: 0.7777777778rem;
}
.top-service__section1-wrap .graph dl dd.color1 {
  color: #4387b9;
}
.top-service__section1-wrap .graph dl dd.color2 {
  color: #d83939;
}
.top-service__section1-wrap .graph dl dd:before {
  content: "";
  width: 1.3em;
  aspect-ratio: 2/1;
  background-image: url(../images/top/service_arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.top-service__section1-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-service__section1-summary:after {
  content: "";
  width: 3.0277777778rem;
  height: 4.25rem;
  background-image: url(../images/top/service_arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
.top-service__section1-summary .main {
  border: 0.1111111111rem solid #1E788F;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 2rem;
  color: #1E788F;
  padding: 0.75em;
  line-height: 1.5;
}
@media all and (max-width: 640px) {
  .top-service__section1-summary .main {
    font-size: 1.3333333333rem;
  }
}
.top-service__section2-wrap {
  display: flex;
  margin-bottom: 3.3333333333rem;
  gap: 2.2222222222rem;
}
.top-service__section2-wrap .textWrap {
  max-width: 33.6666666667rem;
}
.top-service__section2-wrap .graphWrap {
  max-width: 30rem;
}
@media all and (min-width: 1025px) {
  .top-service__section2-wrap {
    justify-content: space-between;
  }
  .top-service__section2-wrap .textWrap {
    width: 50%;
  }
  .top-service__section2-wrap .graphWrap {
    flex: 1;
    min-width: 21.7777777778rem;
  }
}
@media all and (max-width: 1024px) {
  .top-service__section2-wrap {
    flex-direction: column;
    gap: 2.7777777778rem;
  }
  .top-service__section2-wrap .textWrap {
    max-width: 100%;
  }
  .top-service__section2-wrap .graphWrap {
    max-width: 34.4444444444rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.top-service__section2-wrap .graph {
  width: 21.7777777778rem;
  aspect-ratio: 392/420;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.2222222222rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.top-service__section2-wrap .graph .circle {
  position: relative;
  width: 15.3333333333rem;
  height: 15.3333333333rem;
  border: 0.0555555556rem solid #414141;
  border-radius: 50%;
}
.top-service__section2-wrap .graph .circle__heading {
  line-height: 1.15;
  position: absolute;
  font-weight: bold;
  font-size: 1.3333333333rem;
  color: #1E788F;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 5;
}
.top-service__section2-wrap .graph li {
  position: absolute;
  width: 53.6%;
  aspect-ratio: 1/1;
  background: #fff;
  border: 0.0555555556rem solid #414141;
  border-radius: 50%;
  line-height: 1.2;
  font-size: 1.1111111111rem;
}
.top-service__section2-wrap .graph li .heading {
  position: absolute;
  text-align: center;
  font-weight: bold;
  color: #1E788F;
  line-height: 1;
  width: 100%;
  left: 0;
}
.top-service__section2-wrap .graph li.top {
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-50%);
}
.top-service__section2-wrap .graph li.top .heading {
  top: 0;
  translate: 0 -140%;
}
.top-service__section2-wrap .graph li.left {
  left: 0;
  bottom: 0;
  transform: translateX(-40%) translateY(25%);
}
.top-service__section2-wrap .graph li.left .heading {
  bottom: 0;
  translate: 0 140%;
}
.top-service__section2-wrap .graph li.right {
  right: 0;
  bottom: 0;
  transform: translateX(40%) translateY(25%);
}
.top-service__section2-wrap .graph li.right .heading {
  bottom: 0;
  translate: 0 140%;
}
.top-service__section2-wrap .graph li .heading {
  position: absolute;
  text-align: center;
  font-weight: bold;
  color: #1E788F;
  line-height: 1;
  width: 100%;
}
.top-service__section2-wrap .graph li .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1em;
  gap: 0.5em;
}
.top-service__section2-wrap .graph li .text {
  min-height: 2.4em;
  display: flex;
  align-items: center;
}
.top-service__section3-wrap .textWrap {
  max-width: 55.5555555556rem;
}

.service-table {
  width: 100%;
  display: flex;
  max-width: 55.5555555556rem;
  line-height: 1.25;
  margin-top: 3.3333333333rem;
}
@media all and (min-width: 641px) {
  .service-table {
    background-color: #fff;
  }
}
@media all and (max-width: 1024px) {
  .service-table {
    margin-top: 2.2222222222rem;
  }
}
.service-table__head {
  width: 7.8888888889rem;
}
@media all and (max-width: 1024px) {
  .service-table__head {
    width: 6.1111111111rem;
  }
}
@media all and (max-width: 640px) {
  .service-table__head {
    display: none;
  }
}
.service-table__head > * {
  height: 4.4444444444rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.3333333333rem;
}
.service-table__head > *:not(:first-child) {
  border-top: 0.0555555556rem solid #414141;
}
@media all and (max-width: 1024px) {
  .service-table__head > * {
    height: 6.3333333333rem;
  }
  .service-table__head > *:first-child {
    height: 4.1111111111rem;
  }
}
.service-table__body {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media all and (max-width: 640px) {
  .service-table__body {
    display: flex;
    flex-direction: column;
    gap: 1.6666666667rem;
  }
}
@media all and (min-width: 641px) {
  .service-table__item {
    border-left: 0.0555555556rem solid #414141;
  }
}
@media all and (max-width: 640px) {
  .service-table__item {
    background-color: #fff;
  }
}
.service-table__heading {
  height: 4.4444444444rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.3333333333rem;
  line-height: 1.2;
}
@media all and (max-width: 1024px) {
  .service-table__heading {
    height: 4.1111111111rem;
  }
}
@media all and (max-width: 640px) {
  .service-table__heading {
    height: 2.8888888889rem;
    color: #fff;
    background-color: #414141;
  }
}
@media all and (max-width: 640px) {
  .service-table__content {
    display: flex;
  }
}
.service-table__content li {
  height: 4.4444444444rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 0.8888888889rem;
  border-top: 0.0555555556rem solid #414141;
  padding: 0 1.6666666667rem;
}
@media all and (max-width: 1024px) {
  .service-table__content li {
    height: 6.3333333333rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5555555556rem;
    padding: 0;
  }
}
@media all and (max-width: 640px) {
  .service-table__content li {
    height: auto;
    flex: 1;
    flex-shrink: 0;
    justify-content: flex-start;
    padding: 0 0 1.1111111111rem;
  }
  .service-table__content li:not(:first-child) {
    border-left: 0.0555555556rem solid #414141;
  }
  .service-table__content li:before {
    content: attr(data-label);
    border-bottom: 0.0555555556rem solid #414141;
    margin-bottom: 0.6666666667rem;
    display: block;
    width: 100%;
    font-size: 1.3333333333rem;
    padding: 0.5em 0;
  }
}
.service-table__content .cross {
  margin-right: 0.7222222222rem;
  margin-left: 0.1666666667rem;
  width: 1.8333333333rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/icon_cross.svg);
}
@media all and (max-width: 1024px) {
  .service-table__content .cross {
    margin: 0;
  }
}
@media all and (max-width: 640px) {
  .service-table__content .cross {
    margin-top: 0.1666666667rem;
    margin-bottom: 0.5555555556rem;
  }
}
.service-table__content .circle {
  margin-right: 0.5rem;
  width: 2.2222222222rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/icon_circle.svg);
}
@media all and (max-width: 1024px) {
  .service-table__content .circle {
    margin: 0;
  }
}
@media all and (max-width: 640px) {
  .service-table__content .circle {
    margin-bottom: 0.3333333333rem;
  }
}
.service-table__content .double-circle {
  margin-right: 0.5rem;
  width: 2.2222222222rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/icon_double-circle.svg);
}
@media all and (max-width: 1024px) {
  .service-table__content .double-circle {
    margin: 0;
  }
}
@media all and (max-width: 640px) {
  .service-table__content .double-circle {
    margin-bottom: 0.3333333333rem;
  }
}
@media all and (min-width: 641px) {
  .service-table__item.last {
    background-color: #1E788F;
    color: #fff;
  }
  .service-table__item.last .cross,
  .service-table__item.last .circle,
  .service-table__item.last .double-circle {
    filter: brightness(0) invert(1);
  }
}
@media all and (max-width: 640px) {
  .service-table__item.last .service-table__heading {
    background-color: #1E788F;
  }
}

.service-advisory {
  margin-top: 5.5555555556rem;
}
@media all and (max-width: 1024px) {
  .service-advisory {
    margin-top: 3.3333333333rem;
  }
}
.service-advisory__header {
  padding: 3.3333333333rem 0;
  background: linear-gradient(270deg, #4BACC5 0%, #1E788F 100%);
  color: #fff;
}
@media all and (max-width: 1024px) {
  .service-advisory__header {
    padding: 2.2222222222rem 0.5555555556rem;
  }
}
.service-advisory__header__inner {
  position: relative;
}
@media all and (min-width: 1025px) {
  .service-advisory__header__inner {
    padding-right: 24.8888888889rem;
  }
}
.service-advisory__header__heading {
  font-size: 2.6666666667rem;
  max-width: 41.9444444444rem;
  margin-bottom: 0.4em;
}
@media all and (max-width: 1280px) {
  .service-advisory__header__heading {
    font-size: 2rem;
  }
}
@media all and (max-width: 1024px) {
  .service-advisory__header__heading {
    max-width: 29.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__heading {
    max-width: 100%;
    font-size: 1.7777777778rem;
    margin-bottom: 1.1111111111rem;
  }
}
.service-advisory__header__lead {
  border: 0.1111111111rem solid #fff;
  line-height: 1.4;
  max-width: 41.9444444444rem;
  font-size: 1.3333333333rem;
  padding: 0.75em 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6666666667rem;
}
@media all and (max-width: 1024px) {
  .service-advisory__header__lead {
    width: calc(100% - 12.2222222222rem);
    max-width: 22.7777777778rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__lead {
    width: 100%;
    max-width: 94%;
    margin-bottom: 1.1111111111rem;
  }
}
.service-advisory__header__heading2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media all and (max-width: 1024px) {
  .service-advisory__header__heading2 {
    max-width: calc(100% - 12.2222222222rem);
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__heading2 {
    max-width: 100%;
    font-size: 1.5555555556rem;
  }
}
.service-advisory__header__text {
  font-size: 1.3333333333rem;
  line-height: 1.6;
}
@media all and (max-width: 1024px) {
  .service-advisory__header__text {
    width: calc(100% - 12.2222222222rem);
    max-width: 22.7777777778rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__text {
    max-width: 100%;
    width: 100%;
  }
}
.service-advisory__header__img {
  position: absolute;
  width: 21.6666666667rem;
  aspect-ratio: 39/51;
  right: 0;
  top: 0;
  border-radius: 1.1111111111rem;
  overflow: hidden;
  translate: 2.2222222222rem -5.5555555556rem;
}
@media all and (max-width: 1280px) {
  .service-advisory__header__img {
    translate: 1.1111111111rem -5.5555555556rem;
  }
}
@media all and (max-width: 1024px) {
  .service-advisory__header__img {
    width: 14.8888888889rem;
    aspect-ratio: 268/282;
    top: auto;
    bottom: 0;
    translate: 4.4444444444rem 0;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__img {
    position: relative;
    width: 22.2222222222rem;
    aspect-ratio: 418/293;
    translate: 0rem 0;
    border-radius: 1.1111111111rem 0 0 1.1111111111rem;
    margin-bottom: 2.2222222222rem;
  }
}
.service-advisory__header__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 1024px) {
  .service-advisory__header__img img {
    width: 135%;
    height: 100%;
    object-position: top 10% right 0%;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__header__img img {
    width: 100%;
    height: 100%;
    object-position: 0% 0%;
  }
}
.service-advisory__main {
  padding: 4.4444444444rem 0;
  background-color: #164E77;
}
@media all and (max-width: 1024px) {
  .service-advisory__main {
    padding: 3.3333333333rem 0;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__main {
    padding: 2.2222222222rem 0.5555555556rem;
  }
}
.service-advisory__main__heading {
  position: relative;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.2222222222rem;
  align-items: center;
}
@media all and (min-width: 1025px) {
  .service-advisory__main__heading {
    padding-left: 5.5555555556rem;
  }
}
@media all and (max-width: 1024px) {
  .service-advisory__main__heading {
    gap: 0.5555555556rem;
  }
}
@media all and (min-width: 1025px) {
  .service-advisory__main__heading .icon {
    width: 4.9444444444rem;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
@media all and (max-width: 1024px) {
  .service-advisory__main__heading .icon {
    width: 2.5rem;
  }
}
.service-advisory__main__heading .sub {
  font-size: 1.5555555556rem;
}
.service-advisory__main__heading .main {
  font-size: 2.4444444444rem;
  width: 100%;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__heading .main {
    font-size: 2rem;
  }
}
.service-advisory__main__box {
  background-color: #fff;
  position: relative;
  border-radius: 1.1111111111rem;
  padding: 5rem 2.7777777778rem;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__box {
    padding: 2.2222222222rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__main__box {
    border-radius: 0.5555555556rem;
    padding: 2.2222222222rem 1.6666666667rem;
  }
}
.service-advisory__main__box:before {
  content: "";
  width: calc(100% - 1.1111111111rem);
  height: calc(100% - 1.1111111111rem);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 0.1111111111rem solid #164E77;
  border-radius: 0.5555555556rem;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__box:before {
    width: calc(100% - 0.5555555556rem);
    height: calc(100% - 0.5555555556rem);
    border-radius: 0.8333333333rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__main__box:before {
    border-radius: 0.2777777778rem;
  }
}
.service-advisory__main__list {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333rem;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__list {
    gap: 2.2222222222rem;
  }
}
.service-advisory__main__list .heading {
  display: flex;
  justify-content: flex-start;
  line-height: 1.4;
  font-weight: bold;
  font-size: 2rem;
  color: #164E77;
  gap: 0.5555555556rem;
  margin-bottom: 1.1111111111rem;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__list .heading {
    font-size: 1.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__main__list .heading {
    font-size: 1.3333333333rem;
  }
}
.service-advisory__main__list .heading:before {
  content: "";
  height: 0.1111111111rem;
  background-color: #164E77;
  width: 2.2222222222rem;
  flex-shrink: 0;
  margin-top: 0.7em;
}
@media all and (max-width: 640px) {
  .service-advisory__main__list .heading:before {
    width: 1.5555555556rem;
  }
}
.service-advisory__main__list .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.8888888889rem;
}
.service-advisory__main__list .content .icon {
  width: 7.7222222222rem;
  flex-shrink: 0;
}
.service-advisory__main__list .content .icon img {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .service-advisory__main__list .content {
    gap: 2.7777777778rem;
  }
}
@media all and (max-width: 640px) {
  .service-advisory__main__list .content {
    flex-direction: column;
    gap: 1.3888888889rem;
  }
}

.cvArea {
  padding-top: 5.5555555556rem;
  background-color: #f2f2eb;
}
@media all and (max-width: 1024px) {
  .cvArea {
    padding-top: 4.4444444444rem;
  }
}
@media all and (max-width: 640px) {
  .cvArea {
    padding-top: 3.3333333333rem;
  }
}
.cvArea.pb {
  padding-bottom: 5.5555555556rem;
}
@media all and (max-width: 1024px) {
  .cvArea.pb {
    padding-bottom: 4.4444444444rem;
  }
}
@media all and (max-width: 640px) {
  .cvArea.pb {
    padding-bottom: 3.3333333333rem;
  }
}
.cvArea__heading {
  display: flex;
  align-items: center;
  gap: 2.2222222222rem;
  line-height: 1.4;
  font-weight: bold;
  color: #164E77;
  margin-bottom: 2.2222222222rem;
  font-size: 1.6666666667rem;
  padding: 0 0.5555555556rem;
}
@media all and (max-width: 1024px) {
  .cvArea__heading {
    flex-direction: column;
    text-align: center;
    font-size: 1.3333333333rem;
    gap: 1.1111111111rem;
  }
}
.cvArea__heading .icon {
  width: 6.8333333333rem;
  flex-shrink: 0;
}
.cvArea__heading .icon img {
  width: 100%;
}
.cvArea__heading .text {
  max-width: 55.5555555556rem;
}
.cvArea__main {
  padding: 2.2222222222rem 2.7777777778rem;
  border-top: 0.1111111111rem solid #164E77;
  border-bottom: 0.1111111111rem solid #164E77;
  margin-bottom: 4.4444444444rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .cvArea__main {
    flex-direction: column;
    align-items: center;
    padding: 1.6666666667rem 0;
    gap: 1.6666666667rem;
    margin-bottom: 3.3333333333rem;
  }
}
.cvArea__main__header {
  display: flex;
  flex-direction: column;
  gap: 0.5555555556rem;
}
@media all and (min-width: 1025px) {
  .cvArea__main__header {
    width: 27.8%;
  }
}
@media all and (max-width: 1024px) {
  .cvArea__main__header {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media all and (max-width: 800px) {
  .cvArea__main__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.cvArea__main__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.7777777778rem;
  font-weight: bold;
  gap: 0.2em;
  color: #4387B9;
  border-bottom: 0.1111111111rem solid #4387B9;
  padding-bottom: 0.5555555556rem;
}
@media all and (max-width: 1024px) {
  .cvArea__main__heading {
    font-size: 1.3333333333rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5555555556rem;
    padding-bottom: 0;
  }
}
@media all and (max-width: 1024px) and (min-width: 801px) {
  .cvArea__main__heading {
    padding-right: 0.8888888889rem;
    margin-right: 0.5555555556rem;
    border-right: 0.1111111111rem solid #4387B9;
    border-bottom: 0;
  }
}
@media all and (max-width: 800px) {
  .cvArea__main__heading {
    align-items: center;
    padding: 0 0.5em 0.4em;
  }
}
.cvArea__main__heading .label {
  background-color: #4387B9;
  color: #fff;
  padding: 0.2em 0.65em;
}
.cvArea__main__lead {
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.1111111111rem;
}
.cvArea__main__lead strong {
  font-size: 1.2em;
}
.cvArea__main__list {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 1025px) {
  .cvArea__main__list {
    width: 68%;
  }
}
@media all and (max-width: 1024px) {
  .cvArea__main__list {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .cvArea__main__list {
    padding: 0 0.2777777778rem;
  }
}
.cvArea__main__list li {
  width: 26%;
}
@media all and (max-width: 640px) {
  .cvArea__main__list li {
    width: 30%;
  }
}
.cvArea__main__list li:first-child .circle:after {
  display: none;
}
.cvArea__main__list li .circle {
  width: 100%;
  background-color: #4387B9;
  position: relative;
  color: #fff;
  font-weight: bold;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  padding-top: 10%;
  font-size: 1.1111111111rem;
  gap: 3%;
}
@media all and (max-width: 640px) {
  .cvArea__main__list li .circle {
    font-size: 0.8888888889rem;
    gap: 0;
  }
}
.cvArea__main__list li .circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: -140% -50%;
  width: 22%;
  aspect-ratio: 42/25;
  background-image: url(../images/top/flow_arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (max-width: 640px) {
  .cvArea__main__list li .circle:after {
    display: none;
  }
}
.cvArea__main__list li .circle:before {
  content: "";
  width: calc(100% - 0.5555555556rem);
  height: calc(100% - 0.5555555556rem);
  border: 0.1111111111rem solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.cvArea__main__list li .circle .icon {
  height: 48%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cvArea__main__list li .circle .icon img {
  height: 100%;
  width: auto;
}
.cvArea__main__list li .heading {
  text-align: center;
  font-weight: bold;
  margin-top: 0.5em;
  line-height: 1.5;
}

.top-achievements {
  padding: 5.5555555556rem 0;
  background-color: #f2f2eb;
}
@media all and (max-width: 1024px) {
  .top-achievements {
    padding: 4.4444444444rem 0;
  }
}
@media all and (max-width: 640px) {
  .top-achievements {
    padding: 3.3333333333rem 0;
  }
}
.top-achievements__lead {
  font-size: 0.8888888889rem;
  margin: 1em 0 2.7777777778rem;
}
@media all and (max-width: 640px) {
  .top-achievements__lead {
    margin-bottom: 1.6666666667rem;
  }
}
.top-achievements__list {
  display: flex;
  flex-direction: column;
  gap: 4.4444444444rem;
}
@media all and (max-width: 1024px) {
  .top-achievements__list {
    gap: 3.3333333333rem;
  }
}
@media all and (max-width: 640px) {
  .top-achievements__list {
    gap: 1.6666666667rem;
  }
}
.top-achievements__list__item {
  border-radius: 1.1111111111rem;
  padding: 2.7777777778rem;
  background-color: #fff;
}
@media all and (max-width: 640px) {
  .top-achievements__list__item {
    padding: 1.6666666667rem;
    border-radius: 0.5555555556rem;
  }
}
.top-achievements__list__header {
  display: flex;
  align-items: flex-start;
  gap: 2.7777777778rem;
  margin-bottom: 2.7777777778rem;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__header {
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1.6666666667rem;
    margin-bottom: 1.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .top-achievements__list__header {
    flex-direction: column;
    align-items: normal;
  }
}
.top-achievements__list__header .img {
  width: 18.0555555556rem;
  flex-shrink: 0;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__header .img {
    width: 11.1111111111rem;
    margin-bottom: 0.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .top-achievements__list__header .img {
    width: 100%;
    order: 10;
    margin-top: 1.6666666667rem;
    margin-bottom: 0;
  }
}
.top-achievements__list__header .img img {
  width: 100%;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__header .content {
    display: contents;
  }
}
.top-achievements__list__header .upper {
  display: flex;
  align-items: center;
  gap: 1.3333333333rem;
  font-weight: bold;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-achievements__list__header .upper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2777777778rem;
  }
}
.top-achievements__list__header .case {
  font-size: 1rem;
  line-height: 1.5;
  color: #1E788F;
  border-bottom: 0.1111111111rem solid #1E788F;
}
.top-achievements__list__header .name {
  font-size: 1.3333333333rem;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-achievements__list__header .name {
    font-size: 1.5555555556rem;
  }
}
.top-achievements__list__header .heading {
  color: #1E788F;
  font-weight: bold;
  margin: 0.8333333333rem 0;
  font-size: 2rem;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__header .heading {
    font-size: 1.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .top-achievements__list__header .heading {
    font-size: 1.3333333333rem;
  }
}
.top-achievements__list__header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5555555556rem 0.8333333333rem;
  font-size: 0.8888888889rem;
}
.top-achievements__list__header .tags li {
  color: #fff;
  padding: 0.5em 0.75em;
  background-color: #73CDD5;
  min-width: 4.8333333333rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  border-radius: 5em;
}
.top-achievements__list__content {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222rem;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__content {
    gap: 1.6666666667rem;
  }
}
.top-achievements__list__content .row {
  display: flex;
  align-items: flex-start;
  gap: 1.6666666667rem;
}
@media all and (max-width: 1024px) {
  .top-achievements__list__content .row {
    flex-direction: column;
    gap: 0.8333333333rem;
  }
}
.top-achievements__list__content .row dt {
  width: 8.4444444444rem;
  font-weight: bold;
  border: 0.1111111111rem solid #1E788F;
  border-radius: 0.5555555556rem;
  flex-shrink: 0;
  line-height: 1.2;
  font-size: 1.3333333333rem;
  text-align: center;
  padding: 0.4em;
}
@media all and (max-width: 640px) {
  .top-achievements__list__content .row dt {
    width: 7.5rem;
    font-size: 1.1111111111rem;
  }
}
.top-achievements__list__content .row dt.color1 {
  color: #1E788F;
}
.top-achievements__list__content .row dt.color2 {
  background-color: #1E788F;
  color: #fff;
}

.top-customer {
  padding: 4.4444444444rem 0;
  background-color: #1E788F;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .top-customer {
    padding: 3.3333333333rem 0;
  }
}
@media all and (max-width: 640px) {
  .top-customer {
    padding: 2.2222222222rem 0;
  }
}
.top-customer__lead {
  font-size: 0.8888888889rem;
  margin: 1em 0 2.7777777778rem;
}
@media all and (max-width: 1024px) {
  .top-customer__lead {
    margin-bottom: 2.2222222222rem;
  }
}
@media all and (max-width: 640px) {
  .top-customer__lead {
    margin-bottom: 1.6666666667rem;
  }
}
.top-customer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2222222222rem;
  color: #414141;
}
@media all and (max-width: 1024px) {
  .top-customer__list {
    grid-template-columns: 1fr;
  }
}
.top-customer__list__item {
  border-radius: 0.8333333333rem;
  padding: 0.1666666667rem;
  background: linear-gradient(180deg, #835A13 0%, #F8C058 50%, #835A13 100%);
  display: flex;
}
.top-customer__list__inner {
  padding: 1.6666666667rem 0;
  background-color: #fff;
  border-radius: 0.6666666667rem;
  flex: 1;
}
.top-customer__list__header {
  padding: 0 1.6666666667rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6666666667rem;
  margin-bottom: 1.1111111111rem;
}
.top-customer__list__header:before, .top-customer__list__header:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.1666666667rem;
  background: linear-gradient(180deg, #835A13 0%, #F8C058 50%, #835A13 100%);
}
.top-customer__list__header:before {
  top: 0.9444444444rem;
}
.top-customer__list__header:after {
  bottom: 0.9444444444rem;
}
@media all and (max-width: 640px) {
  .top-customer__list__header {
    padding: 0 0.8333333333rem;
    gap: 0.8888888889rem;
  }
}
.top-customer__list__header .img {
  width: 8.3333333333rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  border-radius: 50%;
  padding: 0.1666666667rem;
  background: linear-gradient(180deg, #835A13 0%, #F8C058 50%, #835A13 100%);
}
.top-customer__list__header .img img {
  width: 100%;
}
.top-customer__list__header .name {
  height: 3.2777777778rem;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 640px) {
  .top-customer__list__header .name {
    height: auto;
    width: 7.7777777778rem;
  }
}
.top-customer__list__header .name img {
  object-fit: contain;
}
.top-customer__list__content {
  padding: 0 1.6666666667rem;
}

.top-staff {
  padding: 4.4444444444rem 0;
  background-color: #5FBEC6;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .top-staff {
    padding: 3.3333333333rem 0;
  }
}
@media all and (max-width: 640px) {
  .top-staff {
    padding: 2.2222222222rem 0.5555555556rem;
  }
}
.top-staff__lead {
  margin: 2.2222222222rem 0;
  max-width: 61.1111111111rem;
  font-size: 3.3333333333rem;
}
@media all and (max-width: 1024px) {
  .top-staff__lead {
    font-size: 2.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .top-staff__lead {
    font-size: 1.7777777778rem;
    margin-top: 1.1111111111rem;
  }
}
.top-staff__mdrt {
  padding: 2.2222222222rem 2.7777777778rem;
  border-radius: 1.1111111111rem;
  background-color: #fff;
  color: #414141;
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.0555555556rem;
  margin-bottom: 4.4444444444rem;
}
@media all and (max-width: 1024px) {
  .top-staff__mdrt {
    margin-bottom: 2.7777777778rem;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media all and (max-width: 640px) {
  .top-staff__mdrt {
    padding: 1.6666666667rem 1.6666666667rem 1.3888888889rem;
    border-radius: 0.5555555556rem;
    gap: 1.1111111111rem;
    align-items: center;
  }
}
.top-staff__mdrt:before {
  content: "";
  width: calc(100% - 0.5555555556rem);
  height: calc(100% - 0.5555555556rem);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 0.8333333333rem;
  border: 0.1111111111rem solid #5FBEC6;
}
@media all and (max-width: 640px) {
  .top-staff__mdrt:before {
    border-radius: 0.2777777778rem;
  }
}
.top-staff__mdrt__img {
  width: 10.3888888889rem;
  flex-shrink: 0;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-staff__mdrt__img {
    width: 5rem;
    margin-left: auto;
    margin-right: -0.5555555556rem;
  }
}
.top-staff__mdrt__heading {
  font-weight: bold;
  color: #5fbec6;
  font-size: 1.5555555556rem;
}
@media all and (max-width: 640px) {
  .top-staff__mdrt__heading {
    font-size: 1.3333333333rem;
  }
}
.top-staff__mdrt__text {
  font-size: 0.8888888889rem;
  margin-top: 1em;
}
.top-staff__reason {
  display: flex;
  flex-direction: column;
  gap: 4.4444444444rem;
  font-weight: bold;
  margin-bottom: 3.3333333333rem;
}
@media all and (max-width: 1024px) {
  .top-staff__reason {
    gap: 2.7777777778rem;
    margin-bottom: 3.3333333333rem;
  }
}
@media all and (max-width: 640px) {
  .top-staff__reason {
    gap: 2.2222222222rem;
  }
}
.top-staff__reason .item {
  display: flex;
  align-items: flex-start;
  gap: 2.7777777778rem;
}
@media all and (min-width: 1025px) {
  .top-staff__reason .item {
    padding-left: 2.7777777778rem;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__reason .item {
    flex-wrap: wrap;
    gap: 1.1111111111rem 1.3888888889rem;
    justify-content: space-between;
  }
}
@media all and (max-width: 640px) {
  .top-staff__reason .item {
    flex-direction: column;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__reason .content {
    display: contents;
  }
}
.top-staff__reason .heading {
  display: flex;
  align-items: flex-start;
  font-size: 1.5555555556rem;
  gap: 0.5555555556rem;
}
@media all and (min-width: 1025px) {
  .top-staff__reason .heading {
    margin-bottom: 0.5em;
    margin-left: -2.7777777778rem;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__reason .heading {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .top-staff__reason .heading {
    font-size: 1.3333333333rem;
  }
}
.top-staff__reason .heading:before {
  content: "";
  height: 0.1111111111rem;
  width: 2.2222222222rem;
  background-color: #fff;
  margin-top: 0.65em;
  flex-shrink: 0;
}
@media all and (max-width: 640px) {
  .top-staff__reason .heading:before {
    width: 1.6666666667rem;
  }
}
.top-staff__reason .img {
  width: 17.7777777778rem;
  flex-shrink: 0;
  aspect-ratio: 32/20;
}
@media all and (max-width: 1024px) {
  .top-staff__reason .img {
    width: 35%;
  }
}
@media all and (max-width: 640px) {
  .top-staff__reason .img {
    aspect-ratio: 32/20;
    width: 100%;
  }
}
.top-staff__reason .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-staff__reason .text {
    order: 5;
    width: 60%;
  }
}
.top-staff__planer {
  display: flex;
  align-items: flex-start;
  gap: 2.7777777778rem;
  font-weight: bold;
  margin-bottom: 3.3333333333rem;
}
@media all and (max-width: 1024px) {
  .top-staff__planer {
    align-items: normal;
    flex-wrap: wrap;
    max-width: 32.2222222222rem;
    gap: 0rem;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.2222222222rem;
  }
}
@media all and (max-width: 640px) {
  .top-staff__planer {
    align-items: center;
    margin-bottom: 1.6666666667rem;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__planer .content {
    display: contents;
  }
}
.top-staff__planer .img {
  width: 18.3333333333rem;
  flex-shrink: 0;
  aspect-ratio: 33/42;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .top-staff__planer .img {
    aspect-ratio: 1/1;
    width: 10rem;
  }
}
@media all and (max-width: 640px) {
  .top-staff__planer .img {
    width: 45%;
  }
}
.top-staff__planer .img img {
  object-fit: cover;
  height: 100%;
  width: 120%;
}
@media all and (min-width: 1025px) {
  .top-staff__planer .img img {
    scale: 1.15;
    object-position: 50% 5%;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__planer .img img {
    width: 100%;
    height: 100%;
    object-position: 50% 30%;
  }
}
.top-staff__planer .heading {
  margin-bottom: 2.2222222222rem;
  border: 0.1111111111rem solid #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6em;
  font-size: 1.5555555556rem;
}
@media all and (max-width: 1024px) {
  .top-staff__planer .heading {
    order: -1;
    font-size: 1.1111111111rem;
    margin-bottom: 1.6666666667rem;
    padding: 1em 0.5em;
    width: 100%;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-staff__planer .text-content {
    width: calc(100% - 11.1111111111rem);
  }
}
@media all and (max-width: 640px) {
  .top-staff__planer .text-content {
    display: contents;
  }
}
.top-staff__planer .name {
  font-size: 1.3333333333rem;
  margin-bottom: 1.6666666667rem;
}
@media all and (max-width: 1024px) {
  .top-staff__planer .name {
    font-size: 0.8888888889rem;
    margin-bottom: 1em;
  }
}
@media all and (max-width: 640px) {
  .top-staff__planer .name {
    width: 50%;
    margin-bottom: 0;
  }
}
@media all and (max-width: 1024px) {
  .top-staff__planer .text {
    font-size: 0.7777777778rem;
    line-height: 1.6;
  }
}
@media all and (max-width: 640px) {
  .top-staff__planer .text {
    margin-top: 1.5em;
  }
}
.top-staff__staffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2222222222rem;
}
@media all and (max-width: 1024px) {
  .top-staff__staffs {
    grid-template-columns: 1fr;
    max-width: 32.2222222222rem;
    margin: 0 auto;
    gap: 1.6666666667rem;
  }
}
@media all and (max-width: 640px) {
  .top-staff__staffs {
    padding: 0 0.5555555556rem;
  }
}
.top-staff__staffs .item {
  overflow: hidden;
  border-radius: 1.1111111111rem;
  color: #414141;
  padding: 2.2222222222rem 2.7777777778rem;
  background-color: #f2f2eb;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .top-staff__staffs .item {
    border-radius: 0.5555555556rem;
    padding: 1.1111111111rem 1.1111111111rem 1.6666666667rem;
  }
}
.top-staff__staffs .item:before {
  content: "";
  width: 3.3333333333rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.top-staff__staffs .item.color1:before {
  background-color: #4387B9;
}
.top-staff__staffs .item.color2:before {
  background-color: #D05567;
}
.top-staff__staffs .item.color3:before {
  background-color: #1E788F;
}
.top-staff__staffs .item.color4:before {
  background-color: #FF6D3B;
}
.top-staff__staffs .heading {
  font-weight: bold;
  font-size: 1.3333333333rem;
  line-height: 1.5;
  min-height: 3em;
  display: flex;
  align-items: center;
  margin-bottom: 0.4em;
}
@media all and (max-width: 640px) {
  .top-staff__staffs .heading {
    font-size: 1.1111111111rem;
    padding-left: 2.2222222222rem;
    min-height: 1em;
    margin-bottom: 0.75em;
  }
}
.top-staff__staffs .intro {
  border-top: 0.1111111111rem solid #B8B8B8;
  padding: 1.1111111111rem 0;
  line-height: 1.6;
}
@media all and (min-width: 641px) {
  .top-staff__staffs .intro {
    min-height: 7em;
  }
}
@media all and (max-width: 640px) {
  .top-staff__staffs .intro {
    padding: 0.8333333333rem 0.5555555556rem;
  }
}
.top-staff__staffs .footer {
  border-top: 0.1111111111rem solid #B8B8B8;
  padding-top: 1.6666666667rem;
  display: flex;
  gap: 2.2222222222rem;
}
@media all and (max-width: 640px) {
  .top-staff__staffs .footer {
    padding-top: 0.8333333333rem;
    flex-direction: row-reverse;
    gap: 0.8333333333rem;
  }
}
.top-staff__staffs .career {
  display: flex;
  align-items: flex-start;
  gap: 0.8333333333rem;
}
@media all and (max-width: 640px) {
  .top-staff__staffs .career {
    flex-direction: column;
    gap: 0.5555555556rem;
  }
}
.top-staff__staffs .career-label {
  font-weight: bold;
  line-height: 1;
  border: 0.1111111111rem solid #B8B8B8;
  flex-shrink: 0;
  padding: 0.5em 0.75em;
}
@media all and (max-width: 640px) {
  .top-staff__staffs .career-label {
    padding: 0.4em;
  }
}
.top-staff__staffs .career-text {
  font-size: 0.8333333333rem;
  line-height: 1.5;
}
.top-staff__staffs .icon {
  width: 7.7777777778rem;
  flex-shrink: 0;
}
@media all and (min-width: 641px) {
  .top-staff__staffs .icon {
    max-width: 30%;
  }
}
@media all and (max-width: 640px) {
  .top-staff__staffs .icon {
    width: 6.9444444444rem;
  }
}

.top-qa {
  padding-top: 4.4444444444rem;
  background-color: #f2f2eb;
}
@media all and (max-width: 1024px) {
  .top-qa {
    padding-top: 3.3333333333rem;
  }
}
@media all and (max-width: 640px) {
  .top-qa {
    padding-left: 0.5555555556rem;
    padding-right: 0.5555555556rem;
  }
}
.top-qa__dt {
  margin-top: 3.3333333333rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #4387b9;
  border: 0.1666666667rem solid #4387B9;
  border-radius: 0.5555555556rem;
  background-color: #fff;
  padding: 1.3888888889rem 1.6666666667rem;
  font-size: 1.6666666667rem;
  line-height: 1.4;
  gap: 1.3888888889rem;
}
@media all and (max-width: 1024px) {
  .top-qa__dt {
    font-size: 1.3333333333rem;
    margin-top: 2.2222222222rem;
  }
}
@media all and (max-width: 640px) {
  .top-qa__dt {
    padding: 1.1111111111rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5555555556rem;
  }
}
.top-qa__dt .q {
  font-size: 2.2222222222rem;
  min-width: 3.3333333333rem;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.2;
}
@media all and (max-width: 640px) {
  .top-qa__dt .q {
    text-align: left;
    font-size: 1.6666666667rem;
  }
}
.top-qa__dd {
  margin-top: 1.6666666667rem;
  display: flex;
  align-items: flex-start;
  padding: 0 1.6666666667rem;
  gap: 1.3888888889rem;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .top-qa__dd {
    margin-top: 1.1111111111rem;
  }
}
@media all and (max-width: 640px) {
  .top-qa__dd {
    gap: 0.5555555556rem;
    padding: 0;
  }
}
.top-qa__dd .a {
  font-size: 2.2222222222rem;
  min-width: 3.3333333333rem;
  text-align: center;
  flex-shrink: 0;
  color: #d05567;
  line-height: 1.2;
}
@media all and (max-width: 640px) {
  .top-qa__dd .a {
    font-size: 1.6666666667rem;
    min-width: 1px;
    text-align: left;
  }
}
.top-qa__dd .text {
  padding-top: 0.35em;
}
@media all and (max-width: 640px) {
  .top-qa__dd .text {
    padding-top: 0.2em;
  }
}

.form-section {
  background-color: #f2f2eb;
  padding: 5.5555555556rem 0;
}
@media all and (max-width: 1024px) {
  .form-section {
    padding: 8.8888888889rem 0 4.4444444444rem;
  }
}
@media all and (max-width: 640px) {
  .form-section {
    padding: 7.7777777778rem 0.5555555556rem 3.3333333333rem;
  }
}

.form-wrap {
  margin-top: 2.7777777778rem;
  display: flex;
  flex-direction: column;
  gap: 2.7777777778rem;
}
@media all and (max-width: 1024px) {
  .form-wrap {
    gap: 2.2222222222rem;
  }
}
.form-wrap__row {
  display: flex;
  align-items: flex-start;
}
@media all and (max-width: 800px) {
  .form-wrap__row {
    flex-direction: column;
    align-items: normal;
    gap: 1.1111111111rem;
    padding-top: 1.1111111111rem;
    border-top: 0.0555555556rem solid #B8B8B8;
  }
  .form-wrap__row:first-child {
    padding-top: 0;
    border-top: 0;
  }
}
.form-wrap__label {
  width: 15.5555555556rem;
  flex-shrink: 0;
  font-weight: bold;
  padding-right: 1em;
}
.form-wrap__label .req {
  color: #ed131f;
  font-size: 0.7777777778rem;
  margin-left: 0.5em;
}
.form-wrap__content {
  flex: 1;
}
.form-wrap__addressWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1111111111rem;
}
.form-wrap__addressWrap .add1 {
  max-width: 6.8888888889rem;
}
.form-wrap__addressWrap .add2 {
  max-width: 13.6666666667rem;
}
.form-wrap__addressWrap .add3 {
  width: 100%;
}
.form-wrap__radioWrap {
  display: flex;
  gap: 1.1111111111rem 2.2222222222rem;
  flex-wrap: wrap;
  line-height: 1.2;
}
.form-wrap__radioWrap label {
  display: flex;
  align-items: center;
  gap: calc(10 / 18 * 1em);
  font-weight: bold;
}
.form-wrap__radioWrap label input[type=radio] {
  display: none;
}
.form-wrap__radioWrap label .icon {
  display: inline-block;
  width: calc(30 / 18 * 1em);
  height: calc(30 / 18 * 1em);
  border: 0.0555555556rem solid #D1D5D8;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-wrap__radioWrap label .icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 55%;
  aspect-ratio: 1/1;
  background-color: #1E788F;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-wrap__radioWrap label input[type=radio]:checked + .icon {
  border-color: #1E788F;
}
.form-wrap__radioWrap label input[type=radio]:checked + .icon::after {
  opacity: 1;
}
.form-wrap__checkWrap {
  gap: 1.1111111111rem 2.2222222222rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 34.4444444444rem;
  line-height: 1.2;
}
.form-wrap__checkWrap.pp {
  grid-template-columns: 1fr;
}
.form-wrap__checkWrap.pp a {
  color: #ED131F;
  text-decoration: underline;
}
.form-wrap__checkWrap label {
  display: flex;
  align-items: center;
  gap: calc(10 / 18 * 1em);
  font-weight: bold;
}
.form-wrap__checkWrap label input[type=checkbox] {
  display: none;
}
.form-wrap__checkWrap label .icon {
  display: inline-block;
  width: calc(30 / 18 * 1em);
  height: calc(30 / 18 * 1em);
  border: 0.0555555556rem solid #fff;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-wrap__checkWrap label .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3333333333rem;
  height: 0.6666666667rem;
  border-right: 0.1666666667rem solid #1E788F;
  border-bottom: 0.1666666667rem solid #1E788F;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-wrap__checkWrap label input[type=checkbox]:checked + .icon {
  border-color: #1E788F;
}
.form-wrap__checkWrap label input[type=checkbox]:checked + .icon::after {
  opacity: 1;
}
.form-wrap input[type=text],
.form-wrap input[type=email],
.form-wrap input[type=tel] {
  all: unset;
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
  max-width: 21.6666666667rem;
  padding: 0.5em 1em;
  line-height: 1.2;
}
.form-wrap input[type=text].w100,
.form-wrap input[type=email].w100,
.form-wrap input[type=tel].w100 {
  max-width: 40rem;
}
.form-wrap select {
  all: unset;
  display: block;
  width: auto;
  min-width: 11.1111111111rem;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
  padding: 0.5em 2em 0.5em 1em;
  line-height: 1.2;
  background-size: 0.8888888889rem;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-image: url(../images/common/select_arrow.svg);
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 3.8888888889rem;
}
.form-submit button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 33.3333333333rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.7777777778rem;
  height: 6.1111111111rem;
  border-radius: 6.9444444444rem;
  padding: 0.5em;
  gap: 1em;
  background: linear-gradient(180deg, #73CDD5 0%, #1E788F 100%);
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .form-submit button {
    transition: none !important;
  }
}
@media (hover: hover) {
  .form-submit button:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.form-submit button:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 1024px) {
  .form-submit button {
    height: 5.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .form-submit button {
    font-size: 1.3333333333rem;
    height: 3.8888888889rem;
  }
}
.form-submit button .arrow {
  width: 1.15em;
}
.form-submit button .arrow img {
  width: 100%;
}

.thanksBox {
  margin: 0 auto 3.3333333333rem;
  max-width: 41.6666666667rem;
  border: 0.1111111111rem solid #414141;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5em;
  font-weight: bold;
  min-height: 16.1111111111rem;
}
@media all and (max-width: 640px) {
  .thanksBox {
    min-height: 11.1111111111rem;
  }
}
.thanksBox__heading {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
@media all and (max-width: 640px) {
  .thanksBox__heading {
    font-size: 1.1111111111rem;
  }
}

.prevBT {
  all: unset;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  max-width: 33.3333333333rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.7777777778rem;
  height: 6.1111111111rem;
  border-radius: 6.9444444444rem;
  padding: 0.5em;
  gap: 1em;
  background: #164E77;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .prevBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .prevBT:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.prevBT:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 1024px) {
  .prevBT {
    height: 5.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .prevBT {
    font-size: 1.3333333333rem;
    height: 3.8888888889rem;
  }
}
.prevBT .arrow {
  width: 1.15em;
  scale: -1 1;
}
.prevBT .arrow img {
  width: 100%;
}

.gridAgreement {
  max-width: 55.5555555556rem;
  padding: 5.5555555556rem 0.5555555556rem;
  margin: 0 auto;
}
.gridAgreement .mt {
  margin-top: 3.3333333333rem;
}
.gridAgreement .commonHeading {
  margin-bottom: 2.2222222222rem;
}
.gridAgreement p {
  padding-bottom: 1em;
}
.gridAgreement h2 {
  margin: 3em 0 1em;
  font-size: 1.2222222222rem;
  padding-left: 0.5em;
  border-left: 0.2em solid #164E77;
  font-weight: bold;
}
.gridAgreement ul > li {
  margin-bottom: 1em;
}
.gridAgreement ol {
  counter-reset: number;
  list-style-type: none;
}
.gridAgreement ol > li {
  padding-left: 2em;
  position: relative;
  margin-top: 1em;
}
.gridAgreement ol > li:before {
  counter-increment: number;
  content: counter(number) ". ";
  position: absolute;
  left: 0;
}

.form-section2 {
  background-color: #fff;
  padding: 8.8888888889rem 0 5.5555555556rem;
}
.form-section2 > .inner {
  max-width: 63.3333333333rem;
}
@media all and (max-width: 1024px) {
  .form-section2 {
    padding: 8.8888888889rem 0 4.4444444444rem;
  }
}
@media all and (max-width: 640px) {
  .form-section2 {
    padding: 7.7777777778rem 0.5555555556rem 3.3333333333rem;
  }
}

.form-wrap2 {
  margin: 2.7777777778rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.7777777778rem;
  padding: 2.7777777778rem;
  border: 0.0555555556rem solid #eee;
  border-radius: 0.5555555556rem;
}
@media all and (max-width: 1024px) {
  .form-wrap2 {
    gap: 2.2222222222rem;
  }
}
@media all and (max-width: 800px) {
  .form-wrap2 {
    padding: 1.1111111111rem 0.5555555556rem;
  }
}
.form-wrap2__row {
  display: flex;
  align-items: flex-start;
}
@media all and (max-width: 1024px) {
  .form-wrap2__row {
    flex-direction: column;
    align-items: normal;
    gap: 1.1111111111rem;
    padding-top: 1.1111111111rem;
    border-top: 0.0555555556rem solid #B8B8B8;
  }
  .form-wrap2__row:first-child {
    padding-top: 0;
    border-top: 0;
  }
}
.form-wrap2__label {
  flex-shrink: 0;
  font-weight: bold;
  padding-right: 1em;
}
@media all and (min-width: 1025px) {
  .form-wrap2__label {
    width: 15.5555555556rem;
  }
}
.form-wrap2__label .req {
  color: #ed131f;
  font-size: 0.7777777778rem;
  margin-left: 0.5em;
}
.form-wrap2__content {
  flex: 1;
}
.form-wrap2__addressWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1111111111rem;
}
.form-wrap2__addressWrap .add1 {
  max-width: 6.8888888889rem;
}
.form-wrap2__addressWrap .add2 {
  max-width: 13.6666666667rem;
}
.form-wrap2__addressWrap .add3 {
  width: 100%;
}
.form-wrap2__radioWrap {
  display: flex;
  gap: 1.1111111111rem 2.2222222222rem;
  flex-wrap: wrap;
  line-height: 1.2;
}
.form-wrap2__radioWrap label {
  display: flex;
  align-items: center;
  gap: calc(10 / 18 * 1em);
  font-weight: bold;
}
.form-wrap2__radioWrap label input[type=radio] {
  display: none;
}
.form-wrap2__radioWrap label .icon {
  display: inline-block;
  width: calc(30 / 18 * 1em);
  height: calc(30 / 18 * 1em);
  border: 0.0555555556rem solid #D1D5D8;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-wrap2__radioWrap label .icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 55%;
  aspect-ratio: 1/1;
  background-color: #1E788F;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-wrap2__radioWrap label input[type=radio]:checked + .icon {
  border-color: #1E788F;
}
.form-wrap2__radioWrap label input[type=radio]:checked + .icon::after {
  opacity: 1;
}
.form-wrap2__checkWrap {
  gap: 1.1111111111rem 1.1111111111rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  line-height: 1.2;
}
@media all and (max-width: 640px) {
  .form-wrap2__checkWrap {
    grid-template-columns: 1fr;
    gap: 0.5555555556rem;
  }
}
.form-wrap2__checkWrap.pp {
  grid-template-columns: 1fr;
}
.form-wrap2__checkWrap.pp a {
  color: #ED131F;
  text-decoration: underline;
}
.form-wrap2__checkWrap label {
  display: flex;
  align-items: center;
  gap: calc(10 / 18 * 1em);
  font-weight: bold;
  border: 0.0555555556rem solid #ccc;
  border-radius: 0.2222222222rem;
  padding: 0.5em;
  position: relative;
}
.form-wrap2__checkWrap label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-wrap2__checkWrap label .icon {
  display: inline-block;
  width: calc(30 / 18 * 1em);
  height: calc(30 / 18 * 1em);
  border: 0.0555555556rem solid #ccc;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  border-radius: 0.1111111111rem;
}
.form-wrap2__checkWrap label .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3333333333rem;
  height: 0.6666666667rem;
  border-right: 0.1666666667rem solid #1E788F;
  border-bottom: 0.1666666667rem solid #1E788F;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-wrap2__checkWrap label input[type=checkbox]:checked + .icon {
  border-color: #1E788F;
}
.form-wrap2__checkWrap label input[type=checkbox]:checked + .icon::after {
  opacity: 1;
}
.form-wrap2 input[type=text],
.form-wrap2 input[type=email],
.form-wrap2 input[type=tel],
.form-wrap2 textarea {
  all: unset;
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
  border: 0.0555555556rem solid #ccc;
  border-radius: 0.2222222222rem;
  padding: 0.5em 1em;
  line-height: 1.2;
}
.form-wrap2 input[type=text].w100,
.form-wrap2 input[type=email].w100,
.form-wrap2 input[type=tel].w100,
.form-wrap2 textarea.w100 {
  max-width: 40rem;
}
.form-wrap2 textarea {
  min-height: 8.8888888889rem;
  resize: vertical;
}
.form-wrap2 select {
  all: unset;
  display: block;
  width: auto;
  min-width: 11.1111111111rem;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
  border: 0.0555555556rem solid #ccc;
  border-radius: 0.2222222222rem;
  padding: 0.5em 2em 0.5em 1em;
  line-height: 1.2;
  background-size: 0.8888888889rem;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-image: url(../images/common/select_arrow.svg);
}

.form-submit2 {
  display: flex;
  justify-content: center;
  margin-top: 3.8888888889rem;
}
.form-submit2 button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 33.3333333333rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.7777777778rem;
  height: 6.1111111111rem;
  border-radius: 6.9444444444rem;
  padding: 0.5em;
  gap: 1em;
  background: linear-gradient(180deg, #73CDD5 0%, #1E788F 100%);
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .form-submit2 button {
    transition: none !important;
  }
}
@media (hover: hover) {
  .form-submit2 button:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.form-submit2 button:active {
  opacity: 0.8;
  text-decoration: none;
}
@media all and (max-width: 1024px) {
  .form-submit2 button {
    height: 5.5555555556rem;
  }
}
@media all and (max-width: 640px) {
  .form-submit2 button {
    font-size: 1.3333333333rem;
    height: 3.8888888889rem;
  }
}
.form-submit2 button .arrow {
  width: 1.15em;
}
.form-submit2 button .arrow img {
  width: 100%;
}

.thanksBox2 {
  margin: 2.2222222222rem auto 3.3333333333rem;
  max-width: 41.6666666667rem;
  border: 0.0555555556rem solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5em;
  min-height: 16.1111111111rem;
  font-weight: 400;
}
@media all and (max-width: 640px) {
  .thanksBox2 {
    min-height: 11.1111111111rem;
    font-size: 0.7777777778rem;
  }
}
.thanksBox2__heading {
  font-size: 1.6666666667rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
@media all and (max-width: 640px) {
  .thanksBox2__heading {
    font-size: 1rem;
  }
}

.mainFooter {
  padding: 2.7777777778rem 0;
  background-color: #1E788F;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .mainFooter {
    padding: 3.3333333333rem 0;
  }
}
@media all and (max-width: 640px) {
  .mainFooter {
    padding: 2.7777777778rem 1.6666666667rem;
  }
}
.mainFooter a {
  color: #fff;
}
.mainFooter__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .mainFooter__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.7777777778rem;
  }
}
.mainFooter__logo {
  width: 9.4444444444rem;
}
.mainFooter__logo img {
  width: 100%;
}
.mainFooter__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8333333333rem;
  line-height: 1.4;
}
@media all and (max-width: 1024px) {
  .mainFooter__content {
    align-items: flex-start;
    gap: 3.3333333333rem;
  }
}
.mainFooter__nav {
  font-size: 0.8888888889rem;
  font-weight: bold;
}
.mainFooter__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2222222222rem;
}
@media all and (max-width: 640px) {
  .mainFooter__nav ul {
    flex-direction: column;
  }
}
.mainFooter__credit {
  font-size: 0.7777777778rem;
}