@charset "UTF-8";
:root {
  --color-base: #222;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #808080;
  --color-red: #8D2A15;
  --color-gold: #C49D30;
  --bg-sub-base: #EDE4E1;
  --bg-orange: rgb(118,57,25);
  --bg-gradient-orange: linear-gradient(90deg, rgba(118,57,25,1) 0%, rgba(215,151,118,1) 60%, rgba(118,57,25,1) 100%);
  --bg-btn: linear-gradient(45deg, #763919, #D79776 60%, #763919);
}

/*
 *
 * Hiragino
 *
 */
:root {
  --font-fallback: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --font-yumincho: "YuMincho", var(--font-fallback);
  --font-weight-regular: 400;
  --font-weight-semibold: 500;
  --font-weight-demibold: 600;
  --font-weight-bold: 700;
}

.font-eng {
  font-family: var(--font-english);
}

html {
  font-family: "Noto Sans JP", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}
@media print, (min-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

* {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

li {
  list-style: none;
}

body {
  --color-base: #222;
  --color-bg-base: #fff;
  --font-weight-normal: 400;
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: var(--font-weight-normal);
  color: var(--color-base);
  background: var(--color-bg-base);
  line-height: 1.875;
}
@media print, (min-width: 768px) {
  body {
    --screen-pc-min: 128rem;
    min-width: var(--screen-pc-min);
    line-height: 1.5;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.js-fade {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), translate 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-fade.fadeIn {
  opacity: 0;
}
.js-fade.fadeIn.in {
  animation: fadeIn;
  animation-duration: 2s;
}
.js-fade.fadeUp {
  translate: 0 50%;
  opacity: 0;
}
.js-fade.fadeUp.in {
  animation: fadeUp;
}
.js-fade.fadeDown {
  translate: 0 -50%;
  opacity: 0;
}
.js-fade.fadeDown.in {
  animation: fadeDown;
}
.js-fade.fadeLeft {
  translate: -50% 0;
  opacity: 0;
}
.js-fade.fadeLeft.in {
  animation: fadeLeft;
}
.js-fade.fadeRight {
  translate: 50% 0;
  opacity: 0;
}
.js-fade.fadeRight.in {
  animation: fadeRight;
}
.js-fade.fadeBg::before {
  opacity: 0;
}
.js-fade.fadeBg.in::before {
  animation: fadeIn;
}
.js-fade__in, .js-fade.fadeIn.in, .js-fade.fadeUp.in, .js-fade.fadeDown.in, .js-fade.fadeLeft.in, .js-fade.fadeRight.in, .js-fade.fadeBg.in::before {
  animation-fill-mode: both;
  animation-duration: 1s;
}
@media print, (min-width: 768px) {
  .js-fade.in.delay-01 {
    animation-delay: 0.25s;
  }
  .js-fade.in.delay-02 {
    animation-delay: 0.5s;
  }
  .js-fade.in.delay-03 {
    animation-delay: 0.75s;
  }
  .js-fade.in.delay-04 {
    animation-delay: 1s;
  }
  .js-fade.in.delay-05 {
    animation-delay: 1.25s;
  }
  .js-fade.in.delay-06 {
    animation-delay: 1.5s;
  }
  .js-fade.in.delay-07 {
    animation-delay: 1.75s;
  }
  .js-fade.in.delay-08 {
    animation-delay: 2s;
  }
}

.move-light::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(hsla(54, 70%, 90%, 0) 0%, hsla(54, 70%, 90%, 0.4) 55%, hsla(8, 79%, 90%, 0.45) 70%, hsla(8, 79%, 90%, 0) 80%, hsla(8, 79%, 90%, 0) 100%);
  background-repeat: no-repeat;
  background-position: 120% 120%;
  background-size: 500% 500%;
  mix-blend-mode: hard-light;
}
.move-light.in::after {
  animation: move-light 1500ms 300ms ease-out forwards, move-light-opacity 1500ms 300ms forwards;
  animation-delay: 2s;
}

.text-light.in {
  animation: text-light 3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    translate: 0 50%;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes fadeDown {
  from {
    translate: 0 -50%;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes fadeRight {
  from {
    translate: 50% 0;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes fadeLeft {
  from {
    translate: -50% 0;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes move-light {
  from {
    background-position: 150% 100%;
  }
  to {
    background-position: 50% 50%;
  }
}
@keyframes move-light-up {
  from {
    background-position: 120% 0%;
  }
  to {
    background-position: 50% 50%;
  }
}
@keyframes move-light-opacity {
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
@keyframes text-light {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
@keyframes text-color-w {
  from {
    color: rgba(255, 255, 255, 0);
  }
  to {
    color: rgb(255, 255, 255);
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
[data-animation^=fade-in]:not(.animated) {
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  button
---------------------------------------------------------- */
.c-btn {
  --color-bg-btn: #000;
  --color-white: #fff;
  --font-size: 3rem;
  color: var(--color-white);
  background: var(--color-bg-btn);
}
.c-btn01 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  background: #00AA4B;
  min-height: 6.4rem;
  min-width: 23.6rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 1rem 1.7rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3.2rem;
  overflow: hidden;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    min-width: 12.6rem;
    min-height: 3.4rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    gap: 0.5rem;
  }
}
.c-btn01 ._icon {
  width: 3rem;
  height: 3rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn01 ._icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.c-btn01.font-eng {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.c-btn02 {
  font-size: 3.5rem;
  font-weight: 700;
  background: #1A238A;
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.02em;
  color: #FFF648;
  padding: 0 7.6rem;
  min-height: 9.7rem;
  width: 46rem;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    width: 27.7rem;
    min-height: 5.8rem;
    font-size: 2rem;
    padding: 0 4.5rem 0 5rem;
  }
}
.c-btn02::after {
  content: "";
  width: 5.4rem;
  height: 5.4rem;
  background: url("../images/ico_arrow_w.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: calc(50% - 2.7rem);
  right: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn02::after {
    width: 3.2rem;
    height: 3.2rem;
    top: calc(50% - 1.6rem);
    right: 0.9rem;
  }
}
.c-btn02 small {
  color: #fff;
  font-size: 3.1rem;
}
@media screen and (max-width: 767px) {
  .c-btn02 small {
    font-size: 1.7rem;
  }
}
.c-btn02 ._icon {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: calc(50% - 2rem);
  left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-btn02 ._icon {
    width: 2.6rem;
    height: 2.6rem;
    top: calc(50% - 1.3rem);
    left: 1.5rem;
  }
}
.c-btn03 {
  display: inline-block;
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  text-align: center;
  padding: 2.5rem 9rem;
  background: #22AAED;
  color: #fff;
  border-radius: 2.5rem;
  overflow: hidden;
  width: 69.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn03 {
    font-size: 2.1rem;
    padding: 1.8rem 3.1rem;
    border-radius: 0.9rem;
    width: 30.8rem;
  }
}

@media print, (min-width: 768px) {
  a {
    transition: opacity 0.2s;
  }
  a:hover {
    opacity: 0.5;
  }
}
.footer {
  background: #4f827d;
  padding: 2.7rem 0 1rem;
  position: relative;
  color: #fff;
  z-index: 12;
}
.footer .scroll-top {
  position: absolute;
  bottom: 1.4rem;
  right: 1.8rem;
  width: 5rem;
  height: 5rem;
}
.footer-logo {
  width: 25.9rem;
  margin-bottom: 3.1rem;
  margin-top: 1rem;
  margin-inline: auto;
}
.footer-link {
  margin-bottom: 5.3rem;
}
.footer-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11.9rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 1.4rem;
  }
  .footer .scroll-top {
    bottom: 1.2rem;
    right: 0.8rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .footer-logo {
    width: 16.2rem;
  }
  .footer-link {
    margin-bottom: 4.8rem;
  }
  .footer-link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 5.8rem;
    gap: 1.2rem 4.2rem;
  }
  .footer .copyright {
    font-size: 1.4rem;
  }
}
.footer .copyright {
  text-align: center;
}

@media print, (min-width: 768px) {
  .header {
    position: fixed;
    top: 0rem;
    right: 0;
    width: 100%;
    z-index: 6;
    padding: 2.2rem 2rem;
    transition: background 0.3s;
  }
  .header.is-fixed {
    background: rgba(0, 0, 0, 0.5);
  }
  .header.is-fixed .logo {
    opacity: 1;
    visibility: visible;
  }
  .header .logo {
    position: fixed;
    top: 1.3rem;
    left: 3.3rem;
    width: 15.9rem;
    height: 5.4rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .header .header-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 11.3rem;
  }
  .header .header-menu a {
    color: #fff;
  }
  .header .header-menu a.btn-contact {
    position: relative;
    width: 13.9rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1.8rem;
    padding-inline: 1.9rem;
  }
  .header .header-menu a.btn-contact:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.8rem;
    width: 2rem;
    height: 1.2rem;
    background: url("../images/ic_contact.png") no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    height: 4.5rem;
    width: 100%;
  }
  .header.is-fixed {
    background: rgba(0, 0, 0, 0.5);
  }
  .header.is-fixed .logo {
    opacity: 1;
    visibility: visible;
  }
  .header .logo {
    position: fixed;
    top: 0.7rem;
    left: 1.3rem;
    width: 8.6rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .header .hamburger {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.1rem;
    height: 1.4rem;
    z-index: 1001;
  }
  .header .hamburger span {
    height: 1px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
    background-color: #000;
  }
  .header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    background-color: #000;
  }
  .header .header-menu {
    position: fixed;
    top: -100vh;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    z-index: 1000;
    transition: all 0.3s;
  }
  .header .header-menu.active {
    top: 0;
  }
  .header .header-menu li {
    text-align: center;
    margin: 1rem 0;
  }
  .header .header-menu a {
    text-decoration: none;
    color: #000;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media print, (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.db {
  display: block !important;
}

.hide {
  display: none !important;
}

@media print, (min-width: 768px) {
  .db_pc {
    display: block !important;
  }
}
.wrap, .footer__inner {
  width: 100%;
  padding: 0 1rem;
  margin: auto;
}
@media print, (min-width: 768px) {
  .wrap, .footer__inner {
    max-width: 160rem;
    padding: 0 4rem;
  }
}

.row {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .row {
    max-width: 1000px;
    padding: 0 2rem;
  }
}

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

.page-tl {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.page-tl .en {
  font-size: 3.4rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.page-tl .ja {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .page-tl {
    margin-left: -2rem;
    margin-bottom: 0.4rem;
  }
  .page-tl .en {
    font-size: 3rem;
    margin-bottom: -0.5rem;
  }
  .page-tl .ja {
    font-size: 2.2rem;
  }
}

@media print, (min-width: 768px) {
  .custom-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .custom-only {
    display: none;
  }
}
@media print, (min-width: 1360px) {
  .custom-only {
    display: block;
  }
}

.message {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
.message:after {
  content: "";
  position: absolute;
  width: 28rem;
  height: 15rem;
  border: 1px solid #fff;
}
.message.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
@media print, (min-width: 768px) {
  .message {
    font-size: 2rem;
  }
  .message:after {
    width: 36rem;
  }
}

@media print, (min-width: 768px) {
  .kv {
    position: relative;
    z-index: 0;
  }
  .kv:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  .kv-ttl {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 83.5rem;
    height: 29.1rem;
  }
  .about-us {
    padding-block: 10.8rem 10rem;
    background: #f5f5f5;
    display: flex;
    justify-content: flex-end;
  }
  .about-us__content {
    margin-top: 100px;
    width: 36.5625vw;
    min-width: 475px;
  }
  .about-us__content .title {
    font-size: 3.4rem;
    font-weight: bold;
    margin-bottom: 1.7rem;
  }
  .about-us__content .text {
    line-height: 2.5;
  }
  .about-us__image {
    width: 48.59375vw;
    min-width: 630px;
    margin-left: 8.3rem;
    border-radius: 1rem 0 0 1rem;
    overflow: hidden;
  }
  .service {
    padding-block: 10rem 0;
  }
  .service-content {
    text-align: center;
    line-height: 2.5;
    margin-bottom: 6rem;
  }
}
@media print, print and (min-width: 1500px), print and (min-width: 768px), (min-width: 768px) and (min-width: 1500px) {
  .service-content {
    padding-inline: 1.5rem;
  }
}
@media print, (min-width: 768px) {
  .service-box {
    margin-bottom: 26.2rem;
    text-align: center;
  }
  .service-box .title-clr {
    color: #4f827d;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }
  .service-box .sub-title {
    font-size: 2rem;
    margin-bottom: 4.4rem;
  }
  .service-box figure {
    width: 87.6rem;
    height: 52.4rem;
    margin-inline: auto;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
  }
  .service-box .figcaption {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.7857142857;
  }
  .service-wrap {
    display: flex;
    position: relative;
  }
  .service-wrap:not(:last-child) {
    margin-bottom: 23rem;
  }
  .service-wrap:nth-child(odd) {
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  .service-wrap:nth-child(odd):after {
    left: 0;
  }
  .service-wrap:nth-child(odd) .image {
    margin-inline: 4.4rem 0;
  }
  .service-wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 75.5208333333vw;
    height: 35.0520833333vw;
    min-width: 970px;
    min-height: 540px;
    background: #f1f1f1;
    bottom: 0;
    right: 0;
  }
  .service-wrap .image {
    width: 60.3645833333vw;
    flex-shrink: 0;
    margin-right: 5rem;
    min-width: 800px;
  }
  .service-wrap .content {
    margin-top: -1.7rem;
    width: 26.7708333333vw;
    min-width: 404px;
  }
  .service-wrap .content .num {
    position: relative;
    z-index: 1;
    font-size: 6.9rem;
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: var(--font-yumincho);
  }
  .service-wrap .content .num:after {
    content: "";
    position: absolute;
    top: -2.2rem;
    left: 3.5rem;
    width: 2px;
    height: 11.5rem;
    background: #c4dbd9;
    transform: rotate(-44deg);
    z-index: -1;
  }
  .service-wrap .content .ttl {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    font-family: var(--font-yumincho);
  }
  .service-wrap .content .tl-en {
    font-family: var(--font-yumincho);
    color: #4f827d;
    font-size: 1.8rem;
  }
  .service-wrap .content .txt {
    line-height: 2.5;
    margin-bottom: 1rem;
  }
  .service-wrap .content .detail {
    line-height: 2.5;
    font-weight: bold;
  }
  .service-wrap .content .detail span {
    margin-left: 17rem;
  }
  .company {
    padding-block: 10rem;
  }
  .company .page-tl {
    margin-bottom: 3.5rem;
  }
  .company dl {
    display: flex;
    line-height: 2.5;
  }
  .company dl:not(:last-child) {
    margin-bottom: 0.9rem;
  }
  .company dl dt {
    width: 12.9rem;
    flex-shrink: 0;
    border-bottom: 1px solid #4f827d;
    padding: 0.9rem 0.8rem;
  }
  .company dl dd {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    padding: 0.9rem 1.6rem;
  }
  .form {
    margin: auto;
    width: 94.3rem;
    padding: 1rem 0 8.7rem;
  }
  .form .page-tl {
    margin-bottom: 3.8rem;
  }
  .form dl {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #ebebeb;
  }
  .form dl:not(:last-child) {
    margin-bottom: 2.8rem;
  }
  .form dl dt {
    font-weight: 500;
    margin-bottom: 1.9rem;
    display: flex;
    align-items: center;
    line-height: 1;
    padding-left: 0.7rem;
  }
  .form dl dt .required {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 0.4rem;
    margin-left: 2rem;
    background: #ee1414;
    transform: translateY(0.2rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .form dl dt .required {
    font-size: 1rem;
    margin-left: 0.8rem;
  }
}
@media print, (min-width: 768px) {
  .form dl dd {
    display: flex;
  }
  .form dl dd input,
  .form dl dd select,
  .form dl dd textarea {
    width: 100%;
    background: #fbfaf7;
    border: 1px solid #ccc;
    padding: 1.46rem;
    appearance: none;
    border-radius: 1.3rem;
  }
  .form dl dd input::placeholder,
  .form dl dd select::placeholder,
  .form dl dd textarea::placeholder {
    color: #dcdcdc;
  }
  .form dl dd input.half,
  .form dl dd select.half,
  .form dl dd textarea.half {
    width: 49rem;
  }
  .form dl dd input.half:not(:last-child),
  .form dl dd select.half:not(:last-child),
  .form dl dd textarea.half:not(:last-child) {
    margin-right: 2rem;
  }
  .form dl dd textarea {
    min-height: 20.7rem;
    resize: none;
  }
  .form dl dd .--select {
    display: block;
    width: 100%;
    position: relative;
  }
  .form dl dd .--select::after {
    content: "";
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 1.05rem solid transparent;
    border-right: 1.05rem solid transparent;
    border-top: 1.7rem solid #141414;
    position: absolute;
    top: calc(50% - 0.8rem);
    right: 1.7rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .form dl dd .--select::after {
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1.4rem solid #141414;
    top: calc(50% - 0.7rem);
    right: 1.2rem;
  }
}
@media print, (min-width: 768px) {
  .form .submit {
    text-align: center;
    margin-top: 6rem;
  }
  .form .submit button {
    position: relative;
    color: #fff;
    background: #4f827d;
    border-radius: 2.7rem;
    width: 24.8rem;
    padding: 1.45rem 3rem;
    display: inline-block;
    border: 1px solid #4f827d;
    transition: all 0.3s ease;
  }
  .form .submit button:after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background: url("../images/ic_arr.png") no-repeat;
    background-size: cover;
  }
  .form .submit button:hover {
    background: transparent;
    color: #4f827d;
  }
  .form .submit button:hover:after {
    filter: brightness(0) saturate(100%) invert(48%) sepia(34%) saturate(387%) hue-rotate(125deg) brightness(90%) contrast(90%);
  }
}
@media screen and (max-width: 767px) {
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .kv {
    position: relative;
    z-index: 0;
  }
  .kv:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  .kv-ttl {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 29.3rem;
  }
  .about-us {
    padding-block: 4.8rem 2.3rem;
    padding-inline: 1rem;
    background: #f5f5f5;
  }
  .about-us__content {
    margin-bottom: 1.8rem;
  }
  .about-us__content .title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .about-us__image {
    border-radius: 1rem 0 0 1rem;
    overflow: hidden;
  }
  .service {
    padding-block: 5rem;
  }
  .service-box {
    text-align: center;
    margin-bottom: 4.2rem;
  }
  .service-box .title-clr {
    color: #4f827d;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1px;
  }
  .service-box .sub-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-box figure {
    margin-inline: auto;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  .service-box .figcaption {
    font-size: 1.8rem;
    line-height: 1.94;
    font-weight: 500;
  }
  .service-wrap {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    padding-top: 1rem;
  }
  .service-wrap:not(:last-child) {
    margin-bottom: 4rem;
  }
  .service-wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: calc(100% - 1.4rem);
    height: 100%;
    background: #f1f1f1;
    bottom: 0;
    right: 0;
  }
  .service-wrap:nth-child(odd):after {
    left: 0;
    right: auto;
  }
  .service-wrap:nth-child(odd) .content {
    padding-left: 1rem;
  }
  .service-wrap:nth-child(odd) .image {
    margin-inline: auto 0;
  }
  .service-wrap:nth-child(odd) .image:after {
    right: auto;
    left: -1px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .service-wrap .image {
    position: relative;
    width: 36rem;
    height: 21.4rem;
  }
  .service-wrap .image:after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background: #f1f1f1;
    width: 50px;
    height: 50px;
  }
  .service-wrap .content {
    padding-inline: 2.2rem;
    margin-bottom: 2rem;
  }
  .service-wrap .content .num {
    position: relative;
    z-index: 2;
    font-size: 4.8rem;
    line-height: 1;
    margin-bottom: 0.6rem;
    margin-left: -0.5rem;
    font-family: var(--font-yumincho);
  }
  .service-wrap .content .num:after {
    content: "";
    position: absolute;
    top: -0.9rem;
    left: 2.9rem;
    width: 2px;
    height: 7.2rem;
    background: #c4dbd9;
    transform: rotate(-44deg);
    z-index: -1;
  }
  .service-wrap .content .ttl {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    margin-bottom: 0.6rem;
    font-family: var(--font-yumincho);
  }
  .service-wrap .content .tl-en {
    color: #4f827d;
    line-height: 1.625;
    margin-bottom: 0.4rem;
    font-family: var(--font-yumincho);
  }
  .service-wrap .content .txt {
    line-height: 1.875;
    margin-bottom: 0.7rem;
  }
  .service-wrap .content .detail {
    line-height: 1.875;
    font-weight: bold;
    margin-right: -20px;
    letter-spacing: -0.02em;
  }
  .service-wrap .content .detail span {
    margin-left: 15rem;
  }
  .company {
    padding-block: 0 4.5rem;
  }
  .company dl {
    display: flex;
    line-height: 2.5;
  }
  .company dl:not(:last-child) {
    margin-bottom: 1rem;
  }
  .company dl dt {
    width: 12.9rem;
    flex-shrink: 0;
    border-bottom: 1px solid #4f827d;
    padding: 0.9rem 0.8rem 0.8rem;
  }
  .company dl dd {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    padding: 0.9rem 0 0.8rem 1.3rem;
  }
  .form {
    margin: auto;
    padding: 1rem 1rem 5rem;
  }
  .form .page-tl {
    margin-bottom: 1rem;
  }
  .form dl {
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #ebebeb;
  }
  .form dl:not(:last-child) {
    margin-bottom: 1.8rem;
  }
  .form dl dt {
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    line-height: 1;
  }
  .form dl dt .required {
    display: inline-block;
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 0.4rem;
    background: #ee1414;
    font-size: 1.4rem;
    margin-left: 2rem;
  }
  .form dl dd {
    display: flex;
  }
  .form dl dd input,
  .form dl dd select,
  .form dl dd textarea {
    width: 100%;
    background: #fbfaf7;
    border: 1px solid #ccc;
    padding: 0.8rem 0.9rem;
    appearance: none;
    border-radius: 0.5rem;
  }
  .form dl dd input::placeholder,
  .form dl dd select::placeholder,
  .form dl dd textarea::placeholder {
    color: #dcdcdc;
  }
  .form dl dd input.half,
  .form dl dd select.half,
  .form dl dd textarea.half {
    width: 17rem;
  }
  .form dl dd input.half:not(:last-child),
  .form dl dd select.half:not(:last-child),
  .form dl dd textarea.half:not(:last-child) {
    margin-right: 1.4rem;
  }
  .form dl dd textarea {
    min-height: 15.5rem;
    resize: none;
  }
  .form dl dd .--select {
    display: block;
    width: 100%;
    position: relative;
  }
  .form dl dd .--select::after {
    content: "";
    pointer-events: none;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-top: 1rem solid #141414;
    top: calc(50% - 0.5rem);
    right: 1.8rem;
  }
  .form .submit {
    text-align: center;
    margin-top: 3.2rem;
  }
  .form .submit button {
    position: relative;
    color: #fff;
    background: #4f827d;
    border-radius: 2.7rem;
    width: 19.3rem;
    padding: 0.9rem 2.1rem 0.9rem 0;
    display: inline-block;
    border: 1px solid #4f827d;
  }
  .form .submit button:after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background: url("../images/ic_arr.png") no-repeat;
    background-size: cover;
  }
}/*# sourceMappingURL=style.css.map */