@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");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@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: 999;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s ease 0s;
  background-color: rgba(255, 255, 255, 0.95);
}
.mainHeader:hover {
  text-decoration: none;
}
@media all and (min-width: 1025px) {
  .mainHeader {
    background-color: rgba(255, 255, 255, 0.95);
    width: calc(100% - 5rem);
    margin: 1.25rem 2.5rem 0;
    border-radius: 3.75rem;
  }
}
.mainHeader__inner {
  padding: 0 1.875rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1180px) {
  .mainHeader__inner {
    padding: 0 0.9375rem 0 1.5625rem;
  }
}
@media all and (max-width: 1024px) {
  .mainHeader__inner {
    padding: 0.3125rem 1.25rem 0.3125rem 0.625rem;
    height: 3.125rem;
  }
}
.mainHeader__logo {
  width: 4.9375rem;
}
.mainHeader__logo img {
  height: auto;
}
@media all and (max-width: 640px) {
  .mainHeader__logo {
    width: 4rem;
  }
}
.mainHeader__logo a {
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: hover) {
  .mainHeader__logo a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.spBT {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
@media all and (min-width: 1025px) {
  .spBT {
    display: none;
  }
}
.spBT__barWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.spBT__barWrap span {
  height: 0.1875rem;
  background-color: #6F93CD;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap span:hover {
  text-decoration: none;
}
.spBT__barWrap span:first-child {
  translate: 0 -0.5rem;
}
.spBT__barWrap span:nth-child(2) {
  width: 75%;
}
.spBT__barWrap span:last-child {
  translate: 0 0.5rem;
  width: 50%;
}
.spBT.active .spBT__barWrap span {
  height: 0.09375rem;
}
.spBT.active .spBT__barWrap span:first-child {
  translate: 0 0;
  rotate: 25deg;
}
.spBT.active .spBT__barWrap span:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap span:last-child {
  translate: 0 0;
  rotate: -25deg;
  width: 100%;
}

@media all and (max-width: 1024px) {
  .gNav {
    position: fixed;
    top: 3.125rem;
    right: 0;
    height: calc(100vh - 5rem);
    width: 100%;
    z-index: 990;
    opacity: 0;
    transform: translateX(-102%);
    transition: opacity 0.4s ease 0s, transform 0s ease 0.4s;
  }
  .gNav.active {
    transition: opacity 0.4s ease 0s, transform 0s ease 0s;
    opacity: 1;
    transform: translateX(0%);
  }
  .gNav:before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100vh - 3.125rem);
    top: 3.125rem;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .gNav__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    z-index: 10;
    padding: 0.625rem 1.25rem 1.875rem;
    overflow: auto;
  }
}
.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__child {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 99.9%;
    width: 13.125rem;
  }
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__child {
    padding-bottom: 0.75em;
    margin-top: 0.5em;
  }
}
.gNav__mainNav__child__list {
  position: relative;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media all and (min-width: 1025px) {
  .gNav__mainNav__child__list {
    background-color: rgb(255, 255, 255);
    padding: 0.65em 0 0.75em;
    align-items: center;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.gNav__mainNav__child a {
  display: flex;
  padding: 0.5em;
  line-height: 1.1;
  color: #676767;
  font-weight: bold;
  align-items: center;
  transition: all 0.2s ease 0s;
}
.gNav__mainNav__child a:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .gNav__mainNav__child a:before {
    content: "-";
    margin: 0 0.5em;
  }
}
.gNav__mainNav__child a:hover {
  color: #0d7ec7;
}
.gNav__mainNav__item {
  position: relative;
}
@media all and (max-width: 1024px) {
  .gNav__mainNav__item {
    font-size: 1rem;
    border-bottom: 0.0625rem solid #6F93CD;
  }
}
.gNav__mainNav__item:hover .gNav__mainNav__child {
  display: block;
}
.gNav__mainNav__item > a {
  line-height: 1.1;
  display: flex;
  align-items: center;
  transition: all 0.2s ease 0s;
  color: #3B3B3B;
  font-weight: 900;
  padding: 0.75em 0.625rem 0.75em;
  gap: 0.375rem;
}
.gNav__mainNav__item > a:hover {
  text-decoration: none;
}
@media all and (min-width: 1025px) {
  .gNav__mainNav__item > a {
    min-height: 3.75rem;
    justify-content: center;
  }
}
.gNav__mainNav__item > a:before {
  content: "";
  width: 0.46875rem;
  height: 0.65625rem;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/gnav_bticon.svg);
}
.gNav__mainNav__item > a:hover {
  color: #0d7ec7;
}

a {
  color: #3B3B3B;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

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

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  color: #3B3B3B;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 640px) {
  body {
    font-size: 3.7208vw !important;
  }
}

img {
  height: auto;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

button,
select {
  color: #3B3B3B;
}

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

.o_sp {
  display: none !important;
}

.o_sp2 {
  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: 1024px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

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

@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.color-key {
  color: #6F93CD;
}

.color-orange {
  color: #F24A00;
}

.color-white {
  color: #fff;
}

.mainContent {
  background-color: #E9EFF8;
  position: relative;
  background-size: 100%;
  background-repeat: repeat-y;
  background-image: url(../images/common/maincontent_bg.webp);
}

.container {
  padding: 7.5rem 0 0;
  position: relative;
}
@media all and (max-width: 1024px) {
  .container {
    padding: 6.25rem 0 0;
  }
}
@media all and (max-width: 640px) {
  .container {
    padding: 4.375rem 0 0;
  }
}

.bg-blue {
  background-color: #6F93CD;
}

.pb-lg {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .pb-lg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pb-lg {
    padding-bottom: 4.375rem;
  }
}

.mb-min {
  margin-bottom: 1.25rem;
}

.mb-sml {
  margin-bottom: 2.5rem;
}

.mb-lg {
  margin-bottom: 5rem;
}
@media all and (max-width: 1024px) {
  .mb-lg {
    margin-bottom: 3.75rem;
  }
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrollText {
  display: flex;
  position: relative;
  margin: auto;
  height: 6.25rem;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  transition: all 1s ease 0s;
  margin-top: 6.25rem;
}
.scrollText:hover {
  text-decoration: none;
}
.scrollText__text {
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  white-space: nowrap;
  transition: all 4s ease;
}
.scrollText__text > * {
  animation: scroll-text 7s infinite linear;
  width: auto;
  flex-shrink: 0;
}
.scrollText__text span {
  margin: 0;
  line-height: 0.85;
  color: rgb(255, 255, 255);
  display: block;
  transition: all 2s ease;
  height: 6.25rem;
  padding-right: 1.25rem;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}
.scrollText__text span img {
  height: 100%;
  width: auto;
  max-width: 1000%;
  display: block;
}

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

.inner-box {
  margin: 0 auto;
  max-width: 67.875rem;
}

.box-white {
  background-color: #fff;
  border-radius: 0.625rem;
}

.max800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fz14 {
  font-size: 0.875em;
}

.fz20 {
  font-size: 1.25em;
}

.commonHeading {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75em;
  flex-wrap: wrap;
}
@media all and (max-width: 640px) {
  .commonHeading {
    align-items: flex-start;
  }
}
.commonHeading:before {
  content: "";
  width: calc(22.5 / 14 * 1em);
  height: calc(32 / 14 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/heading_icon.svg);
}
.commonHeading__text {
  display: flex;
  align-items: baseline;
  gap: 1em;
}
@media all and (max-width: 640px) {
  .commonHeading__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
  }
}
.commonHeading__en {
  font-size: 1.8571428571em;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}
.commonHeading__ja {
  opacity: 0.6;
}
.commonHeading__ja.sub {
  width: 100%;
}
.commonHeading--white {
  color: #fff;
}
.commonHeading--white:before {
  filter: brightness(0) grayscale(1) invert(1);
}

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

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

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

.commonBT {
  appearance: none;
  border: 0;
  background-image: none;
  border-radius: 0;
  display: block;
  transition: all 0.2s ease 0s;
  min-width: 13.75rem;
  padding: 0.6em 1.875rem 0.6em;
  position: relative;
  line-height: 1.4;
  color: #fff;
  font-weight: 900;
  background-color: #6F93CD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em;
  border-radius: 4em;
}
.commonBT:hover {
  text-decoration: none;
}
.commonBT:after {
  content: "";
  width: calc(21.5 / 16 * 1em);
  height: calc(21.5 / 16 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_btarrow.svg);
  transition: all 0.2s ease 0s;
}
.commonBT:after:hover {
  text-decoration: none;
}
.commonBT:hover {
  background-color: #4F6D9D;
}
.commonBT:hover:after {
  translate: 33% 0;
}
.commonBT--white {
  background-color: #fff;
  color: #6F93CD;
}
.commonBT--white:after {
  background-image: url(../images/common/ic_btarrow-blue.svg);
}
.commonBT--white:hover {
  background-color: #E9EFF8;
}
.commonBT--orange {
  background-color: #FF7510;
  color: #fff;
  padding: 0.8em 2.1875rem 0.8em;
}
.commonBT--orange:hover {
  background-color: #F24A00;
}
.commonBT--reverse {
  flex-direction: row-reverse;
}
.commonBT--reverse:after {
  scale: -1 1;
}
.commonBT--reverse:hover:after {
  translate: -33% 0;
}

.label-more {
  font-size: 0.875rem;
  display: flex;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  transition: all 0.2s ease 0s;
}
.label-more:hover {
  text-decoration: none;
}
.label-more:after {
  content: "";
  width: calc(21.5 / 16 * 1em);
  height: calc(21.5 / 16 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_btarrow-blue.svg);
}

a:hover .label-more {
  translate: 0.625rem 0;
  color: #4F6D9D;
}

.layout-flex_r_boxes {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media all and (max-width: 640px) {
  .layout-flex_r_boxes {
    gap: 3.75rem;
  }
}
.layout-flex_r_boxes__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 641px) {
  .layout-flex_r_boxes__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 1024px) {
  .layout-flex_r_boxes__item {
    align-items: flex-start;
  }
}
@media all and (max-width: 640px) {
  .layout-flex_r_boxes__item {
    flex-direction: column;
    align-items: normal;
  }
}
.layout-flex_r_boxes__img {
  margin-bottom: 1.25rem;
}
.layout-flex_r_boxes__img img {
  width: 100%;
}
@media all and (min-width: 641px) {
  .layout-flex_r_boxes__img {
    width: 48.5%;
    margin-bottom: 0;
  }
}
@media all and (min-width: 641px) {
  .layout-flex_r_boxes__contentWrap {
    width: 49%;
  }
}
@media all and (max-width: 640px) {
  .layout-flex_r_boxes__contentWrap {
    display: contents;
  }
}
.layout-flex_r_boxes__heading {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 900;
}
@media all and (max-width: 640px) {
  .layout-flex_r_boxes__heading {
    order: -1;
  }
}

.layout-column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 2.5rem;
}
.layout-column3--v-less {
  gap: 2.5rem 2.5rem;
}
@media all and (max-width: 1024px) {
  .layout-column3 {
    gap: 3.125rem 1.25rem;
  }
  .layout-column3--v-less {
    gap: 2.5rem 1.25rem;
  }
}
@media all and (max-width: 800px) {
  .layout-column3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 640px) {
  .layout-column3 {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.layout-column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2.5rem;
}
.layout-column2--large {
  gap: 2.5rem 3.625rem;
}
@media all and (max-width: 1024px) {
  .layout-column2 {
    gap: 2.5rem 2.5rem;
  }
}
@media all and (max-width: 800px) {
  .layout-column2--tab2wrap {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 640px) {
  .layout-column2 {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.toModalContent {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
  display: none;
}

.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-inner {
  background: white;
  max-width: 1200px;
  max-height: calc(100vh - 200px);
  width: 90%;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media all and (max-width: 640px) {
  .modal-inner {
    max-height: calc(100vh - 12.5rem);
    width: calc(100% - 1.875rem);
    padding: 0.9375rem 0;
  }
}

.modal-content-wrap {
  padding: 30px 60px 60px;
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
@media all and (max-width: 640px) {
  .modal-content-wrap {
    padding: 0.9375rem 1.25rem 1.875rem;
  }
}

.modal-tr-close {
  all: unset;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  position: sticky;
  margin-right: -60px;
  width: 40px;
  height: 40px;
  background-color: #6F93CD;
  color: #fff;
  border-radius: 50%;
  justify-self: flex-end;
  top: 0;
  z-index: 10;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.modal-tr-close:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .modal-tr-close {
    margin-bottom: 0.625rem;
    margin-right: -0.625rem;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -0.625rem;
  }
}
.modal-tr-close:hover {
  background-color: #E9EFF8;
  color: #6F93CD;
}
.modal-tr-close:before, .modal-tr-close:after {
  content: "";
  display: block;
  height: 6%;
  width: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: currentColor;
}
.modal-tr-close:before {
  rotate: 45deg;
}
.modal-tr-close:after {
  rotate: -45deg;
}

.modalYouTube {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.modalYouTube video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes slide {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -50% 0;
  }
}
.top-fv {
  width: 100%;
  position: relative;
  background-color: #4F6D9D;
  padding-top: 6.25rem;
  padding-bottom: 1.25rem;
  z-index: 110;
}
@media all and (max-width: 640px) {
  .top-fv {
    padding-top: 4.375rem;
  }
}
.top-fv .swiper-wrapper {
  transition-timing-function: linear !important;
  pointer-events: none;
}
.top-fv .swiper-wrapper .swiper-slide {
  width: 26.375rem;
  padding: 0 0.625rem;
}
@media all and (max-width: 640px) {
  .top-fv .swiper-wrapper .swiper-slide {
    width: 15.625rem;
  }
}
.top-fv .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
.top-fv__content {
  max-width: 72.875rem;
  width: 100%;
  padding: 0 2.5rem;
  z-index: 10;
  margin: 0 auto;
  margin-top: -11.125rem;
  transition: 0.8s ease 0.5s;
  opacity: 0;
}
.top-fv__content.onAnim {
  opacity: 1;
}
@media all and (max-width: 640px) {
  .top-fv__content {
    padding: 0 1.25rem;
    margin-top: -1.25rem;
  }
}
.top-fv__content__upper {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
@media all and (max-width: 640px) {
  .top-fv__content__upper {
    margin-bottom: 0rem;
  }
}
.top-fv__content__points {
  display: flex;
  justify-content: flex-start;
  gap: 0.625rem;
}
.top-fv__content__points > li {
  width: 7.6rem;
  position: relative;
}
@media all and (max-width: 640px) {
  .top-fv__content__points > li {
    width: 6.25rem;
  }
}
.top-fv__content__points > li:before {
  content: "";
  width: 100%;
  height: 200%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../images/top/fv_points.webp);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top-fv__content__points .in {
  width: calc(100% - 1.25rem);
  margin: 0 auto;
  aspect-ratio: 1/1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  font-weight: 900;
  line-height: 1.15;
  color: #4F6D9D;
}
.top-fv__content__points .in > strong {
  font-size: 1.125em;
}
@media all and (max-width: 640px) {
  .top-fv__content__points .in > strong {
    font-size: 0.75em;
  }
}
.top-fv__content__points .in > strong > strong {
  font-size: 1.6666666667em;
  color: #F24A00;
}
.top-fv__content__lead {
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.8125rem;
}
@media all and (max-width: 640px) {
  .top-fv__content__lead {
    font-size: 0.6875rem;
  }
}
.top-fv__content__lead .area {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875em;
}
.top-fv__content__lead .area span {
  line-height: 1;
  background-color: #6F93CD;
  min-width: 3.2em;
  padding: 0.2em 0 0.3em;
  border-radius: 3em;
  background-color: #6F93CD;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.top-fv__content__lead > small {
  font-weight: 900;
  font-size: 1.25em;
  color: #6F93CD;
  line-height: 1.3;
  margin: 0 0.1em;
}
.top-fv__content__lead > strong {
  color: #6F93CD;
  font-size: 2.625em;
  font-weight: 900;
  line-height: 1;
  display: flex;
  gap: 0.3125rem;
  align-items: flex-end;
}
.top-fv__content__lead > strong > strong {
  line-height: 0.7;
  font-size: 1.3333333333em;
}
.top-fv__content__lower {
  display: flex;
  justify-content: flex-start;
  gap: 1.875rem;
  align-items: flex-end;
}
@media all and (max-width: 800px) {
  .top-fv__content__lower {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media all and (max-width: 640px) {
  .top-fv__content__lower {
    gap: 0.625rem;
  }
}
.top-fv__content__heading {
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9375rem;
  font-size: 2.625rem;
}
@media all and (max-width: 1024px) {
  .top-fv__content__heading {
    font-size: 1.875rem;
  }
}
@media all and (max-width: 800px) {
  .top-fv__content__heading {
    font-size: 6vw;
  }
}
.top-fv__content__heading .main {
  font-size: 2em;
  line-height: 1.1;
  background: linear-gradient(#fff 0%, #ffce00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0.0625rem 0.25rem rgba(0, 0, 0, 0.4));
}
.top-fv__content__heading .sub {
  color: #fff;
  filter: drop-shadow(0 0.0625rem 0.25rem rgba(0, 0, 0, 0.4));
}
.top-fv__content__btWrap {
  flex: 1;
  margin-bottom: 0.9375rem;
}
@media all and (max-width: 800px) {
  .top-fv__content__btWrap {
    margin-left: auto;
  }
}
@media all and (max-width: 640px) {
  .top-fv__content__btWrap {
    width: 100%;
  }
}
.top-fv__content__btWrap a {
  display: flex;
  align-items: center;
  background-color: #FF7510;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  padding: 0.5em 1em;
  min-height: 4.375rem;
  border-radius: 4em;
  transition: all 0.2s ease 0s;
  gap: 0.625rem;
}
.top-fv__content__btWrap a:hover {
  text-decoration: none;
}
@media all and (max-width: 1024px) {
  .top-fv__content__btWrap a {
    font-size: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv__content__btWrap a {
    font-size: 1.125rem;
    min-height: 3.6875rem;
  }
}
.top-fv__content__btWrap a strong {
  font-size: 1.1818181818em;
}
.top-fv__content__btWrap a .text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-fv__content__btWrap a:after {
  content: "";
  width: calc(28 / 22 * 1em);
  height: calc(28 / 22 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_btarrow.svg);
  transition: all 0.2s ease 0s;
}
.top-fv__content__btWrap a:after:hover {
  text-decoration: none;
}
.top-fv__content__btWrap a:hover {
  background-color: #F24A00;
}
.top-fv__content__btWrap a:hover:after {
  translate: 20% 0;
}

.top-lead {
  margin-bottom: 10rem;
  font-weight: 900;
  font-size: 4.125rem;
  letter-spacing: -0.03em;
}
.top-lead strong {
  font-size: 1.3636363636em;
}
.top-lead .border {
  display: inline-block;
  border-bottom: calc(10 / 66 * 1em) solid #FFE200;
}
@media all and (max-width: 1180px) {
  .top-lead {
    font-size: 5.5vw;
  }
}
@media all and (max-width: 1024px) {
  .top-lead {
    margin-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .top-lead {
    font-size: 1.875rem;
    margin-bottom: 3.75rem;
  }
}

.top-features__box {
  padding: 5rem 1.875rem;
}
@media all and (max-width: 640px) {
  .top-features__box {
    padding: 3.75rem 1.25rem;
  }
}
.top-features__points {
  display: flex;
}
@media all and (max-width: 1024px) {
  .top-features__points {
    flex-direction: column;
  }
}
.top-features__points__item {
  flex: 1;
  flex-shrink: 0;
  padding: 0 1.875rem;
  position: relative;
}
@media all and (max-width: 1024px) {
  .top-features__points__item {
    padding: 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 640px) {
  .top-features__points__item {
    grid-template-columns: 1fr;
  }
}
.top-features__points__item:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 1024px) {
  .top-features__points__item:before {
    width: 100%;
    height: 0.0625rem;
    background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.top-features__points__item:last-child:after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 1024px) {
  .top-features__points__item:last-child:after {
    width: 100%;
    height: 0.0625rem;
    top: auto;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.top-features__points__label {
  color: #6F93CD;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 1.625rem;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__label {
    grid-column: 1/3;
  }
}
.top-features__points__label span {
  letter-spacing: 0.1em;
}
.top-features__points__label strong {
  font-size: 2.3076923077em;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__img {
    grid-row: 2/4;
    margin-right: 1.25rem;
  }
}
@media all and (max-width: 1024px) {
  .top-features__points__img img {
    width: 100%;
  }
}
.top-features__points__heading {
  font-size: 1.875rem;
  font-weight: 900;
  margin: 0.5em 0;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__heading {
    margin-top: 0;
    grid-column: 2/3;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__text {
    grid-column: 2/3;
  }
}

.top-merit {
  position: relative;
}
.top-merit__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.75rem 2.5rem;
}
@media all and (max-width: 640px) {
  .top-merit__list {
    gap: 2.5rem;
    flex-direction: column;
  }
}
.top-merit__list__item {
  padding: 1.875rem 1.875rem 2.5rem;
}
@media all and (min-width: 641px) {
  .top-merit__list__item {
    width: calc(50% - 1.25rem);
    max-width: 31.125rem;
    flex-shrink: 0;
  }
}
@media all and (max-width: 640px) {
  .top-merit__list__item {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.top-merit__list__heading {
  font-weight: 900;
  font-size: 1.875rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media all and (max-width: 1024px) {
  .top-merit__list__heading {
    font-size: 1.375rem;
  }
}
@media all and (max-width: 640px) {
  .top-merit__list__heading {
    font-size: 1.875rem;
  }
}

.top-columnWrap {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 800px) {
  .top-columnWrap {
    gap: 1.625rem;
    flex-direction: column;
  }
}
.top-columnWrap__first {
  flex: 1;
}
.top-columnWrap__first__link {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease 0s;
}
.top-columnWrap__first__link:hover {
  text-decoration: none;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__link {
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
  }
}
.top-columnWrap__first__link:hover {
  color: #4F6D9D;
}
.top-columnWrap__first__link:hover img {
  scale: 1.05;
}
.top-columnWrap__first__img {
  aspect-ratio: 1/0.5627;
  overflow: hidden;
}
@media all and (min-width: 801px) {
  .top-columnWrap__first__img {
    margin-bottom: 0.625rem;
  }
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__img {
    flex: 0.45;
  }
}
.top-columnWrap__first__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.top-columnWrap__first__img img:hover {
  text-decoration: none;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__content {
    flex: 0.55;
    display: flex;
    flex-direction: column;
  }
}
.top-columnWrap__first__date {
  font-size: 0.75rem;
  color: #8e8e8e;
  margin-bottom: 0.75em;
}
@media all and (min-width: 801px) {
  .top-columnWrap__first__date {
    font-size: 0.875rem;
    text-align: right;
  }
}
.top-columnWrap__first__title {
  display: -webkit-box;
  line-height: 1.75;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-columnWrap__first .label-more {
  margin-top: 0.625rem;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first .label-more {
    display: none;
  }
}
.top-columnWrap__side {
  width: 23.875rem;
  padding-left: 1.875rem;
  position: relative;
}
@media all and (max-width: 800px) {
  .top-columnWrap__side {
    padding-left: 0;
    width: 100%;
  }
}
@media all and (min-width: 801px) {
  .top-columnWrap__side:before {
    content: "";
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}

.pageHeader {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/page-header.webp);
  padding: 11.75rem 0 7.875rem;
  color: #fff;
}
@media all and (max-width: 640px) {
  .pageHeader {
    padding: 8.125rem 0 5rem;
  }
}
.pageHeader__title {
  display: flex;
  align-items: center;
  font-weight: 900;
  gap: 0.625rem;
  font-size: 1.5rem;
}
@media all and (max-width: 640px) {
  .pageHeader__title {
    font-size: 1.25rem;
  }
}
.pageHeader__title:before {
  content: "";
  width: 1.40625rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/heading_icon.svg);
  filter: brightness(0) invert(1);
}

.bread-crumb {
  font-size: 0.75rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.625rem;
  color: #4F6D9D;
  gap: 0.5em 0;
}
@media all and (max-width: 640px) {
  .bread-crumb {
    font-size: 0.6875rem;
  }
}
.bread-crumb li {
  display: flex;
  align-items: center;
}
.bread-crumb a {
  color: #4F6D9D;
}
.bread-crumb .arrow {
  margin: 0 1em;
}

.about-leadWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .about-leadWrap {
    flex-direction: column;
    align-items: normal;
  }
}
.about-leadWrap__imgWrap {
  position: relative;
  width: 46%;
}
@media all and (max-width: 1180px) {
  .about-leadWrap__imgWrap {
    width: 36%;
  }
}
@media all and (max-width: 640px) {
  .about-leadWrap__imgWrap {
    width: 80%;
    margin: 0 auto;
  }
}
.about-leadWrap__imgWrap__img.upper {
  width: 65.2%;
  position: absolute;
  top: 0;
  left: 0;
  translate: -10.678% 20%;
  transition: all 1s ease 0.2s;
  opacity: 0;
}
.about-leadWrap__imgWrap__img.main {
  position: relative;
  z-index: 5;
  margin-top: 20%;
  margin-bottom: 15%;
}
.about-leadWrap__imgWrap__img.lower {
  position: absolute;
  width: 30%;
  bottom: 0;
  right: 0;
  translate: 53.33% -20%;
  transition: all 1s ease 0.2s;
  opacity: 0;
}
.about-leadWrap__imgWrap.onAnim .about-leadWrap__imgWrap__img.upper {
  translate: -30.678% 0;
  opacity: 1;
}
.about-leadWrap__imgWrap.onAnim .about-leadWrap__imgWrap__img.lower {
  translate: 73.33% 0;
  opacity: 1;
}
.about-leadWrap__content {
  width: 49%;
}
@media all and (max-width: 1180px) {
  .about-leadWrap__content {
    width: 52%;
  }
}
@media all and (max-width: 640px) {
  .about-leadWrap__content {
    width: 100%;
  }
}
.about-leadWrap__heading {
  font-weight: 900;
  font-size: 3.25rem;
  margin-bottom: 0.7em;
}
@media all and (max-width: 1180px) {
  .about-leadWrap__heading {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 1024px) {
  .about-leadWrap__heading {
    font-size: 2rem;
  }
}
.about-leadWrap__text {
  font-size: 1.5rem;
  font-weight: 900;
}
@media all and (max-width: 1024px) {
  .about-leadWrap__text {
    font-size: 1.125rem;
  }
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.reason-list__item {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 641px) {
  .reason-list__item {
    flex-direction: row;
    align-items: flex-end;
    gap: 1.875rem;
  }
}
@media all and (min-width: 641px) and (max-width: 800px) {
  .reason-list__item {
    align-items: flex-start;
  }
}
@media all and (min-width: 641px) {
  .reason-list__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.reason-list__label {
  color: #6F93CD;
  display: flex;
  font-family: "roboto", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  font-size: 1.375rem;
  flex-shrink: 0;
  font-style: italic;
  align-items: baseline;
}
@media all and (min-width: 641px) {
  .reason-list__label {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.625rem;
  }
}
.reason-list__label .text {
  letter-spacing: 0.03em;
}
.reason-list__label .num {
  font-size: 2.6923076923em;
}
.reason-list__content {
  padding: 1.875rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media all and (max-width: 800px) {
  .reason-list__content {
    gap: 1.25rem;
    flex-direction: column;
  }
}
@media all and (max-width: 640px) {
  .reason-list__content {
    padding: 1.875rem 1.25rem;
  }
}
.reason-list__img {
  flex: 3.72;
}
.reason-list__textWrap {
  flex: 4.83;
}
.reason-list__heading {
  font-weight: 900;
  font-size: 1.875rem;
  margin-bottom: calc(20 / 30 * 1em);
}
@media all and (max-width: 640px) {
  .reason-list__heading {
    font-size: 1.375rem;
  }
}

.about-comparison {
  padding-bottom: 7.5rem;
  margin-bottom: 7.5rem;
  position: relative;
}
@media all and (max-width: 1024px) {
  .about-comparison {
    margin-bottom: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .about-comparison {
    margin-bottom: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.about-comparison:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #fff 0, #fff 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.about-comparison__tableWrap {
  margin-top: 3.75rem;
  width: 100%;
}
@media all and (max-width: 800px) {
  .about-comparison__tableWrap {
    overflow: auto;
    width: calc(100% + 1.875rem);
    padding-top: 1.25rem;
    padding-right: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .about-comparison__tableWrap {
    width: calc(100% + 1.25rem);
  }
}
.about-comparison__table {
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 800px) {
  .about-comparison__table {
    width: 64rem;
  }
}
@media all and (max-width: 640px) {
  .about-comparison__table {
    width: 50rem;
    font-size: 0.875rem;
  }
}
.about-comparison__table th,
.about-comparison__table td {
  border: 0.0625rem solid #6F93CD;
}
.about-comparison__table thead th {
  background-color: #E9EFF8;
  padding: 0.75em 0.5em;
  vertical-align: middle;
}
.about-comparison__table thead th .small {
  font-size: 0.75em;
}
.about-comparison__table thead .fc {
  color: #fff;
  font-weight: 900;
  position: relative;
  border-left-width: 0.25rem;
  border-right-width: 0.25rem;
  width: 22%;
}
.about-comparison__table thead .fc span {
  position: relative;
  display: block;
  z-index: 5;
  font-size: 1.25em;
  translate: 0 -25%;
}
.about-comparison__table thead .fc:before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #4F6D9D;
  height: calc(100% + 1.25rem);
  bottom: 0;
  left: 0;
}
.about-comparison__table tbody th {
  background-color: #E9EFF8;
  padding: 1.25em 0.5em;
  vertical-align: middle;
}
.about-comparison__table tbody td {
  padding: 1em 0.5em;
  font-size: 1.125em;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
}
.about-comparison__table tbody td.pad-less {
  padding: 0.5em 0.5em;
}
.about-comparison__table tbody .fc {
  border-left-width: 0.25rem;
  border-right-width: 0.25rem;
}
.about-comparison__table tbody .lg {
  font-size: 2.2222222222em;
  line-height: 1;
}
.about-comparison__table tbody .b {
  font-weight: 900;
}
.about-comparison__table tbody .color {
  color: #F24A00;
}
.about-comparison__table tbody .small {
  font-size: 0.7777777778em;
}
.about-comparison__table tbody .med2 {
  font-size: 0.8888888889em;
}
.about-comparison__table--2 th,
.about-comparison__table--2 td {
  border-color: #E9EFF8;
}
.about-comparison__table--2 thead td:first-child {
  width: 18%;
}
.about-comparison__table--2 thead th {
  background-color: #6F93CD;
  color: #fff;
}
.about-comparison__table--2 thead th .logo {
  display: block;
  margin: 0 auto;
  max-width: 4.875rem;
  position: relative;
  z-index: 5;
  translate: 0 -12%;
  filter: brightness(0) invert(1);
}
.about-comparison__table--2 thead .fc {
  width: 31%;
}
.about-comparison__table--2 tbody th {
  background-color: #fff;
}

.about-simulation__content {
  padding: 1.875rem;
}
.about-simulation__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.about-simulation__heading:before, .about-simulation__heading:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: #707070;
  margin-top: 0.2em;
}
.about-simulation__heading .text {
  white-space: nowrap;
  line-height: 1.2;
  padding: 0 0.4em;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.about-simulation__heading .text .b {
  font-size: 1.5em;
}
.about-simulation__sales {
  background-color: #E9EFF8;
  font-size: 1.875rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.2em;
}
@media all and (max-width: 640px) {
  .about-simulation__sales {
    font-size: 1.375rem;
  }
}
.about-simulation__sales .lg {
  font-size: 1.6666666667em;
}
.about-simulation__sub {
  font-size: 0.75em;
  color: #676767;
  text-align: right;
}
.about-simulation__caption {
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}
.about-simulation__caption > span {
  padding: 0.3em 0em 0.35em;
}
.about-simulation__caption .label {
  background-color: #4F6D9D;
  padding: 0.3em 0.5em 0.35em;
  color: #fff;
}
.about-simulation__arrow {
  margin: 1.25rem auto;
  width: 2.5rem;
  height: 0.875rem;
  background-color: #6F93CD;
  display: block;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.about-simulation__result {
  display: flex;
  justify-content: center;
  line-height: 1;
}
.about-simulation__result > span {
  font-size: 1.875rem;
  font-weight: bold;
  background: linear-gradient(to top, #FFE200 0%, #ffce00 0.75em, transparent 0.751em, transparent 100%);
}
.about-simulation__result strong {
  font-size: 3.6666666667em;
  font-weight: 900;
  color: #F24A00;
  font-style: italic;
  line-height: 0.9;
}
@media all and (max-width: 1024px) {
  .about-simulation__result strong {
    font-size: 2.3333333333em;
  }
}

.about-merit__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-merit__list__item {
  padding: 2.5rem;
  gap: 2.5rem;
  display: flex;
}
@media all and (min-width: 641px) {
  .about-merit__list__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 640px) {
  .about-merit__list__item {
    padding: 1.875rem 1.25rem;
    gap: 0rem;
    flex-direction: column;
  }
}
.about-merit__list__item > * {
  flex: 1;
  flex-shrink: 0;
}
.about-merit__list__heading {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 640px) {
  .about-merit__list__heading {
    order: -1;
    text-align: center;
  }
}
@media all and (max-width: 640px) {
  .about-merit__list__content {
    display: contents;
  }
}

.successandfailure-strengths {
  padding: 2.5rem;
}
@media all and (max-width: 640px) {
  .successandfailure-strengths {
    padding: 1.875rem 1.25rem;
  }
}
.successandfailure-strengths__lead {
  max-width: 46.25rem;
  margin: 3.75rem auto 2.5rem;
  gap: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 800px) {
  .successandfailure-strengths__lead {
    flex-direction: column;
    align-items: center;
  }
}
@media all and (max-width: 640px) {
  .successandfailure-strengths__lead {
    flex-direction: row;
    align-items: center;
    margin: 1.875rem auto 1.25rem;
    gap: 0.625rem;
  }
}
.successandfailure-strengths__lead .main {
  display: flex;
  align-items: flex-end;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.875rem;
  background: linear-gradient(to top, #FFE200 0%, #ffce00 0.75em, transparent 0.751em, transparent 100%);
}
@media all and (max-width: 640px) {
  .successandfailure-strengths__lead .main {
    font-size: 1rem;
  }
}
.successandfailure-strengths__lead .main strong {
  font-size: 4.6666666667em;
  font-weight: 900;
  line-height: 0.84;
}
.successandfailure-strengths__lead .main strong.color1 {
  color: #F24A00;
}
.successandfailure-strengths__lead .main strong.color2 {
  color: #6F93CD;
}
.successandfailure-strengths__lead .caption {
  font-size: 0.75rem;
  color: #676767;
  text-align: right;
  margin-top: 0.5em;
}
.successandfailure-strengths__text {
  font-weight: 900;
}
@media all and (min-width: 641px) {
  .successandfailure-strengths__text {
    font-size: 1.5rem;
  }
}

.successandfailure-mistakes__item {
  padding: 2.5rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.successandfailure-mistakes__item .ic {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.successandfailure-mistakes__heading {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
}
.successandfailure-mistakes__arrow {
  display: block;
  margin: 2.5rem auto 0;
  background-color: #6F93CD;
  width: 3.75rem;
  height: 1.25rem;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.successandfailure-success__item {
  padding: 1.25rem 1.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.successandfailure-success__item .img {
  margin-bottom: 1.25rem;
  width: 100%;
}
.successandfailure-success__item .img img {
  width: 100%;
}
@media all and (min-width: 801px) {
  .successandfailure-success__item > p {
    padding: 0 0.625rem;
  }
}
.successandfailure-success__heading {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
  color: #4F6D9D;
}
.successandfailure-success__arrow {
  display: block;
  margin: 2.5rem auto 0;
  background-color: #6F93CD;
  width: 3.75rem;
  height: 1.25rem;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.support-flow {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.support-flow__nav {
  padding-bottom: 2.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media all and (max-width: 800px) {
  .support-flow__nav {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .support-flow__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.support-flow__nav > a {
  width: 14%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.2s ease 0s;
  font-size: 0.875rem;
  border-radius: 4em;
}
.support-flow__nav > a:hover {
  text-decoration: none;
}
.support-flow__nav > a:hover {
  background-color: #4F6D9D;
  color: #fff;
}
@media all and (max-width: 800px) {
  .support-flow__nav > a {
    width: auto;
  }
}
.support-flow__nav:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.support-flow__list {
  display: contents;
}
.support-flow__item {
  padding: 2.5rem;
  display: flex;
}
.support-flow__item--step1 {
  order: -1;
}
@media all and (max-width: 800px) {
  .support-flow__item {
    padding: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .support-flow__item {
    padding: 1.25rem 1.25rem 1.875rem;
    flex-direction: column;
  }
}
.support-flow__step {
  font-size: 1.625rem;
  display: flex;
  font-weight: 900;
  font-style: italic;
  color: #6F93CD;
  line-height: 1.2;
  flex-shrink: 0;
  position: relative;
}
@media all and (max-width: 800px) {
  .support-flow__step {
    font-size: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .support-flow__step {
    align-items: baseline;
    justify-content: flex-end;
  }
}
@media all and (min-width: 641px) {
  .support-flow__step {
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
@media all and (min-width: 641px) and (max-width: 800px) {
  .support-flow__step {
    padding-right: 1.875rem;
    margin-right: 1.875rem;
  }
}
@media all and (min-width: 641px) {
  .support-flow__step:after {
    content: "";
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.support-flow__step strong {
  font-size: 2.6923076923em;
  line-height: 0.9;
}
@media all and (max-width: 640px) {
  .support-flow__step strong {
    font-size: 1.7692307692em;
  }
}
.support-flow__content {
  display: flex;
}
@media all and (min-width: 801px) {
  .support-flow__content {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
@media all and (max-width: 800px) {
  .support-flow__content {
    flex-direction: column;
  }
}
.support-flow__img {
  flex: 3;
}
@media all and (max-width: 800px) {
  .support-flow__img {
    margin-bottom: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .support-flow__img img {
    width: 100%;
  }
}
.support-flow__textWrap {
  flex: 5;
}
@media all and (max-width: 800px) {
  .support-flow__textWrap {
    display: contents;
  }
}
.support-flow__heading {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 800px) {
  .support-flow__heading {
    order: -1;
  }
}
.support-flow__btWrap {
  margin-top: 2.5rem;
}
@media all and (max-width: 640px) {
  .support-flow__btWrap {
    margin-top: 1.25rem;
  }
}
.support-flow__btWrap .commonBT {
  font-size: 1.25rem;
  font-weight: 900;
  padding-top: 0.45em;
  padding-bottom: 0.45em;
}
@media all and (max-width: 640px) {
  .support-flow__btWrap .commonBT {
    font-size: 1rem;
  }
}

.members-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.members-list__item {
  padding: 2.5rem;
  display: flex;
}
@media all and (max-width: 640px) {
  .members-list__item {
    padding: 1.875rem 1.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media all and (min-width: 641px) {
  .members-list__img {
    flex-shrink: 0;
    width: 34%;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    position: relative;
  }
}
@media all and (min-width: 641px) and (max-width: 800px) {
  .members-list__img {
    padding-right: 1.875rem;
    margin-right: 1.875rem;
  }
}
@media all and (min-width: 641px) {
  .members-list__img:after {
    content: "";
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
@media all and (max-width: 640px) {
  .members-list__img {
    width: 35%;
  }
}
@media all and (min-width: 641px) {
  .members-list__content {
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media all and (max-width: 640px) {
  .members-list__content {
    display: contents;
  }
}
.members-list__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media all and (max-width: 640px) {
  .members-list__header {
    width: 60%;
  }
}
.members-list__name {
  display: flex;
  align-items: baseline;
  gap: 1.2em;
}
@media all and (max-width: 640px) {
  .members-list__name {
    flex-direction: column;
    gap: 0.2em;
  }
}
.members-list__name .ja {
  font-weight: 900;
  font-size: 1.5em;
}
.members-list__name .en {
  font-weight: bold;
  color: #c0d0eb;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .members-list__message {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.routine-list {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  position: relative;
}
@media all and (max-width: 800px) {
  .routine-list {
    gap: 3.75rem;
  }
}
@media all and (max-width: 640px) {
  .routine-list {
    gap: 2.5rem;
  }
}
.routine-list:before {
  content: "";
  width: 0.0625rem;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 50%;
  letter-spacing: 50%;
  translate: -0.03125rem 0;
  background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 800px) {
  .routine-list:before {
    left: 3.75rem;
    height: 90%;
    top: 5%;
  }
}
@media all and (max-width: 640px) {
  .routine-list:before {
    left: 2.8125rem;
  }
}
.routine-list__item {
  position: relative;
  z-index: 5;
}
.routine-list__item__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}
@media all and (min-width: 801px) {
  .routine-list__item__inner {
    width: calc(50% + 5rem);
  }
  .routine-list__item__inner.right {
    margin-left: auto;
  }
  .routine-list__item__inner.left {
    flex-direction: row-reverse;
  }
}
.routine-list__time {
  width: 10rem;
  height: 10rem;
  flex-shrink: 0;
  background-color: #6F93CD;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.625rem;
  line-height: 1.2;
}
@media all and (max-width: 800px) {
  .routine-list__time {
    width: 7.5rem;
    height: 7.5rem;
    font-size: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .routine-list__time {
    width: 5.625rem;
    height: 5.625rem;
    font-size: 1rem;
  }
}
.routine-list__time .line {
  font-weight: 500;
  rotate: 90deg;
}
.routine-list__content {
  flex: 1;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media all and (max-width: 640px) {
  .routine-list__content {
    font-size: 0.875rem;
  }
}
.routine-list__heading {
  color: #6F93CD;
  font-weight: 900;
  font-size: 1.25em;
  margin-bottom: 0.5em;
}
.routine-list__list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.65em;
  line-height: 1.4;
}
.routine-list__list small {
  font-size: 0.75em;
}
.routine-list__img {
  position: absolute;
  top: 5rem;
  left: 0;
  width: calc(45% - 5rem);
}
.routine-list__img.img1 {
  left: auto;
  right: 0;
}
@media all and (max-width: 800px) {
  .routine-list__img {
    display: none;
  }
}

.routine-summary {
  padding: 2.5rem;
  margin-top: 7.5rem;
}
@media all and (max-width: 1024px) {
  .routine-summary {
    margin-top: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .routine-summary {
    margin-top: 3.75rem;
    padding: 1.875rem 1.25rem;
  }
}
.routine-summary__heading {
  font-size: 1.25rem;
  font-weight: 900;
  color: #6F93CD;
  margin-bottom: 0.5em;
}

.report-list__item {
  display: flex;
}
.report-list__link {
  display: block;
  padding: 1.25rem;
  transition: all 0.2s ease 0s;
}
.report-list__link:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .report-list__link {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0.625rem 0.625rem;
  }
}
.report-list__link:hover img {
  scale: 1.05;
}
.report-list__img {
  margin-bottom: 0.625rem;
  position: relative;
  aspect-ratio: 1/0.5627;
  overflow: hidden;
}
@media all and (max-width: 640px) {
  .report-list__img {
    width: 30%;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }
}
.report-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.report-list__img img:hover {
  text-decoration: none;
}
.report-list__content {
  flex: 1;
}
.report-list__area {
  line-height: 1;
  color: #8e8e8e;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
@media all and (min-width: 641px) {
  .report-list__area {
    text-align: right;
  }
}
.report-list__shop {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .report-list__shop {
    justify-content: flex-start;
    text-align: left;
  }
}
.report-list__shop strong {
  font-size: 1.4285714286em;
  font-weight: 900;
  color: #6F93CD;
}
@media all and (max-width: 640px) {
  .report-list__shop strong {
    font-size: 1.2857142857em;
  }
}
.report-list__name {
  line-height: 1.4;
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 1.25em;
}
@media all and (max-width: 640px) {
  .report-list__name {
    justify-content: flex-start;
    text-align: left;
  }
}

@media all and (min-width: 641px) {
  .faqlist-section-column2 {
    position: relative;
  }
  .faqlist-section-column2:before {
    content: "";
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1.84375rem;
    background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
@media all and (min-width: 641px) and (max-width: 1024px) {
  .faqlist-section-column2:before {
    left: -1.28125rem;
  }
}

.faqlist-section__heading {
  margin-bottom: 2.25rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 900;
}
.faqlist-section__heading .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media all and (max-width: 640px) {
  .faq-list {
    gap: 1.875rem;
  }
}
.faq-list__item {
  background-color: #fff;
  border-radius: 0.625rem;
}
.faq-list__dt {
  padding: 1.25rem;
  font-weight: bold;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
  justify-content: space-between;
  gap: 0.7em;
  cursor: pointer;
}
.faq-list__dt .icon {
  flex-shrink: 0;
  width: calc(30 / 18 * 1em);
  height: calc(30 / 18 * 1em);
  background-color: #6F93CD;
  border-radius: 50%;
  position: relative;
}
.faq-list__dt .icon:before, .faq-list__dt .icon:after {
  content: "";
  width: 0.875rem;
  height: 0.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  translate: -50% -50%;
  transition: all 0.2s ease 0s;
}
.faq-list__dt .icon:before:hover, .faq-list__dt .icon:after:hover {
  text-decoration: none;
}
.faq-list__dt .icon:after {
  rotate: 90deg;
}
.faq-list__dt.active .icon:after {
  rotate: 0deg;
}
.faq-list__dd {
  border-top: 0.0625rem solid #DBDBDB;
  padding: 1.25rem;
  display: none;
}

.postlist-child {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.postlist-child__link {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.2s ease 0s;
}
.postlist-child__link:hover {
  text-decoration: none;
}
.postlist-child__link:hover {
  color: #4F6D9D;
}
.postlist-child__link:hover img {
  scale: 1.05;
}
.postlist-child__img {
  flex: 0.45;
  aspect-ratio: 1/0.6;
  overflow: hidden;
}
.postlist-child__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.postlist-child__img img:hover {
  text-decoration: none;
}
.postlist-child__content {
  flex: 0.55;
  display: flex;
  flex-direction: column;
}
.postlist-child__date {
  line-height: 1.2;
  font-size: 0.75rem;
  color: #8e8e8e;
  margin-bottom: 0.5em;
}
.postlist-child__title {
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .column-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.column-list__link {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease 0s;
  height: 100%;
}
.column-list__link:hover {
  text-decoration: none;
}
.column-list__link:hover {
  color: #4F6D9D;
}
.column-list__link:hover img {
  scale: 1.05;
}
.column-list__img {
  aspect-ratio: 1/0.5627;
  overflow: hidden;
}
.column-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.column-list__img img:hover {
  text-decoration: none;
}
.column-list__content {
  display: flex;
  flex-direction: column;
}
.column-list__date {
  font-size: 0.75rem;
  color: #8e8e8e;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.column-list__title {
  display: -webkit-box;
  line-height: 1.75;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.column-list .label-more {
  margin-top: 0.625rem;
}
@media all and (max-width: 800px) {
  .column-list .label-more {
    display: none;
  }
}

.column-singleWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media all and (max-width: 1024px) {
  .column-singleWrap {
    flex-direction: column;
  }
}
.column-singleWrap__main {
  width: 65.89%;
}
@media all and (max-width: 1024px) {
  .column-singleWrap__main {
    width: 100%;
  }
}
.column-singleWrap__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.column-singleWrap__sideSection {
  padding: 2.5rem 1.875rem;
}
@media all and (max-width: 640px) {
  .column-singleWrap__sideSection {
    padding: 1.875rem 1.25rem;
  }
}
.column-singleWrap__sideSection .commonHeading {
  position: relative;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
.column-singleWrap__sideSection .commonHeading:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}

.columnSingle {
  padding: 5rem 2.5rem 6.25rem;
}
@media all and (max-width: 640px) {
  .columnSingle {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.columnSingle__inner {
  max-width: 43.75rem;
  margin: 0 auto;
}
.columnSingle__header {
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 640px) {
  .columnSingle__header {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.columnSingle__header:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.columnSingle__header .date {
  display: block;
  text-align: right;
  color: #8e8e8e;
  font-size: 0.75rem;
  margin-bottom: 1em;
}
.columnSingle__header .title {
  font-size: 1.25rem;
  font-weight: bold;
}
.columnSingle__header__img {
  width: 100%;
  margin-top: 2.5rem;
}
@media all and (max-width: 640px) {
  .columnSingle__header__img {
    margin-top: 1.875rem;
  }
}
.columnSingle__header__img img {
  width: 100%;
}

.pager {
  margin-top: 5rem;
}
@media all and (max-width: 640px) {
  .pager {
    margin-top: 3.75rem;
  }
}
.pager .nav-links {
  font-family: "roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pager .nav-links .prev {
  display: none;
}
.pager .nav-links .next {
  display: none;
}
.pager .nav-links a {
  background-color: #fff;
  min-width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 1.25rem;
  color: #6F93CD;
  border-radius: 50%;
  transition: all 0.2s ease 0s;
}
.pager .nav-links a:hover {
  text-decoration: none;
}
.pager .nav-links a:hover {
  background-color: #E9EFF8;
}
.pager .nav-links span.current {
  background-color: #fff;
  min-width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 1.25rem;
  background-color: #6F93CD;
  color: #fff;
  border-radius: 50%;
}

.reportSingle {
  padding: 2.5rem 2.5rem 3.75rem;
}
@media all and (max-width: 640px) {
  .reportSingle {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.reportSingle__header {
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .reportSingle__header {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.reportSingle__header:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.reportSingle__header__img {
  width: 60%;
}
@media all and (max-width: 640px) {
  .reportSingle__header__img {
    width: 100%;
  }
}
.reportSingle__header__content {
  width: 37.5%;
  max-width: 21.5625rem;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 640px) {
  .reportSingle__header__content {
    width: 100%;
    max-width: 100%;
  }
}
.reportSingle__header__content .area {
  display: block;
  color: #8e8e8e;
  font-size: 0.875rem;
  margin-bottom: 1.25em;
}
.reportSingle__header__content .shop {
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  flex-wrap: wrap;
}
.reportSingle__header__content .shop .shop_name {
  color: #6F93CD;
  font-weight: 900;
  font-size: 1.25rem;
}
.reportSingle__header__content .shop .branch_name {
  font-size: 0.875rem;
}
.reportSingle__header__content .name {
  font-weight: 900;
  font-size: 1.25rem;
}

.singleContent .wp-block-heading {
  font-size: 1.125rem;
  margin-bottom: 1em;
  border-left: 0.5rem solid #6F93CD;
  padding-left: 1.125rem;
}
.singleContent p {
  margin-bottom: 2.5rem;
}
.singleContent p:last-child {
  margin-bottom: 0;
}

.faq-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: clamp(0.625rem, 3vw, 1.25rem);
  justify-content: space-between;
}
@media all and (max-width: 800px) {
  .faq-nav {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .faq-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-nav > a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.2s ease 0s;
  font-size: 0.875rem;
  border-radius: 4em;
}
.faq-nav > a:hover {
  text-decoration: none;
}
.faq-nav > a:hover {
  background-color: #4F6D9D;
  color: #fff;
}
@media all and (max-width: 800px) {
  .faq-nav > a {
    width: auto;
  }
}

.faq-section {
  padding-top: 3.75rem;
  margin-top: 3.75rem;
  position: relative;
}
.faq-section:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}

.company-box {
  padding: 6.25rem 2.5rem;
}
.company-box__list {
  max-width: 57.875rem;
  margin: 0 auto;
}
.company-box__row {
  position: relative;
  padding: 1.875rem 0;
  display: flex;
}
@media all and (max-width: 640px) {
  .company-box__row {
    padding: 1.25rem 0;
    flex-direction: column;
  }
}
.company-box__row:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.company-box__row:first-child:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.company-box__dt {
  width: 12em;
  flex-shrink: 0;
  margin-right: 1.5em;
  position: relative;
}
@media all and (max-width: 1024px) {
  .company-box__dt {
    width: 10em;
  }
}
@media all and (max-width: 640px) {
  .company-box__dt {
    width: 5em;
  }
}
.company-box__dt:after {
  content: ":";
  position: absolute;
  right: 0;
}

.company-map {
  position: relative;
  height: 28.125rem;
  margin-top: 7.5rem;
}
@media all and (max-width: 640px) {
  .company-map {
    margin-top: 3.75rem;
    height: 17.5rem;
  }
}
.company-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ppWrap {
  max-width: 57.875rem;
  margin: 0 auto;
  position: relative;
  line-height: 1.8;
}
.ppWrap__main {
  display: flex;
  flex-direction: column;
  gap: 1.75em;
  margin: 0 auto 3.75rem;
  padding-bottom: 3.75rem;
  position: relative;
}
.ppWrap__main:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.ppWrap__main h3,
.ppWrap__main h4 {
  margin-bottom: 0.3em;
}

.formContainer {
  padding: 6.25rem 2.5rem;
}
@media all and (max-width: 1024px) {
  .formContainer {
    padding: 5rem 2.5rem;
  }
}
@media all and (max-width: 640px) {
  .formContainer {
    padding: 3.125rem 1.25rem;
  }
}

.formWrap {
  max-width: 37.5rem;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 400;
}
.formWrap__row {
  padding: 3.75rem 0;
  position: relative;
}
.formWrap__row:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 640px) {
  .formWrap__row {
    padding: 1.875rem 0;
  }
}
.formWrap__item {
  display: flex;
  gap: 1em;
}
.formWrap__item.column {
  flex-direction: column;
}
@media all and (max-width: 640px) {
  .formWrap__item {
    flex-direction: column;
  }
}
.formWrap__label {
  flex-shrink: 0;
  min-width: 8em;
}
@media all and (min-width: 641px) {
  .formWrap__label {
    padding-top: 0.5em;
  }
}
.formWrap__label .req_label {
  color: #f70000;
}
.formWrap__parts {
  flex: 1;
}
.formWrap input[type=text],
.formWrap input[type=email],
.formWrap input[type=tel],
.formWrap textarea,
.formWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1rem;
  padding: 0.75em 1.5em;
  border: 0.0625rem solid #adadad;
  border-radius: 0.625rem;
  width: 100%;
  display: block;
  background-color: #fafafa;
}
.formWrap select {
  background-image: url(../images/common/select_arrow.svg);
  background-position: right 1.5em center;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.formWrap .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 0.625rem 1.25rem;
  padding-top: 0.65em;
}
.formWrap .wpcf7-radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}
.formWrap .wpcf7-radio label input[type=radio] {
  display: none;
}
.formWrap .wpcf7-radio label input[type=radio]:checked + span:before {
  opacity: 1;
}
.formWrap .wpcf7-radio label span {
  padding-left: 1.875rem;
  position: relative;
  display: block;
}
.formWrap .wpcf7-radio label span:after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #adadad;
  background-color: #fafafa;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.formWrap .wpcf7-radio label span:before {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  left: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  background-color: #4F6D9D;
  border-radius: 50%;
  opacity: 0;
  z-index: 5;
}
.formWrap textarea {
  padding: 1em 1.5em;
}
.formWrap textarea.short {
  height: 6.6em;
}
@media all and (max-width: 640px) {
  .formWrap textarea.short {
    height: 9em;
  }
}
.formWrap__acceptance {
  display: flex;
  padding: 3.75rem 0 0;
  position: relative;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media all and (min-width: 641px) {
  .formWrap__acceptance .wpcf7-form-control-wrap {
    min-width: 25.625rem;
  }
}
@media all and (max-width: 640px) {
  .formWrap__acceptance .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.formWrap__acceptance a {
  text-decoration: underline;
  color: #6F93CD;
}
.formWrap__acceptance a:hover {
  text-decoration: none;
}
.formWrap__acceptance:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 640px) {
  .formWrap__acceptance {
    padding: 1.875rem 0;
  }
}
.formWrap__acceptance label {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}
.formWrap__acceptance label input[type=checkbox] {
  display: none;
}
.formWrap__acceptance label input[type=checkbox]:checked + span:before {
  opacity: 1;
}
.formWrap__acceptance label span {
  padding-left: 1.875rem;
  position: relative;
  display: block;
}
.formWrap__acceptance label span:after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #adadad;
  background-color: #fafafa;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.formWrap__acceptance label span:before {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  left: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  background-color: #4F6D9D;
  border-radius: 50%;
  opacity: 0;
  z-index: 5;
}
@media all and (max-width: 640px) {
  .formWrap__acceptance label {
    font-size: 2.7906vw;
  }
}
.formWrap__btWrap {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.formWrap__btWrap .commonBT {
  font-size: 1rem;
}
.formWrap__btWrap .wpcf7-previous {
  min-width: 6em;
  border: 0;
  border-radius: 2em;
  padding: 0.5em;
  background-color: #DBDBDB;
  cursor: pointer;
  appearance: none;
}
.formWrap .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: bold;
  text-align: right;
}
.formWrap .wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  border: 0 !important;
  background-color: #4F6D9D;
  color: #fff !important;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.5em !important;
}
@media all and (max-width: 640px) {
  .wpcf7-response-output {
    font-size: 2.7906vw;
  }
}

.confirm-hidden {
  display: none !important;
}

#toTop {
  width: 2.5rem;
  height: 2.25rem;
  position: absolute;
  z-index: 10;
  right: 2.5rem;
  top: 0;
  translate: 0 -99.9%;
  background-color: #4F6D9D;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem 0.625rem 0 0;
  padding-top: 0.25rem;
}

.mainFooter {
  background-color: #4F6D9D;
  color: #fff;
  padding: 6.25rem 0 7.5rem;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 640px) {
  .mainFooter {
    padding: 4.375rem 0 5rem;
  }
}
.mainFooter a {
  color: #fff;
}
.mainFooter__logo {
  width: 6.125rem;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 641px) {
  .mainFooter__logo {
    margin-left: 1.875rem;
  }
}
.mainFooter__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.mainFooter__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media all and (max-width: 1024px) {
  .mainFooter__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0;
  }
}
@media all and (max-width: 640px) {
  .mainFooter__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.mainFooter__nav__column {
  position: relative;
  padding: 0 1.5625rem;
}
@media all and (max-width: 640px) {
  .mainFooter__nav__column {
    padding: 1.875rem 0;
  }
}
.mainFooter__nav__column:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to bottom, #BCBCBC 0, #BCBCBC 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 640px) {
  .mainFooter__nav__column:before {
    width: 100%;
    height: 0.0625rem;
    background: repeating-linear-gradient(to right, #BCBCBC 0, #BCBCBC 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.mainFooter__nav__column:first-child:before {
  display: none;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .mainFooter__nav__column:nth-child(2n-1):before {
    display: none;
  }
}
.mainFooter__nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.4;
}
.mainFooter__nav__parent > a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 900;
}
.mainFooter__nav__parent > a:before {
  content: "";
  width: 0.46875rem;
  height: 0.65625rem;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/gnav_bticon.svg);
}
.mainFooter__nav__child {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.875rem;
}
.mainFooter__nav__child li {
  padding-left: 0.875rem;
}
.mainFooter__nav__child a {
  display: block;
  color: #dedede;
  font-weight: bold;
  font-size: 0.75rem;
}
.mainFooter__nav__caption {
  font-size: 0.875rem;
  max-width: 1.875rem 0;
  line-height: 1.75;
}
.footCredit {
  display: block;
  text-align: center;
  padding: 1.5em;
  position: relative;
  z-index: 10;
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .footCredit {
    padding: 0.75em;
  }
}

.fixedNav {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: all 1s ease 0s;
}
.fixedNav:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .fixedNav {
    translate: 0;
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.fixedNav.scrolled {
  translate: 110% -50%;
}
@media all and (max-width: 640px) {
  .fixedNav.scrolled {
    translate: 0 110%;
  }
}
.fixedNav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1.1;
  background-color: #FF7510;
  transition: all 0.2s ease 0s;
  padding: 1.875rem 1.125rem;
  gap: 0.3125rem;
}
.fixedNav a:hover {
  text-decoration: none;
}
@media all and (min-width: 641px) {
  .fixedNav a {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
@media all and (max-width: 1024px) {
  .fixedNav a {
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
  }
}
@media all and (max-width: 640px) {
  .fixedNav a {
    font-size: 1rem;
    flex-direction: row;
    padding: 0.9375rem 1.25rem;
  }
}
.fixedNav a:hover {
  background-color: #F24A00;
}
.fixedNav a .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
}
@media all and (max-width: 640px) {
  .fixedNav a .text {
    flex-direction: row;
  }
}
.fixedNav a .text .s {
  font-size: 0.8em;
}
.fixedNav a:after {
  content: "";
  width: calc(30 / 16 * 1em);
  height: calc(30 / 16 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_btarrow.svg);
}