@charset "UTF-8";
/* common
******************************************************************************************/
html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 5rem;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
body.is-noscroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 113rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}
.header {
  padding: 3rem 0;
  background-color: #fff;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 2;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 30rem;
  transition: opacity 0.4s;
}

.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  gap: 4rem;
}

.header-nav__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

.header-nav__item:hover {
  color: #305687;
}

.header-nav__item::before, .header-nav__item::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  height: 0.2rem;
  width: 50%;
  background: #305687;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-nav__item::before {
  left: 50%;
  transform-origin: left;
}

.header-nav__item::after {
  right: 50%;
  transform-origin: right;
}

.header-nav__item:hover::before, .header-nav__item:hover::after {
  transform: scaleX(1);
}

.header-btn {
  position: relative;
  display: none;
  width: 5rem;
  margin-right: -1.5rem;
  aspect-ratio: 1;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
  background-color: #305687;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .header-btn {
    display: block;
  }
}
.header-btn span {
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  left: 50%;
  translate: -50%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 1.6rem;
}

.header-btn span:nth-child(2) {
  top: 2.4rem;
}

.header-btn span:nth-child(3) {
  top: 3.2rem;
}

.header-btn span.close:nth-child(1) {
  top: 2.4rem;
  transform: rotate(-45deg);
}

.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  top: 2.4rem;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  width: 100%;
  top: 0;
  left: 100%;
  padding: 6rem 2.5rem;
  transition: left 0.6s;
  z-index: 3;
  background: #305687;
  overflow: auto;
}

.drawer.slidein {
  left: 0;
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 35.8rem;
  width: calc(100% - 3.2rem);
  overflow: auto;
}

.drawer-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  z-index: 1;
}

.drawer-link__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 0.1rem solid #fff;
  color: #fff;
}

.drawer-link__item a {
  display: block;
  padding: 1.5rem 0;
  transition: opacity 0.4s;
}

.drawer-link__item > a:active, .drawer-link__item > a:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  background-color: #305687;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}
.bg.is-show {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

/* トップページ
******************************************************************************************/
.top-fv {
  width: 100%;
  padding: 19.1rem 0;
  background: url(../images/top/fv.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

@media screen and (max-width: 768px) {
  .top-fv {
    position: relative;
    aspect-ratio: 375/370;
    padding: 0;
    margin-top: 5rem;
    background: url(../images/top/fv_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}
.top-fv-text {
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .top-fv-text {
    position: absolute;
    width: calc(100% - 3rem);
    top: calc(50% - 5rem);
    left: 50%;
    translate: -50% -50%;
  }
}
.top-fv-text__main {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .top-fv-text__main {
    font-size: 6.9333333333vw;
  }
}
.top-fv-text__sub {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .top-fv-text__sub {
    font-size: 3.7333333333vw;
    margin-top: 1rem;
  }
}
.top-lead {
  padding: 6rem 0 12rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-lead {
    padding: 2.7rem 0 4rem;
  }
}
.top-lead-heading {
  position: relative;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .top-lead-heading {
    height: 19.6rem;
  }
}
.top-lead-heading__ja {
  position: absolute;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  top: min(6rem, 5.3097345133vw);
  left: 50%;
  translate: -50%;
  color: #305687;
}

@media screen and (max-width: 768px) {
  .top-lead-heading__ja {
    font-size: 2.4rem;
    top: 5.3rem;
    z-index: 1;
  }
}
.top-lead-heading__en {
  font-size: min(9.6rem, 8.4955752212vw);
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .top-lead-heading__en {
    position: absolute;
    font-size: 7.2rem;
    top: 0;
    left: 50%;
    translate: -50%;
  }
}
.top-lead__column {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  margin-top: 12rem;
}

@media screen and (max-width: 768px) {
  .top-lead__column {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.top-lead__text {
  width: 51.1818181818%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .top-lead__text {
    width: 100%;
    font-size: 1.4rem;
    order: 2;
  }
}
.top-lead__text span {
  font-weight: 700;
}

.top-lead__image {
  width: calc(50vw - 7.3rem);
  aspect-ratio: 647/401;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .top-lead__image {
    width: 100%;
    margin-right: 0;
    order: 1;
  }
}
.top-lead__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-service {
  padding: 8rem 0 12rem;
  background-color: #F0F0F0;
}

@media screen and (max-width: 768px) {
  .top-service {
    padding: 4rem 0 6rem;
  }
}
.heading-typeA {
  text-align: center;
}

.heading-typeA .ja {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.heading-typeA .en {
  display: block;
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #305687;
}

@media screen and (max-width: 768px) {
  .heading-typeA .en {
    font-size: 3rem;
  }
}
.heading-typeA .en::after {
  display: block;
  content: "";
  width: 5.6rem;
  height: 0.2rem;
  margin: 1rem auto 0;
  background-color: #305687;
}

@media screen and (max-width: 768px) {
  .heading-typeA .en::after {
    width: 5rem;
    margin: 0.6rem auto 0;
  }
}
.heading-typeA--white {
  color: #fff;
}

.heading-typeA--white .ja {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .heading-typeA--white .ja {
    margin-top: 1rem;
  }
}
.heading-typeA--white .en {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .heading-typeA--white .en {
    font-size: 2.6rem;
  }
}
.heading-typeA--white .en::after {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .heading-typeA--white .en::after {
    width: 4rem;
  }
}
.top-service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem 3rem;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .top-service__list {
    justify-content: flex-start;
    gap: 4rem;
    margin-top: 3rem;
  }
}
.top-service__item {
  position: relative;
  width: 345px;
  max-width: 100%;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .top-service__item {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 480px) {
  .top-service__item {
    width: 100%;
  }
}

.top-service__item:hover {
  opacity: 0.7;
}

.top-service__image {
  aspect-ratio: 345/194;
}

@media screen and (max-width: 768px) {
  .top-service__image {
    aspect-ratio: 345/157;
  }
}
.top-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-service__text {
  position: relative;
  padding: 5rem 1.5rem 2.4rem;
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-service__text {
    padding: 4rem 1.5rem 1.9rem;
  }
}
.top-service__text::before {
  position: absolute;
  display: block;
  content: "";
  width: 8rem;
  background-size: contain;
  background-repeat: no-repeat;
  top: -4rem;
  left: 50%;
  translate: -50%;
  aspect-ratio: 1;
  margin: auto;
}

.top-service__item:nth-of-type(1) .top-service__text::before {
  background-image: url(../images/top/icon01.svg);
}
.top-service__item:nth-of-type(2) .top-service__text::before {
  background-image: url(../images/top/icon02.svg);
}
.top-service__item:nth-of-type(3) .top-service__text::before {
  background-image: url(../images/top/icon03.svg);
}
.top-service__item:nth-of-type(4) .top-service__text::before {
  background-image: url(../images/top/icon04.svg);
}
.top-service__item:nth-of-type(5) .top-service__text::before {
  background-image: url(../images/top/icon05.svg);
}

@media screen and (max-width: 768px) {
  .top-service__text::before {
    width: 6.8rem;
  }
}
.top-service__title {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #305687;
}

@media screen and (max-width: 768px) {
  .top-service__title {
    font-size: 1.8rem;
  }
}
.top-service__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  padding: 0 2.5rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .top-service__desc {
    font-size: 1.4rem;
    margin-top: 0.3rem;
  }
}
.top-service__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid #E5E5E5;
}

@media screen and (max-width: 768px) {
  .top-service__link {
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1.9rem;
  }
}
.top-service__link::after {
  display: inline-block;
  content: "";
  width: 3rem;
  aspect-ratio: 3/0.7;
  background: url(../images/top/arrow.svg) no-repeat;
  background-size: contain;
}

.top-service__link::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top-links {
  padding: 12rem 0;
}

@media screen and (max-width: 768px) {
  .top-links {
    padding: 6rem 0 6rem;
  }
}
.top-links__list {
  display: flex;
  gap: 3.7rem;
}

@media screen and (max-width: 768px) {
  .top-links__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.top-links__item {
  position: relative;
  display: grid;
  place-content: center;
  flex: 1;
  aspect-ratio: 530/264;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .top-links__item {
    aspect-ratio: 345/172;
  }
}
.top-links__item:hover {
  opacity: 0.7;
}

.top-links__item:nth-child(1) {
  background: url(../images/top/link01.jpg) no-repeat;
  background-size: cover;
}

.top-links__item:nth-child(2) {
  background: url(../images/top/link02.jpg) no-repeat;
  background-size: cover;
}

.top-links__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* service
******************************************************************************************/
.service-fv {
  background: url(../images/service/fv.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .service-fv {
    background: url(../images/service/fv_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.fv {
  display: grid;
  place-content: center;
  height: 30rem;
}

@media screen and (max-width: 768px) {
  .fv {
    height: auto;
    aspect-ratio: 375/250;
    margin-top: 5rem;
  }
}
.fv-text {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.fv-text__en {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .fv-text__en {
    font-size: 3.6rem;
  }
}
.fv-text__en::after {
  display: block;
  content: "";
  width: 5.6rem;
  height: 0.2rem;
  margin: 1rem auto 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .fv-text__en::after {
    width: 4rem;
    margin: 0.8rem auto 0;
  }
}
.fv-text__ja {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .fv-text__ja {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
.breadcrumbs {
  padding-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding-top: 1rem;
  }
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs__item {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__item {
    font-size: 1.2rem;
  }
}
.breadcrumbs__item:not(:nth-child(1))::before {
  display: inline-block;
  content: "/";
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 0.5rem;
}

.anchor {
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 6rem;
  }
}
.anchor__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
}

@media screen and (max-width: 768px) {
  .anchor__list {
    justify-content: flex-start;
    gap: 1.1rem;
  }
}
.anchor__item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  width: 350px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1.4rem 2rem;
  background-color: #305687;
  color: #fff;
  transition: opacity 0.4s;
}
.anchor__item:hover {
  opacity: 0.7;
}
#service .anchor__item:last-of-type {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .anchor__item {
    width: calc((100% - 11px) / 2);
    min-height: 59px;
    gap: 0.5rem;
    font-size: 1.3rem;
    padding: 1.05rem 0.8rem 1.2rem 0.5rem;
  }
  #service .anchor__item:first-of-type,
  #service .anchor__item:last-of-type {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
.anchor__item a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 768px) {
  .anchor__item a {
    gap: 0.5rem;
  }
}

.anchor__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.anchor__item img {
  width: 4rem;
}

@media screen and (max-width: 768px) {
  .anchor__item img {
    width: 2.4rem;
  }
}
.anchor__item::after {
  display: inline-block;
  content: "";
  width: 1.2rem;
  height: 0.7rem;
  background: url(../images/common/arrow.svg) no-repeat;
  background-size: contain;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .anchor__item::after {
    width: 0.9rem;
    height: 0.5rem;
  }
}
.service {
  padding: 12rem 0;
}

@media screen and (max-width: 768px) {
  .service {
    padding: 8rem 0 6rem;
  }
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

@media screen and (max-width: 768px) {
  .service__list {
    gap: 8rem;
  }
}
.heading-typeB {
  position: relative;
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #305687;
}

@media screen and (max-width: 768px) {
  .heading-typeB {
    font-size: 2.4rem;
    padding-bottom: 0.5rem;
  }
  .heading-typeB span {
    display: block;
    font-size: 2rem;
  }
  .service__item:last-of-type .heading-typeB span {
    display: inline-block;
  }
}
.heading-typeB::before {
  position: absolute;
  display: inline-block;
  content: "";
  font-size: 2.4rem;
  width: 0.6rem;
  height: 3rem;
  top: 0.7rem;
  left: 0;
  background-color: #305687;
}

@media screen and (max-width: 768px) {
  .heading-typeB::before {
    height: calc(100% - 1.6rem);
  }
}
.service-lead {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .service-lead {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}
.service-lead__text {
  width: 47.5%;
}

@media screen and (max-width: 768px) {
  .service-lead__text {
    width: 100%;
    order: 2;
  }
}
.service-lead__title {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .service-lead__title {
    font-size: 1.8rem;
  }
}
.service-lead__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .service-lead__desc {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}
.service-lead__image {
  width: 48.91%;
}

@media screen and (max-width: 768px) {
  .service-lead__image {
    width: 100%;
    order: 1;
  }
}
.service-sub__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(30rem, 1fr));
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .service-sub__list {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
}
.service-sub__item {
  padding: 2.5rem 2rem 3rem;
  background-color: #F0F0F0;
}

@media screen and (max-width: 768px) {
  .service-sub__item {
    padding: 2rem 1.5rem 2.5rem;
  }
}
.service-sub__item::before {
  display: block;
  content: "";
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-sub__item:nth-of-type(1):before {
  background-image: url(../images/service/icon06.svg);
}
.service-sub__item:nth-of-type(2):before {
  background-image: url(../images/service/icon07.svg);
}
.service-sub__item:nth-of-type(3):before {
  background-image: url(../images/service/icon08.svg);
}
.service-sub__item:nth-of-type(4):before {
  background-image: url(../images/service/icon09.svg);
}

@media screen and (max-width: 768px) {
  .service-sub__item::before {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.service-sub__title {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 0.8rem;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .service-sub__title {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
}
.service-sub__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
  border-top: 0.1rem solid #305687;
}

@media screen and (max-width: 768px) {
  .service-sub__desc {
    font-size: 1.4rem;
  }
}
/* company
******************************************************************************************/
.company-fv {
  background: url(../images/company/fv.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .service-fv {
    background: url(../images/service/fv_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.strength {
  padding: 12rem 0;
}

@media screen and (max-width: 768px) {
  .strength {
    padding: 8rem 0;
  }
}
.strength__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .strength__list {
    gap: 6rem;
    margin-top: 3rem;
  }
}
.strength__Item {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .strength__Item {
    position: relative;
    flex-direction: column;
    gap: 2rem;
  }
}
.strength__Item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .strength__Item:nth-child(even) {
    flex-direction: column;
  }
}
.strength__text {
  position: relative;
  width: 45.3636363636%;
}

@media screen and (max-width: 768px) {
  .strength__text {
    position: static;
    width: 100%;
    order: 2;
  }
}
.strength__title {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .strength__title {
    font-size: 2.1rem;
  }
}
.strength__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .strength__desc {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.strength__desc span {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .strength__desc span {
    font-weight: 400;
  }
}
.strength__num {
  position: absolute;
  display: block;
  font-size: 5.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  font-weight: 900;
  letter-spacing: em;
  top: 0;
  right: 0;
  color: rgba(48, 86, 135, 0.5);
}

@media screen and (max-width: 768px) {
  .strength__num {
    font-size: 4.8rem;
    top: -2.4rem;
  }
}
.strength__image {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .strength__image {
    width: 100%;
  }
}
.message {
  padding: 12rem 0;
  background-color: #F0F0F0;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 6rem 0 6rem;
  }
}
.message__text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .message__text {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
.president {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 3rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .president {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.overview {
  padding: 12rem 0;
}

@media screen and (max-width: 768px) {
  .overview {
    padding: 5.2rem 0 6rem;
  }
}
.overview__list {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .overview__list {
    margin-top: 5.2rem;
  }
}
.overview__item {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  min-height: 9rem;
}

@media screen and (max-width: 768px) {
  .overview__item {
    flex-direction: column;
    font-size: 1.4rem;
    line-height: 1.8;
    min-height: auto;
  }
}
.overview__item:nth-child(1) {
  border-top: 0.1rem solid #E5E5E5;
}

@media screen and (max-width: 768px) {
  .overview__item:nth-child(1) {
    border-top: none;
  }
}
.overview__item:last-child .overview__term {
  border-bottom: 0.1rem solid #E5E5E5;
}

@media screen and (max-width: 768px) {
  .overview__item:last-child .overview__term {
    border-bottom: none;
  }
}
.overview__term {
  display: grid;
  place-content: center;
  width: 25rem;
  flex-shrink: 0;
  border-bottom: 0.1rem solid #fff;
  background-color: #305687;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .overview__term {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: none;
  }
}
.overview__desc {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.8;
  padding: 1.5rem 3rem;
  flex: 1;
  border-bottom: 0.1rem solid #E5E5E5;
}

@media screen and (max-width: 768px) {
  .overview__desc {
    padding: 1rem 2rem;
    border-bottom: none;
  }
}