@charset "UTF-8";
@font-face {
  font-family: DIN2014-NarrowBold;
  src: url(../font/DIN-2014_Narrow-Bold.otf) format("opentype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background-color: #fff;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

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

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

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

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: calc(100% - 80rem);
  height: 80rem;
  border-radius: 40rem;
  padding: 0 20rem;
  background: #fff;
  box-shadow: 2rem 2rem 2rem rgba(112, 112, 112, 0.75);
  position: fixed;
  left: 50%;
  top: 40rem;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
  transition: 0.3s;
}
header.fixed {
  top: 20rem;
}
header.open {
  box-shadow: unset;
}
header.open nav ul {
  opacity: 0;
}
header.open nav .contact__btn {
  opacity: 0;
}
header .logo {
  width: 144.37rem;
  display: flex;
}
header nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
header nav ul {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
header nav ul li {
  padding: 0 15rem;
}
header nav ul li a {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28rem;
  text-align: right;
  color: #000;
  transition: 0.3s;
}
header nav ul li a:hover {
  color: #2832b2;
}
header nav .contact__btn {
  width: 180rem;
  height: 60rem;
  margin-left: 75rem;
  border-radius: 30rem;
  background: transparent;
  border: 1.5rem solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header nav .contact__btn:hover {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  border: 0;
}
header nav .contact__btn:hover span {
  color: white;
}
header nav .contact__btn span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #000;
  transition: 0.3s;
}
header nav .sp-menu {
  width: 60rem;
  height: 60rem;
  margin-left: 20rem;
  border-radius: 50%;
  border: 1.5rem solid #000;
  position: relative;
  cursor: pointer;
}
header nav .sp-menu.open span:nth-child(1) {
  top: 29rem;
  transform: translate(-50%) rotate(45deg);
}
header nav .sp-menu.open span:nth-child(2) {
  width: 0;
}
header nav .sp-menu.open span:nth-child(3) {
  top: 29rem;
  transform: translate(-50%) rotate(-45deg);
}
header nav .sp-menu span {
  width: 16rem;
  height: 0rem;
  border-top: 1.5rem solid #000;
  position: absolute;
  left: 50%;
  top: 20rem;
  transform: translate(-50%);
  transition: 0.3s;
}
header nav .sp-menu span + span {
  top: 29rem;
}
header nav .sp-menu span + span + span {
  top: 38rem;
}
header .hambeg__menu {
  width: 100%;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
header .hambeg__menu .hambeg__inner {
  display: flex;
}
header .hambeg__menu.open {
  display: flex;
  animation: fadeIn 0.5s forwards;
}
header .hambeg__menu .c__image {
  width: 50%;
  display: flex;
  position: relative;
}
header .hambeg__menu .c__image .catch__text {
  position: absolute;
  left: 20%;
  top: 20%;
}
header .hambeg__menu .c__image .catch__text .c__logo {
  width: 286rem;
  display: flex;
}
header .hambeg__menu .c__image .catch__text h3 {
  font-weight: 900;
  font-size: 34rem;
  line-height: 68rem;
  margin-top: 50rem;
  text-align: left;
  color: #000;
}
header .hambeg__menu .ham__menu {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .hambeg__menu .ham__menu .p__inner {
  width: 560rem;
}
header .hambeg__menu .ham__menu .p__inner .p__menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1rem solid #000;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul {
  width: 50%;
  margin: 15rem 0;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li {
  margin-bottom: 10rem;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li > a {
  font-size: 38rem;
  font-weight: 900;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: 0.3s;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li > a:hover {
  opacity: 0.5;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child {
  width: 100%;
  margin-top: 10rem;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 2;
  text-align: left;
  color: #000;
  transition: 0.3s;
  background: unset;
  -webkit-text-fill-color: unset;
}
header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child li a:hover {
  opacity: 1;
  color: #2832b2;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu {
  width: 100%;
  padding-top: 30rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .link {
  font-weight: 500;
  font-size: 14rem;
  line-height: 2;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .link:hover {
  color: #2832b2;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn {
  width: 280.01rem;
  height: 52rem;
  border-radius: 10.8rem;
  background: #fff;
  border: 1.5rem solid #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn:hover {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  border: 0;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn:hover span {
  color: white;
}
header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #2832b2;
  transition: 0.3s;
}

.frontview {
  width: 100%;
  display: flex;
  padding: 20rem;
  position: relative;
}
.frontview .content__inner {
  max-width: 1280rem;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.frontview .content__inner h2 {
  width: 540rem;
  margin-bottom: 170rem;
}
.frontview .content__inner h2 span {
  font-weight: 900;
  font-size: 40rem;
  line-height: 1;
  padding: 12rem 10rem;
  margin-top: 22rem;
  text-align: justify;
  color: #000;
  display: inline-block;
  background: white;
}
.frontview .content__inner h2 span:first-child {
  display: block;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.frontview .content__inner .f__mark {
  width: 530rem;
  display: flex;
}
.frontview .lang__items {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 50rem;
  right: 50rem;
  width: auto;
  height: 40rem;
  padding: 10rem;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.frontview .lang__items a, .frontview .lang__items span {
  font-weight: 500;
  font-size: 20rem;
  line-height: 35rem;
  text-align: center;
  color: #000;
}
.frontview .lang__items a.active, .frontview .lang__items span.active {
  font-weight: 900;
  color: #2832B2;
  text-decoration: underline;
  text-underline-offset: 4rem;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-title.--left {
  align-items: baseline;
  justify-content: left;
}
.section-title.--center {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.section-title.--center .ja__txt {
  margin-left: 30rem;
}
.section-title.is-animated .en__txt {
  -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
          clip-path: polygon(0 0, 200% 0, 0 200%);
}
.section-title .en__txt {
  font-weight: 900;
  font-size: 60rem;
  letter-spacing: 0.03em;
  line-height: 80rem;
  text-align: center;
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
          clip-path: polygon(0 0, 0 0, 0 0);
  transition: -webkit-clip-path 0.35s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.25s;
  transition: clip-path 0.35s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.25s;
  transition: clip-path 0.35s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.25s, -webkit-clip-path 0.35s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.25s;
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 31.5rem;
  text-align: center;
  color: #000;
}

.section-about {
  max-width: 1280rem;
  width: 90%;
  margin: auto;
  padding: 200rem 150rem;
  display: flex;
  justify-content: right;
  align-items: flex-start;
  position: relative;
}
.section-about .about__mark {
  width: 530rem;
  margin-right: 135rem;
  display: flex;
  position: fixed;
  top: 30vw;
  left: calc(50% - 640rem);
}
.section-about .about__mark.abs {
  position: absolute;
  top: 238rem;
  left: calc(50% - 640rem);
}
.section-about .content__text.is-animated .section-title .en__txt {
  -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
          clip-path: polygon(0 0, 200% 0, 0 200%);
}
.section-about .content__text .t__txt {
  font-weight: 900;
  font-size: 32rem;
  line-height: 48rem;
  text-align: left;
  color: #000;
  margin-top: 25rem;
}
.section-about .content__text .c__txt {
  font-weight: 500;
  font-size: 17rem;
  letter-spacing: 0.03em;
  line-height: 34rem;
  margin-top: 12rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #000;
}

.detail__btn {
  width: 208rem;
  height: 52rem;
  border-radius: 26rem;
  border-radius: 30rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  padding: 1rem;
  display: block;
  transition: 0.3s;
}
.detail__btn:hover .inner {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  color: white;
}
.detail__btn:hover .inner:after {
  content: unset;
}
.detail__btn.contact {
  background: transparent;
}
.detail__btn.contact:hover .inner {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  color: white;
}
.detail__btn.contact:hover .inner:after {
  content: unset;
}
.detail__btn.contact .inner {
  background: white;
  color: #000;
}
.detail__btn.contact .inner:after {
  background: #000;
}
.detail__btn .inner {
  width: 100%;
  height: 100%;
  border-radius: 30rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #2832b2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  position: relative;
  transition: 0.3s;
}
.detail__btn .inner:after {
  content: "";
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #2832b2;
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.section-service {
  max-width: 1480rem;
  width: 95%;
  height: auto;
  margin: auto;
  padding: 80rem;
  border-radius: 80rem;
  background: #ebebeb;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-service .content__text .t__txt {
  font-weight: 900;
  font-size: 48rem;
  line-height: 1.4;
  margin-top: 12rem;
  text-align: left;
  color: #000;
}
.section-service .content__text .c__txt {
  font-weight: 500;
  font-size: 17rem;
  letter-spacing: 0.03em;
  line-height: 34rem;
  margin-top: 12rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #000;
}
.section-service .content__text .service__items {
  margin-top: 40rem;
}
.section-service .content__text .service__items .s__item {
  width: 400rem;
  height: 80rem;
  margin-top: 20rem;
  border-radius: 12rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  padding: 1rem;
  display: block;
}
.section-service .content__text .service__items .s__item:hover .inner {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  color: white;
}
.section-service .content__text .service__items .s__item:hover .inner:after {
  content: unset;
}
.section-service .content__text .service__items .s__item .inner {
  width: 100%;
  height: 100%;
  border-radius: 12rem;
  font-weight: 700;
  font-size: 20rem;
  line-height: 24rem;
  text-align: center;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  position: relative;
  transition: 0.3s;
}
.section-service .content__text .service__items .s__item .inner span {
  font-size: 16rem;
  display: block;
  text-align: center;
  transition: 0.3s;
}
.section-service .content__text .service__items .s__item .inner:after {
  content: "";
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #2832b2;
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
.section-service .service__image {
  width: 660rem;
  display: flex;
}

.section-reasion {
  padding: 130rem 0;
}
.section-reasion .reasion__items {
  max-width: 1120rem;
  width: 95%;
  margin: auto;
  margin-top: 44rem;
  display: flex;
  flex-wrap: wrap;
}
.section-reasion .reasion__items .r__item {
  width: 25%;
  padding: 25rem 20rem;
  border: 1rem solid #dcdddd;
  border-right: 0;
  transition: 0.3s;
  cursor: pointer;
}
.section-reasion .reasion__items .r__item:hover {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
}
.section-reasion .reasion__items .r__item:hover .t__txt {
  color: white;
}
.section-reasion .reasion__items .r__item:hover .t__txt span {
  color: white;
}
.section-reasion .reasion__items .r__item:hover .t__txt:after {
  opacity: 0;
}
.section-reasion .reasion__items .r__item:hover .c__lbl {
  color: white;
}
.section-reasion .reasion__items .r__item:hover .c__txt {
  color: white;
}
.section-reasion .reasion__items .r__item:hover .c__txt span {
  color: white;
}
.section-reasion .reasion__items .r__item:nth-child(4) {
  border-right: 1rem solid #dcdddd;
}
.section-reasion .reasion__items .r__item:nth-child(5) {
  border-top: 0;
}
.section-reasion .reasion__items .r__item:nth-child(6) {
  border-top: 0;
  border-right: 1rem solid #dcdddd;
}
.section-reasion .reasion__items .r__item .t__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 24rem;
  text-align: left;
  color: #000;
  position: relative;
  transition: 0.3s;
}
.section-reasion .reasion__items .r__item .t__txt:after {
  content: "";
  width: 4rem;
  height: 20rem;
  background: #2832b2;
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.section-reasion .reasion__items .r__item .t__txt span {
  font-weight: 900;
  font-size: 16rem;
  margin-right: 8rem;
  color: #2832B2;
  transition: 0.3s;
}
.section-reasion .reasion__items .r__item .c__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 28rem;
  margin-top: 18rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
.section-reasion .reasion__items .r__item .c__txt {
  font-weight: 500;
  font-size: 15rem;
  letter-spacing: 0.02em;
  line-height: 30rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
.section-reasion .reasion__items .r__item .c__txt span {
  color: #2832B2;
  transition: 0.3s;
}
.section-reasion .reasion__items .why__now {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-reasion .reasion__items .why__now .j__txt {
  font-weight: 500;
  font-size: 20rem;
  line-height: 35rem;
  text-align: center;
  background: linear-gradient(to top, #2b32b2 0%, #1488cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-reasion .reasion__items .why__now .e__txt {
  font-weight: 900;
  font-size: 92rem;
  line-height: 80rem;
  text-align: center;
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-reasion .reasion__items .why__now .txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 30rem;
  text-align: center;
  margin-top: 20rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-success {
  max-width: 1560rem;
  width: 95%;
  height: auto;
  margin: auto;
  padding: 50rem 40rem;
  border-radius: 40rem;
  background: #ebebeb;
}
.section-success .success__items {
  width: 100%;
  margin-top: 30rem;
  display: flex;
  justify-content: space-between;
}
.section-success .success__items .s__item {
  width: 32%;
  display: flex;
  position: relative;
}
.section-success .success__items .s__item:nth-child(2) {
  animation-delay: 0.3s;
}
.section-success .success__items .s__item:nth-child(3) {
  animation-delay: 0.6s;
}
.section-success .success__items .s__item .s__inner {
  width: 380rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-success .success__items .s__item .s__inner .c__lbl {
  width: 160rem;
  height: 24rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #e4007f 0%, #171c61 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 15rem;
  line-height: 26.25rem;
  text-align: center;
  color: #fff;
}
.section-success .success__items .s__item .s__inner h2 {
  font-weight: bold;
  font-size: 28rem;
  line-height: 42rem;
  margin-top: 20rem;
  text-align: center;
  color: #fff;
}
.section-success .success__items .s__item .s__inner .line {
  width: 100%;
  height: 0;
  border-top: 2rem solid #fff;
  margin: 22rem 0;
}
.section-success .success__items .s__item .s__inner .c__txt {
  font-weight: normal;
  font-size: 15rem;
  line-height: 30rem;
  text-align: left;
  color: #fff;
  display: inline-block;
}

.section-voice {
  padding: 50rem 0 135rem;
}
.section-voice .voice__items {
  display: flex;
  justify-content: center;
  margin-top: 280rem;
}
.section-voice .voice__items .v__item {
  width: 664rem;
  height: auto;
  margin: 0 42rem;
  position: relative;
}
.section-voice .voice__items .v__item .bg__image {
  width: 588rem;
  display: flex;
  position: absolute;
  right: 0;
  top: -240rem;
}
.section-voice .voice__items .v__item .man {
  width: 178rem;
  display: flex;
  position: absolute;
  left: 435rem;
  top: -4rem;
}
.section-voice .voice__items .v__item .content__text {
  width: 570rem;
  height: 100%;
  padding: 106rem 135rem 20rem 20rem;
  border-radius: 20rem;
  background: transparent;
  border: 1rem solid #000;
}
.section-voice .voice__items .v__item .content__text h3 {
  font-weight: bold;
  font-size: 18rem;
  line-height: 28rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
}
.section-voice .voice__items .v__item .content__text h3 span {
  display: block;
  font-weight: 400;
  font-size: 15rem;
  margin-top: 10rem;
  color: #2832B2;
}
.section-voice .voice__items .v__item .content__text p {
  font-weight: normal;
  font-size: 15rem;
  line-height: 30rem;
  margin-top: 10rem;
  text-align: left;
  color: #000;
}

.section-news {
  max-width: 1300rem;
  width: 95%;
  margin: auto;
  padding: 0 0 120rem;
}
.section-news .news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-news .news__items {
  width: calc(100% + 50rem);
  margin-top: 50rem;
  margin-left: -25rem;
  margin-right: -25rem;
  display: flex;
  flex-wrap: wrap;
}
.section-news .news__items .n__item {
  width: 33.3333333333%;
  padding: 0 25rem;
}
.section-news .news__items .n__item .n__inner .info {
  display: flex;
  align-items: center;
}
.section-news .news__items .n__item .n__inner .info .cat {
  width: auto;
  height: auto;
  padding: 5rem 25rem;
  border-radius: 18rem;
  margin-right: 20rem;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2832b2;
}
.section-news .news__items .n__item .n__inner .info .date {
  font-weight: 500;
  font-size: 15rem;
  line-height: 28rem;
  text-align: left;
  color: #969696;
}
.section-news .news__items .n__item .n__inner .c__image {
  width: 100%;
  display: flex;
  margin-top: 24rem;
}
.section-news .news__items .n__item .n__inner h3 {
  font-weight: bold;
  font-size: 17rem;
  line-height: 27rem;
  margin-top: 17rem;
  text-align: left;
  color: #000;
}

.section-contact {
  width: 100%;
  height: 412rem;
  background: url(../img/contact_bg.webp);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-contact .c__lbl {
  font-weight: bold;
  font-size: 28rem;
  line-height: 42rem;
  text-align: center;
  color: #fff;
}
.section-contact .c__txt {
  font-weight: 500;
  font-size: 17rem;
  line-height: 27rem;
  margin-top: 15rem;
  margin-bottom: 35rem;
  text-align: center;
  color: #fff;
}

footer {
  width: 100%;
  height: auto;
  margin-top: 80rem;
  padding: 55rem 0 30rem;
  border-radius: 30rem 30rem 0rem 0rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
}
footer .content__inner {
  max-width: 1360rem;
  width: 95%;
  margin: auto;
}
footer .content__inner .footer__info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40rem;
  border-bottom: 1rem solid #fff;
}
footer .content__inner .footer__info .info .f__logo {
  width: 206.24rem;
  display: flex;
}
footer .content__inner .footer__info .info .c__info {
  font-weight: bold;
  font-size: 22rem;
  line-height: 44rem;
  margin-top: 40rem;
  text-align: left;
  color: #fff;
}
footer .content__inner .footer__info .footer__menu {
  display: flex;
  align-items: baseline;
}
footer .content__inner .footer__info .footer__menu ul {
  margin-left: 60rem;
}
footer .content__inner .footer__info .footer__menu ul li {
  margin-bottom: 25rem;
}
footer .content__inner .footer__info .footer__menu ul li.contact {
  margin: 0;
}
footer .content__inner .footer__info .footer__menu ul li.contact:hover a {
  background: #fff100;
  border-color: #fff100;
}
footer .content__inner .footer__info .footer__menu ul li.contact a {
  width: 240rem;
  height: 52rem;
  border-radius: 10rem;
  background: #fff;
  border: 1rem solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .content__inner .footer__info .footer__menu ul li.contact a span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #2832b2;
}
footer .content__inner .footer__info .footer__menu ul li a {
  font-weight: 900;
  font-size: 32rem;
  line-height: 36rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
footer .content__inner .footer__info .footer__menu ul li a:hover {
  color: #fff100;
}
footer .content__inner .footer__info .footer__menu ul li ul.child {
  margin: 0;
  margin-top: 15rem;
}
footer .content__inner .footer__info .footer__menu ul li ul.child li {
  margin-bottom: 10rem;
}
footer .content__inner .footer__info .footer__menu ul li ul.child li a {
  font-weight: 500;
  font-size: 15rem;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
footer .content__inner .footer__info .footer__menu ul li ul.child li a:hover {
  color: #fff100;
}
footer .content__inner .footer__bottom {
  padding-top: 15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
footer .content__inner .footer__bottom .copyright {
  font-weight: normal;
  font-size: 14rem;
  line-height: 44rem;
  text-align: left;
  color: #fff;
}
footer .content__inner .footer__bottom a {
  font-weight: normal;
  font-size: 14rem;
  line-height: 1.4;
  padding-right: 80rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
footer .content__inner .footer__bottom a:hover {
  color: #fff100;
}

.subfrontview {
  width: 100%;
  display: flex;
  position: relative;
}
.subfrontview .front__info {
  max-width: 1300rem;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.subfrontview .front__info h2 {
  width: -moz-max-content;
  width: max-content;
  font-weight: 900;
  font-size: 100rem;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0 7rem;
  text-align: left;
  color: #000;
  background: white;
  display: inline-block;
}
.subfrontview .front__info .breadcrumb {
  background: white;
  padding: 3rem 10rem;
  display: flex;
}
.subfrontview .front__info .breadcrumb a, .subfrontview .front__info .breadcrumb span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  color: #000;
}

.about__wrapper {
  padding-top: 150rem;
}
.about__wrapper .detail__text {
  max-width: 1300rem;
  width: 95%;
  margin: auto;
}
.about__wrapper .detail__text h2 {
  font-weight: 900;
  font-size: 40rem;
  line-height: 80rem;
  text-align: left;
  color: #000;
}
.about__wrapper .sub__title .en__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 1.2;
  padding: 3rem 10rem;
  text-align: center;
  color: #fff;
  border-radius: 12rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  display: inline-block;
}
.about__wrapper .sub__title .ja__txt {
  font-weight: bold;
  font-size: 40rem;
  line-height: 1.5;
  margin-top: 10rem;
  text-align: left;
  color: #000;
}
.about__wrapper .message__content {
  max-width: 1480rem;
  width: 95%;
  height: auto;
  padding: 80rem;
  margin: auto;
  margin-top: 150rem;
  border-radius: 80rem;
  background: #ebebeb;
}
.about__wrapper .message__content .content__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about__wrapper .message__content .content__text {
  width: 470rem;
}
.about__wrapper .message__content .content__text h2 {
  font-weight: bold;
  font-size: 32rem;
  line-height: 48rem;
  margin-top: 18rem;
  text-align: left;
  color: #000;
}
.about__wrapper .message__content .c__image {
  width: 650rem;
  margin-left: 20rem;
  display: flex;
}
.about__wrapper .message__content .c__txt {
  font-weight: 500;
  font-size: 16rem;
  line-height: 38rem;
  margin-top: 55rem;
  text-align: left;
  color: #000;
}
.about__wrapper .message__content .c__txt span {
  color: #2832b2;
  font-weight: bold;
}
.about__wrapper .message__content .c__txt span.c01 {
  font-size: 20rem;
}
.about__wrapper .company__content {
  max-width: 1300rem;
  width: 95%;
  margin: auto;
  margin-top: 140rem;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .company__content .content__text {
  width: 880rem;
}
.about__wrapper .company__content .content__text table {
  width: 100%;
  border-collapse: collapse;
}
.about__wrapper .company__content .content__text table tr {
  border-top: 1rem solid #000;
}
.about__wrapper .company__content .content__text table tr:last-child {
  border-bottom: 1rem solid #000;
}
.about__wrapper .company__content .content__text table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 2;
  padding: 24rem 0;
  text-align: left;
  color: #000;
}
.about__wrapper .company__content .content__text table tr td:first-child {
  width: 220rem;
  padding-left: 20rem;
  font-weight: bold;
  vertical-align: top;
}
.about__wrapper .access__content {
  max-width: 1300rem;
  width: 95%;
  margin: 140rem auto;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .access__content .title__wrapper .c__txt {
  font-weight: normal;
  font-size: 18rem;
  line-height: 36rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.about__wrapper .access__content .map {
  width: 880rem;
  height: 550rem;
}
.about__wrapper .access__content .map iframe {
  width: 100%;
  height: 100%;
}

.truncate {
  width: 200px; /* 幅を指定 */
  white-space: nowrap; /* テキストを1行にする */
  overflow: hidden; /* はみ出た部分を隠す */
  text-overflow: ellipsis; /* 省略記号を表示 */
}

.truncate:before {
  content: attr(data-content); /* 元のテキストを取得 */
  display: block;
  max-width: 23ch; /* 最大12文字 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news__wrapper {
  max-width: 1300rem;
  width: 95%;
  margin: 190rem auto 140rem;
}
.news__wrapper .cat__items {
  width: 100%;
}
.news__wrapper .cat__items ul {
  display: flex;
  justify-content: left;
  align-items: center;
}
.news__wrapper .cat__items ul li {
  margin-right: 20rem;
}
.news__wrapper .cat__items ul li.active a {
  background: #2832b2;
  color: white;
}
.news__wrapper .cat__items ul li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.3;
  padding: 10rem 40rem;
  border-radius: 26rem;
  background: #fff;
  border: 1rem solid #2832b2;
  text-align: center;
  color: #2832b2;
  transition: 0.3s;
}
.news__wrapper .cat__items ul li a:hover {
  background: #2832b2;
  color: white;
}
.news__wrapper .news__items {
  width: calc(100% + 50rem);
  margin-top: 100rem;
  margin-left: -25rem;
  margin-right: -25rem;
  display: flex;
  flex-wrap: wrap;
}
.news__wrapper .news__items .n__item {
  width: 33.3333333333%;
  padding: 0 25rem;
  margin-bottom: 45rem;
}
.news__wrapper .news__items .n__item .n__inner .info {
  display: flex;
  align-items: center;
}
.news__wrapper .news__items .n__item .n__inner .info .cat {
  width: auto;
  height: auto;
  padding: 5rem 25rem;
  border-radius: 18rem;
  margin-right: 20rem;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2832b2;
}
.news__wrapper .news__items .n__item .n__inner .info .date {
  font-weight: 500;
  font-size: 15rem;
  line-height: 28rem;
  text-align: left;
  color: #969696;
}
.news__wrapper .news__items .n__item .n__inner .c__image {
  width: 100%;
  display: flex;
  margin-top: 24rem;
}
.news__wrapper .news__items .n__item .n__inner h3 {
  font-weight: bold;
  font-size: 17rem;
  line-height: 27rem;
  margin-top: 17rem;
  text-align: left;
  color: #000;
}
.news__wrapper .pagination {
  margin-top: 65rem;
}
.news__wrapper .pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagination .wp-pagenavi a, .news__wrapper .pagination .wp-pagenavi span {
  width: 40rem;
  height: 40rem;
  margin: 0 6rem;
  border-radius: 50%;
  background: transparent;
  border: 1rem solid #f1f1f1;
  font-weight: 500;
  font-size: 15rem;
  line-height: 27rem;
  text-align: center;
  color: #2832b2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagination .wp-pagenavi a.current, .news__wrapper .pagination .wp-pagenavi span.current {
  background: #2832b2;
  color: white;
}
.news__wrapper .pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__wrapper .pagination ul li {
  width: 40rem;
  height: 40rem;
  margin: 0 6rem;
  border-radius: 50%;
  background: transparent;
  border: 1rem solid #f1f1f1;
  font-weight: 500;
  font-size: 15rem;
  line-height: 27rem;
  text-align: center;
  color: #2832b2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagination ul li.active {
  background: #2832b2;
  color: white;
}

.news-detail__wrapper {
  max-width: 1280rem;
  width: 95%;
  margin: 215rem auto 140rem;
}
.news-detail__wrapper .c__info {
  width: 100%;
  padding-bottom: 25rem;
  border-bottom: 1rem solid #bebebe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-detail__wrapper .c__info .info {
  display: flex;
  align-items: center;
}
.news-detail__wrapper .c__info .info .cat {
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  padding: 5rem 25rem;
  text-align: center;
  color: #fff;
  border-radius: 15rem;
  background: #2832b2;
}
.news-detail__wrapper .c__info .info .date {
  font-weight: 500;
  font-size: 18rem;
  line-height: 28rem;
  margin-left: 20rem;
  text-align: left;
  color: #969696;
}
.news-detail__wrapper .c__info h3 {
  font-weight: bold;
  font-size: 28rem;
  line-height: 1.2;
  text-align: right;
  color: #000;
}
.news-detail__wrapper .content__text {
  width: 100%;
  padding-top: 60rem;
}
.news-detail__wrapper .content__text img {
  margin-bottom: 45rem;
}
.news-detail__wrapper .content__text h2 {
  font-weight: bold;
  font-size: 34rem;
  line-height: 1.3;
  margin-bottom: 25rem;
  text-align: left;
  color: #000;
}
.news-detail__wrapper .content__text p {
  font-weight: normal;
  font-size: 17rem;
  line-height: 34rem;
  margin-bottom: 20rem;
  text-align: left;
  color: #000;
}

.service__wrapper {
  padding-top: 150rem;
}
.service__wrapper .detail__content {
  max-width: 1300rem;
  width: 95%;
  margin: auto;
}
.service__wrapper .detail__content h2 {
  font-weight: 900;
  font-size: 44rem;
  line-height: 66rem;
  text-align: left;
  color: #000;
}
.service__wrapper .detail__content .service__cats {
  margin-top: 30rem;
  display: flex;
  align-items: center;
}
.service__wrapper .detail__content .service__cats span {
  font-weight: bold;
  font-size: 28rem;
  margin-right: 20rem;
  padding: 2rem 10rem;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  display: inline-block;
}
.service__wrapper .detail__content .c__pan {
  font-weight: bold;
  font-size: 28rem;
  line-height: 56rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.service__wrapper .detail__content .c__txt {
  width: 790rem;
  padding-top: 26rem;
  margin-top: 26rem;
  border-top: 2rem solid #000;
  font-weight: 500;
  font-size: 18rem;
  line-height: 33rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content {
  margin-top: 90rem;
  padding: 50rem 0 140rem;
  background: #ebebeb;
}
.service__wrapper .service__content .service__items .s__lbl {
  font-weight: bold;
  font-size: 40rem;
  line-height: 48rem;
  text-align: center;
  color: #000;
}
.service__wrapper .service__content .service__items .s__items {
  max-width: 1300rem;
  width: 95%;
  margin: auto;
  margin-top: 50rem;
}
.service__wrapper .service__content .service__items .s__items .s__item {
  width: 100%;
  height: auto;
  padding: 25rem;
  border-radius: 29.77rem;
  margin-bottom: 20rem;
  background: #fff;
  display: flex;
  transition: 0.3s;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover {
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .icon svg circle {
  fill: white;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .icon svg path {
  stroke: #2832B2;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .content__text .t__title:after {
  background: url(../img/arrow_w.webp);
  background-size: cover;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .content__text .t__title .num {
  color: white;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .content__text .t__title .t__txt {
  color: white;
}
.service__wrapper .service__content .service__items .s__items .s__item:hover .content__text .c__txt {
  color: white;
}
.service__wrapper .service__content .service__items .s__items .s__item .c__image {
  width: 200rem;
  display: flex;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text {
  width: 940rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 78rem;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  position: relative;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title:after {
  content: "";
  width: 36rem;
  height: 36rem;
  background: url(../img/arrow.webp);
  background-size: cover;
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .num {
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 42rem;
  line-height: 40rem;
  text-align: center;
  color: #000;
  transition: 0.3s;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .t__txt {
  font-weight: bold;
  font-size: 28rem;
  line-height: 40rem;
  margin-left: 20rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .t__txt span {
  font-size: 20rem;
}
.service__wrapper .service__content .service__items .s__items .s__item .content__text .c__txt {
  font-weight: normal;
  font-size: 17rem;
  line-height: 25rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
.service__wrapper .service__content .item__content {
  max-width: 1300rem;
  width: 95%;
  height: auto;
  margin: auto;
  padding: 60rem;
  margin-top: 140rem;
  border-radius: 59.87rem;
  background: #fff;
}
.service__wrapper .service__content .item__content .h__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service__wrapper .service__content .item__content .h__content .cp__text .t__title {
  display: flex;
  align-items: center;
  position: relative;
}
.service__wrapper .service__content .item__content .h__content .cp__text .t__title:after {
  content: "";
  width: 24rem;
  height: 48rem;
  background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  position: absolute;
  left: -60rem;
  top: 50%;
  transform: translateY(-50%);
}
.service__wrapper .service__content .item__content .h__content .cp__text .t__title h2 {
  font-weight: 900;
  font-size: 48rem;
  letter-spacing: 0.03em;
  line-height: 80rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .h__content .cp__text .t__title span {
  font-weight: bold;
  margin-left: 35rem;
  font-size: 22rem;
}
.service__wrapper .service__content .item__content .h__content .cp__text .c__txt {
  width: 650rem;
  font-weight: normal;
  font-size: 17rem;
  line-height: 34rem;
  margin-top: 22rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .h__content .c__image {
  width: 360rem;
  display: flex;
}
.service__wrapper .service__content .item__content .cp__item {
  margin-top: 50rem;
}
.service__wrapper .service__content .item__content .cp__item.merit .p__items .item .t__txt {
  color: #1488cc;
}
.service__wrapper .service__content .item__content .cp__item.merit .p__items .item .t__txt:after {
  background: #1488cc;
}
.service__wrapper .service__content .item__content .cp__item .c__lbl {
  font-weight: bold;
  font-size: 28rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .cp__item .p__items {
  width: 100%;
  margin-top: 15rem;
  display: flex;
}
.service__wrapper .service__content .item__content .cp__item .p__items .item {
  width: 25%;
  height: auto;
  padding: 22rem 20rem;
  background: transparent;
  border: 1rem solid #dcdddd;
}
.service__wrapper .service__content .item__content .cp__item .p__items .item:first-child {
  border-radius: 10rem 0rem 0rem 10rem;
}
.service__wrapper .service__content .item__content .cp__item .p__items .item .t__txt {
  font-weight: 900;
  font-size: 20rem;
  line-height: 25.29rem;
  text-align: left;
  color: #2832b2;
  position: relative;
}
.service__wrapper .service__content .item__content .cp__item .p__items .item .t__txt:after {
  content: "";
  width: 6rem;
  height: 24rem;
  background: #2832b2;
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
}
.service__wrapper .service__content .item__content .cp__item .p__items .item .c__txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 25rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .cp__item .note__txt {
  font-weight: 500;
  font-size: 16rem;
  line-height: 23rem;
  margin-top: 7rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .cp__item .sp__items {
  width: 100%;
  margin-top: 30rem;
  display: flex;
}
.service__wrapper .service__content .item__content .cp__item .sp__items.c03 .sp__item .j__txt {
  font-size: 18rem;
  letter-spacing: 0.03em;
  line-height: 24rem;
}
.service__wrapper .service__content .item__content .cp__item .sp__items.c03 .sp__item .s__txt {
  font-size: 13rem;
  line-height: 23rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .cp__item .sp__items .sp__item {
  width: 25%;
  padding: 15rem 24rem;
  border-left: 1rem solid #dcdddd;
}
.service__wrapper .service__content .item__content .cp__item .sp__items .sp__item:last-child {
  border-right: 1rem solid #dcdddd;
}
.service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .j__txt {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: left;
  color: #2832B2;
}
.service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .e__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 1.5;
  white-space: nowrap;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .s__txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 30rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .sc__content {
  margin-top: 80rem;
}
.service__wrapper .service__content .item__content .sc__content .sc__lbl {
  font-weight: bold;
  font-size: 28rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .sc__content .content__inner {
  width: 100%;
  margin-top: 20rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text {
  padding-left: 20rem;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .t__txt {
  font-weight: bold;
  font-size: 24rem;
  line-height: 25.29rem;
  text-align: left;
  color: #000;
  position: relative;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .t__txt:after {
  content: "";
  width: 6rem;
  height: 24rem;
  background: #2832b2;
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .g__txt {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-top: 10rem;
  color: #2832b2;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__txt {
  width: 500rem;
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 24rem;
  margin-top: 25rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item {
  width: 500rem;
  margin-top: 27rem;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item .c__lbl {
  font-weight: bold;
  font-size: 18rem;
  line-height: 25.29rem;
  text-align: left;
  color: #2832b2;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item table {
  width: 100%;
  margin-top: 10rem;
  border-collapse: collapse;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item table tr td {
  font-weight: 500;
  font-size: 15rem;
  letter-spacing: 0.03em;
  line-height: 30rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item table tr td:first-child {
  width: 120rem;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item .txt {
  font-weight: 500;
  font-size: 15rem;
  letter-spacing: 0.03em;
  line-height: 30rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__content .item__content .sc__content .content__inner .c__image {
  width: 496rem;
  display: flex;
}

.contact__wrapper {
  padding: 180rem 0 140rem;
}
.contact__wrapper .d__txt {
  font-weight: 500;
  font-size: 18rem;
  line-height: 54rem;
  text-align: center;
  color: #3c3c3c;
}
.contact__wrapper .contact__form {
  width: 1100rem;
  margin: auto;
  margin-top: 85rem;
}
.contact__wrapper .contact__form table {
  width: 100%;
  border-collapse: collapse;
}
.contact__wrapper .contact__form table tr:last-child td:first-child {
  vertical-align: top;
}
.contact__wrapper .contact__form table tr td {
  padding: 15rem 0;
}
.contact__wrapper .contact__form table tr td .submit__btn {
  width: 250rem;
  height: 60rem;
  border-radius: 30rem;
  background: #2832B2;
  display: flex;
  margin-top: 34rem;
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  border: 1rem solid #2832B2;
  transition: 0.3s;
  justify-content: center;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled {
  background: #ebebeb;
  border-color: #ebebeb;
  cursor: not-allowed;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled:hover {
  background: #ebebeb;
  color: #fff;
}
.contact__wrapper .contact__form table tr td .submit__btn:hover {
  background: white;
  color: #2832B2;
}
.contact__wrapper .contact__form table tr td .privacy__content {
  font-weight: 500;
  font-size: 16rem;
  line-height: 36rem;
  margin-top: 32rem;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form table tr td .privacy__content a {
  color: #1488CC;
  text-decoration: underline;
}
.contact__wrapper .contact__form table tr td textarea {
  width: 830rem;
  height: 200rem;
  border-radius: 5rem;
  background: #ebebeb;
  padding: 20rem;
  font-size: 16rem;
  line-height: 36rem;
  text-align: left;
  color: #000;
  padding-left: 20rem;
  border: 0;
}
.contact__wrapper .contact__form table tr td textarea::-moz-placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td textarea::placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td .names {
  display: flex;
  justify-content: space-between;
}
.contact__wrapper .contact__form table tr td .names input[type=text], .contact__wrapper .contact__form table tr td .names input[type=email] {
  width: 400rem;
}
.contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
  width: 830rem;
  height: 60rem;
  border-radius: 5rem;
  background: #ebebeb;
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  text-align: left;
  color: #000;
  padding-left: 20rem;
  border: 0;
}
.contact__wrapper .contact__form table tr td input[type=text]::-moz-placeholder, .contact__wrapper .contact__form table tr td input[type=email]::-moz-placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td input[type=text]::placeholder, .contact__wrapper .contact__form table tr td input[type=email]::placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td select {
  width: 830rem;
  height: 60rem;
  border-radius: 5rem;
  background: #ebebeb;
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  padding-left: 20rem;
  text-align: left;
  color: #ddd;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/down_arrow.webp);
  background-size: 12rem 10rem;
  background-repeat: no-repeat;
  background-position: 800rem center;
}
.contact__wrapper .contact__form table tr td select option {
  color: #000;
}
.contact__wrapper .contact__form table tr td select::-moz-placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td select::placeholder {
  color: #ddd;
}
.contact__wrapper .contact__form table tr td:first-child {
  width: 290rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.5;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form table tr td:first-child .required {
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 1rem 5rem;
  margin-left: 20rem;
  text-align: center;
  color: #fff;
  background: #2832b2;
  display: inline-block;
}

.privacy__wrapper {
  max-width: 1300rem;
  width: 95%;
  margin: 150rem auto 140rem;
}
.privacy__wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.privacy__wrapper table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  padding: 25rem 0;
  text-align: left;
  color: #000;
  vertical-align: top;
}
.privacy__wrapper table tr td:first-child {
  width: 460rem;
  font-weight: bold;
  font-size: 20rem;
  line-height: 39rem;
  text-align: left;
  color: #000;
}

.gt_switcher_wrapper {
  display: flex;
  flex-direction: row-reverse;
  position: fixed;
  bottom: 50rem !important;
  right: 50rem !important;
  width: auto;
  height: auto;
  padding: 10rem;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2 !important;
}
.gt_switcher_wrapper a {
  font-weight: 500;
  font-size: 20rem;
  line-height: 1;
  margin: 0 6rem;
  text-align: center;
  color: #000;
}
.gt_switcher_wrapper a.gt-current-lang {
  font-weight: 900;
  color: #2832B2;
  text-decoration: underline;
  text-underline-offset: 4rem;
}

@media screen and (max-width: 1430px) {
  .section-about .about__mark {
    left: 5vw;
  }
  .section-about {
    padding: 200rem 6vw;
  }
}
@media screen and (max-width: 1380px) {
  .section-voice .voice__items .v__item {
    width: 45%;
    margin: 0 1%;
  }
  .section-voice .voice__items .v__item .bg__image {
    width: 92%;
  }
  .section-news .news__items {
    width: 100%;
  }
  .section-voice .voice__items .v__item {
    width: 48%;
    height: auto;
    margin: 0 1%;
  }
  .section-voice .voice__items .v__item .content__text {
    width: 92%;
  }
  .section-voice .voice__items .v__item .man {
    width: 13vw;
  }
  header nav .contact__btn {
    margin-left: 25rem;
  }
  .section-voice .voice__items .v__item .man {
    left: 30vw;
  }
  .section-service .service__image {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8px;
  }
  .section-service {
    padding: 40rem;
  }
  .section-about .about__mark {
    width: 45%;
    margin-right: 4vw;
  }
  .section-voice .voice__items .v__item .content__text {
    width: 90%;
    padding: 106rem 13vw 20rem 20rem;
  }
  .section-voice .voice__items .v__item {
    width: 47%;
  }
  header nav .contact__btn {
    margin-left: 15rem;
  }
}
@media screen and (max-width: 980px) {
  html {
    font-size: 0.68px;
  }
  header nav ul li {
    padding: 0 7rem;
  }
  header .logo {
    width: 120.37rem;
  }
  header nav .contact__btn {
    width: 143rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1333333vw;
  }
  .frontview {
    padding: 16rem;
  }
  header {
    width: 690rem;
    height: 160rem;
    border-radius: 80rem;
    padding: 0 20rem;
    top: 20rem;
    background: transparent;
    box-shadow: unset;
  }
  header .logo {
    width: 280rem;
  }
  header nav .sp-menu {
    width: 100rem;
    height: 100rem;
    border-color: white;
  }
  header nav .sp-menu span {
    width: 27rem;
    height: 0rem;
    border-color: white;
    left: 50%;
    top: 36rem;
  }
  header nav .sp-menu span + span {
    top: 50rem;
  }
  header nav .sp-menu span + span + span {
    top: 63rem;
  }
  .frontview .content__inner h2 span {
    font-size: 55rem;
    line-height: 1;
    padding: 12rem 10rem;
    letter-spacing: -0.023em;
  }
  .frontview .content__inner {
    width: 96%;
    position: absolute;
    left: 50%;
    top: 42%;
  }
  .frontview .content__inner .f__mark {
    width: 662rem;
    position: absolute;
    left: 50%;
    bottom: -64vw;
    transform: translate(-50%);
  }
  .section-about {
    display: block;
    padding: 500rem 0 200rem;
  }
  .section-about .about__mark {
    width: 675rem;
    margin: auto;
    top: 95vw;
    left: 50%;
    transform: translate(-50%);
  }
  .section-about .content__text {
    width: 690rem;
    margin: auto;
    margin-top: 160rem;
  }
  .section-title.--center {
    display: block;
  }
  .section-title .en__txt {
    font-size: 100rem;
    text-align: left;
    line-height: 1.6;
  }
  .section-title .ja__txt {
    font-weight: bold;
    font-size: 32rem;
    line-height: 1.6;
    text-align: left;
  }
  .section-title.--center .ja__txt {
    margin-left: 0;
    margin-top: 5rem;
  }
  .section-about .content__text .t__txt {
    font-size: 46rem;
    line-height: 72rem;
    letter-spacing: -0.08em;
  }
  .section-about .content__text .c__txt {
    font-size: 32rem;
    letter-spacing: 0.03em;
    line-height: 64rem;
    margin-top: 30rem;
    margin-bottom: 55rem;
  }
  .detail__btn {
    width: 416rem;
    height: 104rem;
    border-radius: 55rem;
    padding: 2rem;
  }
  .detail__btn .inner {
    border-radius: 55rem;
    font-weight: 500;
    font-size: 28rem;
  }
  .detail__btn .inner:after {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    left: 40rem;
  }
  .section-service {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 30rem 30rem;
    border-radius: 60rem;
    display: block;
  }
  .section-service .content__text .t__txt {
    font-size: 72rem;
  }
  .section-service .content__text .c__txt {
    font-size: 32rem;
    letter-spacing: 0.03em;
    line-height: 64rem;
    margin-top: 20rem;
    margin-bottom: 80rem;
  }
  .section-service .content__text .service__items .s__item {
    width: 100%;
    height: 160rem;
    margin-top: 40rem;
    border-radius: 24rem;
    padding: 1px;
  }
  .section-service .content__text .service__items .s__item .inner {
    width: 100%;
    height: 100%;
    border-radius: 24rem;
    font-weight: 700;
    font-size: 40rem;
    line-height: 48rem;
  }
  .section-service .content__text .service__items .s__item .inner span {
    font-size: 32rem;
  }
  .section-service .service__image {
    width: 100%;
    margin-top: 100rem;
  }
  .section-reasion .reasion__items {
    width: 690rem;
    margin: auto;
    margin-top: 52rem;
  }
  .section-reasion .reasion__items .r__item {
    width: 100%;
    padding: 60rem 55rem;
  }
  .section-reasion .reasion__items .r__item .t__txt {
    font-size: 28rem;
    line-height: 1.5;
  }
  .section-reasion .reasion__items .r__item .t__txt span {
    font-weight: 900;
    font-size: 32rem;
    margin-right: 18rem;
  }
  .section-reasion .reasion__items .r__item .c__lbl {
    font-size: 40rem;
    line-height: 48rem;
    margin-top: 38rem;
  }
  .section-reasion .reasion__items .r__item .c__txt {
    font-size: 30rem;
    letter-spacing: 0.02em;
    line-height: 60rem;
    margin-top: 38rem;
  }
  .section-reasion .reasion__items .r__item .t__txt:after {
    content: "";
    width: 16rem;
    height: 40rem;
    background: #2832b2;
    position: absolute;
    left: -55rem;
  }
  .section-reasion .reasion__items .why__now {
    width: 100%;
    margin: 120rem auto 40rem;
  }
  .section-reasion .reasion__items .why__now .j__txt {
    font-size: 28rem;
    line-height: 1.8;
  }
  .section-reasion .reasion__items .why__now .e__txt {
    font-size: 132rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
  }
  .section-reasion .reasion__items .why__now .txt {
    font-weight: 500;
    font-size: 28rem;
    line-height: 1.8;
  }
  .section-reasion .reasion__items .why__now .txt span {
    font-size: 40rem;
    display: block;
  }
  .section-success {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 30rem 10rem;
    border-radius: 60rem;
  }
  .section-success .section-title {
    align-items: baseline;
  }
  .section-success .section-title .en__txt {
    font-size: 88rem;
  }
  .section-success .success__items {
    width: 100%;
    margin-top: 60rem;
    display: block;
  }
  .section-success .success__items .s__item {
    width: 100%;
    margin-bottom: 40rem;
  }
  .section-success .success__items .s__item .s__inner .c__lbl {
    width: 300rem;
    height: 40rem;
    border-radius: 5rem;
    font-size: 24rem;
  }
  .section-success .success__items .s__item .s__inner h2 {
    font-size: 44rem;
    line-height: 60rem;
    margin-top: 24rem;
  }
  .section-success .success__items .s__item .s__inner {
    width: 585rem;
  }
  .section-success .success__items .s__item .s__inner .line {
    margin: 44rem 0;
  }
  .section-success .success__items .s__item .s__inner .c__txt {
    font-size: 24rem;
    line-height: 45rem;
  }
  .section-voice {
    width: 690rem;
    margin: auto;
    padding: 150rem 0 135rem;
  }
  .section-voice .voice__items {
    display: block;
    margin-top: 60rem;
  }
  .section-voice .voice__items .v__item {
    width: 100%;
    margin: 0;
    margin-bottom: 82rem;
  }
  .section-voice .voice__items .v__item .bg__image {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
  }
  .section-voice .voice__items .v__item .content__text {
    width: 100%;
    height: 100%;
    padding: 20rem 0;
    border: 0;
  }
  .section-voice .voice__items .v__item .content__text h3 {
    font-size: 34rem;
    line-height: 1.5;
  }
  .section-voice .voice__items .v__item .content__text p {
    font-size: 30rem;
    line-height: 60rem;
    margin-top: 10rem;
  }
  .section-voice .voice__items .v__item .man {
    display: none;
  }
  .section-news .news__header {
    display: block;
  }
  .section-title.--left {
    align-items: center;
    justify-content: center;
  }
  .section-news .news__items .n__item {
    width: 100%;
    padding: 0;
    margin-bottom: 70rem;
  }
  .section-news .news__items {
    margin-top: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section-news .news__items .n__item .n__inner .info .cat {
    width: 240rem;
    height: 48rem;
    border-radius: 24rem;
    margin-right: 20rem;
    font-weight: bold;
    font-size: 28rem;
  }
  .section-news .news__items .n__item .n__inner .info .date {
    font-size: 30rem;
  }
  .section-news .news__items .n__item .n__inner h3 {
    font-weight: bold;
    font-size: 34rem;
    line-height: 54rem;
    margin-top: 22rem;
  }
  .section-contact {
    width: 100%;
    height: 904rem;
    background: url(../img/contact_bg_sp.webp);
    background-size: cover;
  }
  .section-contact .c__lbl {
    font-size: 42rem;
    letter-spacing: -0.05em;
    line-height: 67rem;
  }
  .section-contact .c__txt {
    font-weight: 500;
    font-size: 32rem;
    line-height: 52rem;
    margin-top: 36rem;
    margin-bottom: 55rem;
  }
  footer {
    margin-top: 200rem;
    padding: 120rem 0 50rem;
    border-radius: 60rem 60rem 0rem 0rem;
  }
  footer .content__inner {
    width: 690rem;
  }
  footer .content__inner .footer__info {
    display: block;
    text-align: center;
  }
  footer .content__inner .footer__info .info .f__logo {
    width: 310rem;
    margin: auto;
  }
  footer .content__inner .footer__info .info .c__info {
    display: inline-block;
    font-size: 36rem;
    line-height: 72rem;
  }
  footer .content__inner .footer__info .footer__menu {
    display: block;
    margin-top: 70rem;
  }
  footer .content__inner .footer__info .footer__menu ul {
    margin-left: 0;
  }
  footer .content__inner .footer__info .footer__menu ul li {
    margin-bottom: 0;
    padding: 20rem 0;
    border-top: 1rem solid #fff;
  }
  footer .content__inner .footer__info .footer__menu ul li.parent {
    position: relative;
    text-align: left;
  }
  footer .content__inner .footer__info .footer__menu ul li.parent > a {
    display: inline-block;
    position: relative;
  }
  footer .content__inner .footer__info .footer__menu ul li.parent > a:after {
    content: "";
    width: 28rem;
    height: 0;
    border-top: 3rem solid #fff;
    position: absolute;
    left: 640rem;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .content__inner .footer__info .footer__menu ul li.parent > a:before {
    content: "";
    height: 28rem;
    width: 0;
    border-left: 3rem solid #fff;
    position: absolute;
    left: 654rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  footer .content__inner .footer__info .footer__menu ul li.parent.open a:before {
    opacity: 0;
  }
  footer .content__inner .footer__info .footer__menu ul li.parent ul.child {
    display: none;
  }
  footer .content__inner .footer__info .footer__menu ul li.one {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .content__inner .footer__info .footer__menu ul li a {
    font-weight: 900;
    font-size: 36rem;
    line-height: 2;
    display: block;
  }
  footer .content__inner .footer__info .footer__menu ul li ul.child li a {
    font-weight: 500;
    font-size: 26rem;
  }
  footer .content__inner .footer__info .footer__menu ul li ul.child li {
    margin-bottom: 0;
    border: 0;
    padding: 15rem 0;
  }
  footer .content__inner .footer__info .footer__menu ul li.contact a {
    width: 100%;
    height: 104rem;
    border-radius: 20rem;
    background: #fff;
    margin-top: 35rem;
  }
  footer .content__inner .footer__info .footer__menu ul li.contact a span {
    font-size: 34rem;
  }
  footer .content__inner .footer__bottom {
    padding-top: 30rem;
    display: block;
  }
  footer .content__inner .footer__bottom a {
    font-weight: normal;
    font-size: 28rem;
    line-height: 1.4;
    padding-right: 0;
  }
  footer .content__inner .footer__bottom .copyright {
    font-size: 28rem;
    line-height: 44rem;
    margin-top: 45rem;
    text-align: center;
  }
  header .hambeg__menu.open {
    display: block;
    height: 100vh;
    width: calc(100% + 60rem);
    left: -30rem;
    top: -20rem;
    padding: 120rem 30rem 0;
    background: linear-gradient(to right, #2b32b2 0%, #1488cc 100%);
  }
  header .hambeg__menu.open .hambeg__inner {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  header.fixed .hambeg__menu.open {
    top: -30rem;
  }
  header .hambeg__menu .c__image .catch__text {
    position: relative;
    left: auto;
    top: auto;
  }
  header .hambeg__menu .c__image {
    width: 100%;
  }
  header nav .sp-menu.open span:nth-child(1) {
    top: 50rem;
  }
  header nav .sp-menu.open span:nth-child(3) {
    top: 50rem;
  }
  header .hambeg__menu .c__image .catch__text h3 {
    font-weight: 700;
    font-size: 44rem;
    line-height: 66rem;
    margin-top: 40rem;
    letter-spacing: -0.05em;
    color: white;
  }
  header .hambeg__menu .ham__menu {
    width: 100%;
    margin-top: 40rem;
    display: block;
  }
  header .hambeg__menu .ham__menu .p__inner {
    width: 100%;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul {
    width: 100%;
    margin: 0;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child {
    width: auto;
    margin-top: 0;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li {
    margin-bottom: 0;
    padding: 30rem 0;
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent {
    position: relative;
    display: block;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent.open:before {
    opacity: 0;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent:after {
    content: "";
    width: 28rem;
    height: 0;
    border-top: 3rem solid #fff;
    position: absolute;
    right: 10rem;
    top: 45rem;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent:before {
    content: "";
    height: 28rem;
    width: 0;
    border-left: 3rem solid #fff;
    position: absolute;
    right: 23rem;
    top: 32rem;
    transition: 0.3s;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent ul.child {
    margin-top: 15rem;
    display: none;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li.parent ul.child li {
    padding: 16rem 0;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li:first-child a {
    font-size: 36rem;
    font-weight: 900;
    background: unset;
    color: white;
    -webkit-text-fill-color: unset;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child li a {
    font-size: 26rem;
    line-height: 1;
    text-align: left;
    color: white;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu ul li ul.child li {
    padding: 0;
    border: 0;
  }
  header .hambeg__menu .ham__menu .p__inner .p__menu {
    border-color: white;
    border-width: 1px;
  }
  header .hambeg__menu .ham__menu .p__inner .bottom__menu {
    width: 100%;
    padding-top: 40rem;
    display: block;
  }
  header .hambeg__menu .hambeg__inner {
    display: block;
  }
  header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn {
    width: 100%;
    height: 104rem;
    border-radius: 20rem;
  }
  header .hambeg__menu .ham__menu .p__inner .bottom__menu .contact__btn span {
    font-size: 34rem;
  }
  header .hambeg__menu .ham__menu .p__inner .bottom__menu .link {
    font-size: 28rem;
    margin-top: 30rem;
    display: block;
    line-height: 2;
    color: white;
  }
  .frontview .lang__items {
    position: absolute;
    bottom: 50rem;
    right: 50rem;
    width: 200rem;
    height: 95rem;
    border-radius: 12rem;
  }
  .frontview .lang__items a, .frontview .lang__items span {
    font-size: 40rem;
  }
  header.fixed {
    height: 140rem;
    top: 30rem;
    background: #fff;
    box-shadow: 3px 3px 3px rgba(155, 155, 155, 0.75);
  }
  header.fixed .logo img.sp {
    display: none !important;
  }
  header.fixed .logo img.pc {
    display: flex !important;
    animation: fadeIn 0.3s forwards;
  }
  header.fixed nav .sp-menu {
    border-color: #000;
  }
  header.fixed nav .sp-menu.open {
    border-color: white;
    border: 0;
  }
  header.fixed nav .sp-menu.open span {
    border-color: white;
  }
  header.fixed nav .sp-menu span {
    border-color: #000;
  }
  .subfrontview .front__info {
    display: block;
    text-align: center;
    top: 466rem;
    transform: translate(-50%);
  }
  .subfrontview .front__info .breadcrumb a, .subfrontview .front__info .breadcrumb span {
    font-size: 28rem;
    line-height: 1.5;
  }
  .subfrontview .front__info .breadcrumb {
    margin-top: 20rem;
    padding: 16rem 10rem;
    margin-top: 20rem;
    justify-content: center;
  }
  .about__wrapper .detail__text {
    width: 680rem;
  }
  .about__wrapper {
    padding-top: 260rem;
  }
  .about__wrapper .message__content {
    width: 100%;
    height: auto;
    padding: 35rem 30rem;
    margin: auto;
    margin-top: 170rem;
    border-radius: 60rem;
    display: block;
  }
  .about__wrapper .sub__title .en__txt {
    font-size: 36rem;
    line-height: 1.2;
    padding: 6rem 22rem;
    text-align: center;
    color: #fff;
    border-radius: 28rem;
  }
  .about__wrapper .sub__title .ja__txt {
    font-size: 68rem;
    line-height: 1.5;
    margin-top: 20rem;
  }
  .about__wrapper .message__content .content__text {
    width: 100%;
  }
  .about__wrapper .message__content .content__text h2 {
    font-size: 52rem;
    line-height: 75rem;
    margin-top: 50rem;
  }
  .about__wrapper .message__content .content__text .c__txt {
    font-weight: 500;
    font-size: 30rem;
    line-height: 60rem;
    margin-top: 40rem;
  }
  .about__wrapper .message__content .c__image {
    width: 100%;
    margin-left: 0;
    margin-top: 40rem;
  }
  .about__wrapper .company__content {
    width: 690rem;
    margin: auto;
    margin-top: 190rem;
    display: block;
  }
  .about__wrapper .company__content .content__text {
    width: 100%;
    margin-top: 55rem;
  }
  .about__wrapper .company__content .content__text table tr td {
    font-size: 30rem;
    line-height: 1.8;
    padding: 35rem 0;
  }
  .about__wrapper .company__content .content__text table tr td:last-child {
    padding-left: 20rem;
    padding-top: 15rem;
  }
  .about__wrapper .company__content .content__text table tr {
    display: grid;
  }
  .about__wrapper .company__content .content__text table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .about__wrapper .access__content {
    width: 690rem;
    margin: 190rem auto;
    display: block;
  }
  .about__wrapper .access__content .title__wrapper .c__txt {
    font-weight: normal;
    font-size: 32rem;
    line-height: 64rem;
    margin-top: 50rem;
  }
  .about__wrapper .access__content .map {
    width: 100%;
    height: 430rem;
    margin-top: 55rem;
  }
  .contact__wrapper .d__txt {
    width: 630rem;
    margin: auto;
    margin-top: 110rem;
    font-weight: 500;
    font-size: 30rem;
    line-height: 60rem;
    text-align: justify;
  }
  .contact__wrapper .contact__form {
    width: 690rem;
    margin: auto;
    margin-top: 80rem;
  }
  .contact__wrapper .contact__form table tr {
    display: grid;
  }
  .contact__wrapper .contact__form table tr td:first-child {
    width: 100%;
    font-weight: 500;
    font-size: 28rem;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__form table tr td select {
    width: 100%;
    height: 120rem;
    border-radius: 10rem;
    font-size: 28rem;
    line-height: 36rem;
    padding-left: 20rem;
    background-image: url(../img/down_arrow.webp);
    background-size: 21rem 18rem;
    background-repeat: no-repeat;
    background-position: 650rem center;
  }
  .contact__wrapper .contact__form table tr td {
    padding: 24rem 0;
  }
  .contact__wrapper .contact__form table tr td:first-child .required {
    font-size: 24rem;
  }
  .contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
    width: 100%;
    height: 120rem;
    border-radius: 10rem;
    background: #ebebeb;
    font-weight: normal;
    font-size: 28rem;
  }
  .contact__wrapper .contact__form table tr td .names input[type=text] {
    width: 330rem;
  }
  .contact__wrapper .contact__form table tr td .names input[type=email] {
    width: 100%;
  }
  .contact__wrapper .contact__form table tr td .names.tel input[type=text] {
    width: 100%;
  }
  .contact__wrapper .contact__form table tr td textarea {
    width: 100%;
    height: 400rem;
    border-radius: 10rem;
    padding: 20rem;
    font-size: 28rem;
    line-height: 1.6;
  }
  .contact__wrapper .contact__form table tr td .privacy__content {
    font-size: 32rem;
    line-height: 36rem;
    margin-top: 60rem;
  }
  .contact__wrapper .contact__form table tr td .submit__btn {
    width: 500rem;
    height: 120rem;
    border-radius: 60rem;
    margin-top: 55rem;
    font-weight: 500;
    font-size: 32rem;
  }
  .news-detail__wrapper {
    width: 690rem;
    margin: 280rem auto 140rem;
  }
  .news-detail__wrapper .c__info {
    width: 100%;
    padding-bottom: 45rem;
    display: block;
  }
  .news-detail__wrapper .c__info .info .cat {
    font-size: 28rem;
    line-height: 1.2;
    padding: 8rem 35rem;
    border-radius: 24rem;
  }
  .news-detail__wrapper .c__info .info .date {
    font-size: 36rem;
    line-height: 1.5;
    margin-left: 40rem;
  }
  .news-detail__wrapper .c__info h3 {
    font-size: 36rem;
    margin-top: 25rem;
    line-height: 1.5;
    text-align: left;
  }
  .news-detail__wrapper .content__text h2 {
    font-size: 36rem;
    line-height: 1.5;
    margin-bottom: 35rem;
  }
  .news-detail__wrapper .content__text p {
    font-size: 32rem;
    line-height: 64rem;
    margin-bottom: 35rem;
  }
  .news__wrapper {
    width: 690rem;
    margin: 290rem auto 200rem;
  }
  .news__wrapper .select__form {
    position: relative;
    width: 100%;
    height: 104rem;
    border-radius: 52rem;
    overflow: hidden;
  }
  .news__wrapper .select__form input {
    width: 100%;
    height: 100%;
    background: transparent;
    font-weight: 500;
    font-size: 32rem;
    line-height: 56rem;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    outline: 0;
    pointer-events: none;
  }
  .news__wrapper .select__form select {
    width: 100%;
    height: 100%;
    background: #2832b2;
    border: 1rem solid #2832b2;
    outline: 0;
    font-weight: 500;
    font-size: 32rem;
    line-height: 56rem;
    text-align: center;
    color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url(../img/select_arrow.webp);
    background-size: 32rem 16rem;
    background-repeat: no-repeat;
    background-position: 620rem center;
  }
  .news__wrapper .select__form select option {
    color: #fff;
  }
  .news__wrapper .news__items {
    width: 100%;
    margin-top: 100rem;
    margin-left: 0;
    margin-right: 0;
  }
  .news__wrapper .news__items .n__item {
    width: 100%;
    padding: 0;
    margin-bottom: 65rem;
  }
  .news__wrapper .news__items .n__item .n__inner .info .cat {
    width: auto;
    height: auto;
    padding: 8rem 30rem;
    border-radius: 24rem;
    margin-right: 35rem;
    font-weight: bold;
    font-size: 28rem;
  }
  .news__wrapper .news__items .n__item .n__inner .info .date {
    font-size: 30rem;
  }
  .news__wrapper .news__items .n__item .n__inner .c__image {
    width: 100%;
    margin-top: 35rem;
  }
  .news__wrapper .news__items .n__item .n__inner h3 {
    font-size: 34rem;
    line-height: 54rem;
    margin-top: 25rem;
  }
  .news__wrapper .pagination ul li {
    width: 80rem;
    height: 80rem;
    margin: 0 12rem;
    border-radius: 50%;
    font-size: 30rem;
  }
  .privacy__wrapper {
    width: 690rem;
    margin: 270rem auto 200rem;
  }
  .privacy__wrapper table tr {
    display: grid;
  }
  .privacy__wrapper table tr td:first-child {
    width: 100%;
    font-weight: bold;
    font-size: 36rem;
    line-height: 1.6;
    padding-bottom: 0;
  }
  .privacy__wrapper table tr td {
    font-weight: normal;
    font-size: 28rem;
    line-height: 56rem;
    padding: 40rem 0;
  }
  .privacy__wrapper table tr td:last-child {
    padding-top: 20rem;
  }
  .service__wrapper .detail__content {
    width: 690rem;
  }
  .service__wrapper {
    padding-top: 280rem;
  }
  .service__wrapper .detail__content h2 {
    font-size: 60rem;
    line-height: 90rem;
  }
  .service__wrapper .detail__content .service__cats {
    margin-top: 60rem;
    display: block;
  }
  .service__wrapper .detail__content .service__cats span {
    font-size: 48rem;
    margin-right: 20rem;
    margin-bottom: 20rem;
    padding: 4rem 20rem;
  }
  .service__wrapper .detail__content .c__pan {
    font-size: 52rem;
    line-height: 78rem;
    margin-top: 60rem;
  }
  .service__wrapper .detail__content .c__txt {
    width: 100%;
    padding-top: 48rem;
    margin-top: 48rem;
    border-top: 2rem solid #000;
    font-weight: 500;
    font-size: 32rem;
    line-height: 64rem;
  }
  .service__wrapper .service__content {
    margin-top: 200rem;
    padding: 90rem 0 140rem;
  }
  .service__wrapper .service__content .service__items .s__lbl {
    font-size: 56rem;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }
  .service__wrapper .service__content .service__items .s__items {
    width: 690rem;
    margin: auto;
    margin-top: 70rem;
  }
  .service__wrapper .service__content .service__items .s__items .s__item {
    width: 100%;
    height: auto;
    padding: 35rem 25rem;
    border-radius: 60rem;
    margin-bottom: 60rem;
    background: #fff;
    display: block;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title {
    display: block;
    margin-top: 0;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .num {
    font-size: 84rem;
    line-height: 1.5;
    display: block;
    text-align: center;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text {
    width: 100%;
    margin-left: 0;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .t__txt {
    font-weight: bold;
    font-size: 44rem;
    line-height: 1.5;
    margin-left: 0;
    text-align: center;
    display: block;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title .t__txt span {
    font-size: 32rem;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .c__image {
    width: 100%;
    margin-top: 40rem;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .c__txt {
    font-size: 30rem;
    line-height: 64rem;
    margin-top: 30rem;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .icon {
    width: 73rem;
    margin: 25rem auto;
    display: flex;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .icon svg {
    width: 100%;
    height: 100%;
  }
  .service__wrapper .service__content .service__items .s__items .s__item .content__text .t__title:after {
    content: unset;
  }
  .service__wrapper .service__content .item__content {
    width: 690rem;
    height: auto;
    margin: auto;
    padding: 60rem 40rem;
    margin-top: 150rem;
  }
  .service__wrapper .service__content .item__content .h__content .cp__text .t__title h2 {
    font-weight: 900;
    font-size: 60rem;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: left;
  }
  .service__wrapper .service__content .item__content .h__content .cp__text .t__title span {
    font-weight: bold;
    margin-left: 0;
    margin-top: 6rem;
    display: block;
    font-size: 32rem;
  }
  .service__wrapper .service__content .item__content .h__content .cp__text .t__title {
    display: block;
  }
  .service__wrapper .service__content .item__content .h__content .cp__text .t__title:after {
    width: 25rem;
    height: 100%;
    left: -40rem;
  }
  .service__wrapper .service__content .item__content .h__content .cp__text .c__txt {
    width: 100%;
    font-weight: normal;
    font-size: 30rem;
    line-height: 64rem;
    margin-top: 40rem;
    text-align: justify;
  }
  .service__wrapper .service__content .item__content .h__content {
    display: block;
  }
  .service__wrapper .service__content .item__content .h__content .c__image {
    width: 100%;
    margin-top: 33rem;
  }
  .service__wrapper .service__content .item__content .cp__item {
    margin-top: 75rem;
  }
  .service__wrapper .service__content .item__content .cp__item .c__lbl {
    font-size: 52rem;
    line-height: 1.5;
    text-align: center;
  }
  .service__wrapper .service__content .item__content .cp__item .c__lbl.c01 {
    font-size: 50rem;
    letter-spacing: -0.1em;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items {
    width: 100%;
    margin-top: 30rem;
    display: block;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item {
    width: 570rem;
    margin: auto;
    height: 264rem;
    padding: 30rem;
    border-bottom: 0;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item:last-child {
    border-bottom: 1rem solid #dcdddd;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item .t__txt {
    font-size: 40rem;
    line-height: 1.4;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item .t__txt:after {
    width: 12rem;
    height: 48rem;
    left: -30rem;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item .c__txt {
    font-weight: 500;
    font-size: 30rem;
    line-height: 56rem;
    margin-top: 25rem;
    letter-spacing: -0.05em;
  }
  .service__wrapper .service__content .item__content .sc__content {
    margin-top: 100rem;
  }
  .service__wrapper .service__content .item__content .sc__content .sc__lbl {
    font-weight: bold;
    font-size: 52rem;
    text-align: center;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner {
    width: 100%;
    margin-top: 25rem;
    display: block;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .t__txt {
    font-size: 40rem;
    line-height: 50rem;
    margin-left: 20rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .t__txt:after {
    width: 12rem;
    height: 88%;
    left: -28rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__txt {
    width: 100%;
    font-weight: 500;
    font-size: 28rem;
    letter-spacing: 0.02em;
    line-height: 42rem;
    margin-top: 40rem;
    text-align: justify;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item {
    width: 100%;
    margin-top: 40rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item .c__lbl {
    font-size: 36rem;
    line-height: 1.4;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item table tr td {
    font-weight: 500;
    font-size: 26rem;
    letter-spacing: 0;
    line-height: 55rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item table tr td:first-child {
    width: 170rem;
    vertical-align: top;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item.c01 table tr td:first-child {
    width: 150rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text {
    padding-left: 0;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item .txt {
    font-size: 28rem;
    letter-spacing: -0.03em;
    line-height: 56rem;
    margin-top: 7rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .c__item .txt span {
    font-size: 24rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .c__image {
    width: 100%;
    margin-top: 30rem;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items {
    width: 100%;
    margin-top: 35rem;
    display: block;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items .sp__item {
    width: 570rem;
    margin: auto;
    padding: 0 0 30rem;
    margin-bottom: 30rem;
    border-left: 0;
    border-bottom: 1rem solid #dcdddd;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .j__txt {
    font-size: 48rem;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .e__txt {
    font-size: 28rem;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items .sp__item .s__txt {
    font-size: 30rem;
    line-height: 60rem;
    margin-top: 18rem;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items .sp__item:last-child {
    border-right: 0;
    border-bottom: 0;
  }
  .service__wrapper .service__content .item__content .cp__item .note__txt {
    font-weight: 500;
    font-size: 28rem;
    line-height: 46rem;
    margin-top: 12rem;
    text-align: center;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items.c03 .sp__item .j__txt {
    font-size: 36rem;
    letter-spacing: 0.03em;
    line-height: 48rem;
    text-align: center;
  }
  .service__wrapper .service__content .item__content .cp__item .sp__items.c03 .sp__item .s__txt {
    font-size: 26rem;
    line-height: 46rem;
    margin-top: 30rem;
  }
  header nav .sp-menu {
    border-width: 1px;
  }
  header.open nav .sp-menu {
    border: 0;
  }
  header nav .sp-menu span {
    border-width: 1px;
  }
  .service__wrapper .service__content .item__content .cp__item .p__items .item:first-child {
    border-radius: 20rem 20rem 0rem 0;
  }
  .section-about .about__mark.abs {
    position: absolute;
    top: 238rem;
    left: 50%;
  }
  .frontview .content__inner h2 {
    width: 100%;
    margin-bottom: 170rem;
  }
  .news__wrapper .pagination .wp-pagenavi a, .news__wrapper .pagination .wp-pagenavi span {
    width: 80rem;
    height: 80rem;
    font-size: 30rem;
  }
  .about__wrapper .detail__text h2 {
    font-size: 52rem;
    line-height: 104rem;
  }
  .about__wrapper .detail__text h2 {
    font-size: 52rem;
    line-height: 104rem;
  }
  .gt_switcher_wrapper a {
    font-size: 40rem;
  }
  .gt_switcher_wrapper {
    bottom: 20rem !important;
    right: 20rem !important;
  }
  .section-reasion .reasion__items .r__item:nth-child(5) {
    border: 1rem solid #dcdddd;
  }
  .section-reasion .reasion__items .r__item {
    border-right: 1rem solid #dcdddd;
    border-bottom: 0;
  }
  .section-reasion .reasion__items .r__item:nth-child(6) {
    border-bottom: 1rem solid #dcdddd;
  }
  .about__wrapper .message__content .content__inner {
    display: block;
  }
  .about__wrapper .message__content .c__txt {
    font-size: 30rem;
    line-height: 2;
    margin-top: 55rem;
    text-align: justify;
  }
  .about__wrapper .message__content .c__txt span.c01 {
    font-size: 32rem;
  }
  .service__wrapper .service__content .item__content .sc__content .content__inner .content__text .g__txt {
    font-size: 28rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-top: 25rem;
  }
  .section-voice .voice__items .v__item .content__text h3 span {
    font-size: 30rem;
    margin-top: 20rem;
  }
}/*# sourceMappingURL=style.css.map */