@charset "UTF-8";

/* --- Reset & Base --- */
:root {
  --pc-width: 1920;
  --sp-width: 750;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px; 
}
body {
  position: relative;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #007042;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* --- Layout Utility --- */
.inner {
  max-width: 1100px; 
  margin: 0 auto;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

.pagetop-wrapper {
  position: fixed;
  z-index: 99;
  bottom: calc(50 / var(--pc-width) * 100vw);
  left: calc(50 / var(--pc-width) * 100vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pagetop-wrapper.is-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: max-content;
}
.btn-pagetop .arrow-icon {
  display: block;
  width: calc(11 / var(--pc-width) * 100vw); 
}
.btn-pagetop .arrow-icon img {
  width: 100%;
  height: auto;
}
.btn-pagetop:hover .arrow-icon {
  animation: bounce-top 0.6s infinite alternate;
}

@keyframes bounce-top {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc((8 / var(--pc-width) * 100vw) * -1)); }
}

.pagetop-text {
  font-size: calc(41 / var(--pc-width) * 100vw); 
  font-style: italic;
  color: #007042;
  font-family: "Jost", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .pagetop-wrapper {
    bottom: calc(50 / var(--sp-width) * 100vw);
    left: calc(50 / var(--sp-width) * 100vw);
  }
  .btn-pagetop {
    position: absolute;
    top: calc((120 / var(--sp-width) * 100vw) * -1);
    left: calc((20 / var(--sp-width) * 100vw) * -1);
  }
  .btn-pagetop .arrow-icon {
    width: calc(15 / var(--sp-width) * 100vw); 
  }
  .pagetop-text {
    font-size: calc(30 / var(--sp-width) * 100vw); 
  }
}

/* --- Clearfix (float解除用) --- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* --- Header Layout --- */
#header {
  width: 100%;
  height: calc(119 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-inner {
  width: 100%;
  max-width: var(--pc-width);
  padding: 0 calc(85 / var(--pc-width) * 100vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}
.header-logo {
  line-height: 0;
}
.header-logo a {
  font-size: calc(27 / var(--pc-width) * 100vw);
  font-weight: 700;
  color: #006644;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.header-nav {
  margin-left: auto; 
  margin-right: calc(125 / var(--pc-width) * 100vw);
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: calc(55 / var(--pc-width) * 100vw);
}
.header-nav ul li a {
  font-size: calc(17 / var(--pc-width) * 100vw);
  letter-spacing: 0.15em;
  color: #006644;
  white-space: nowrap;
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
  color: #E77D00;
}
.nav-recruit a {
  background-color: #006644 !important;
  color: #FFFFFF !important;
  padding: calc(6 / var(--pc-width) * 100vw) calc(23 / var(--pc-width) * 100vw) !important;
  border-radius: calc(20 / var(--pc-width) * 100vw);
}
.nav-recruit a:hover,
.nav-recruit a.active {
  background-color: #E77D00 !important;
}
.header-right {
  display: flex;
  align-items: center;
}
.hamburger {
  width: calc(36 / var(--pc-width) * 100vw);
  height: calc(28 / var(--pc-width) * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: calc(4 / var(--pc-width) * 100vw);
  background-color: #006644;
  transition: 0.3s;
}
.hamburger:hover span {
  background-color: #E77D00;
}
.header-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/company/page-bg.jpg);
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.header-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.header-menu-overlay .overlay-inner {
  width: 100%;
  height: 100%;
  padding: calc(40 / var(--pc-width) * 100vw) calc(85 / var(--pc-width) * 100vw);
  position: relative;
  box-sizing: border-box;
}
.header-menu-overlay .overlay-logo {
  color: #FFFFFF;
  font-size: calc(27 / var(--pc-width) * 100vw);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.header-menu-overlay .overlay-close {
  position: absolute;
  top: calc(40 / var(--pc-width) * 100vw);
  right: calc(80 / var(--pc-width) * 100vw);
  width: calc(40 / var(--pc-width) * 100vw);
  height: calc(40 / var(--pc-width) * 100vw);
  background: none;
  border: none;
  cursor: pointer;
}
.header-menu-overlay .overlay-close span {
  position: absolute;
  width: 100%;
  height: calc(3 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
  top: 50%;
  left: 0;
}
.header-menu-overlay .overlay-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header-menu-overlay .overlay-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.header-menu-overlay .overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - calc(100 / var(--pc-width) * 100vw));
  gap: calc(270 / var(--pc-width) * 100vw);
}
.header-menu-overlay .overlay-nav ul {
  display: flex;
  flex-direction: column;
  gap: calc(40 / var(--pc-width) * 100vw);
}
.header-menu-overlay .overlay-nav ul li a {
  position: relative;
  left: 0;
  font-size: calc(40 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: calc(15 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.header-menu-overlay .overlay-nav ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(22 / var(--pc-width) * 100vw);
  gap: calc(15 / var(--pc-width) * 100vw);
  letter-spacing: 0.2em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}
.header-menu-overlay .overlay-nav ul li a span::before {
  content: '';
  width: calc(50 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
}
.header-menu-overlay .overlay-nav ul li a:hover {
  opacity: 0.7;
  left: calc(10 / var(--pc-width) * 100vw);
  transition: all 0.3s;
}
.header-menu-overlay .overlay-image {
  width: calc(492 / var(--pc-width) * 100vw);
}
.header-menu-overlay .overlay-image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #header {
    height: calc(110 / var(--sp-width) * 100vw);
  }
  .header-inner {
    max-width: 100%;
    padding: 0 calc(70 / var(--sp-width) * 100vw);
  }
  .header-logo a {
    font-size: calc(31 / var(--sp-width) * 100vw);
  }
  .hamburger {
    width: calc(42 / var(--sp-width) * 100vw);
    height: calc(35 / var(--sp-width) * 100vw);
  }
  .hamburger span {
    height: calc(5 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-inner {
    padding: calc(35 / var(--sp-width) * 100vw) calc(70 / var(--sp-width) * 100vw);
    overflow: scroll;
  }
  .header-menu-overlay .overlay-logo {
    margin-bottom: calc(110 / var(--sp-width) * 100vw);
    font-size: calc(31 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-close {
    top: calc(35 / var(--sp-width) * 100vw);
    right: calc(70 / var(--sp-width) * 100vw);
    width: calc(42 / var(--sp-width) * 100vw);
    height: calc(35 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-close span {
    height: calc(5 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-content {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: calc(100% - calc(200 / var(--sp-width) * 100vw));
    gap: calc(100 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav {
    padding: 0 calc(40 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav ul {
    gap: calc(60 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav ul li a {
    font-size: calc(42 / var(--sp-width) * 100vw);
    gap: calc(20 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav ul li a span {
    font-size: calc(25 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav ul li a span::before {
    width: calc(50 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-nav ul li a:hover {
    left: calc(15 / var(--sp-width) * 100vw);
  }
  .header-menu-overlay .overlay-image {
    width: calc(379 / var(--sp-width) * 100vw);
    margin-left: auto;
  }
}

/* --- Footer Layout --- */
#footer {
  width: 100%;
  padding: calc(85 / var(--pc-width) * 100vw) 0 calc(50 / var(--pc-width) * 100vw);
  background-image: url('../images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  color: #FFFFFF;
}
.footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(65 / var(--pc-width) * 100vw); 
  justify-content: flex-end;
}
.footer-nav ul li a {
  font-family: "Jost", sans-serif;
  font-size: calc(19 / var(--pc-width) * 100vw);
  font-weight: 500;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.footer-nav ul li a:hover {
  opacity: 0.7;
}
.footer-nav ul li a span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: calc(17 / var(--pc-width) * 100vw);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.copyright {
  margin-top: calc(190 / var(--pc-width) * 100vw);
  text-align: right; 
}
.copyright p {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: calc(24 / var(--pc-width) * 100vw);
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: calc(35 / var(--sp-width) * 100vw) 0 calc(55 / var(--sp-width) * 100vw);
  }
  .footer-inner {
    width: calc(570 / var(--sp-width) * 100vw);
    max-width: 100%;
  }
  .footer-nav {
    display: flex;
    justify-content: flex-end;
  }
  .footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(25 / var(--sp-width) * 100vw); 
  }
  .footer-nav ul li a {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .footer-nav ul li a span {
    font-size: calc(22 / var(--sp-width) * 100vw);
  }
  .copyright {
    margin-top: calc(45 / var(--sp-width) * 100vw);
  }
  .copyright p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
}

/* --- Home --- */
body#home #header {
  background-color: transparent;
}
.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #E4F8FA;
}
.main-visual .mv-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.main-visual .mv-inner {
  position: absolute;
  top: 13%;
  left: 25%;
  transform: translateX(-50%);
  width: auto;
  z-index: 10;
}
.main-visual .mv-copy {
  color: #007042;
}
.main-visual .mv-copy h2 {
  font-size: calc(85 / var(--pc-width) * 100vw);
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.main-visual .mv-copy .text-bottom {
  display: inline-flex;
  align-items: center;
  gap: calc(30 / var(--pc-width) * 100vw);
}
.main-visual .mv-copy .text-bottom img {
  width: calc(327 / var(--pc-width) * 100vw);
  display: inline-block;
  vertical-align: middle;
}
.main-visual .mv-copy p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2.5;
  letter-spacing: 0.08em;
}
.main-message {
  position: relative;
  padding: calc(550 / var(--pc-width) * 100vw) 0 calc(600 / var(--pc-width) * 100vw);
  background-image: url('../images/top/message-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -13vw;
  overflow: hidden;
  z-index: 2;
}
.main-message .inner {
  position: relative;
}
.main-message .message-text {
  text-align: center;
  color: #743B00;
  line-height: 1.9;
}
.main-message .message-text p {
  font-size: calc(21 / var(--pc-width) * 100vw);
  margin-bottom: calc(45 / var(--pc-width) * 100vw);
  letter-spacing: 0.08em;
}
.main-message .message-text p:last-child {
  margin-bottom: 0;
}
.main-message .message-text .message-lead {
  font-size: calc(32 / var(--pc-width) * 100vw);
  line-height: 1.7;
}
.main-message .message-illust img {
  position: absolute;
  height: auto;
  z-index: 5;
}
.main-message .message-illust img.illust-left {
  width: calc(626 / var(--pc-width) * 100vw);
  top: calc((340 / var(--pc-width) * 100vw) * -1);
  left: 50%;
  margin-left: calc((830 / var(--pc-width) * 100vw) * -1);
}
.main-message .message-illust img.illust-right {
  width: calc(558 / var(--pc-width) * 100vw);
  bottom: calc((130 / var(--pc-width) * 100vw) * -1);
  left: 50%;
  margin-left: calc(330 / var(--pc-width) * 100vw);
}
.main-about {
  position: relative;
  width: 100%;
  margin-top: calc((250 / var(--pc-width) * 100vw) * -1); 
  padding: calc(400 / var(--pc-width) * 100vw) 0 calc(1300 / var(--pc-width) * 100vw);
  background-image: url('../images/top/about-bg.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  
}
.main-about .section-title {
  font-family: "Jost", sans-serif;
  text-align: center;
  margin-bottom: calc(70 / var(--pc-width) * 100vw);
}
.main-about .section-title h3 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: calc(86 / var(--pc-width) * 100vw);
  color: #007042;
  position: relative;
  letter-spacing: 0;
  line-height: 1.34;
}
.main-about .section-title h3::before,
.main-about .section-title h3::after {
  content: '';
  position: absolute;
  top: calc(15 / var(--pc-width) * 100vw);
  width: calc(44 / var(--pc-width) * 100vw);
  height: calc(80 / var(--pc-width) * 100vw);
  background-image: url('../images/illust/illust-17.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.main-about .section-title h3::before {
  left: calc((60 / var(--pc-width) * 100vw) * -1); 
}
.main-about .section-title h3::after {
  right: calc((60 / var(--pc-width) * 100vw) * -1); 
}
.main-about .section-title h3 span {
  font-size: calc(30 / var(--pc-width) * 100vw);
  letter-spacing: 0.15em;
}
.main-about .about-bottom-illust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.main-about .about-bottom-illust img {
  position: absolute;
}
.main-about .about-bottom-illust .illust-trees {
  z-index: 1;
  max-width: none;
  bottom: calc((550 / var(--pc-width) * 100vw) * -1);
  left: calc((101 / var(--pc-width) * 100vw) * -1);
  width: calc(2122 / var(--pc-width) * 100vw);
}
.main-about .about-bottom-illust .illust-fountain {
  bottom: calc((120 / var(--pc-width) * 100vw) * -1);
  right: calc(60 / var(--pc-width) * 100vw);
  width: calc(730 / var(--pc-width) * 100vw);
}
.main-about .about-grid {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(80 / var(--pc-width) * 100vw);
}
.main-about .about-item a {
  display: block;
  border-radius: calc(70 / var(--pc-width) * 100vw);
  overflow: hidden;
  width: calc(508 / var(--pc-width) * 100vw);
  height: calc(265 / var(--pc-width) * 100vw);
  position: relative;
  transition: transform 0.3s ease;
}
.main-about .about-item a:hover {
  transform: translateY(calc((5 / var(--pc-width) * 100vw) * -1));
}
.main-about .about-item .item-inner {
  position: relative;
  z-index: 10;
  padding: calc(50 / var(--pc-width) * 100vw) calc(43 / var(--pc-width) * 100vw) calc(90 / var(--pc-width) * 100vw);
  width: max-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.main-about .about-item .en {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: calc(72 / var(--pc-width) * 100vw);
  line-height: 1;
  letter-spacing: 0;
}
.main-about .about-item .ja {
  font-size: calc(25 / var(--pc-width) * 100vw);
  line-height: 2;
}
.main-about .about-item .more {
  display: inline-flex;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: calc(21 / var(--pc-width) * 100vw);
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.14;
  margin: calc(10 / var(--pc-width) * 100vw) auto 0;
  border: 1px solid #ffffff;
  border-radius: calc(15 / var(--pc-width) * 100vw);
  padding: calc(2 / var(--pc-width) * 100vw) calc(20 / var(--pc-width) * 100vw);
  width: fit-content;
}
.main-about .about-item .more::after {
  content: '';
  display: inline-block;
  width: calc(8 / var(--pc-width) * 100vw);
  height: calc(16 / var(--pc-width) * 100vw);
  margin-left: calc(6 / var(--pc-width) * 100vw);
  background-image: url('../images/icon-arrow-whilte.svg'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-about .about-item img {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.main-about .about-item.item-service a {
  background: url('../images/top/item-service-bg.png') no-repeat center center;
}
.main-about .about-item.item-standard a {
  background: url('../images/top/item-standard-bg.png') no-repeat center center;
}
.main-about .about-item.item-company a {
  background: url('../images/top/item-company-bg.png') no-repeat center center;
}
.main-about .about-item.item-recruit a {
  background: url('../images/top/item-recruit-bg.png') no-repeat center center;
}
.main-about .about-item.item-contact a {
  background: url('../images/top/item-contact-bg.png') no-repeat center center;
}
.main-about .about-item.item-service img {
  width: calc(277 / var(--pc-width) * 100vw);
  top: calc(20 / var(--pc-width) * 100vw);
  right: calc((30 / var(--pc-width) * 100vw) * -1);
}
.main-about .about-item.item-standard img {
  width: calc(300 / var(--pc-width) * 100vw);
  top: calc(70 / var(--pc-width) * 100vw);
  right: calc((50 / var(--pc-width) * 100vw) * -1);
}
.main-about .about-item.item-company img {
  width: calc(231 / var(--pc-width) * 100vw);
  top: calc(110 / var(--pc-width) * 100vw);
  right: calc((20 / var(--pc-width) * 100vw) * -1);
}
.main-about .about-item.item-recruit img {
  width: calc(307 / var(--pc-width) * 100vw);
  top: calc(50 / var(--pc-width) * 100vw);
  right: calc((45 / var(--pc-width) * 100vw) * -1);
}
.main-about .about-item.item-contact {
  grid-column: span 2;
}
.main-about .about-item.item-contact a {
  display: flex;
  align-items: center;
  border-radius: calc(100 / var(--pc-width) * 100vw);
  width: calc(1100 / var(--pc-width) * 100vw);
  height: calc(178 / var(--pc-width) * 100vw);
}
.main-about .about-item.item-contact .item-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 calc(100 / var(--pc-width) * 100vw);
  gap: calc(120 / var(--pc-width) * 100vw);
}
.main-about .about-item.item-contact .text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-about .about-item.item-contact .more {
  margin-top: 0;
  margin-left: calc(20 / var(--pc-width) * 100vw); 
}

@media screen and (max-width: 767px) {
  .main-visual .mv-inner {
    transform: none;
    top: calc(130 / var(--sp-width) * 100vw);
    left: calc(70 / var(--sp-width) * 100vw);
  }
  .main-visual .mv-copy h2 {
    font-size: calc(73 / var(--sp-width) * 100vw);
    margin-bottom: calc(10 / var(--sp-width) * 100vw);
  }
  .main-visual .mv-copy .text-bottom {
    gap: calc(20 / var(--sp-width) * 100vw);
  }
  .main-visual .mv-copy .text-bottom img {
    width: calc(279 / var(--sp-width) * 100vw);
  }
  .main-visual .mv-copy p {
    font-size: calc(24 / var(--sp-width) * 100vw);
    line-height: 2.1;
  }
  .main-message {
    padding: calc(520 / var(--sp-width) * 100vw) 0 calc(660 / var(--sp-width) * 100vw);
  }
  .main-message .message-text p {
    font-size: calc(24 / var(--sp-width) * 100vw);
    margin-bottom: calc(40 / var(--sp-width) * 100vw);
  }
  .main-message .message-text .message-lead {
    font-size: calc(36 / var(--sp-width) * 100vw);
  }
  .main-message .message-illust img.illust-left {
    width: calc(477 / var(--sp-width) * 100vw);
    top: calc((390 / var(--sp-width) * 100vw) * -1);
    left: 50%;
    margin-left: calc((450 / var(--sp-width) * 100vw) * -1);
  }
  .main-message .message-illust img.illust-right {
    width: calc(397 / var(--sp-width) * 100vw);
    bottom: calc((530 / var(--sp-width) * 100vw) * -1);
    margin-left: 0;
        margin-left: calc(30 / var(--sp-width) * 100vw);
  }
  .main-about {
  background-image: url(../images/top/about-bg_sp.jpg);
    background-size: cover;
    background-position: center top;
    margin-top: calc((350 / var(--sp-width) * 100vw) * -1); 
    padding: calc(400 / var(--sp-width) * 100vw) 0 calc(900 / var(--sp-width) * 100vw);
  }
  .main-about .section-title {
    margin-bottom: calc(70 / var(--sp-width) * 100vw);
  }
  .main-about .section-title h3 {
    font-size: calc(82 / var(--sp-width) * 100vw);
  }
  .main-about .section-title h3::before,
  .main-about .section-title h3::after {
    top: calc(15 / var(--sp-width) * 100vw);
    width: calc(42 / var(--sp-width) * 100vw);
    height: calc(75 / var(--sp-width) * 100vw);
  }
  .main-about .section-title h3::before {
    left: calc((60 / var(--sp-width) * 100vw) * -1); 
  }
  .main-about .section-title h3::after {
    right: calc((60 / var(--sp-width) * 100vw) * -1); 
  }
  .main-about .section-title h3 span {
    font-size: calc(29 / var(--sp-width) * 100vw);
  }
  .main-about .about-bottom-illust .illust-trees {
    bottom: calc((230 / var(--sp-width) * 100vw) * -1);
    left: calc((90 / var(--sp-width) * 100vw) * -1);
    width: calc(926 / var(--sp-width) * 100vw);
  }
  .main-about .about-bottom-illust .illust-fountain {
    bottom: calc((120 / var(--sp-width) * 100vw) * -1);
    right: calc((10 / var(--sp-width) * 100vw) * -1);
    width: calc(464 / var(--sp-width) * 100vw);
  }
  .main-about .about-grid {
    max-width: 100%;
    gap: calc(55 / var(--sp-width) * 100vw)
  }
  .main-about .about-item a {
    border-radius: calc(90 / var(--sp-width) * 100vw);
    width: calc(295 / var(--sp-width) * 100vw);
    height: calc(338 / var(--sp-width) * 100vw);
  }
  .main-about .about-item a:hover {
    transform: translateY(calc((10 / var(--sp-width) * 100vw) * -1));
  }
  .main-about .about-item .item-inner {
    width: 100%;
    padding: calc(10 / var(--sp-width) * 100vw) 0 calc(90 / var(--sp-width) * 100vw);
  }
  .main-about .about-item .en {
    font-size: calc(64 / var(--sp-width) * 100vw);
  }
  .main-about .about-item .ja {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .main-about .about-item .more {
    font-size: calc(21 / var(--sp-width) * 100vw);
    margin: calc(10 / var(--sp-width) * 100vw) auto 0;
    border-radius: calc(20 / var(--sp-width) * 100vw);
    padding: calc(3 / var(--sp-width) * 100vw) calc(20 / var(--sp-width) * 100vw);
  }
  .main-about .about-item .more::after {
    width: calc(10 / var(--sp-width) * 100vw);
    height: calc(16 / var(--sp-width) * 100vw);
    margin-left: calc(6 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-service img {
    width: calc(161 / var(--sp-width) * 100vw);
    top: auto;
    bottom: calc((250 / var(--sp-width) * 100vw) * -1);
    right: calc(70 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-standard img {
    width: calc(219 / var(--sp-width) * 100vw);
    top: auto;
    bottom: calc((80 / var(--sp-width) * 100vw) * -1);
    right: calc(40 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-company img {
    width: calc(203 / var(--sp-width) * 100vw);
    top: auto;
    bottom: calc((80 / var(--sp-width) * 100vw) * -1);
    right: calc(40 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-recruit img {
    width: calc(194 / var(--sp-width) * 100vw);
    top: auto;
    bottom: calc((65 / var(--sp-width) * 100vw) * -1);
    right: calc(40 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-contact a {
    border-radius: calc(100 / var(--sp-width) * 100vw);
    width: calc(610 / var(--sp-width) * 100vw);
    height: calc(170 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-contact .item-inner {
    padding: 0 calc(90 / var(--sp-width) * 100vw);
    gap: calc(60 / var(--sp-width) * 100vw);
  }
  .main-about .about-item.item-contact .more {
    margin-left: calc(20 / var(--sp-width) * 100vw); 
  }
}

/* --- Service --- */
body#service {
  background-image: url('../images/service/page-bg.png');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
}
.service-hero {
  position: relative;
  padding: calc(170 / var(--pc-width) * 100vw) 0 calc(300 / var(--pc-width) * 100vw); 
}
.service-hero .inner {
  position: relative;
  z-index: 10; 
  width: 100%;
  max-width: 100%;
  padding: 0 calc(140 / var(--pc-width) * 100vw) 0 calc(220 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.service-hero .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-hero .title-area {
  width: max-content;
}
.service-hero .en {
  font-size: calc(150 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #FFA200;
  line-height: 1.21;
  letter-spacing: 0;
}
.service-hero .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(30 / var(--pc-width) * 100vw);
  color: #FFA200;
}
.service-hero .ja::before,
.service-hero .ja::after {
  content: '';
  width: calc(163 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #FFA200;
}
.service-hero .text-area {
  width: max-content;
  padding-top: calc(60 / var(--pc-width) * 100vw);
}
.service-hero .text-area p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2.3;
  color: #743B00;
  letter-spacing: 0.08em;
}
.service-hero .text-area .text-lead {
  font-size: calc(30 / var(--pc-width) * 100vw);
  margin-top: calc(10 / var(--pc-width) * 100vw);
}
.service-hero .illust-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.service-hero .illust-forest {
  position: absolute;
  top: calc(470 / var(--pc-width) * 100vw);
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.service-flow-summary {
  position: relative;
  z-index: 2;
  padding: calc(370 / var(--pc-width) * 100vw) 0 calc(300 / var(--pc-width) * 100vw);
  background-image: url('../images/service/flow-summary-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.service-flow-summary .inner {
  max-width: 100%;
}
.service-flow-summary .summary-box {
  position: relative;
  padding: calc(120 / var(--pc-width) * 100vw) 0 calc(160 / var(--pc-width) * 100vw);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.service-flow-summary .summary-box.flow-general {
  background-image: url('../images/service/flow-01-bg.png');
  background-position: calc((50 / var(--pc-width) * 100vw) * -1) top;
}
.service-flow-summary .summary-box.flow-formwork {
  padding: calc(120 / var(--pc-width) * 100vw) 0 calc(240 / var(--pc-width) * 100vw);
  background-image: url('../images/service/flow-02-bg.png');
  background-position: right calc((50 / var(--pc-width) * 100vw) * -1) top;
}
.service-flow-summary .summary-box .box-title-wrap {
  text-align: center;
  margin-bottom: calc(95 / var(--pc-width) * 100vw);
}
.service-flow-summary .summary-box .box-title {
  display: inline-block;
  color: #FFFFFF;
  font-size: calc(42 / var(--pc-width) * 100vw);
  line-height: 1.11;
  letter-spacing: 0.15em;
  padding: calc(20 / var(--pc-width) * 100vw) calc(130 / var(--pc-width) * 100vw);
  border-radius: calc(50 / var(--pc-width) * 100vw);
}
.service-flow-summary .flow-general .box-title {
  background-color: #009177;
}
.service-flow-summary .flow-formwork .box-title {
  background-color: #E77D00;
}
.service-flow-summary .step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(50 / var(--pc-width) * 100vw) 0;
  align-items: start;
  width: max-content;
  margin: 0 auto;
}
.service-flow-summary .flow-formwork .step-list {
  gap: calc(100 / var(--pc-width) * 100vw) calc(80 / var(--pc-width) * 100vw);
}
.service-flow-summary .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 / var(--pc-width) * 100vw);
}
.service-flow-summary .step-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(300 / var(--pc-width) * 100vw);
  height: calc(85 / var(--pc-width) * 100vw);
  background-image: url('../images/service/flow-01-step-bg.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.service-flow-summary .flow-formwork .step-box {
  background-image: url('../images/service/flow-02-step-bg.png'); 
}
.service-flow-summary .step-box .step-text {
  font-size: calc(43 / var(--pc-width) * 100vw);
  text-align: center;
  line-height: 1.11;
  letter-spacing: 0.08em;
}
.service-flow-summary .flow-general .step-text {
  color: #009177;
}
.service-flow-summary .flow-general .step-item:nth-child(2) .step-text,
.service-flow-summary .flow-general .step-item:nth-child(3) .step-text,
.service-flow-summary .flow-general .step-item:nth-child(4) .step-text,
.service-flow-summary .flow-general .step-item:nth-child(7) .step-text {
  font-size: calc(30 / var(--pc-width) * 100vw);
  line-height: 1.6;
}
.service-flow-summary .flow-general .step-item:nth-child(5) .step-text {
  font-size: calc(25 / var(--pc-width) * 100vw);
  line-height: 1.32;
}
.service-flow-summary .flow-general .step-item:nth-child(6) .step-text {
  font-size: calc(36 / var(--pc-width) * 100vw);
  line-height: 1.36;
}
.service-flow-summary .flow-formwork .step-text {
  color: #E77D00;
}
.service-flow-summary .step-box.flow-formwork .step-text {
  font-size: calc(35 / var(--pc-width) * 100vw);
  text-align: center;
  line-height: 1.37;
  letter-spacing: 0.08em;
}
.service-flow-summary .flow-formwork .step-item:nth-child(1) .step-text {
  font-size: calc(25 / var(--pc-width) * 100vw);
  line-height: 1.32;
}
.service-flow-summary .flow-formwork .step-item:nth-child(3) .step-text {
  font-size: calc(29 / var(--pc-width) * 100vw);
  line-height: 1.65;
}
.service-flow-summary .flow-formwork .step-item:nth-child(6) .step-text {
  font-size: calc(28 / var(--pc-width) * 100vw);
  line-height: 1.71;
}
.service-flow-summary .flow-formwork .step-item:nth-child(7) .step-text,
.service-flow-summary .flow-formwork .step-item:nth-child(8) .step-text  {
  font-size: calc(33 / var(--pc-width) * 100vw);
  line-height: 1.45;
}
.service-flow-summary .step-num {
  position: absolute;
  left: calc((25 / var(--pc-width) * 100vw) * -1);
  width: calc(53 / var(--pc-width) * 100vw);
  height: calc(53 / var(--pc-width) * 100vw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  font-size: calc(40 / var(--pc-width) * 100vw);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  z-index: 5;
}
.service-flow-summary .flow-general .step-num {
  background-color: #009177;
}
.service-flow-summary .flow-formwork .step-num {
  background-color: #E77D00;
}
.service-flow-summary .sub-text {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 1.6;
  text-align: center;
}
.service-flow-summary .flow-general .sub-text {
  color: #009177;
}
.service-detailed-steps {
  position: relative;
  padding: calc(10 / var(--pc-width) * 100vw) 0 calc(200 / var(--pc-width) * 100vw);
  overflow: hidden;
}
.service-detailed-steps .inner {
  position: relative;
  max-width: 100%;
  padding-left: calc(225 / var(--pc-width) * 100vw);
  margin: 0 auto;
  background-image: url('../images/service/step-deco.png');
  background-repeat: no-repeat;
  background-size: calc(464 / var(--pc-width) * 100vw) auto;
  background-position: calc(265 / var(--pc-width) * 100vw) calc(80 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-item {
  position: relative;
  display: flex;
  align-items: flex-start; 
  flex-flow: column;
  margin-bottom: calc(100 / var(--pc-width) * 100vw);
  z-index: 10;
}
.service-detailed-steps .step-item:nth-child(3) {
  margin-bottom: calc(160 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-item:nth-child(4) {
  margin-bottom: calc(120 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-item:nth-child(5) {
  margin-bottom: calc(130 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-item:nth-child(6) {
  margin-bottom: calc(120 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-item:last-child {
  margin-bottom: 0;
}
.service-detailed-steps .step-item:nth-child(even) {
  padding-left: calc(430 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-title {
  display: flex;
  align-items: center;
  gap: calc(20 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-title h4 {
  border-top: 2px solid #E77D00;
  border-bottom: 2px solid #E77D00;
  padding: 0 calc(10 / var(--pc-width) * 100vw);
  font-size: calc(40 / var(--pc-width) * 100vw);
  color: #E77D00;
  letter-spacing: 0.15em;
}
.service-detailed-steps .step-title .step-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(105 / var(--pc-width) * 100vw);
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
}
.service-detailed-steps .step-title .step-visual .step-num {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jost", sans-serif;
  font-size: calc(87 / var(--pc-width) * 100vw);
  font-weight: 600;
  color: #FFF4CC;
  letter-spacing: 0;
  line-height: 1;
}
.service-detailed-steps .text-area p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #743B00;
}
.service-detailed-steps .text-area .inline-highlight {
  display: inline-block;
  font-size: calc(26 / var(--pc-width) * 100vw);
  font-weight: 800;
}
.service-detailed-steps .service-step-illust img {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.service-detailed-steps .service-step-illust .illust-01 {
  width: calc(740 / var(--pc-width) * 100vw);
  top: calc(100 / var(--pc-width) * 100vw);
  right: calc(70 / var(--pc-width) * 100vw);
}
.service-detailed-steps .service-step-illust .illust-02 {
  width: calc(658 / var(--pc-width) * 100vw);
  top: calc(1400 / var(--pc-width) * 100vw);
  left: calc((100 / var(--pc-width) * 100vw) * -1);
}
.service-detailed-steps .service-step-illust .illust-03 {
  width: calc(362 / var(--pc-width) * 100vw);
  bottom: calc(450 / var(--pc-width) * 100vw);
  right: calc(220 / var(--pc-width) * 100vw);
}

@media screen and (max-width: 767px) {
  .service-hero {
    padding: calc(160 / var(--sp-width) * 100vw) 0 calc(550 / var(--sp-width) * 100vw); 
  }
  .service-hero .inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 calc(70 / var(--sp-width) * 100vw);
  }
  .service-hero .en {
    font-size: calc(122 / var(--sp-width) * 100vw);
    line-height: 1;
  }
  .service-hero .ja {
    gap: calc(18 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .service-hero .ja::before,
  .service-hero .ja::after {
    width: calc(132 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .service-hero .text-area {
    width: 100%;
    padding-top: calc(80 / var(--sp-width) * 100vw);
  }
  .service-hero .text-area p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .service-hero .text-area .text-lead {
    font-size: calc(36 / var(--sp-width) * 100vw);
    margin-top: 0;
    line-height: 1.2;
  }
  .service-hero .text-area .text-lead.sp-only {
    display: contents;
  }
  .service-hero .illust-forest {
    top: auto;
    bottom: calc((220 / var(--sp-width) * 100vw) * -1);
  }
  .service-flow-summary {
    padding: calc(250 / var(--sp-width) * 100vw) 0 calc(200 / var(--sp-width) * 100vw);
    background-image: url('../images/service/flow-summary-bg_sp.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .service-flow-summary .summary-box {
    padding: calc(250 / var(--sp-width) * 100vw) 0 calc(80 / var(--sp-width) * 100vw);
    background-size: 90% auto;
  }
  .service-flow-summary .summary-box.flow-general {
    background-image: url(../images/service/flow-01-bg_sp.png);
    background-position: calc(10 / var(--sp-width) * 100vw) top;
  }
  .service-flow-summary .summary-box.flow-general:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/service/flow-01-deco.png');
    background-size: calc(330 / var(--sp-width) * 100vw) auto;
    background-position: calc(100 / var(--sp-width) * 100vw) calc(180 / var(--sp-width) * 100vw);
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .service-flow-summary .summary-box.flow-formwork {
    margin-top: calc(100 / var(--sp-width) * 100vw);
    padding: calc(350 / var(--sp-width) * 100vw) 0 calc(90 / var(--sp-width) * 100vw);
    background-image: url(../images/service/flow-02-bg_sp.png);
    background-position: calc(50 / var(--sp-width) * 100vw) calc(120 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .summary-box.flow-formwork:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/service/flow-02-deco.png');
    background-size: calc(327 / var(--sp-width) * 100vw) auto;
    background-position: calc(100 / var(--sp-width) * 100vw) calc(180 / var(--sp-width) * 100vw);
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .service-flow-summary .summary-box .box-title-wrap {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .summary-box .box-title {
    font-size: calc(38 / var(--sp-width) * 100vw);
    padding: calc(20 / var(--sp-width) * 100vw) calc(100 / var(--sp-width) * 100vw);
    border-radius: calc(50 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .step-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(20 / var(--sp-width) * 100vw) calc(60 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-formwork .step-list {
    gap: calc(75 / var(--sp-width) * 100vw) calc(55 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .step-item {
    gap: calc(10 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .step-box {
    width: calc(246 / var(--sp-width) * 100vw);
    height: calc(75 / var(--sp-width) * 100vw);
    background: #FFFFFF;
    border: 1px solid #009177;
  }
  .service-flow-summary .flow-formwork .step-box {
    background: #FFFFFF;
    border: 1px solid #E77D00;
  }
  .service-flow-summary .step-box .step-text {
    font-size: calc(36 / var(--sp-width) * 100vw);
    letter-spacing: 0;
  }
  .service-flow-summary .flow-general .step-item:nth-child(2) .step-text,
  .service-flow-summary .flow-general .step-item:nth-child(3) .step-text,
  .service-flow-summary .flow-general .step-item:nth-child(4) .step-text,
  .service-flow-summary .flow-general .step-item:nth-child(7) .step-text {
    font-size: calc(26 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-general .step-item:nth-child(5) .step-text {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-general .step-item:nth-child(6) .step-text {
    font-size: calc(25 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .step-box.flow-formwork .step-text {
    font-size: calc(32 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-formwork .step-item:nth-child(1) .step-text {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-formwork .step-item:nth-child(3) .step-text {
    font-size: calc(26 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-formwork .step-item:nth-child(6) .step-text {
    font-size: calc(23 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .flow-formwork .step-item:nth-child(7) .step-text,
  .service-flow-summary .flow-formwork .step-item:nth-child(8) .step-text  {
    font-size: calc(27 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .step-num {
    left: calc((25 / var(--sp-width) * 100vw) * -1);
    width: calc(50 / var(--sp-width) * 100vw);
    height: calc(50 / var(--sp-width) * 100vw);
    font-size: calc(37 / var(--sp-width) * 100vw);
  }
  .service-flow-summary .sub-text {
    display: inline-block;
    width: calc(245 / var(--sp-width) * 100vw);
    font-size: calc(21 / var(--sp-width) * 100vw);
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    letter-spacing: 0;
  }
  .service-detailed-steps {
    padding: calc(100 / var(--sp-width) * 100vw) 0 calc(400 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .inner {
    padding: 0 calc(70 / var(--sp-width) * 100vw);
    background-image: url(../images/service/step-deco_sp.png);
    background-repeat: no-repeat;
    background-size: calc(35 / var(--sp-width) * 100vw) auto;
    background-position: calc(90 / var(--sp-width) * 100vw) calc(90 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item {
    margin-bottom: calc(230 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(2) {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(3) {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(4) {
    margin-bottom: calc(230 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(5) {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(6) {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(7) {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-item:nth-child(even) {
    padding-left: 0;
  }
  .service-detailed-steps .step-title {
    gap: 0;
  }
  .service-detailed-steps .step-title h4 {
    padding: 0 calc(10 / var(--sp-width) * 100vw);
    font-size: calc(40 / var(--sp-width) * 100vw);
    letter-spacing: 0;
  }
  .service-detailed-steps .step-title .step-visual {
    left: calc((20 / var(--sp-width) * 100vw) * -1);
    width: calc(105 / var(--sp-width) * 100vw);
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .step-title .step-visual .step-num {
    font-size: calc(59 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .text-area p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .text-area .inline-highlight {
    display: contents;
    font-size: calc(30 / var(--sp-width) * 100vw);
    line-height: 1.2;
  }
  .service-detailed-steps .service-step-illust .illust-01 {
    width: calc(390 / var(--sp-width) * 100vw);
    top: calc(720 / var(--sp-width) * 100vw);
    right: calc(30 / var(--sp-width) * 100vw);
  }
  .service-detailed-steps .service-step-illust .illust-02 {
    width: calc(366 / var(--sp-width) * 100vw);
    top: calc(2700 / var(--sp-width) * 100vw);
    right: calc((50 / var(--sp-width) * 100vw) * -1);
    left: auto;
    transform: scaleX(-1);
  }
  .service-detailed-steps .service-step-illust .illust-03 {
    width: calc(269 / var(--sp-width) * 100vw);
    bottom: calc((50 / var(--sp-width) * 100vw) * -1);
    right: 0;
  }
}

/* --- Standard --- */
body#standard {
  background-image: url('../images/standard/page-bg.png');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
}
.standard-hero {
  position: relative;
  padding: calc(230 / var(--pc-width) * 100vw) 0 calc(310 / var(--pc-width) * 100vw); 
}
.standard-hero .inner {
  position: relative;
  z-index: 10; 
  width: 100%;
  max-width: 100%;
  padding: 0 calc(140 / var(--pc-width) * 100vw) 0 calc(220 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.standard-hero .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.standard-hero .title-area {
  width: max-content;
}
.standard-hero .en {
  font-size: calc(133 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #00B385;
  line-height: 1.06;
  letter-spacing: 0;
}
.standard-hero .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(27 / var(--pc-width) * 100vw);
  color: #00B385;
}
.standard-hero .ja::before,
.standard-hero .ja::after {
  content: '';
  width: calc(214 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #00B385;
}
.standard-hero .text-area {
  width: max-content;
  padding-top: calc(120 / var(--pc-width) * 100vw);
}
.standard-hero .text-area p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2.3;
  color: #007042;
  letter-spacing: 0.08em;
}
.standard-hero .text-area .text-lead {
  font-size: calc(30 / var(--pc-width) * 100vw);
  margin-top: calc(10 / var(--pc-width) * 100vw);
  line-height: 2;
}
.standard-hero .illust-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.standard-hero .illust-deco {
  position: absolute;
  bottom: 0;
  left: calc(120 / var(--pc-width) * 100vw);
  width: calc(751 / var(--pc-width) * 100vw);
  z-index: 2;
  pointer-events: none;
}
.standard-features {
  padding: calc(150 / var(--pc-width) * 100vw) 0;
  overflow: hidden;
}
.standard-features .inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.standard-features .standard-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: calc(150 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:last-child {
  margin-bottom: 0;
}
.standard-features .standard-item:nth-child(even) {
  flex-direction: row-reverse;
}
.standard-features .standard-item .item-bg-num {
  position: absolute;
  z-index: 2;
  top: calc((100 / var(--pc-width) * 100vw) * -1);
  left: calc(420 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-size: calc(199 / var(--pc-width) * 100vw);
  color: #00B385;
  line-height: 1;
  letter-spacing: 0;
}
.standard-features .standard-item:nth-child(even) .item-bg-num {
  left: auto;
  right: calc(420 / var(--pc-width) * 100vw);
  color: #009177;
}
.standard-features .standard-item .item-content-wrap {
  position: relative;
  z-index: 1;
  width: calc(1047 / var(--pc-width) * 100vw);
}
.standard-features .standard-item .item-title-box {
  position: absolute;
  top: calc(160 / var(--pc-width) * 100vw);
  left: calc((100 / var(--pc-width) * 100vw) * -1);
  transform: translateY(-50%) skewX(-15deg);
  background-color: #00B385;
  padding: calc(25 / var(--pc-width) * 100vw) calc(50 / var(--pc-width) * 100vw);
  width: 100%;
  z-index: 10;
}
.standard-features .standard-item:nth-child(even) .item-title-box {
  left: auto;
  right: calc((100 / var(--pc-width) * 100vw) * -1);
  transform: translateY(-50%) skewX(15deg);
  background-color: #009177;
}
.standard-features .standard-item .item-title-box h3 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: skewX(15deg); 
  width: 100%;
  color: #FFFFFF;
  font-size: calc(34 / var(--pc-width) * 100vw);
  font-style: italic;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.07em;
  line-height: 1;
}
.standard-features .standard-item:nth-child(even) .item-title-box h3 {
  justify-content: flex-start;
  transform: skewX(-15deg);
}
.item-title-box h3 .inline-highlight {
  font-size: calc(50 / var(--pc-width) * 100vw);
}
.standard-features .standard-item .circle-text-area {
  background-color: #FFFFFF;
  width: calc(742 / var(--pc-width) * 100vw);
  height: calc(742 / var(--pc-width) * 100vw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 calc(10 / var(--pc-width) * 100vw) calc(30 / var(--pc-width) * 100vw) rgba(0,0,0,0.05);
  margin: 0 auto;
}
.standard-features .standard-item .circle-text-area p {
  margin-top: calc(70 / var(--pc-width) * 100vw);
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2;
  color: #00B385;
  letter-spacing: 0.06em;
}
.standard-features .standard-item:nth-child(even) .circle-text-area p {
  color: #009177;
}
.standard-features .standard-item .item-illust {
  position: relative;
}
.standard-features .standard-item:nth-child(1) .item-illust {
  width: calc(818 / var(--pc-width) * 100vw);
  top: calc(70 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:nth-child(2) .item-illust {
  width: calc(661 / var(--pc-width) * 100vw);
  top: calc((50 / var(--pc-width) * 100vw) * -1);
  left: calc(20 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:nth-child(3) .item-illust {
  width: calc(717 / var(--pc-width) * 100vw);
  top: calc(10 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:nth-child(4) .item-illust {
  width: calc(683 / var(--pc-width) * 100vw);
  top: calc((10 / var(--pc-width) * 100vw) * -1);
  left: calc(20 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:nth-child(5) .item-illust {
  width: calc(573 / var(--pc-width) * 100vw);
  top: calc(20 / var(--pc-width) * 100vw);
}
.standard-features .standard-item:nth-child(6) .item-illust {
  width: calc(843 / var(--pc-width) * 100vw);
  top: calc(30 / var(--pc-width) * 100vw);
  left: calc((20 / var(--pc-width) * 100vw) * -1);
}

@media screen and (max-width: 767px) {
  .standard-hero {
    padding: calc(160 / var(--sp-width) * 100vw) 0 calc(550 / var(--sp-width) * 100vw);
  }
  .standard-hero .inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 calc(70 / var(--sp-width) * 100vw);
  }
  .standard-hero .en {
    font-size: calc(122 / var(--sp-width) * 100vw);
    line-height: 1;
  }
  .standard-hero .ja {
    gap: calc(18 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .standard-hero .ja::before,
  .standard-hero .ja::after {
    width: calc(199 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .standard-hero .text-area {
    width: 100%;
    padding-top: calc(80 / var(--sp-width) * 100vw);
  }
  .standard-hero .text-area p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .standard-hero .text-area .text-lead {
    font-size: calc(36 / var(--sp-width) * 100vw);
    margin-top: 0;
    line-height: 1.2;
  }
  .standard-hero .text-area .text-lead.sp-only {
    display: contents;
  }
  .standard-hero .illust-deco {
    left: calc(110 / var(--sp-width) * 100vw);
    width: calc(510 / var(--sp-width) * 100vw);
  }
  .standard-features {
    padding: calc(180 / var(--sp-width) * 100vw) 0;
  }
  .standard-features .standard-item {
    margin-bottom: calc(180 / var(--sp-width) * 100vw);
    justify-content: center;
  }
  .standard-features .standard-item .item-bg-num {
    top: calc((100 / var(--sp-width) * 100vw) * -1);
    left: calc(250 / var(--sp-width) * 100vw);
    font-size: calc(198 / var(--sp-width) * 100vw);
  }
  .standard-features .standard-item:nth-child(even) .item-bg-num  {
    right: auto;
  }
  .standard-features .standard-item .item-content-wrap {
    width: 100%;
  }
  .standard-features .standard-item .item-title-box {
    top: calc(160 / var(--sp-width) * 100vw);
    left: calc((80 / var(--sp-width) * 100vw) * -1);
    padding: calc(25 / var(--sp-width) * 100vw) calc(60 / var(--pc-width) * 100vw);
  }
  .standard-features .standard-item:nth-child(even) .item-title-box {
    right: calc((80 / var(--sp-width) * 100vw) * -1);
  }
  .standard-features .standard-item .item-title-box h3 {
    font-size: calc(27 / var(--sp-width) * 100vw);
  }
  .item-title-box h3 .inline-highlight {
    font-size: calc(40 / var(--sp-width) * 100vw);
  }
  .standard-features .standard-item .circle-text-area {
    width: calc(1100 / var(--sp-width) * 100vw);
    height: calc(1100 / var(--sp-width) * 100vw);
    box-shadow: 0 calc(10 / var(--sp-width) * 100vw) calc(30 / var(--sp-width) * 100vw) rgba(0,0,0,0.05);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .standard-features .standard-item .circle-text-area p {
    margin-top: calc(370 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
   .standard-features .standard-item .item-illust {
    position: absolute;
    z-index: 3;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .standard-features .standard-item:nth-child(1) .item-illust {
    width: calc(463 / var(--sp-width) * 100vw);
    top: calc(270 / var(--sp-width) * 100vw);
    left: 50%;
  }
  .standard-features .standard-item:nth-child(2) .item-illust {
    width: calc(429 / var(--sp-width) * 100vw);
    max-height: calc(300 / var(--sp-width) * 100vw);
    top: calc(230 / var(--sp-width) * 100vw);
    left: 50%;
  }
  .standard-features .standard-item:nth-child(3) .item-illust {
    width: calc(432 / var(--sp-width) * 100vw);
    top: calc(250 / var(--sp-width) * 100vw);
    left: 50%;
  }
  .standard-features .standard-item:nth-child(4) .item-illust {
    width: calc(381 / var(--sp-width) * 100vw);
    max-height: calc(330 / var(--sp-width) * 100vw);
    top: calc(220 / var(--sp-width) * 100vw);
    left: 50%;
  }
  .standard-features .standard-item:nth-child(5) .item-illust {
    width: calc(388 / var(--sp-width) * 100vw);
    max-height: calc(304 / var(--sp-width) * 100vw);
    top: calc(230 / var(--sp-width) * 100vw);
    left: 50%;
  }
  .standard-features .standard-item:nth-child(6) .item-illust {
    width: calc(499 / var(--sp-width) * 100vw);
    top: calc(250 / var(--sp-width) * 100vw);
    left: 50%;
  }
}

/* --- Company --- */
body#company {
  background-image: url('../images/company/page-bg.jpg');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
}
.company-hero {
  position: relative;
  padding: calc(260 / var(--pc-width) * 100vw) 0 calc(200 / var(--pc-width) * 100vw); 
  overflow: hidden;
}
.company-hero .inner {
  position: relative;
  z-index: 10; 
  width: 100%;
  max-width: calc(910 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.company-hero .title-area {
  text-align: center;
  margin-bottom: calc(60 / var(--pc-width) * 100vw);
}
.company-hero .en {
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
  font-size: calc(141 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #007042;
  line-height: 1.11;
  letter-spacing: 0;
}
.company-hero .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(27 / var(--pc-width) * 100vw);
  color: #007042;
}
.company-hero .ja::before,
.company-hero .ja::after {
  content: '';
  width: calc(213 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #007042;
}
.company-hero .company-info-list {
  margin: calc(80 / var(--pc-width) * 100vw) auto 0;
  position: relative;
  z-index: 10;
}
.company-hero .info-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #007042;
  padding: calc(25 / var(--pc-width) * 100vw) 0;
  color: #007042;
}
.company-hero .info-label {
  width: calc(280 / var(--pc-width) * 100vw);
  font-size: calc(24 / var(--pc-width) * 100vw);
  flex-shrink: 0;
}
.company-hero .info-value {
  width: calc(630 / var(--pc-width) * 100vw);
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.company-hero .info-value a {
  color: inherit;
  text-decoration: none;
}
.company-hero .address-group {
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
}
.company-hero .address-group .tag {
  display: inline-block;
  background: #007042;
  color: #FFFFFF;
  padding: calc(6 / var(--pc-width) * 100vw) calc(12 / var(--pc-width) * 100vw);
  font-size: calc(24 / var(--pc-width) * 100vw);
  line-height: 1;
  letter-spacing: 0.15em;
}
.company-hero .btn-map {
  display: inline-block;
  background: #E77D00;
  color: #FFFFFF;
  padding: calc(10 / var(--pc-width) * 100vw) calc(25 / var(--pc-width) * 100vw);
  border-radius: calc(24 / var(--pc-width) * 100vw);
  font-size: calc(24 / var(--pc-width) * 100vw);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
}
.company-hero .btn-map::after {
  content: url('../images/icon-link.svg');
  display: inline-block;
  width: calc(18 / var(--pc-width) * 100vw);
  height: calc(18 / var(--pc-width) * 100vw);
  margin-left: calc(12 / var(--pc-width) * 100vw);
}
.company-hero .btn-map:hover {
  opacity: 0.7;
}
.company-hero .info-value a.btn-map {
  color: #FFFFFF;
}
.company-hero .illust-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.company-hero .illust-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.company-hero .illust-deco.illust-01 {
  width: calc(825 / var(--pc-width) * 100vw);
  top: calc(270 / var(--pc-width) * 100vw);
  left: calc((270 / var(--pc-width) * 100vw) * -1);
}
.company-hero .illust-deco.illust-02 {
  width: calc(288 / var(--pc-width) * 100vw);
  top: calc(770 / var(--pc-width) * 100vw);
  left: calc((20 / var(--pc-width) * 100vw) * -1);
}
.company-hero .illust-deco.illust-03 {
  width: calc(646 / var(--pc-width) * 100vw);
  bottom: calc(350 / var(--pc-width) * 100vw);
  left: calc((220 / var(--pc-width) * 100vw) * -1);
}
.company-hero .illust-deco.illust-04 {
  width: calc(787 / var(--pc-width) * 100vw);
  top: 0;
  right: calc((320 / var(--pc-width) * 100vw) * -1);
}
.company-hero .illust-deco.illust-05 {
  width: calc(777 / var(--pc-width) * 100vw);
  top: calc(530 / var(--pc-width) * 100vw);
  right: calc((240 / var(--pc-width) * 100vw) * -1);
}
.company-hero .illust-deco.illust-06 {
  width: calc(256 / var(--pc-width) * 100vw);
  bottom: calc(480 / var(--pc-width) * 100vw);
  right: calc(80 / var(--pc-width) * 100vw);
}
.company-message-section {
  padding: calc(150 / var(--pc-width) * 100vw) 0;
  position: relative;
  overflow: hidden;
}
.company-message-section .inner {
  max-width: 100%;
}
.company-message-section .message-title {
  text-align: center;
  color: #FFFFFF;
  font-size: calc(123 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  margin-bottom: calc(80 / var(--pc-width) * 100vw);
  letter-spacing: 0;
}
.company-message-section .message-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-message-section .message-white-box {
  position: relative;
  background-color: #FFFFFF;
  width: calc(1000 / var(--pc-width) * 100vw);
  padding: calc(90 / var(--pc-width) * 100vw) calc(130 / var(--pc-width) * 100vw);
  border-radius: calc(120 / var(--pc-width) * 100vw) 0 0 calc(120 / var(--pc-width) * 100vw); 
  z-index: 5;
}
.company-message-section .message-white-box::before {
  content: '';
  position: absolute;
  top: calc((5 / var(--pc-width) * 100vw) * -1);
  left: calc((5 / var(--pc-width) * 100vw) * -1);
  width: calc(111 / var(--pc-width) * 100vw);
  height: calc(125 / var(--pc-width) * 100vw);
  background-image: url('../images/company/corner-point-top.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 10;
}
.company-message-section .message-white-box::after {
  content: '';
  position: absolute;
  bottom: calc((5 / var(--pc-width) * 100vw) * -1);
  left: calc((5 / var(--pc-width) * 100vw) * -1);
  width: calc(111 / var(--pc-width) * 100vw);
  height: calc(125 / var(--pc-width) * 100vw);
  background-image: url('../images/company/corner-point-bottom.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  z-index: 10;
}
.company-message-section .text-content p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2.3;
  color: #007042;
  letter-spacing: 0.02em;
}
.company-message-section p.signature {
  margin-top: calc(20 / var(--pc-width) * 100vw);
  font-size: calc(23 / var(--pc-width) * 100vw);
}
.company-message-section p.signature span {
  font-size: calc(27 / var(--pc-width) * 100vw);
  margin-left: calc(20 / var(--pc-width) * 100vw);
}
.company-message-section .illust-area {
  width: calc(900 / var(--pc-width) * 100vw);
  text-align: center;
}
.company-message-section .illust-area img {
  width: calc(657 / var(--pc-width) * 100vw);
  height: auto;
}
.company-history {
  padding: calc(100 / var(--pc-width) * 100vw) 0 calc(500 / var(--pc-width) * 100vw);
  position: relative;
  overflow: hidden;
}
.company-history .inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.company-history .title-area {
  text-align: center;
  margin-bottom: calc(150 / var(--pc-width) * 100vw);
}
.company-history .title-area .en {
  margin-bottom: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(134 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.11;
  letter-spacing: 0;
}
.company-history .title-area .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(32 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  letter-spacing: 0.15em;
}
.company-history .title-area .ja::before,
.company-history .title-area .ja::after {
  content: '';
  width: calc(179 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
}
.company-history .history-container {
  position: relative;
  padding-left: calc(870 / var(--pc-width) * 100vw);
}
.company-history .history-container::before {
  content: '';
  position: absolute;
  top: calc(100 / var(--pc-width) * 100vw);
  bottom: 0;
  left: calc(510 / var(--pc-width) * 100vw);
  width: calc(7 / var(--pc-width) * 100vw);
  height: calc(1500 / var(--pc-width) * 100vw);
  background-color: #023D1F;
}
.company-history .history-container::after {
  content: '';
  position: absolute;
  top: calc((25 / var(--pc-width) * 100vw) * -1);
  left: calc(430 / var(--pc-width) * 100vw);
  width: calc(91 / var(--pc-width) * 100vw);
  height: calc(92 / var(--pc-width) * 100vw);
  background-image: url('../images/illust/illust-10.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  z-index: 10;
}
.company-history .history-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 calc(90 / var(--pc-width) * 100vw) 0 calc(180 / var(--pc-width) * 100vw);
  margin-bottom: calc(120 / var(--pc-width) * 100vw);
  background-image: url('../images/company/history-01-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.company-history .history-item:nth-child(1) {
  width: calc(1047 / var(--pc-width) * 100vw);
  height: calc(258 / var(--pc-width) * 100vw);
}
.company-history .history-item:nth-child(2) {
  width: calc(1047 / var(--pc-width) * 100vw);
  height: calc(412 / var(--pc-width) * 100vw);
  background-image: url('../images/company/history-02-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.company-history .year-label {
  position: absolute;
  left: calc((550 / var(--pc-width) * 100vw) * -1);
  width: calc(390 / var(--pc-width) * 100vw);
  height: calc(124 / var(--pc-width) * 100vw);
  background-color: #023D1F;
  border-radius: calc(80 / var(--pc-width) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.company-history .year-txt {
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  font-size: calc(82 / var(--pc-width) * 100vw);
  letter-spacing: 0.03em;
}
.company-history .history-content-box {
  position: relative;
  width: 100%;
  color: #007042;
  line-height: 2;
}
.company-history .history-list li.strong {
  font-size: calc(33 / var(--pc-width) * 100vw);
}
.company-history .history-item:nth-child(2) .history-list li.strong {
  line-height: 1.5;
}
.company-history .history-desc {
  display: inline-block;
  font-size: calc(19 / var(--pc-width) * 100vw);
  margin-bottom: calc(30 / var(--pc-width) * 100vw);
}
.company-history .bottom-forest-bg img {
  position: absolute;
  bottom: calc((110 / var(--pc-width) * 100vw) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: calc(2779 / var(--pc-width) * 100vw);
  max-width: none;
}

@media screen and (max-width: 767px) {
  .company-hero {
    padding: calc(310 / var(--sp-width) * 100vw) 0 calc(350 / var(--sp-width) * 100vw);
  }
  .company-hero .inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    padding: 0 calc(70 / var(--sp-width) * 100vw);
  }
  .company-hero .title-area {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .company-hero .en {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    font-size: calc(122 / var(--sp-width) * 100vw);
    line-height: 1;
  }
  .company-hero .ja {
    gap: calc(18 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .company-hero .ja::before,
  .company-hero .ja::after {
    width: calc(192 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .company-hero .company-info-list {
    margin: calc(80 / var(--sp-width) * 100vw) auto 0;
  }
  .company-hero .info-row {
    padding: calc(25 / var(--sp-width) * 100vw) 0;
  }
  .company-hero .info-label {
    width: calc(210 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .company-hero .info-value {
    width: calc(400 / var(--sp-width) * 100vw);
    font-size: calc(20 / var(--sp-width) * 100vw);
  }
  .company-hero .address-group {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
  }
  .company-hero .address-group .tag {
    padding: calc(6 / var(--sp-width) * 100vw) calc(12 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .company-hero .btn-map {
    padding: calc(10 / var(--sp-width) * 100vw) calc(25 / var(--sp-width) * 100vw);
    border-radius: calc(24 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .company-hero .btn-map::after {
    width: calc(18 / var(--sp-width) * 100vw);
    height: calc(18 / var(--sp-width) * 100vw);
    margin-left: calc(12 / var(--sp-width) * 100vw);
  }
  .company-hero .illust-deco.illust-01 {
    width: calc(485 / var(--sp-width) * 100vw);
    top: calc(120 / var(--sp-width) * 100vw);
    left: calc((170 / var(--sp-width) * 100vw) * -1);
  }
  .company-hero .illust-deco.illust-02 {
    display: none;
  }
  .company-hero .illust-deco.illust-03 {
    width: calc(505 / var(--sp-width) * 100vw);
    bottom: calc((80 / var(--sp-width) * 100vw) * -1);
    left: calc((220 / var(--sp-width) * 100vw) * -1);
  }
  .company-hero .illust-deco.illust-04 {
    width: calc(587 / var(--sp-width) * 100vw);
    top: calc((80 / var(--sp-width) * 100vw) * -1);
    right: calc((280 / var(--sp-width) * 100vw) * -1);
  }
  .company-hero .illust-deco.illust-05 {
    width: calc(456 / var(--sp-width) * 100vw);
    top: auto;
    bottom: calc((90 / var(--sp-width) * 100vw) * -1);
    right: calc((200 / var(--sp-width) * 100vw) * -1);
  }
  .company-hero .illust-deco.illust-06 {
    width: calc(166 / var(--sp-width) * 100vw);
    bottom: calc(110 / var(--sp-width) * 100vw);
    right: calc(170 / var(--sp-width) * 100vw);
  }
  .company-message-section {
    padding: calc(100 / var(--sp-width) * 100vw) 0;
  }
  .company-message-section .message-title {
    font-size: calc(98 / var(--sp-width) * 100vw);
    margin-bottom: calc(90 / var(--sp-width) * 100vw);
  }
  .company-message-section .message-container {
    flex-direction: column-reverse;
    gap: calc(50 / var(--sp-width) * 100vw);
  }
  .company-message-section .message-white-box {
    width: calc(663 / var(--sp-width) * 100vw);
    padding: calc(90 / var(--sp-width) * 100vw) calc(80 / var(--sp-width) * 100vw);
    border-radius: calc(120 / var(--sp-width) * 100vw); 
  }
  .company-message-section .message-white-box::before,
  .company-message-section .message-white-box::after {
    display: none;
  }
  .company-message-section .message-white-box-deco {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
  }
  .company-message-section .message-white-box-deco.deco-top {
    top: 0;
  }
  .company-message-section .message-white-box-deco.deco-top::before {
    content: '';
    position: absolute;
    top: calc((5 / var(--sp-width) * 100vw) * -1);
    left: calc((5 / var(--sp-width) * 100vw) * -1);
    width: calc(111 / var(--sp-width) * 100vw);
    height: calc(125 / var(--sp-width) * 100vw);
    background-image: url(../images/company/corner-point-top-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: 10;
  }
  .company-message-section .message-white-box-deco.deco-top::after {
    content: '';
    position: absolute;
    top: calc((5 / var(--sp-width) * 100vw) * -1);
    right: calc((5 / var(--sp-width) * 100vw) * -1);
    width: calc(111 / var(--sp-width) * 100vw);
    height: calc(125 / var(--sp-width) * 100vw);
    background-image: url(../images/company/corner-point-top-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: 10;
  }
  .company-message-section .message-white-box-deco.deco-bottom {
    bottom: 0;
  }
  .company-message-section .message-white-box-deco.deco-bottom::before {
    content: '';
    position: absolute;
    bottom: calc((5 / var(--sp-width) * 100vw) * -1);
    left: calc((5 / var(--sp-width) * 100vw) * -1);
    width: calc(111 / var(--sp-width) * 100vw);
    height: calc(125 / var(--sp-width) * 100vw);
    background-image: url(../images/company/corner-point-bottom-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: 10;
  }
  .company-message-section .message-white-box-deco.deco-bottom::after {
    content: '';
    position: absolute;
    bottom: calc((5 / var(--sp-width) * 100vw) * -1);
    right: calc((5 / var(--sp-width) * 100vw) * -1);
    width: calc(111 / var(--sp-width) * 100vw);
    height: calc(125 / var(--sp-width) * 100vw);
    background-image: url(../images/company/corner-point-bottom-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: 10;
  }
  .company-message-section .text-content p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .company-message-section p.signature {
    margin-top: calc(50 / var(--sp-width) * 100vw);
    font-size: calc(23 / var(--sp-width) * 100vw);
  }
  .company-message-section p.signature span {
    font-size: calc(25 / var(--sp-width) * 100vw);
    margin-left: calc(20 / var(--sp-width) * 100vw);
  }
  .company-message-section .illust-area {
    width: 100%;
  }
  .company-message-section .illust-area img {
    width: calc(432 / var(--sp-width) * 100vw);
  }
  .company-history {
    padding: 0 0 calc(250 / var(--sp-width) * 100vw);
  }
  .company-history .title-area {
    margin-bottom: calc(100 / var(--sp-width) * 100vw);
  }
  .company-history .title-area .en {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    font-size: calc(121 / var(--sp-width) * 100vw);
  }
  .company-history .title-area .ja {
    gap: calc(10 / var(--sp-width) * 100vw);
    font-size: calc(29 / var(--sp-width) * 100vw);
  }
  .company-history .title-area .ja::before,
  .company-history .title-area .ja::after {
    width: calc(161 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .company-history .history-container {
    padding-left: calc(300 / var(--sp-width) * 100vw);
  }
  .company-history .history-container::before {
    top: calc(100 / var(--sp-width) * 100vw);
    left: calc(160 / var(--sp-width) * 100vw);
    width: calc(7 / var(--sp-width) * 100vw);
    height: calc(1300 / var(--sp-width) * 100vw);
  }
  .company-history .history-container::after {
    top: calc(19 / var(--sp-width) * 100vw);
    left: calc(118 / var(--sp-width) * 100vw);
    width: calc(56 / var(--sp-width) * 100vw);
    height: calc(57 / var(--sp-width) * 100vw);
  }
  .company-history .history-item {
    padding: 0 calc(50 / var(--sp-width) * 100vw) 0 calc(100 / var(--sp-width) * 100vw);
    margin-bottom: calc(120 / var(--sp-width) * 100vw);
    background-image: url('../images/company/history-01-bg_sp.png');
  }
  .company-history .history-item:nth-child(1) {
    width: calc(470 / var(--sp-width) * 100vw);
    height: calc(227 / var(--sp-width) * 100vw);
  }
  .company-history .history-item:nth-child(2) {
    width: calc(449 / var(--sp-width) * 100vw);
    height: calc(679 / var(--sp-width) * 100vw);
    background-image: url('../images/company/history-02-bg_sp.png');
  }
  .company-history .year-label {
    left: calc((250 / var(--sp-width) * 100vw) * -1);
    width: calc(232 / var(--sp-width) * 100vw);
    height: calc(74 / var(--sp-width) * 100vw);
    border-radius: calc(80 / var(--sp-width) * 100vw);
  }
  .company-history .year-txt {
    font-size: calc(48 / var(--sp-width) * 100vw);
  }
  .company-history .history-list li.strong {
    font-size: calc(24 / var(--sp-width) * 100vw);
    line-height: 1.5;
  }
  .company-history .history-desc {
    font-size: calc(23 / var(--sp-width) * 100vw);
    margin-bottom: calc(30 / var(--sp-width) * 100vw);
    line-height: 1.5;
  }
  .company-history .bottom-forest-bg img {
    bottom: calc((50 / var(--sp-width) * 100vw) * -1);
    left: 60%;
    width: calc(2100 / var(--sp-width) * 100vw);
  }
}

/* --- Recruit --- */
body#recruit {
  background-image: url('../images/recruit/page-bg.jpg');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
}
.recruit-hero {
  position: relative;
  padding: calc(260 / var(--pc-width) * 100vw) 0 calc(300 / var(--pc-width) * 100vw);
  text-align: center;
  overflow: hidden;
}
.recruit-hero .inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
.recruit-hero .title-area {
  margin-bottom: calc(80 / var(--pc-width) * 100vw);
}
.recruit-hero .title-area .en {
  font-size: calc(160 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.11;
  letter-spacing: 0;
}
.recruit-hero .title-area .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(27 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  letter-spacing: 0.18em;
}
.recruit-hero .title-area .ja::before,
.recruit-hero .title-area .ja::after {
  content: '';
  width: calc(168 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
}
.recruit-hero .text-area p {
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 2;
  color: #FFFFFF;
  margin-bottom: calc(40 / var(--pc-width) * 100vw);
  letter-spacing: 0.1em;
}
.recruit-hero .text-area .text-lead {
  font-size: calc(40 / var(--pc-width) * 100vw);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}
.recruit-hero .illust-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.recruit-hero .illust-deco.illust-01 {
  width: calc(317 / var(--pc-width) * 100vw);
  top: calc(180 / var(--pc-width) * 100vw);
  left: calc(30 / var(--pc-width) * 100vw);
}
.recruit-hero .illust-deco.illust-02 {
  width: calc(500 / var(--pc-width) * 100vw);
  bottom: calc((20 / var(--pc-width) * 100vw) * -1);
  left: calc(50 / var(--pc-width) * 100vw);
}
.recruit-hero .illust-deco.illust-03 {
  width: calc(561 / var(--pc-width) * 100vw);
  top: calc(220 / var(--pc-width) * 100vw);
  right: calc((20 / var(--pc-width) * 100vw) * -1);
}
.recruit-hero .illust-deco.illust-04 {
  width: calc(609 / var(--pc-width) * 100vw);
  bottom: calc((20 / var(--pc-width) * 100vw) * -1);
  right: calc(100 / var(--pc-width) * 100vw);
}
.recruit-full-section {
  width: 100%;
  padding: 0 0 calc(100 / var(--pc-width) * 100vw);
  position: relative;
}
.recruit-main-area {
  position: relative;
  width: 100%;
}
.recruit-floating-nav {
  position: sticky;
  top: 150px;
  width: 0;
  height: 0;
  overflow: visible;
  left: 0; 
  z-index: 100;
}
.recruit-floating-nav ul {
  width: calc(545 / var(--pc-width) * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: calc((1 / var(--pc-width) * 100vw) * -1) calc(10 / var(--pc-width) * 100vw) calc(25 / var(--pc-width) * 100vw) #555555;
  border: calc(10 / var(--pc-width) * 100vw) solid #FFFFFF;
  border-left: 0;
  border-radius: 0 calc(90 / var(--pc-width) * 100vw) calc(90 / var(--pc-width) * 100vw) 0;
  background-image: url('../images/recruit/nav-bg.jpg');
  background-size: auto 100%;
  background-position: center top;
  background-repeat: repeat;
}
.recruit-floating-nav .nav-btn {
  display: block;
  padding: calc(35 / var(--pc-width) * 100vw) calc(50 / var(--pc-width) * 100vw)  calc(35 / var(--pc-width) * 100vw) calc(140 / var(--pc-width) * 100vw);
  text-decoration: none;
  font-size: calc(33 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  position: relative;
}
.recruit-floating-nav .nav-btn:hover {
  opacity: 0.7;
}
.recruit-floating-nav .nav-btn::before {
  content: '●';
  position: absolute;
  top: 50%;
  left: calc(100 / var(--pc-width) * 100vw);
  transform: translateY(-50%);
  font-size: calc(20 / var(--pc-width) * 100vw);
  line-height: 1;
}
.recruit-main-area .recruit-full-section#section-career {
  background-image: url('../images/recruit/career-bg.jpg');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
  padding-top: calc(100 / var(--pc-width) * 100vw);
}
.recruit-main-area .recruit-full-section .inner {
  max-width: 100%;
  margin: 0 auto;
  padding-left: calc(675 / var(--pc-width) * 100vw);
  box-sizing: border-box;
  position: relative;
}
.recruit-main-area .recruit-card {
  background-color: #FFFFFF;
  border-radius: calc(90 / var(--pc-width) * 100vw) 0 0 calc(90 / var(--pc-width) * 100vw);
  padding: calc(120 / var(--pc-width) * 100vw) calc(100 / var(--pc-width) * 100vw);
  width: 100%;
  margin: 0;
}
.recruit-main-area .card-title {
  text-align: center;
  font-size: calc(48 / var(--pc-width) * 100vw);
  margin-bottom: calc(60 / var(--pc-width) * 100vw);
  letter-spacing: 0.15em;
}
.recruit-main-area #section-newgrad .card-title {
  color: #E77D00;
}
.recruit-main-area #section-career .card-title {
  color: #00B385;
}
.recruit-main-area .recruit-info-list {
  width: calc(800 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.recruit-main-area .recruit-info-list .info-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #743B00;
  padding: calc(35 / var(--pc-width) * 100vw) 0;
  color: #743B00;
}
.recruit-main-area #section-career .recruit-info-list .info-row {
  border-bottom: 1px solid #007042;
  color: #007042;
}
.recruit-main-area .recruit-info-list .info-row .info-label {
  width: calc(230 / var(--pc-width) * 100vw);
  font-size: calc(24 / var(--pc-width) * 100vw);
  flex-shrink: 0;
}
.recruit-main-area .recruit-info-list .info-row .info-value {
  flex: 1;
  margin: 0;
  font-size: calc(18 / var(--pc-width) * 100vw);
  letter-spacing: 0;
}
.recruit-main-area .recruit-info-list .info-row .info-value .tag {
  display: inline-block;
  margin-bottom: calc(10 / var(--pc-width) * 100vw);
  background: #743B00;
  color: #FFFFFF;
  padding: calc(10 / var(--pc-width) * 100vw) calc(25 / var(--pc-width) * 100vw);
  font-size: calc(25 / var(--pc-width) * 100vw);
  line-height: 1;
  border-radius: calc(25 / var(--pc-width) * 100vw);
}
.recruit-main-area #section-career .recruit-info-list .info-row .info-value .tag {
  background: #007042;
}
.recruit-main-area .recruit-info-list .info-row .info-value .inline-highlight {
  display: inline-block;
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
  font-size: calc(23 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns {
  display: flex;
  justify-content: center;
  gap: calc(30 / var(--pc-width) * 100vw);
  margin-top: calc(60 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(376 / var(--pc-width) * 100vw);
  height: calc(83 / var(--pc-width) * 100vw);
  padding: calc(20 / var(--pc-width) * 100vw) calc(10 / var(--pc-width) * 100vw);
  margin-bottom: calc(60 / var(--pc-width) * 100vw);
  border-radius: calc(40 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  font-size: calc(28 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns .btn-green {
  background-image: url('../images/recruit/btn-green-bg.jpg');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
  gap: calc(40 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns .btn-green::after {
  content: url('../images/icon-link.svg');
  display: inline-block;
  width: calc(23/ var(--pc-width) * 100vw);
  height: calc(43 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns .btn-orange {
  background-image: url('../images/recruit/btn-orange-bg.jpg');
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
  gap: calc(20 / var(--pc-width) * 100vw);
}
.recruit-main-area .card-btns .btn-orange::after {
  content: url('../images/icon-arrow-whilte.svg');
  display: inline-block;
  width: calc(10/ var(--pc-width) * 100vw);
  height: calc(49 / var(--pc-width) * 100vw);
}
body#recruit .bottom-forest-bg {
  position: relative;
  width: 100%;
  height: calc(350 / var(--pc-width) * 100vw);
  background-image: url(../images/recruit/career-bg.jpg);
  background-size: auto;
  background-position: center top;
  background-repeat: repeat;
  overflow: hidden;
}
body#recruit .bottom-forest-bg img {
  position: absolute;
}
body#recruit .bottom-forest-bg .illust-trees {
  bottom: calc((110 / var(--pc-width) * 100vw) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: calc(2779 / var(--pc-width) * 100vw);
  max-width: none;
}
body#recruit .bottom-forest-bg .illust-bird {
  bottom: calc(205 / var(--pc-width) * 100vw);
  left: calc(185 / var(--pc-width) * 100vw);
  width: calc(65 / var(--pc-width) * 100vw);
  height: calc(66 / var(--pc-width) * 100vw);
  max-width: none;
}

@media screen and (max-width: 767px) {
  .recruit-hero {
    padding: calc(360 / var(--sp-width) * 100vw) 0 calc(350 / var(--sp-width) * 100vw);
  }
  .recruit-hero .inner {
    justify-content: center;
    padding: 0 calc(70 / var(--sp-width) * 100vw);
  }
  .recruit-full-section {
    width: 100%;
    padding: 0 calc(46 / var(--sp-width) * 100vw) calc(90 / var(--sp-width) * 100vw);
  }
  .recruit-hero .title-area {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .recruit-hero .title-area .en {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    font-size: calc(144 / var(--sp-width) * 100vw);
    line-height: 1;
  }
  .recruit-hero .title-area .ja {
    gap: calc(18 / var(--sp-width) * 100vw);
    font-size: calc(25 / var(--sp-width) * 100vw);
  }
  .recruit-hero .title-area .ja::before,
  .recruit-hero .title-area .ja::after {
    width: calc(152 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .recruit-hero .text-area p {
    font-size: calc(24 / var(--sp-width) * 100vw);
    margin-bottom: calc(30 / var(--sp-width) * 100vw);
  }
  .recruit-hero .text-area .text-lead {
    font-size: calc(44 / var(--sp-width) * 100vw);
    letter-spacing: 0;
    white-space: nowrap;
  }
  .recruit-hero .illust-deco.illust-01 {
    width: calc(194 / var(--sp-width) * 100vw);
    top: calc(120 / var(--sp-width) * 100vw);
    left: 0;
  }
  .recruit-hero .illust-deco.illust-02 {
    width: calc(310 / var(--sp-width) * 100vw);
    bottom: 0;
    left: 0;
  }
  .recruit-hero .illust-deco.illust-03 {
    width: calc(321 / var(--sp-width) * 100vw);
    top: calc(220 / var(--sp-width) * 100vw);
    right: calc((20 / var(--sp-width) * 100vw) * -1);
  }
  .recruit-hero .illust-deco.illust-04 {
    width: calc(417 / var(--sp-width) * 100vw);
    bottom: 0;
    right: calc((20 / var(--sp-width) * 100vw) * -1);
  }
  .recruit-main-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .recruit-floating-nav {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    margin-bottom: calc(40 / var(--sp-width) * 100vw);
  }
  .recruit-floating-nav ul {
    display: flex;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: none;
    gap: calc(30 / var(--sp-width) * 100vw);
  }
  .recruit-floating-nav .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(309 / var(--sp-width) * 100vw);
    height: calc(80 / var(--sp-width) * 100vw);
    padding: 0;
    font-size: calc(25 / var(--sp-width) * 100vw);
    border: calc(5 / var(--sp-width) * 100vw) solid #FFFFFF;
    border-radius: calc(40 / var(--sp-width) * 100vw);
  }
  .recruit-floating-nav .nav-btn::before {
    display: none;
  }
  .recruit-floating-nav .nav-btn::after {
    content: url('../images/icon-arrow-whilte.svg');
    display: inline-block;
    width: calc(15 / var(--sp-width) * 100vw);
    height: calc(30 / var(--sp-width) * 100vw);
    margin-left: calc(12 / var(--sp-width) * 100vw);
  }
  .recruit-floating-nav .nav-btn.btn-newgrad {
    background-image: url('../images/recruit/nav-bg.jpg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat;
  }
  .recruit-floating-nav .nav-btn.btn-career {
    background-image: url('../images/recruit/nav-bg.jpg');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: repeat;
  }
  .recruit-main-area .recruit-full-section#section-career {
    padding-top: calc(90 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .recruit-full-section .inner {
    padding-left: 0;
  }
  .recruit-main-area .recruit-card {
    border-radius: calc(80 / var(--sp-width) * 100vw);
    padding: calc(80 / var(--sp-width) * 100vw) calc(55 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-title {
    font-size: calc(45 / var(--sp-width) * 100vw);
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .recruit-info-list {
    width: 100%;
  }
  .recruit-main-area .recruit-info-list .info-row {
    padding: calc(30 / var(--sp-width) * 100vw) 0;
  }
  .recruit-main-area .recruit-info-list .info-row .info-label {
    width: calc(200 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .recruit-info-list .info-row .info-value {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .recruit-info-list .info-row .info-value .tag {
    margin-bottom: calc(10 / var(--sp-width) * 100vw);
    padding: calc(10 / var(--sp-width) * 100vw) calc(35 / var(--sp-width) * 100vw);
    font-size: calc(25 / var(--sp-width) * 100vw);
    border-radius: calc(25 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .recruit-info-list .info-row .info-value .inline-highlight {
    margin-bottom: calc(15 / var(--sp-width) * 100vw);
    font-size: calc(25 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns {
    flex-direction: column;
    align-items: center;
    gap: calc(30 / var(--sp-width) * 100vw);
    margin-top: calc(60 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns .link-btn {
    width: calc(375 / var(--sp-width) * 100vw);
    height: calc(76 / var(--sp-width) * 100vw);
    padding: calc(20 / var(--sp-width) * 100vw) calc(10 / var(--sp-width) * 100vw);
    margin-bottom: 0;
    border-radius: calc(40 / var(--sp-width) * 100vw);
    font-size: calc(28 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns .btn-green {
    gap: calc(30 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns .btn-green::after {
    width: calc(23/ var(--sp-width) * 100vw);
    height: calc(43 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns .btn-orange {
    gap: calc(10 / var(--sp-width) * 100vw);
  }
  .recruit-main-area .card-btns .btn-orange::after {
    width: calc(13/ var(--sp-width) * 100vw);
    height: calc(44 / var(--sp-width) * 100vw);
  }
  body#recruit .bottom-forest-bg {
    height: calc(335 / var(--sp-width) * 100vw);
  }
  body#recruit .bottom-forest-bg .illust-trees {
    left: 60%;
    bottom: calc((70 / var(--sp-width) * 100vw) * -1);
    width: calc(2079 / var(--sp-width) * 100vw);
  }
  body#recruit .bottom-forest-bg .illust-bird {
    bottom: calc(168 / var(--sp-width) * 100vw);
    left: calc(135 / var(--sp-width) * 100vw);
    width: calc(65 / var(--sp-width) * 100vw);
    height: calc(66 / var(--sp-width) * 100vw);
  }
}

/* --- Contact --- */
body#contact {
  background-image: url('../images/contact/page-bg.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat;
}
.contact-hero {
  position: relative;
  padding: calc(300 / var(--pc-width) * 100vw) 0 calc(300 / var(--pc-width) * 100vw);
  text-align: center;
  overflow: hidden;
}
.contact-hero .inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
.contact-hero .title-area {
  margin-bottom: calc(150 / var(--pc-width) * 100vw);
}
.contact-hero .title-area .en {
  font-size: calc(166 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.11;
  letter-spacing: 0;
}
.contact-hero .title-area .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / var(--pc-width) * 100vw);
  font-size: calc(27 / var(--pc-width) * 100vw);
  color: #FFFFFF;
}
.contact-hero .title-area .ja::before,
.contact-hero .title-area .ja::after {
  content: '';
  width: calc(135 / var(--pc-width) * 100vw);
  height: calc(2 / var(--pc-width) * 100vw);
  background-color: #FFFFFF;
}
.contact-main-area {
  position: relative;
  background: #FFFFFF;
  border-radius: calc(80 / var(--pc-width) * 100vw);
  padding: calc(90 / var(--pc-width) * 100vw) calc(270 / var(--pc-width) * 100vw);
  width: calc(1142 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.contact-main-area .contact-main-deco {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
}
.contact-main-area .contact-main-deco.deco-top {
  top: 0;
}
.contact-main-area .contact-main-deco.deco-top::before {
  content: '';
  position: absolute;
  top: calc((10 / var(--pc-width) * 100vw) * -1);
  left: calc((10 / var(--pc-width) * 100vw) * -1);
  width: calc(117 / var(--pc-width) * 100vw);
  height: calc(116 / var(--pc-width) * 100vw);
  background-image: url('../images/contact/corner-point-top-left.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 10;
}
.contact-main-area .contact-main-deco.deco-top::after {
  content: '';
  position: absolute;
  top: calc((10 / var(--pc-width) * 100vw) * -1);
  right: calc((10 / var(--pc-width) * 100vw) * -1);
  width: calc(117 / var(--pc-width) * 100vw);
  height: calc(116 / var(--pc-width) * 100vw);
  background-image: url('../images/contact/corner-point-top-right.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 10;
}
.contact-main-area .contact-main-deco.deco-bottom {
  bottom: 0;
}
.contact-main-area .contact-main-deco.deco-bottom::before {
  content: '';
  position: absolute;
  bottom: calc((10 / var(--pc-width) * 100vw) * -1);
  left: calc((10 / var(--pc-width) * 100vw) * -1);
  width: calc(117 / var(--pc-width) * 100vw);
  height: calc(116 / var(--pc-width) * 100vw);
  background-image: url('../images/contact/corner-point-bottom-left.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 10;
}
.contact-main-area .contact-main-deco.deco-bottom::after {
  content: '';
  position: absolute;
  bottom: calc((10 / var(--pc-width) * 100vw) * -1);
  right: calc((10 / var(--pc-width) * 100vw) * -1);
  width: calc(117 / var(--pc-width) * 100vw);
  height: calc(116 / var(--pc-width) * 100vw);
  background-image: url('../images/contact/corner-point-bottom-right.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 10;
}
.contact-main-area .contact-status-nav ul {
  display: flex;
  justify-content: center;
  gap: calc(35 / var(--pc-width) * 100vw);
  list-style: none;
  margin-bottom: calc(70 / var(--pc-width) * 100vw);
}
.contact-main-area .contact-status-nav ul li {
  position: relative;
}
.contact-main-area .contact-status-nav ul li::after {
  content: url(../images/icon-arrow-blue.svg);
  position: absolute;
  top: calc(10 / var(--pc-width) * 100vw);
  right: calc((25 / var(--pc-width) * 100vw) * -1);
  display: inline-block;
  width: calc(15 / var(--pc-width) * 100vw);
  height: calc(20 / var(--pc-width) * 100vw);
}
.contact-main-area .contact-status-nav ul li:last-child::after {
  display: none;
}
.contact-main-area .contact-status-nav span {
  display: block;
  padding: calc(10 / var(--pc-width) * 100vw) calc(60 / var(--pc-width) * 100vw);
  background: #7BD5E2;
  color: #FFFFFF;
  font-size: calc(23 / var(--pc-width) * 100vw);
  border-radius: calc(10 / var(--pc-width) * 100vw);
  letter-spacing: 0.15em;
  line-height: 1;
}
.contact-main-area .contact-status-nav span.atcive {
  background: #0FB2CB;
}
.contact-main-area .contact-caption {
  margin-bottom: calc(80 / var(--pc-width) * 100vw);
  font-size: calc(20 / var(--pc-width) * 100vw);
  font-weight: 500;
  line-height: 1.6;
  color: #364E54;
}
.contact-main-area form {
  width: calc(504 / var(--pc-width) * 100vw);
  margin: 0 auto;
}
.contact-main-area .info-row {
  margin-bottom: calc(60 / var(--pc-width) * 100vw);
}
.contact-main-area .info-label {
  color: #0FB2CB;
  font-size: calc(20 / var(--pc-width) * 100vw);
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
  display: flex;
  align-items: center;
  gap: calc(30 / var(--pc-width) * 100vw);
}
.contact-main-area .info-label .icon-required,
.contact-main-area .info-label span:not(.icon-required, .label-desc) {
  font-size: calc(17 / var(--pc-width) * 100vw);
  padding: calc(5 / var(--pc-width) * 100vw) calc(12 / var(--pc-width) * 100vw);
  border-radius: calc(5 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  line-height: 1;
}
.contact-main-area .info-label .icon-required {
  background: #E87E67;
}
.contact-main-area .info-label span:not(.icon-required, .label-desc) {
  background: #0FB2CB;
}
.contact-main-area .info-label .label-desc {
  font-size: calc(18 / var(--pc-width) * 100vw);
  color: #0FB2CB;
  margin-left: calc((20 / var(--pc-width) * 100vw) * -1);
}
.contact-main-area .form-control {
  width: 100%;
  height: calc(85 / var(--pc-width) * 100vw);
  border: 1px solid #0FB2CB;
  border-radius: calc(12 / var(--pc-width) * 100vw);
  padding: calc(15 / var(--pc-width) * 100vw);
  font-size: calc(20 / var(--pc-width) * 100vw);
  box-sizing: border-box;
  outline: none;
  scroll-margin-top: calc(175 / var(--pc-width) * 100vw);
}
.contact-main-area .form-control#question {
  height: calc(255 / var(--pc-width) * 100vw);
}
.contact-main-area .info-value {
  display: flex;
  align-items: center;
}
.contact-main-area .info-value.value-type {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  scroll-margin-top: calc(139 / var(--pc-width) * 100vw);
}
.contact-main-area .info-value.value-gender {
  gap: calc(30 / var(--pc-width) * 100vw);
}
.contact-main-area .info-value input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-main-area .info-value label {
  margin: calc(20 / var(--pc-width) * 100vw);
  margin-left: 0;
  cursor: pointer;
  position: relative;
  padding-left: calc(50 / var(--pc-width) * 100vw);
  color: #364E54;
  font-size: calc(18 / var(--pc-width) * 100vw);
  font-weight: 500;
}
.contact-main-area .info-value label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(35 / var(--pc-width) * 100vw);
  height: calc(35 / var(--pc-width) * 100vw);
  border: 1px solid #0FB2CB;
  border-radius: 50%;
}
.contact-main-area .info-value input[type="radio"]:checked + label::after {
  content: '';
  position: absolute;
  left: calc(8 / var(--pc-width) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(18 / var(--pc-width) * 100vw);
  height: calc(18 / var(--pc-width) * 100vw);
  background: #0FB2CB;
  border-radius: 50%;
}
.contact-main-area .privacy-area {
  display: inline-block;
  width: 100%;
  margin-top: calc(60 / var(--pc-width) * 100vw);
}
.contact-main-area .privacy-area .privacy-title {
  font-size: calc(20 / var(--pc-width) * 100vw);
  color: #0FB2CB;
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
  display: flex;
  align-items: center;
  gap: calc(30 / var(--pc-width) * 100vw);
}
.contact-main-area .privacy-title .icon-required {
  background: #E87E67;
  font-size: calc(17 / var(--pc-width) * 100vw);
  padding: calc(5 / var(--pc-width) * 100vw) calc(12 / var(--pc-width) * 100vw);
  border-radius: calc(5 / var(--pc-width) * 100vw);
  color: #FFFFFF;
  line-height: 1;
}
.contact-main-area .privacy-title .label-desc {
  font-size: calc(18 / var(--pc-width) * 100vw);
  color: #E87E67;
  margin-left: calc((20 / var(--pc-width) * 100vw) * -1);
}
.contact-main-area .privacy-policy-container {
  background-color: #DBF3F7;
  border-radius: calc(20 / var(--pc-width) * 100vw);
  padding: calc(10 / var(--pc-width) * 100vw);
  margin-bottom: calc(30 / var(--pc-width) * 100vw);
}
.contact-main-area .privacy-iframe {
  width: 100%;
  height: calc(185 / var(--pc-width) * 100vw);
  border: none;
  display: block;
}
.contact-main-area .privacy-check-wrapper {
  margin-bottom: calc(60 / var(--pc-width) * 100vw);
}
.contact-main-area .privacy-check-wrapper label {
  font-size: calc(24 / var(--pc-width) * 100vw);
  color: #0FB2CB;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: calc(10 / var(--pc-width) * 100vw);
}
.contact-main-area .privacy-check-wrapper .custom-check {
  display: none;
}
.contact-main-area .privacy-check-wrapper .custom-check + label::before {
  content: '';
  width: calc(35 / var(--pc-width) * 100vw);
  height: calc(35 / var(--pc-width) * 100vw);
  border: 2px solid #0FB2CB;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-block;
}
.contact-main-area .privacy-check-wrapper .custom-check:checked + label::before {
  background-color: #0FB2CB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: calc(25 / var(--pc-width) * 100vw);
  background-repeat: no-repeat;
  background-position: center;
}
.contact-main-area .btn-primary {
  display: inline-block;
  width: calc(253 / var(--pc-width) * 100vw);
  background-color: #0FB2CB;
  color: #FFFFFF;
  font-size: calc(17 / var(--pc-width) * 100vw);
  padding: calc(15 / var(--pc-width) * 100vw) 0;
  border: none;
  border-radius: calc(40 / var(--pc-width) * 100vw);
  cursor: pointer;
  box-shadow: 0 calc(5 / var(--pc-width) * 100vw) 0 #098EA3;
  transition: all 0.2s ease;
}
.contact-main-area .btn-primary:not(:disabled):hover {
  background-color: #098EA3;
  transform: translateY(calc(2 / var(--pc-width) * 100vw));
  box-shadow: 0 calc(2 / var(--pc-width) * 100vw) 0 #098EA3;
}
.contact-main-area .btn-primary:disabled {
  background-color: #CCCCCC;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

@media screen and (max-width: 767px) {
  body#contact {
    background-image: url('../images/contact/page-bg_sp.jpg');
  }
  .contact-hero {
    padding: calc(200 / var(--sp-width) * 100vw) 0 calc(850 / var(--sp-width) * 100vw);
  }
  .contact-hero .inner {
    justify-content: center;
    padding: 0;
  }
  .contact-full-section {
    width: 100%;
    padding: 0 calc(46 / var(--sp-width) * 100vw) calc(90 / var(--sp-width) * 100vw);
  }
  .contact-hero .title-area {
    margin-bottom: calc(120 / var(--sp-width) * 100vw);
  }
  .contact-hero .title-area .en {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    font-size: calc(150 / var(--sp-width) * 100vw);
    line-height: 1;
  }
  .contact-hero .title-area .ja {
    gap: calc(18 / var(--sp-width) * 100vw);
    font-size: calc(25 / var(--sp-width) * 100vw);
  }
  .contact-hero .title-area .ja::before,
  .contact-hero .title-area .ja::after {
    width: calc(122 / var(--sp-width) * 100vw);
    height: calc(2 / var(--sp-width) * 100vw);
  }
  .contact-main-area {
    border-radius: calc(80 / var(--sp-width) * 100vw);
    padding: calc(120 / var(--sp-width) * 100vw) calc(70 / var(--sp-width) * 100vw);
    width: calc(645 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-main-deco.deco-top::before {
    top: calc((10 / var(--sp-width) * 100vw) * -1);
    left: calc((10 / var(--sp-width) * 100vw) * -1);
    width: calc(117 / var(--sp-width) * 100vw);
    height: calc(116 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-main-deco.deco-top::after {
    top: calc((10 / var(--sp-width) * 100vw) * -1);
    right: calc((10 / var(--sp-width) * 100vw) * -1);
    width: calc(117 / var(--sp-width) * 100vw);
    height: calc(116 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-main-deco.deco-bottom::before {
    bottom: calc((10 / var(--sp-width) * 100vw) * -1);
    left: calc((10 / var(--sp-width) * 100vw) * -1);
    width: calc(117 / var(--sp-width) * 100vw);
    height: calc(116 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-main-deco.deco-bottom::after {
    bottom: calc((10 / var(--sp-width) * 100vw) * -1);
    right: calc((10 / var(--sp-width) * 100vw) * -1);
    width: calc(117 / var(--sp-width) * 100vw);
    height: calc(116 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-status-nav ul {
    gap: calc(50 / var(--sp-width) * 100vw);
    margin-bottom: calc(70 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-status-nav ul li::after {
    top: 0;
    right: calc((35 / var(--sp-width) * 100vw) * -1);
    width: calc(17 / var(--sp-width) * 100vw);
    height: calc(20 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-status-nav span {
    padding: calc(7 / var(--sp-width) * 100vw) calc(100 / var(--pc-width) * 100vw);
    font-size: calc(23 / var(--sp-width) * 100vw);
    border-radius: calc(5 / var(--sp-width) * 100vw);
  }
  .contact-main-area .contact-caption {
    margin-bottom: calc(80 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
  }
  .contact-main-area form {
    width: 100%;
  }
  .contact-main-area .info-row {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-label {
    font-size: calc(20 / var(--sp-width) * 100vw);
    margin-bottom: calc(10 / var(--sp-width) * 100vw);
    gap: calc(30 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-label .icon-required,
  .contact-main-area .info-label span:not(.icon-required, .label-desc) {
    font-size: calc(17 / var(--sp-width) * 100vw);
    padding: calc(5 / var(--sp-width) * 100vw) calc(12 / var(--sp-width) * 100vw);
    border-radius: calc(5 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-label .label-desc {
    font-size: calc(18 / var(--sp-width) * 100vw);
    margin-left: calc((20 / var(--sp-width) * 100vw) * -1);
  }
  .contact-main-area .form-control {
    height: calc(85 / var(--sp-width) * 100vw);
    border-radius: calc(12 / var(--sp-width) * 100vw);
    padding: calc(15 / var(--sp-width) * 100vw);
    font-size: calc(20 / var(--sp-width) * 100vw);
    scroll-margin-top: calc(175 / var(--sp-width) * 100vw);
  }
  .contact-main-area .form-control#question {
    height: calc(255 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-value.value-type {
    scroll-margin-top: calc(139 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-value.value-gender {
    gap: calc(30 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-value label {
    margin: calc(15 / var(--sp-width) * 100vw) 0;
    padding-left: calc(50 / var(--sp-width) * 100vw);
    font-size: calc(18 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-value label::before {
    width: calc(35 / var(--sp-width) * 100vw);
    height: calc(35 / var(--sp-width) * 100vw);
  }
  .contact-main-area .info-value input[type="radio"]:checked + label::after {
    left: calc(8 / var(--sp-width) * 100vw);
    width: calc(18 / var(--sp-width) * 100vw);
    height: calc(18 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-area {
    margin-top: calc(60 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-area .privacy-title {
    font-size: calc(20 / var(--sp-width) * 100vw);
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    gap: calc(30 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-title .icon-required {
    font-size: calc(17 / var(--sp-width) * 100vw);
    padding: calc(5 / var(--sp-width) * 100vw) calc(12 / var(--sp-width) * 100vw);
    border-radius: calc(5 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-title .label-desc {
    font-size: calc(18 / var(--sp-width) * 100vw);
    margin-left: calc((20 / var(--sp-width) * 100vw) * -1);
  }
  .contact-main-area .privacy-policy-container {
    border-radius: calc(20 / var(--sp-width) * 100vw);
    padding: calc(10 / var(--sp-width) * 100vw);
    margin-bottom: calc(30 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-iframe {
    height: calc(185 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-check-wrapper {
    margin-bottom: calc(60 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-check-wrapper label {
    font-size: calc(24 / var(--sp-width) * 100vw);
    gap: calc(10 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-check-wrapper .custom-check + label::before {
    width: calc(35 / var(--sp-width) * 100vw);
    height: calc(35 / var(--sp-width) * 100vw);
  }
  .contact-main-area .privacy-check-wrapper .custom-check:checked + label::before {
    background-size: calc(25 / var(--sp-width) * 100vw);
  }
  .contact-main-area .btn-primary {
    width: calc(253 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
    padding: calc(15 / var(--sp-width) * 100vw) 0;
    border-radius: calc(40 / var(--sp-width) * 100vw);
    box-shadow: 0 calc(5 / var(--sp-width) * 100vw) 0 #098EA3;
  }
  .contact-main-area .btn-primary:not(:disabled):hover {
    transform: translateY(calc(2 / var(--sp-width) * 100vw));
    box-shadow: 0 calc(2 / var(--sp-width) * 100vw) 0 #098EA3;
  }
}

/* --- Contact Confirm--- */
body#contact_confirm {
  background-image: url('../images/contact/page-bg.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat;
}
body#contact_confirm .contact-main-area {
  padding: calc(90 / var(--pc-width) * 100vw) calc(150 / var(--pc-width) * 100vw);
}
body#contact_confirm .contact-main-area .info-row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 1px solid #0FB2CB;
  margin-bottom: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-break: break-all;
}
body#contact_confirm .contact-main-area .info-label {
  width: calc(360 / var(--pc-width) * 100vw);
  padding: calc(30 / var(--pc-width) * 100vw) calc(15 / var(--pc-width) * 100vw);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #E7F7FA;
}
body#contact_confirm .contact-main-area .info-value {
  width: calc(100% - calc(360 / var(--pc-width) * 100vw));
  padding: calc(25 / var(--pc-width) * 100vw) calc(15 / var(--pc-width) * 100vw);
  color: #364E54;
}
body#contact_confirm .contact-main-area .info-value.value-type {
  width: calc(100% - calc(360 / var(--pc-width) * 100vw));
}
body#contact_confirm .contact-main-area form {
  width: auto;
  margin: 0;
}
body#contact_confirm .contact-main-area .btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(50 / var(--pc-width) * 100vw);
  margin: calc(150 / var(--pc-width) * 100vw) auto calc(50 / var(--pc-width) * 100vw);
}
body#contact_confirm .contact-main-area .btn-send {
  display: inline-block;
  width: calc(253 / var(--pc-width) * 100vw);
  background-color: #0FB2CB;
  color: #FFFFFF;
  font-size: calc(17 / var(--pc-width) * 100vw);
  padding: calc(15 / var(--pc-width) * 100vw) 0;
  border: none;
  border-radius: calc(40 / var(--pc-width) * 100vw);
  cursor: pointer;
  box-shadow: 0 calc(5 / var(--pc-width) * 100vw) 0 #098EA3;
  transition: all 0.2s ease;
}
body#contact_confirm .contact-main-area .btn-send:hover {
  background-color: #098EA3;
  transform: translateY(calc(2 / var(--pc-width) * 100vw));
  box-shadow: 0 calc(2 / var(--pc-width) * 100vw) 0 #098EA3;
}
body#contact_confirm .contact-main-area .btn-back {
  display: inline-block;
  width: calc(253 / var(--pc-width) * 100vw);
  background-color: #CCCCCC;
  color: #FFFFFF;
  font-size: calc(17 / var(--pc-width) * 100vw);
  padding: calc(15 / var(--pc-width) * 100vw) 0;
  border: none;
  border-radius: calc(40 / var(--pc-width) * 100vw);
  cursor: pointer;
  box-shadow: 0 calc(5 / var(--pc-width) * 100vw) 0 #A8A8A8;
  transition: all 0.2s ease;
}
body#contact_confirm .contact-main-area .btn-back:hover {
  background-color: #A8A8A8;
  transform: translateY(calc(2 / var(--pc-width) * 100vw));
  box-shadow: 0 calc(2 / var(--pc-width) * 100vw) 0 #A8A8A8;
}

@media screen and (max-width: 767px) {
  body#contact_confirm {
    background-image: url(../images/contact/page-bg_sp.jpg);
  }
  body#contact_confirm {
    background-image: url('../images/contact/page-bg_sp.jpg');
  }
  body#contact_confirm .contact-hero {
    padding: calc(200 / var(--sp-width) * 100vw) 0 calc(250 / var(--sp-width) * 100vw);
  }
  body#contact_confirm .contact-main-area {
    padding: calc(120 / var(--sp-width) * 100vw) calc(70 / var(--sp-width) * 100vw);
  }
  body#contact_confirm .contact-main-area .info-label {
    width: calc(240 / var(--sp-width) * 100vw);
    padding: calc(30 / var(--sp-width) * 100vw) calc(15 / var(--sp-width) * 100vw);
  }
  body#contact_confirm .contact-main-area .info-value {
    width: calc(100% - calc(240 / var(--sp-width) * 100vw));
    padding: calc(25 / var(--sp-width) * 100vw) calc(15 / var(--sp-width) * 100vw);
  }
  body#contact_confirm .contact-main-area .info-value.value-type {
    width: calc(100% - calc(360 / var(--sp-width) * 100vw));
  }
  body#contact_confirm .contact-main-area .btn-area {
    gap: calc(50 / var(--sp-width) * 100vw);
    margin: calc(150 / var(--sp-width) * 100vw) auto calc(50 / var(--sp-width) * 100vw);
  }
  body#contact_confirm .contact-main-area .btn-send {
    width: calc(253 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
    padding: calc(15 / var(--sp-width) * 100vw) 0;
    border-radius: calc(40 / var(--sp-width) * 100vw);
    box-shadow: 0 calc(5 / var(--sp-width) * 100vw) 0 #098EA3;
  }
  body#contact_confirm .contact-main-area .btn-send:hover {
    transform: translateY(calc(2 / var(--sp-width) * 100vw));
    box-shadow: 0 calc(2 / var(--sp-width) * 100vw) 0 #098EA3;
  }
  body#contact_confirm .contact-main-area .btn-back {
    width: calc(253 / var(--sp-width) * 100vw);
    font-size: calc(24 / var(--sp-width) * 100vw);
    padding: calc(15 / var(--sp-width) * 100vw) 0;
    border-radius: calc(40 / var(--sp-width) * 100vw);
    box-shadow: 0 calc(5 / var(--sp-width) * 100vw) 0 #A8A8A8;
  }
  body#contact_confirm .contact-main-area .btn-back:hover {
    transform: translateY(calc(2 / var(--sp-width) * 100vw));
    box-shadow: 0 calc(2 / var(--sp-width) * 100vw) 0 #A8A8A8;
  }
}

/* --- Contact Thanks--- */
body#contact_thanks {
  background-image: url('../images/contact/page-bg.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat;
}
body#contact_thanks .contact-main-area {
  padding: calc(90 / var(--pc-width) * 100vw) calc(100 / var(--pc-width) * 100vw);
}
body#contact_thanks .contact-message {
  display: inline-block;
  width: 100%;
  margin: calc(70 / var(--pc-width) * 100vw) auto;
  color: #0FB2CB;
}
body#contact_thanks .contact-message span {
  position: relative;
  display: inline-block;
  margin-bottom: calc(20 / var(--pc-width) * 100vw);
  font-size: calc(132 / var(--pc-width) * 100vw);
  font-family: "Jost", sans-serif;
  font-style: italic;
  line-height: 1.11;
  letter-spacing: 0;
}
body#contact_thanks .contact-message span::after {
  content: '';
  position: absolute;
  top: calc((25/ var(--pc-width) * 100vw) * -1);
  left: calc(5 / var(--pc-width) * 100vw);
  width: calc(51 / var(--pc-width) * 100vw);
  height: calc(52 / var(--pc-width) * 100vw);
  background-image: url(../images/illust/illust-10.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
}
body#contact_thanks .contact-message p {
  font-size: calc(32 / var(--pc-width) * 100vw);
}

@media screen and (max-width: 767px) {
  body#contact_thanks {
    background-image: url(../images/contact/page-bg_sp.jpg);
  }
  body#contact_thanks .contact-main-area {
    padding: calc(120 / var(--sp-width) * 100vw) calc(20 / var(--sp-width) * 100vw);
  }
  body#contact_thanks .contact-hero {
    padding: calc(200 / var(--sp-width) * 100vw) 0 calc(250 / var(--sp-width) * 100vw);
  }
  body#contact_thanks .contact-message {
    margin: calc(70 / var(--sp-width) * 100vw) auto;
  }
  body#contact_thanks .contact-message span {
    margin-bottom: calc(20 / var(--sp-width) * 100vw);
    font-size: calc(102 / var(--sp-width) * 100vw);
  }
  body#contact_thanks .contact-message span::after {
    top: calc((35/ var(--sp-width) * 100vw) * -1);
    left: calc(5 / var(--sp-width) * 100vw);
    width: calc(51 / var(--sp-width) * 100vw);
    height: calc(52 / var(--sp-width) * 100vw);
  }
  body#contact_thanks .contact-message p {
    font-size: calc(24 / var(--sp-width) * 100vw);
  }
}