@charset "UTF-8";
:root {
  --text-black: #222;
  --en: "Figtree", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
  --blue01: #003fa3;
  --blue02: #185bcc;
  --blue03: #2056b1;
  --border01: #c2cfe5;
  --blue04: #f4f4f8;
  --blue05: #effafe;
  --shadow01: 0 0 6px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  overflow: hidden;
}

.top-company .contents {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center; /* ← これがポイント */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 71.7423133236%;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 85.8139534884%;
  }
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.btn01 {
  background-color: white;
  width: 240px;
  height: 50px;
  border-radius: 30px;
  color: var(--blue01);
  display: grid;
  place-content: center;
  position: relative;
  margin: auto;
  margin-top: 42px;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .btn01 {
    margin-top: 24px;
  }
}
.btn01::after {
  content: "";
  background: url(../../assets/images/right-arrow.svg) no-repeat center/contain;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: all 0.3s ease;
}
.btn01:hover::after {
  transform: translate(6px, -50%);
}

.blue-btn {
  width: fit-content;
  height: 32px;
  color: white;
  line-height: 1;
  padding: 10px 20px;
  background-color: var(--blue02);
  display: grid;
  place-content: center;
  border-radius: 30px;
  font-weight: 700;
}

.header {
  width: 100%;
  height: 104px;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: white;
}
@media screen and (max-width: 768px) {
  .header {
    height: 76px;
  }
}
.header .header-inner {
  align-items: center;
  justify-content: space-between;
  width: 95.9004392387%;
  margin: 0 auto;
  height: 100%;
}
.header h1 {
  width: 161px;
}
.header h1 a {
  display: block;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav-list {
  align-items: center;
}
.header .header-nav-list li {
  margin-left: 32px;
}
.header .header-nav-list li a {
  font-size: clamp(12px, 1.0980966325vw, 14px);
  font-weight: 500;
}
.header .openbtn {
  height: 60px;
  width: 64px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 200;
  display: none;
}
@media screen and (max-width: 768px) {
  .header .openbtn {
    display: block;
  }
}
.header .openbtn span {
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--blue03);
  display: inline-block;
}
.header .openbtn span:nth-of-type(1) {
  top: 24px;
  left: 24px;
}
.header .openbtn span:nth-of-type(2) {
  top: 31px;
  left: 24px;
}
.header .openbtn span:nth-of-type(3) {
  top: 38px;
  left: 24px;
}
.header .openbtn.active span {
  transition: all 0.4s ease;
}
.header .openbtn.active span:nth-of-type(1) {
  width: 40%;
  transform: translateY(7px) rotate(-45deg);
}
.header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openbtn.active span:nth-of-type(3) {
  width: 40%;
  transform: translateY(-7px) rotate(45deg);
}
.header #gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 84%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  .header #gnav-sp.panelactive {
    right: 0;
  }
  .header #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .header #gnav-sp #gnav-sp-list ul li {
    margin-bottom: 24px;
  }
  .header #gnav-sp #gnav-sp-list ul li a {
    font-size: 1.8rem;
  }
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 87.8477306003%;
}

.inner-small {
  max-width: 980px;
  margin: 0 auto;
  width: 90.6976744186%;
}

.contents {
  /*max-width: 980px;*/
  margin: 0 auto;
}

.mv {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 0px;
  }
}
.mv .mv-img {
  width: 100%;
}
.mv .mv-box {
  margin: auto;
  overflow: hidden;
  max-width: 1200px;
  width: 90.6976744186%;
  position: relative;
  background-color: var(--blue01);
  border-radius: 44px;
  margin-top: 0;
  color: white;
}
@media screen and (max-width: 768px) {
  .mv .mv-box {
    max-width: 390px;
  }
}
.mv .mv-box .mv-box-inner {
  padding: 60px 130px;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv .mv-box .mv-box-inner {
    padding: 48px 32px;
  }
}
.mv .mv-box .mv-box-inner::before {
  content: "";
  background: url(../../assets/images/mv-box-deco-text.svg) no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  height: 100%;
  max-width: 130px;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv .mv-box .mv-box-inner::before {
    max-width: 70px;
  }
}
.mv .mv-box .mv-box-inner::after {
  content: "";
  background: url(../../assets/images/fun-to-know.png) no-repeat center/contain;
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 614px;
  height: 397px;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv .mv-box .mv-box-inner::after {
    content: none;
  }
}
.mv .mv-box .mv-box-content {
  position: relative;
  z-index: 2;
}
.mv .mv-box .mv-box-content .ttl-big {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
}
.mv .mv-box .mv-box-content .ttl-big .en {
  font-size: 5.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mv .mv-box .mv-box-content .ttl-big .en {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv-box .mv-box-content .ttl-big {
    font-size: 2.3rem;
  }
}

.desc .text:not(:last-child) {
  margin-bottom: 1em;
}

hgroup {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  hgroup {
    margin-bottom: 24px;
  }
}
hgroup .sub-ttl {
  color: var(--blue03);
  font-family: var(--en);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  hgroup .sub-ttl {
    font-size: 2rem;
  }
}
hgroup .sub-ttl::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  display: inline-block;
  background: var(--blue03);
  border-radius: 50%;
  margin-right: 0.3em;
}
hgroup .ttl {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  hgroup .ttl {
    font-size: 2rem;
  }
}

.fadein {
  opacity: 0;
}

.top-ideology {
  position: relative;
  padding-bottom: 0;
}
.top-ideology::before {
  content: "";
  background: url(../../assets/images/text-bg-ideology.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-size: 102.1229868228vw 14.8609077599vw;
  background-position: top center;
  margin-top: 100px;
}
.top-ideology .contents .img-wrapper {
  max-width: 730px;
  margin: 0 auto;
}
.top-ideology hgroup {
  margin-bottom: 0;
}

.top-service {
  position: relative;
}
.top-service .service-list {
  margin-bottom: 0;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  perspective: 1000px;
  counter-reset: number 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .service-list {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
}
.service-list .item {
  position: relative;
  width: 100%;
  height: auto;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .service-list .item {
    margin-bottom: 40px;
  }
}
.service-list .item::after {
  counter-increment: number 1;
  content: "0" counter(number);
  position: absolute;
  top: 0;
  right: 16px;
  transform: translateY(-50%);
  line-height: 1;
  color: var(--blue01);
  font-weight: 700;
  font-size: 7rem;
  font-family: var(--en);
}
@media screen and (max-width: 768px) {
  .service-list .item::after {
    font-size: 6.4rem;
  }
}
.service-list .item .flip-inner {
  position: relative;
  width: 100%;
  height: 206px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  margin-bottom: 40px;
}
.service-list .item .flip-bottom h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-list .item .flip-bottom a {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.service-list .item .flip-bottom a::after {
  content: "";
  background: url(../../assets/images/icon-arrow-right.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4em;
}
.service-list .item .front,
.service-list .item .back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.service-list .item .front {
  background: #eeeef9;
  border-radius: 10px;
  position: relative;
}
.service-list .item .front:hover img {
  transform: scale(1.05);
}
.service-list .item .front img {
  position: absolute;
  bottom: -10%;
  height: auto;
  display: block;
  width: 85.9154929577%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .service-list .item .front img {
    max-width: 290px;
  }
}
.service-list .item .back {
  background: #eeeef9;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  transform: rotateY(180deg);
}
.service-list .item .text-wrapper .text {


  color: var(--blue03);
  font-size: 1.8rem;
  font-weight: 700;
}
.service-list .item.is-active .flip-inner {
  transform: rotateY(180deg);
}

.top-service .link-btn01 {
  margin: 40px auto 80px;
}
.top-service .ratio-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  margin-bottom: 100px;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 56px;
  }
}
.top-service .ratio-list .item {
  padding: 8px;
  border-left: 2px solid var(--border01);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list .item {
    margin-bottom: 8px;
  }
}
.top-service .ratio-list .item:last-child {
  border-right: 2px solid var(--border01);
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list .item:nth-child(3) {
    border-right: 2px solid var(--border01);
  }
}
.top-service .ratio-list .item .text-top {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list .item .text-top {
    margin-bottom: 4px;
    font-size: 1.6rem;
  }
}
.top-service .ratio-list .item .text-body {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list .item .text-body {
    font-size: 1.4rem;
  }
}
.top-service .ratio-list .item .text-body .big-text {
  font-size: 7rem;
  font-family: var(--en);
  font-weight: 700;
  text-align: center;
  color: #2056b1;
}
@media screen and (max-width: 768px) {
  .top-service .ratio-list .item .text-body .big-text {
    font-size: 3rem;
  }
}

.top-company .contents {
  -moz-column-gap: 30px;
  column-gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .top-company .contents {
    flex-direction: column-reverse;
  }
}
.top-company .contents .iframe-wrapper {
  width: 59.1836734694%;
  aspect-ratio: 620/400;
}
@media screen and (max-width: 768px) {
  .top-company .contents .iframe-wrapper {
    width: 100%;
  }
}
.top-company .contents .iframe-wrapper iframe {
  width: 100%;
  /*height: 100%;*/
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-company .contents .text-wrapper {
  flex: 1;
}
.top-company .contents .text-wrapper dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 1em;
  column-gap: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .top-company .contents .text-wrapper dl > div {
    flex-direction: column;
  }
}
.top-company .contents .text-wrapper dl > div dt {
  width: 7em;
}
@media screen and (max-width: 768px) {
  .top-company .contents .text-wrapper dl > div dt {
    font-weight: 500;
  }
}
.top-company .contents .text-wrapper dl > div dd {
  flex: 1;
}

.footer {
  background: #081f5c;
  padding: 48px 0 40px;
}
.footer .footer-inner {
  max-width: 980px;
  width: 90.6976744186%;
  margin: 0 auto;
}
.footer .footer-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .footer .footer-link-list {
    grid-template-columns: 1fr;
  }
}
.footer .footer-link-list .item {
  background: white;
  border-radius: 10px;
  text-align: center;
}
.footer .footer-link-list .item .flex-col {
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.footer .footer-link-list .item .flex-col .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 8px;
}
.footer .footer-link-list .item .flex-col .text-en {
  font-family: var(--en);
  font-weight: 700;
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-link-list .item .flex-col .text-en .ja {
  font-size: 1.6rem;
  font-family: var(--ja);
  font-weight: 400;
}
.footer .footer-link-list .item:nth-child(1) .icon {
  background-image: url(../../assets/images/icon-contact.svg);
}
.footer .footer-link-list .item:nth-child(2) .icon {
  background-image: url(../../assets/images/icon-tel.svg);
}
.footer .footer-link-list .item:nth-child(3) .icon {
  background-image: url(../../assets/images/icon-time.svg);
}
.footer .footer-logo {
  width: 215px;
  display: block;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    width: 161px;
    margin-bottom: 16px;
  }
}
.footer small {
  font-size: 1.4rem;
  display: block;
  margin: 0 auto;
  color: white;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer small {
    font-size: 1rem;
  }
}

.lower .footer .footer-inner {
  margin-bottom: 56px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lower .footer .footer-inner {
    flex-direction: column;
  }
}
.lower .footer .footer-inner .footer-logo {
  margin: 0;
}
.lower .footer .footer-text {
  color: white;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lower .footer .footer-text {
    text-align: left;
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.lower .footer .footer-text .flex {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .lower .footer .footer-text .flex {
    justify-content: flex-start;
  }
}
.lower .footer .footer-text address {
  font-style: normal;
}
.lower .footer .footer-text a {
  color: white;
}

.lower .header {
  box-shadow: var(--shadow01);
}
.lower .page-ttl {
  background-color: var(--blue04);
  width: 100%;
  height: 250px;
  margin-top: 104px;
}
@media screen and (max-width: 768px) {
  .lower .page-ttl {
    margin-top: 76px;
    height: 200px;
  }
}
.lower .page-ttl hgroup {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lower .page-ttl .img-wrapper {
    width: 100px;
  }
}
.lower .page-ttl .flex {
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.lower .page-ttl h2 {
  font-family: var(--en);
  color: var(--blue03);
  font-weight: 700;
  font-size: clamp(30px, 5.8565153734vw, 80px);
  line-height: 1.25;
}
.lower .page-ttl .sub-ttl {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-black);
}
@media screen and (max-width: 768px) {
  .lower .page-ttl .sub-ttl {
    font-size: 1.8rem;
  }
}
.lower .page-ttl .sub-ttl::before {
  content: none;
}

.page-service .page-top {
  padding-bottom: 0;
}
.page-service .top-desc {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page-service .top-desc {
    margin-bottom: 56px;
    text-align: left;
  }
}
.page-service .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-service .service-list {
    grid-template-columns: 1fr;
  }
}
.page-service .item {
  height: auto !important;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-service .item {
    margin-bottom: 40px;
  }
}
.page-service .flip-bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.page-service .flip-bottom h3 {
  text-align: center;
  color: var(--blue03);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-service .flip-bottom .text {
  margin-bottom: 16px;
  flex-grow: 1;
}
.page-service .flip-bottom .bg-text {
  background: var(--blue05);
  border-radius: 10px;
  padding: 16px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .page-service .flex-wrapper {
    flex-direction: column;
  }
}
.page-service .point-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
}
.page-service .point-list li:last-of-type {
  border-bottom: none;
}
.page-service .point-list li h4 {
  color: var(--blue03);
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.page-service .point-list li h4::before {
  content: "";
  background: url(../../assets/images/triangle.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  display: block;
  margin-right: 0.5em;
}
.page-service .contents-bottom-text {
  text-align: center;
  color: var(--blue03);
  font-weight: 700;
  font-size: 2.4rem;
  padding: 16px;
  background: var(--blue05);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page-service .contents-bottom-text {
    font-size: 1.8rem;
  }
}
.page-service .strong-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .page-service .strong-list {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.page-service .strong-list li {
  display: flex;
  align-items: flex-start;
}
.page-service .strong-list li::before {
  content: "";
  margin-top: 0.7em;
  background-color: var(--blue03);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 7px;
  height: 12px;
  flex-shrink: 0;
  margin-right: 0.4em;
  display: inline-block;
  vertical-align: middle;
}
.page-service .strong-list li h4 {
  color: var(--blue03);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.color-blue {
  color: var(--blue03);
}

.page-about .top-desc {
  margin-top: 100px;
  text-align: center;
  color: var(--blue03);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-about .top-desc {
    margin-top: 56px;
    font-size: 2rem;
  }
}
.page-about .message .contents {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 48px;
  column-gap: 48px;
}
@media screen and (max-width: 768px) {
  .page-about .message .contents {
    flex-direction: column-reverse;
  }
}
.page-about .message .img-wrapper {
  overflow: hidden;
  border-radius: 0 44px 44px 0;
}
.page-about .message .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-about .message .text-wrapper {
  width: 50.8333333333%;
  flex-shrink: 0;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-about .message .text-wrapper {
    width: 100%;
  }
}
.page-about .message .text-wrapper .text {
  margin-bottom: 1em;
}
.page-about .history {
  padding: 0;
}
.page-about .history .history-wrapper .flex {
  justify-content: flex-end;
  width: 100%;
  align-items: flex-start;
  -moz-column-gap: 48px;
  column-gap: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .page-about .history .history-wrapper .flex {
    justify-content: flex-start;
    flex-direction: column;
  }
  .page-about .history .history-wrapper .flex:last-child {
    margin-bottom: 0;
  }
}
.page-about .history .history-wrapper dt {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-about .history .history-wrapper dt {
    margin-bottom: 8px;
    font-size: 2.4rem;
  }
}
.page-about .history .history-wrapper dd {
  width: 50.8333333333%;
}
@media screen and (max-width: 768px) {
  .page-about .history .history-wrapper dd {
    width: 100%;
  }
}
.page-about .overview .contents {
  max-width: 51.2445095168vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-about .overview .contents {
    width: 100%;
    max-width: none;
  }
}
.page-about .overview .contents dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .page-about .overview .contents dl > div {
    flex-direction: column;
  }
}
.page-about .overview .contents dl > div dt,
.page-about .overview .contents dl > div dd {
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .page-about .overview .contents dl > div dt,
  .page-about .overview .contents dl > div dd {
    padding: 0 0 8px;
  }
}
.page-about .overview .contents dl > div dt {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .page-about .overview .contents dl > div dt {
    width: 100%;
    padding-top: 8px;
    font-weight: 500;
  }
}
.page-about .overview .contents dl > div dd {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .page-about .overview .contents dl > div dd {
    width: 100%;
  }
}

.page-contact .step-wrapper {
  margin-bottom: 48px;
}
.page-contact .step-wrapper .step {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .step-wrapper .step .hr {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--blue03);
}
@media screen and (max-width: 768px) {
  .page-contact .step-wrapper .step .hr {
    width: 24px;
  }
}
.page-contact .step-wrapper .step .item {
  background: white;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  color: #b7c3d6;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  border: 1px solid var(--blue03);
}
@media screen and (max-width: 768px) {
  .page-contact .step-wrapper .step .item {
    width: 100px;
    height: 100px;
  }
}
.page-contact .step-wrapper .step .item .num {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .page-contact .step-wrapper .step .item .num {
    font-size: 2rem;
    line-height: 1;
  }
}
.page-contact .step-wrapper .step .item .text {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-contact .step-wrapper .step .item .text {
    font-size: 1.4rem;
  }
}
.page-contact .step-wrapper .step .item.current {
  background: var(--blue03);
  color: white;
}
.page-contact .form {
  border-radius: 44px;
  border: 5px solid var(--blue03);
  padding: 56px;
}
@media screen and (max-width: 768px) {
  .page-contact .form {
    border-width: 3px;
    padding: 24px 20px;
    border-radius: 16px;
  }
}
.page-contact .form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  margin-right: 0.3em;
}
.page-contact .form input[type=checkbox]::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  height: 16px;
  width: 10px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(50deg);
}
.page-contact .form input[type=checkbox]:checked {
  background: var(--blue02);
}
.page-contact .form .contact-item {
  margin-bottom: 32px;
}
.page-contact .form .contact-item .form-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.page-contact .form .contact-item.required .form-ttl::after {
  content: "＊";
  color: red;
  font-weight: 700;
}
.page-contact .form .contact-item .check-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .page-contact .form .contact-item .check-area {
    grid-template-columns: 1fr;
  }
}
.page-contact .form .contact-item .check-area label {
  border: 2px solid #ccc;
  border-radius: 7px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
}
.page-contact .form .contact-item .check-area label .text {
  font-weight: 700;
  font-size: 1.6rem;
}
.page-contact .form .flex-2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .page-contact .form .flex-2 {
    flex-direction: column;
  }
}
.page-contact .form .flex-2 .contact-item {
  width: 100%;
}
.page-contact input[type=text],
.page-contact input[type=email],
.page-contact textarea {
  border: 1px solid #ccc;
  padding: 10px 8px;
  border-radius: 7px;
  width: 100%;
}
.page-contact input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.page-contact .file-upload {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .page-contact .file-upload {
    flex-direction: column;
  }
}
.page-contact .file-name {
  display: block;
  width: 50%;
  border: 1px solid #ccc;
  padding: 10px 8px;
  border-radius: 7px;
}
@media screen and (max-width: 768px) {
  .page-contact .file-name {
    width: 100%;
  }
}
.page-contact .file-btn {
  width: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 7px;
  background: linear-gradient(to bottom, #fff 0%, #e2e2e2 100%);
  border: 1px solid #ccc;
}

.buttons {
  margin: 40px auto 100px;
  display: flex;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .buttons {
    margin: 40px auto 24px;
  }
}

.home main {
  margin-top: 104px;
}
@media screen and (max-width: 768px) {
  .home main {
    margin-top: 76px;
  }
}

.page-contact.confirm .form {
  background-color: var(--blue03);
  color: white;
}
.page-contact.confirm .contact-confirm .contact-confirm-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  .page-contact.confirm .contact-confirm .contact-confirm-item {
    flex-direction: column;
  }
}
.page-contact.confirm .contact-confirm .contact-confirm-item dt,
.page-contact.confirm .contact-confirm .contact-confirm-item dd {
  padding: 16px 0;
  font-weight: 700;
}
.page-contact.confirm .contact-confirm .contact-confirm-item dt {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .page-contact.confirm .contact-confirm .contact-confirm-item dt {
    width: 100%;
  }
}
.page-contact.confirm .contact-confirm .contact-confirm-item dd {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .page-contact.confirm .contact-confirm .contact-confirm-item dd {
    width: 100%;
    padding-top: 0;
  }
}

.ta-c {
  text-align: center;
}

.page-contact.thanks .thanks-message-ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page-contact.thanks .thanks-message-ttl {
    font-size: 2rem;
  }
}
.page-contact.thanks .thanks-message-text p {
  margin-bottom: 1em;
}
.page-contact.thanks .thanks-message-text p:last-of-type {
  margin-bottom: 0;
}

.page-business .page-top {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-business .page-top {
    padding-bottom: 0;
  }
}
.page-business .page-top .lead {
  color: var(--blue03);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page-business .page-top .lead {
    font-size: 2rem;
    margin-bottom: 56px;
  }
}
.page-business .service-list {
  margin-bottom: 0;
}
.page-business .service-list .item {
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-business .service-list .item:last-child {
    margin-bottom: 0;
  }
}
.page-business .service-list .item .flip-inner {
  height: 206px;
}
.page-business .flip-bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: stretch;
}
.page-business .flip-bottom h3 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2056b1;
}
.page-business .flip-bottom .flip-bottom-box {
  padding: 16px 24px;
  border: 1px solid var(--blue01);
  width: 100%;
  border-radius: 10px;
  flex-grow: 1;
}
.page-business .flip-bottom .flip-bottom-box .ttl {
  text-align: center;
  font-weight: 700;
  color: var(--blue03);
  margin-bottom: 8px;
}
.page-business .flip-bottom .flip-bottom-box ol {
  counter-reset: list-counter 0;
}
.page-business .flip-bottom .flip-bottom-box ol li {
  counter-increment: list-counter 1;
  display: flex;
  align-items: flex-start;
}
.page-business .flip-bottom .flip-bottom-box ol li::before {
  content: counter(list-counter);
  background-color: var(--blue03);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-right: 0.4em;
  margin-top: 5px;
  color: white;
  vertical-align: middle;
  width: 1.5em;
  line-height: 1;
  height: 1.5em;
  aspect-ratio: 1/1;
  padding-bottom: 3px;
  display: grid;
  place-content: center;
}
.page-business .flip-bottom .flip-bottom-box ul li::before {
  content: "";
  background: url(../../assets/images/icon-check.svg) no-repeat center/contain;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}
.page-business .flip-bottom .flip-bottom-box .has-bg {
  background-color: #EFFAFE;
  border-radius: 10px;
  padding: 16px;
  color: #0D3B82;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  display: flex;
  margin-top: 24px;
}
.page-business .flip-bottom .flip-bottom-box .has-bg::before {
  content: "";
  background: url(../../assets/images/icon-attention.svg) no-repeat center/contain;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}
.page-business .partner {
  padding-bottom: 0;
}
.page-business .partner-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.page-business .review .review-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page-business .review .review-list li {
    font-size: 1.6rem;
  }
}
.page-business .review .review-list li:not(:last-child) {
  margin-bottom: 24px;
}
.page-business .review .review-list li::before {
  content: "";
  background: url(../../assets/images/review01.svg) no-repeat center/contain;
  width: 120px;
  height: 120px;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .page-business .review .review-list li::before {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    flex-shrink: 0;
    text-align: justify;
  }
}
.page-business .review .review-list li:nth-child(2)::before {
  content: "";
  background: url(../../assets/images/review02.svg) no-repeat center/contain;
}
.page-business .review .review-list li:nth-child(3)::before {
  content: "";
  background: url(../../assets/images/review03.svg) no-repeat center/contain;
}

