@charset "UTF-8";
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ---------------------------------------------
   CSS Reset（normalize.cssベース簡易版）
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
}

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

body {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  min-height: 100vh;
}

a {
  color: #4CB847;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .site-header__container {
    padding: 0 15px;
    margin: auto;
    z-index: 9999999;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .site-header__logo {
    margin: auto;
  }
}
.site-header__logo-link {
  display: block;
  text-decoration: none;
}
.site-header__logo-image {
  width: 160px;
  display: block;
}
@media (max-width: 767px) {
  .site-header__logo-image {
    width: 120px;
  }
}
.site-header__navigation {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
@media (max-width: 767px) {
  .site-header__navigation {
    display: none;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .site-header__nav-list {
    gap: 20px;
  }
}
.site-header__nav-item {
  margin: 0;
}
.site-header__nav-link {
  display: block;
  padding: 10px 0;
  color: #343a40;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.site-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4CB847;
  transition: width 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__nav-link:hover {
    color: #4CB847;
  }
  .site-header__nav-link:hover::after {
    width: 100%;
  }
}
.site-header__nav-link--active {
  color: #4CB847;
}
.site-header__nav-link--active::after {
  width: 100%;
}
.site-header__contact {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #4CB847;
}
@media (max-width: 767px) {
  .site-header__contact {
    display: none;
  }
}
.site-header__contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  background: #4CB847;
  transition: background-color 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .site-header__contact-button:hover {
    background: #144E40;
  }
}
@media (max-width: 767px) {
  .site-header__contact-button {
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    background: #4CB847;
    margin-left: 15px;
  }
}
.site-header__hamburger {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 767px) {
  .site-header__hamburger {
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(10%);
  }
}
.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #4CB847;
  position: absolute;
  left: 0;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-header__hamburger span:nth-child(1) {
  top: 0px;
}
.site-header__hamburger span:nth-child(2) {
  top: 10px;
}
.site-header__hamburger span:nth-child(3) {
  top: 20px;
}
.site-header__hamburger.active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}
.site-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.active span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(255, 255, 255);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-header__mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.site-header__mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  background: #ffffff;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.site-header__mobile-menu.active .site-header__mobile-menu-content {
  transform: translateX(0);
}
.site-header__mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: fixed;
  top: 20px;
  right: 30px;
}
.site-header__mobile-logo {
  flex-shrink: 0;
}
.site-header__mobile-logo-image {
  width: 120px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.site-header__mobile-close {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.site-header__mobile-close span {
  display: block;
  width: 100%;
  height: 3px;
  background: #4CB847;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.site-header__mobile-close span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.site-header__mobile-close span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.site-header__mobile-nav {
  padding: 80px 30px 30px 30px;
}
.site-header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__mobile-nav-item {
  margin-bottom: 0;
  text-align: center;
}
.site-header__mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: #343a40;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__mobile-nav-link:hover {
    color: #4CB847;
  }
}
.site-header__mobile-nav-title {
  display: block;
  font-family: adobe-caslon-pro, serif;
  font-size: 20px;
  color: #4CB847;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.site-header__mobile-nav-subtitle {
  display: block;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4CB847;
  opacity: 0.8;
  line-height: 1.4;
}
.site-header__mobile-footer {
  padding: 30px;
}
.site-header__mobile-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.site-header__mobile-social-link {
  display: block;
  text-decoration: none;
}
.site-header__mobile-social-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__mobile-social-icon:hover {
    transform: scale(1.1);
  }
}
.site-header__mobile-contact {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}
.site-header__mobile-contact-button {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  background: #4CB847;
  color: #ffffff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  padding: 20px 0;
  transition: background-color 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__mobile-contact-button:hover {
    background: #144E40;
  }
}
.site-header__mobile-contact-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.site-footer {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0;
  }
}
.site-footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer__container {
    padding: 0 15px;
  }
}
.site-footer__logo {
  margin: auto;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .site-footer__logo {
    margin-bottom: 15px;
  }
}
.site-footer__logo-image {
  width: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: auto;
}
.site-footer__company {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .site-footer__company {
    margin-bottom: 12px;
  }
}
.site-footer__company-name {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #144E40;
  margin: 0;
  line-height: 1.4;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .site-footer__company-name {
    font-size: 15px;
  }
}
@media (max-width: 430px) {
  .site-footer__company-name {
    font-size: 14px;
  }
}
.site-footer__copyright {
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.site-footer__copyright-text {
  font-family: adobe-caslon-pro, serif;
  font-size: 10px;
  font-weight: 400;
  color: #144E40;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .site-footer__copyright-text {
    font-size: 13px;
  }
}
@media (max-width: 430px) {
  .site-footer__copyright-text {
    font-size: 12px;
  }
}

.second-header {
  width: 100%;
  height: 300px;
  background: #144E40;
  position: relative;
  margin-top: 97px;
}
@media (max-width: 767px) {
  .second-header {
    height: 200px;
    margin-top: 73px;
  }
}
.second-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  z-index: 10;
}
.second-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.second-header__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.second-header__title {
  font-size: 40px;
  font-weight: 100;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-family: adobe-caslon-pro, serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .second-header__title {
    font-size: 40px;
  }
}
.second-header__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .second-header__subtitle {
    font-size: 20px;
  }
}

.story-bg {
  background-image: url("../images/story-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .story-bg {
    background-image: url("../images/story-bg-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.products-bg {
  background-image: url("../images/products-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .products-bg {
    background-image: url("../images/products-bg-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.company-bg {
  background-image: url("../images/company-page-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .company-bg {
    background-image: url("../images/company-page-bg-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.recruit-bg {
  background-image: url("../images/recruit-page-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .recruit-bg {
    background-image: url("../images/recruit-page-bg-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.contact-bg {
  background-image: url("../images/company-page-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .contact-bg {
    background-image: url("../images/company-page-bg-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.main {
  min-height: 100vh;
  padding-top: 0px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main {
    padding-top: 0px;
    overflow: hidden;
  }
}

.site-main {
  min-height: 100vh;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .site-main {
    padding-top: 100px;
  }
}

.com-btn {
  width: 100%;
  max-width: 330px;
  padding: 13px 30px;
  color: #ffffff;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 50px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .com-btn {
    padding: 13px 15px 15px 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .com-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
  }
  .com-btn:hover .com-btn__text-arrow {
    mix-blend-mode: difference;
    transform: translateX(15px);
  }
}
.com-btn__text {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.8;
  font-weight: 400;
  font-family: adobe-caslon-pro, serif;
  position: relative;
  top: 3px;
  transition: all 0.3s ease;
}
@media (min-width: 1920px) {
  .com-btn__text {
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .com-btn__text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}
.com-btn__text-arrow {
  width: 50px;
  height: 8px;
  background-image: url("../images/arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.com-btn.dark-btn {
  border-color: #144E40;
  color: #144E40;
}
.com-btn.dark-btn .dark-btn__text-arrow {
  mix-blend-mode: normal;
  transform: translateX(20px);
  background-image: url("../images/arrow-dark.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateX(0px);
}
@media (hover: hover) and (pointer: fine) {
  .com-btn.dark-btn:hover {
    background-color: #144E40;
    color: #ffffff;
    border-color: #144E40;
  }
  .com-btn.dark-btn:hover .com-btn__text {
    color: #ffffff;
  }
  .com-btn.dark-btn:hover .dark-btn__text-arrow {
    transform: translateX(15px);
    background-image: url("../images/arrow.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.com-btn.instagram-btn {
  max-width: 430px;
  padding: 13px 20px 13px 80px;
  margin: auto;
}
.com-btn.instagram-btn::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background-image: url("../images/instagram.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .com-btn.instagram-btn:hover::before {
    background-image: url("../images/instagram-white.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.com-btn.borderless-btn {
  padding: 13px 20px 13px 10px;
  max-width: 350px;
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .com-btn.borderless-btn:hover {
    padding: 13px 20px 13px 20px;
  }
}
.com-btn.w100-btn {
  max-width: 85% !important;
  position: relative;
  left: -65px;
  margin-top: 0px;
  padding: 15px;
}
@media (max-width: 767px) {
  .com-btn.w100-btn {
    max-width: 100% !important;
    left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .com-btn.w100-btn:hover {
    background: #144E40 !important;
  }
  .com-btn.w100-btn:hover .com-btn__text {
    font-size: 15px;
    color: #ffffff;
  }
}

.bigger-btn {
  width: 90%;
  max-width: 1100px !important;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  padding: 35px 15px;
  background: #4CB847;
}
@media (max-width: 767px) {
  .bigger-btn {
    padding: 25px 15px;
    border-radius: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bigger-btn:hover {
    background: #144E40;
  }
}
.bigger-btn .com-btn__text {
  text-align: center;
  color: #ffffff;
  position: relative;
  text-align: center;
  margin: auto;
}
@media (max-width: 767px) {
  .bigger-btn .com-btn__text {
    font-size: 18px;
    text-align: left;
    padding-right: 55px;
  }
}
.bigger-btn .com-btn__text-arrow {
  width: 40px;
  height: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.com-contact {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  padding: 80px 60px;
  background: #144E40;
}
@media (max-width: 767px) {
  .com-contact {
    width: 92.5%;
    padding: 60px 40px;
  }
}
.com-contact__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.com-contact__title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .com-contact__title {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.com-contact .com-btn__text-arrow {
  right: -3% !important;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  overflow: hidden;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100vh;
  padding: 0;
}
.loading-screen__logo {
  opacity: 0;
  transform: translateY(20px);
  animation: logoFadeIn 1s ease-out 0.5s forwards;
}
.loading-screen__logo-image {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .loading-screen__logo-image {
    width: 160px;
  }
}
.loading-screen__progress {
  position: relative;
  width: 100vw;
  height: 4px;
  background: rgba(20, 78, 64, 0.1);
  border-radius: 0;
  overflow: hidden;
  left: 0;
  right: 0;
  transform: none;
  margin: 16px 0 0 0;
}
.loading-screen__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0vw;
  background: linear-gradient(90deg, #144E40 0%, #4CB847 50%, #144E40 100%);
  border-radius: 0;
  animation: progressBar 3s ease-out forwards;
}
.loading-screen__progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  animation: progressShine 2s ease-in-out infinite;
}

.main-content {
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}
.main-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes progressBar {
  0% {
    width: 0vw;
  }
  20% {
    width: 30vw;
  }
  50% {
    width: 60vw;
  }
  80% {
    width: 90vw;
  }
  100% {
    width: 100vw;
  }
}
@keyframes progressShine {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(400px);
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .loading-screen__content {
    gap: 30px;
  }
  .loading-screen__logo-image {
    width: 140px;
  }
}
@media (max-width: 430px) {
  .loading-screen__content {
    gap: 25px;
  }
  .loading-screen__logo-image {
    width: 120px;
  }
}
.hero-section {
  width: 100%;
  height: 86vh;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 97px;
}
@media (max-width: 767px) {
  .hero-section {
    height: 85svh;
    margin-top: 73px;
  }
}
.hero-section__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/dot.svg");
  background-size: 5px 5px;
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 2;
}
.hero-section__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.hero-section__background .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-section__background .hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero-section__container {
    padding: 50% 20px;
  }
}
.hero-section__title {
  font-size: calc(178 / var(--base-vw) * 100vw);
  letter-spacing: 0.13em;
  line-height: 1;
  font-weight: 400;
  font-family: adobe-caslon-pro, serif;
  text-align: left;
}
@media (min-width: 1920px) {
  .hero-section__title {
    font-size: 159px;
  }
}
@media (max-width: 767px) {
  .hero-section__title {
    font-size: 54px;
    letter-spacing: 0.1em;
  }
}
.hero-section__subtitle {
  font-size: calc(40 / var(--base-vw) * 100vw);
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  font-family: adobe-caslon-pro, serif;
  margin-bottom: 10px;
}
@media (min-width: 1920px) {
  .hero-section__subtitle {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-section__subtitle {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
.hero-section__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  font-family: adobe-caslon-pro, serif;
}
@media (min-width: 1920px) {
  .hero-section__text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero-section__text {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

.products-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: #144E40;
  overflow: hidden;
}
@media (max-width: 767px) {
  .products-section {
    min-height: auto;
    height: auto;
  }
}
.products-section__container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  height: 100%;
}
@media (max-width: 767px) {
  .products-section__container {
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
  }
}
.products-section__content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}
@media (max-width: 767px) {
  .products-section__content {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.products-section__title {
  font-family: adobe-caslon-pro, serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
@media (min-width: 1920px) {
  .products-section__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .products-section__title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 0;
  }
}
.products-section__subtitle {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 50px 0;
  line-height: 1.4;
}
@media (min-width: 1920px) {
  .products-section__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .products-section__subtitle {
    font-size: 20px;
    text-align: left;
  }
}
.products-section__description {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 40px 0;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (min-width: 1920px) {
  .products-section__description {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .products-section__description {
    font-size: 16px;
    text-align: left;
  }
}
.products-section__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 90%;
  margin: auto;
}
@media (max-width: 767px) {
  .products-section__image {
    position: relative;
    width: 85%;
    height: 300px;
    margin: auto;
    margin-top: 30px;
  }
}
@media (max-width: 430px) {
  .products-section__image {
    height: 250px;
  }
}
.products-section__image-element {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.products-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #144E40;
  z-index: 1;
}
@media (max-width: 767px) {
  .products-section::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .products-section__container {
    position: relative;
  }
  .products-section__content {
    position: relative;
    z-index: 2;
  }
  .products-section__image {
    position: relative;
    z-index: 1;
  }
}

.products-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.products-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .news-section {
    padding: 80px 0;
  }
}
.news-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .news-section__container {
    padding: 0 30px;
  }
}
.news-section__header {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .news-section__header {
    margin-bottom: 40px;
    text-align: center;
  }
}
.news-section__title {
  font-family: adobe-caslon-pro, serif;
  font-size: 48px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .news-section__title {
    font-size: 40px;
    text-align: left;
  }
}
@media (max-width: 430px) {
  .news-section__title {
    font-size: 28px;
  }
}
.news-section__description-text {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #144E40;
  margin: 0 0 30px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .news-section__description-text {
    font-size: 20px;
    text-align: left;
  }
}
.news-section__description-subtext {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #144E40;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-section__description-subtext {
    font-size: 16px;
    text-align: left;
  }
}
.news-section__instagram {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .news-section__instagram {
    margin-bottom: 40px;
  }
}
.news-section__instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .news-section__instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.news-section__instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-section__instagram-item:hover {
    transform: scale(1.05);
  }
}
.news-section__instagram-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .news-section__instagram-item:hover::before {
    opacity: 1;
  }
}
.news-section__instagram-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.news-section__instagram-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .news-section__instagram-item:hover .news-section__instagram-overlay {
    opacity: 1;
  }
}
.news-section__instagram-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #afafaf;
  font-size: 16px;
}

.instagram-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #afafaf;
}
.instagram-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(20, 78, 64, 0.1);
  border-top: 3px solid #144E40;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.instagram-loading__text {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #afafaf;
  margin: 0;
}

.instagram-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #afafaf;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.news-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-section__instagram-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-section__instagram-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.news-section__instagram-item:nth-child(1) {
  transition-delay: 0.1s;
}
.news-section__instagram-item:nth-child(2) {
  transition-delay: 0.2s;
}
.news-section__instagram-item:nth-child(3) {
  transition-delay: 0.3s;
}
.news-section__instagram-item:nth-child(4) {
  transition-delay: 0.4s;
}
.news-section__instagram-item:nth-child(5) {
  transition-delay: 0.5s;
}
.news-section__instagram-item:nth-child(6) {
  transition-delay: 0.6s;
}
.news-section__instagram-item:nth-child(7) {
  transition-delay: 0.7s;
}
.news-section__instagram-item:nth-child(8) {
  transition-delay: 0.8s;
}

.about-section {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
}
@media (max-width: 767px) {
  .about-section {
    height: auto;
    flex-direction: column;
    padding: 0 10px 80px 10px;
  }
}
.about-section__container {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .about-section__container {
    flex-direction: column;
    gap: 10px;
  }
}
.about-section__company, .about-section__recruit {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-section__company, .about-section__recruit {
    width: 100%;
    height: 55vh;
    border-radius: 20px;
    overflow: hidden;
  }
}
.about-section__company-background, .about-section__recruit-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-section__company-background::before, .about-section__recruit-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.about-section__company-image, .about-section__recruit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about-section__company-content, .about-section__recruit-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 60px 40px;
  color: #ffffff;
  max-width: 550px;
  margin: auto;
}
@media (max-width: 767px) {
  .about-section__company-content, .about-section__recruit-content {
    padding: 40px 30px;
  }
}
@media (max-width: 430px) {
  .about-section__company-content, .about-section__recruit-content {
    padding: 30px 20px;
  }
}
.about-section__company-title, .about-section__recruit-title {
  font-family: adobe-caslon-pro, serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.2;
  margin-right: auto;
}
@media (min-width: 1920px) {
  .about-section__company-title, .about-section__recruit-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .about-section__company-title, .about-section__recruit-title {
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 40px;
  }
}
.about-section__company-subtitle, .about-section__recruit-subtitle {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.4;
  margin-right: auto;
}
@media (min-width: 1920px) {
  .about-section__company-subtitle, .about-section__recruit-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .about-section__company-subtitle, .about-section__recruit-subtitle {
    font-size: 20px;
  }
}
.about-section__company-description, .about-section__recruit-description {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (min-width: 1920px) {
  .about-section__company-description, .about-section__recruit-description {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-section__company-description, .about-section__recruit-description {
    font-size: 15px;
    margin-bottom: 0px;
  }
}
.about-section .com-btn {
  align-self: flex-start;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .about-section .com-btn {
    margin-top: 15px;
  }
}
.about-section .com-btn.company-btn {
  border-color: #ffffff;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .about-section .com-btn.company-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
  .about-section .com-btn.company-btn:hover .com-btn__text-arrow {
    mix-blend-mode: difference;
    transform: translateX(15px);
  }
}
.about-section .com-btn.recruit-btn {
  border-color: #ffffff;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .about-section .com-btn.recruit-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
  .about-section .com-btn.recruit-btn:hover .com-btn__text-arrow {
    mix-blend-mode: difference;
    transform: translateX(15px);
  }
}

.about-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #144E40;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 80px 0;
  }
}
.contact-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0px;
}
@media (max-width: 767px) {
  .contact-section__container {
    flex-direction: column;
    gap: 10px;
    padding: 0 30px;
  }
}
.contact-section__info {
  width: 40%;
  flex: 1;
  color: #ffffff;
}
@media (max-width: 767px) {
  .contact-section__info {
    width: 100%;
  }
}
.contact-section__title {
  font-family: adobe-caslon-pro, serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (min-width: 1920px) {
  .contact-section__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .contact-section__title {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.contact-section__subtitle {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 40px 0;
  line-height: 1.4;
}
@media (min-width: 1920px) {
  .contact-section__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section__subtitle {
    font-size: 20px;
  }
}
.contact-section__description {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 40px 0;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (min-width: 1920px) {
  .contact-section__description {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contact-section__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.contact-section__sns {
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .contact-section__sns {
    width: 100%;
    justify-content: center;
  }
}
.contact-section__sns-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 40px 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media (max-width: 767px) {
  .contact-section__sns-card {
    padding: 50px 0;
    border-radius: 20px;
  }
}
.contact-section__sns-title {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #343a40;
  margin: 0 0 30px 0;
  text-align: center;
  padding-bottom: 50px;
}
.contact-section__sns-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 75px;
  position: relative;
}
.contact-section__sns-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contact-section__sns-item:last-child {
    margin-top: 100px !important;
  }
}
@media (max-width: 767px) {
  .contact-section__sns-item {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }
}
.contact-section__sns-logo {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -60px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contact-section__sns-logo {
    display: block;
    top: -65px;
    position: absolute;
    left: 30px;
  }
}
.contact-section__sns-logo-image {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact-section__sns-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .contact-section__sns-content {
    display: contents;
  }
}
.contact-section__sns-account {
  margin: 0;
  width: 180px;
  margin-top: -30px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-section__sns-account {
    width: 150px;
    margin-top: 0;
  }
}
.contact-section__sns-account img {
  width: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  margin-top: -52px;
}
.contact-section__sns-qr {
  flex-shrink: 0;
  width: 20%;
  height: 140px;
  position: absolute;
  right: -10px;
  top: -48px;
}
@media (max-width: 767px) {
  .contact-section__sns-qr {
    display: none;
  }
}
.contact-section__sns-qr-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}
.contact-section .com-btn {
  text-decoration: none;
  display: inline-block;
}
.contact-section .com-btn:not(.dark-btn) {
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 767px) {
  .contact-section .com-btn:not(.dark-btn) {
    margin-top: 25px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-section .com-btn:not(.dark-btn):hover {
    background-color: #ffffff;
    color: #144E40;
    border-color: #ffffff;
  }
  .contact-section .com-btn:not(.dark-btn):hover .com-btn__text-arrow {
    mix-blend-mode: difference;
    transform: translateX(15px);
  }
}
.contact-section .com-btn.dark-btn {
  border: 1px solid #343a40;
  color: #343a40;
  background: #ffffff;
  max-width: 200px;
}
@media (max-width: 767px) {
  .contact-section .com-btn.dark-btn {
    max-width: 85% !important;
    margin: auto;
  }
}
.contact-section .com-btn.dark-btn .com-btn__text {
  font-size: 15px;
  text-align: left !important;
}
@media (hover: hover) and (pointer: fine) {
  .contact-section .com-btn.dark-btn:hover {
    background-color: #F2F2F2;
    color: #343a40;
    border-color: #343a40;
  }
  .contact-section .com-btn.dark-btn:hover .com-btn__text-arrow {
    transform: translateX(15px);
  }
}

.contact-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .contact-section .com-btn__text {
    text-align: center;
  }
}

.story-introduction {
  width: 100%;
  margin: 0 auto;
}
.story-introduction__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0px;
}
@media (max-width: 767px) {
  .story-introduction__container {
    padding: 60px 0px;
  }
}
.story-introduction__title {
  font-size: 16px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .story-introduction__title {
    font-size: 16px;
  }
}

.story-message {
  width: 100%;
  position: relative;
  background: #ffffff;
}
.story-message__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-image: url("../images/story-message-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .story-message__background {
    width: 95%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 20px;
  }
}
.story-message__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 5vw 150px 0px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  .story-message__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
}
.story-message__title {
  font-size: 50px;
  color: #ffffff;
  line-height: 1;
  font-family: adobe-caslon-pro, serif;
}
@media (max-width: 767px) {
  .story-message__title {
    font-size: 40px;
  }
}
.story-message__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .story-message__subtitle {
    font-size: 16px;
  }
}
.story-message__name {
  font-size: 20px;
  font-weight: 100;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .story-message__name {
    font-size: 20px;
  }
}
.story-message__content {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: #ffffff;
}
@media (max-width: 767px) {
  .story-message__content {
    font-size: 16px;
  }
}
.story-message__content p {
  margin-bottom: 20px;
}
.story-message__content p:last-child {
  margin-bottom: 0;
}
.story-message__left-column {
  display: flex;
  flex-direction: column;
}
.story-message__right-column {
  display: flex;
  flex-direction: column;
}

.story-business {
  width: 100%;
  position: relative;
  background: #ffffff;
  margin-top: 120px;
}
.story-business__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-image: url("../images/story-business-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  margin-left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .story-business__background {
    display: none;
  }
}
.story-business__container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 0px 150px 0px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.story-business__title {
  font-size: 50px;
  color: #144E40;
  line-height: 1;
  font-family: adobe-caslon-pro, serif;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .story-business__title {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.story-business__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .story-business__subtitle {
    font-size: 20px;
  }
}
.story-business__content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #343a40;
}
@media (max-width: 767px) {
  .story-business__content {
    font-size: 16px;
    padding-top: 30px;
  }
}
.story-business__content p {
  margin-bottom: 20px;
}
.story-business__content p:last-child {
  margin-bottom: 0;
}
.story-business__left-column {
  display: flex;
  flex-direction: column;
}
.story-business__right-column {
  display: none;
}
@media (max-width: 767px) {
  .story-business__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
}

.story-mission {
  width: 100%;
  position: relative;
  background: #ffffff;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .story-mission {
    margin-top: 0px;
  }
}
.story-mission__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-image: url("../images/story-mission-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .story-mission__background {
    display: none;
  }
}
.story-mission__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 0px 150px 0px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.story-mission__title {
  font-size: 50px;
  color: #144E40;
  line-height: 1;
  font-family: adobe-caslon-pro, serif;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .story-mission__title {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.story-mission__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .story-mission__subtitle {
    font-size: 20px;
  }
}
.story-mission__content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #343a40;
}
@media (max-width: 767px) {
  .story-mission__content {
    font-size: 16px;
    padding-top: 30px;
  }
}
.story-mission__content p {
  margin-bottom: 20px;
}
.story-mission__content p:last-child {
  margin-bottom: 0;
}
.story-mission__left-column {
  display: flex;
  flex-direction: column;
}
.story-mission__right-column {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .story-mission__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 10px;
  }
}

.products-list {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}
.products-list__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
}
@media (max-width: 767px) {
  .products-list__container {
    width: 85%;
  }
}
.products-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
.products-list__item {
  text-align: center;
  transition: transform 0.3s ease;
}
.products-list__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  background: #F2F2F2;
}
.products-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .products-list__image:hover img {
    transform: scale(1.05);
  }
}
.products-list__info {
  padding: 0;
}
.products-list__name-ja {
  font-size: 20px;
  font-weight: 700;
  color: #144E40;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
}
.products-list__name-en {
  font-size: 14px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.3;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.02em;
  text-align: left;
}
@media (max-width: 767px) {
  .products-list {
    padding: 60px 0;
  }
  .products-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .products-list__image {
    margin-bottom: 15px;
  }
  .products-list__name-ja {
    font-size: 20px;
  }
  .products-list__name-en {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .products-list__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.company-introduction {
  padding: 0;
}
.company-introduction__container {
  padding: 100px 0px 70px 0px;
}

.company-title {
  width: 100%;
  padding: 0;
  background: #ffffff;
}
.company-title__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
}
.company-title .company-introduction__title {
  font-size: 20px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
}
.company-title .company-introduction__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.8;
}
.company-title__title {
  font-size: 50px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .company-title__title {
    font-size: 30px;
  }
}
.company-title__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .company-title__subtitle {
    font-size: 20px;
  }
}

.company-profile {
  width: 100%;
  padding: 30px 0 100px 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .company-profile {
    padding: 0px 0 60px 0;
  }
}
.company-profile__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
}
.company-profile__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.company-profile__item {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #144E40;
  align-items: start;
}
.company-profile__item:last-child {
  border-bottom: none;
}
.company-profile__label-ja {
  font-size: 16px;
  font-weight: 700;
  color: #144E40;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .company-profile__label-ja {
    font-size: 16px;
  }
}
.company-profile__label-ja-en {
  font-size: 12px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.4;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.02em;
  display: block;
}
@media (max-width: 767px) {
  .company-profile__label-ja-en {
    font-size: 12px;
  }
}
.company-profile__label-jp {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.8;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .company-profile__label-jp {
    font-size: 16px;
  }
}
.company-profile__value {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.6;
  text-align: left;
  font-family: adobe-caslon-pro, serif;
}
@media (max-width: 767px) {
  .company-profile__value {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .company-profile__container {
    padding: 0 20px;
  }
  .company-profile__item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 40px 0;
  }
  .company-profile__label-ja {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .company-profile__label-en {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .company-profile__value {
    font-size: 14px;
  }
}
@media (max-width: 430px) {
  .company-profile__item {
    padding: 20px 0;
  }
  .company-profile__label-ja {
    font-size: 15px;
  }
  .company-profile__label-en {
    font-size: 13px;
  }
  .company-profile__value {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .job-introduction__container {
    padding: 60px 0px 0px 0px !important;
  }
}

.job-message {
  width: 100%;
  padding: 100px 0 150px 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .job-message {
    padding: 60px 0 60px 0;
  }
}
.job-message__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.job-message__left-column {
  display: flex;
  flex-direction: column;
}
.job-message__right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8vw;
}
@media (max-width: 767px) {
  .job-message__right-column {
    padding-top: 15px;
  }
}
.job-message__title {
  font-size: 50px;
  color: #144E40;
  line-height: 1.3;
  font-family: adobe-caslon-pro, serif;
}
.job-message__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.8;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.job-message__heading {
  font-size: 46px;
  font-weight: 700;
  color: #144E40;
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.job-message__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #343a40;
}
.job-message__content p {
  margin-bottom: 20px;
}
.job-message__content p:last-child {
  margin-bottom: 0;
}
.job-message__image-top, .job-message__image-bottom {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F2F2F2;
}
.job-message__image-top img, .job-message__image-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .job-message__image-top:hover img, .job-message__image-bottom:hover img {
    transform: scale(1.05);
  }
}
@media (max-width: 767px) {
  .job-message {
    padding: 60px 0;
  }
  .job-message__container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }
  .job-message__title {
    font-size: 40px;
  }
  .job-message__subtitle {
    font-size: 18px;
  }
  .job-message__heading {
    font-size: 20px;
  }
  .job-message__content {
    font-size: 14px;
  }
  .job-message__right-column {
    gap: 20px;
  }
}
@media (max-width: 430px) {
  .job-message__container {
    gap: 40px;
  }
  .job-message__title {
    font-size: 35px;
  }
  .job-message__subtitle {
    font-size: 16px;
  }
  .job-message__heading {
    font-size: 31px;
  }
  .job-message__content {
    font-size: 16px;
  }
}

.job-container {
  width: 100%;
  padding: 100px 0 150px 0;
  background: #F8F8F8;
  position: relative;
  margin-bottom: 200px;
}
.job-container .company-title {
  background: none;
}
.job-container .company-profile {
  background: none;
}
.job-container .com-contact {
  bottom: -150px;
  position: absolute;
  right: 0;
  z-index: 10;
}

.contact-wrap {
  background: #F8F8F8;
  padding-bottom: 100px;
}

.contact-introduction {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 80px 0;
}
@media (max-width: 767px) {
  .contact-introduction {
    padding: 60px 0 40px 0;
  }
}
.contact-introduction__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.contact-introduction__title {
  font-size: 18px;
  font-weight: 400;
  color: #343a40;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact-introduction__title {
    font-size: 16px;
  }
}

.contact-sns {
  width: 100%;
  padding: 0 0 80px 0;
}
@media (max-width: 767px) {
  .contact-sns {
    padding: 0 0 40px 0;
  }
}
.contact-sns__container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .contact-sns__container {
    padding: 30px;
  }
}
.contact-sns__title {
  font-size: 20px;
  font-weight: 600;
  color: #144E40;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-sns__title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.contact-sns__grid {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
@media (max-width: 767px) {
  .contact-sns__grid {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
}
.contact-sns__item {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .contact-sns__item {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 0;
    min-width: auto;
  }
}
.contact-sns__item .com-btn {
  margin-top: 0px;
}
.contact-sns__item .com-btn .com-btn__text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact-sns__item .com-btn {
    text-align: left;
  }
}
.contact-sns__left-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 1;
}
@media (max-width: 767px) {
  .contact-sns__left-section {
    width: 100%;
  }
}
.contact-sns__header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-sns__logo {
  flex-shrink: 0;
}
.contact-sns__logo-image {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .contact-sns__logo-image {
    width: 40px;
    height: 40px;
  }
}
.contact-sns__account {
  margin: 0;
}
.contact-sns__account-logo {
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact-sns__qr {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-sns__qr {
    display: none;
  }
}
.contact-sns__qr-image {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact-form {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 40px;
  padding: 40px;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px 20px;
  }
}
.contact-form__header {
  width: 100%;
  margin-bottom: 30px;
}
.contact-form__title {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #144E40;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form__title {
    font-size: 18px;
  }
}
.contact-form__container {
  width: 100%;
}
.contact-form__flex {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-form__flex {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.contact-form__left {
  min-width: 150px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-form__left {
    min-width: auto;
  }
}
.contact-form__left p {
  font-size: 16px;
  font-weight: 600;
  color: #343a40;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-form__left p {
    font-size: 14px;
  }
}
.contact-form__left p sup {
  color: #4CB847;
  font-size: 0.8em;
  margin-left: 2px;
}
.contact-form__right {
  flex: 1;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .contact-form__right {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}
.contact-form__input {
  flex: 1;
}
.contact-form__input.w50 {
  flex: 1;
}
.contact-form__input.w100 {
  flex: 1;
}
.contact-form__input p {
  margin: 0;
}
.contact-form__input .wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 16px;
  color: #343a40;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact-form__input .wpcf7-form-control {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.contact-form__input .wpcf7-form-control:focus {
  outline: none;
  border-color: #4CB847;
  background: #ffffff;
}
.contact-form__input .wpcf7-form-control::-moz-placeholder {
  color: #999;
}
.contact-form__input .wpcf7-form-control::placeholder {
  color: #999;
}
.contact-form__input .wpcf7-form-control.wpcf7-not-valid {
  border-color: #e74c3c;
}
.contact-form__input .wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__input .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
@media (max-width: 767px) {
  .contact-form__input .wpcf7-not-valid-tip {
    font-size: 10px;
  }
}
.contact-form__input input,
.contact-form__input textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 16px;
  color: #343a40;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact-form__input input,
  .contact-form__input textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.contact-form__input input:focus,
.contact-form__input textarea:focus {
  outline: none;
  border-color: #4CB847;
  background: #ffffff;
}
.contact-form__input input::-moz-placeholder, .contact-form__input textarea::-moz-placeholder {
  color: #999;
}
.contact-form__input input::placeholder,
.contact-form__input textarea::placeholder {
  color: #999;
}
.contact-form__input textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}
.contact-form__checkbox p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-form__checkbox .wpcf7-form-control {
  margin-top: 3px;
  transform: scale(1.2);
}
.contact-form__checkbox .wpcf7-list-item-label {
  font-size: 14px;
  color: #343a40;
  line-height: 2;
  cursor: pointer;
  position: relative;
  top: 3px;
  padding-left: 5px;
}
@media (max-width: 767px) {
  .contact-form__checkbox .wpcf7-list-item-label {
    font-size: 12px;
  }
}
.contact-form__checkbox input[type=checkbox] {
  margin-top: 3px;
  transform: scale(1.2);
}
.contact-form__checkbox label {
  font-size: 14px;
  color: #343a40;
  line-height: 1.5;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact-form__checkbox label {
    font-size: 12px;
  }
}
.contact-form__button {
  width: 100%;
  margin-top: 30px;
}
.contact-form__button p {
  margin: 0;
  display: block;
}
.contact-form__button .wpcf7-submit {
  width: 100%;
  max-width: 542px;
  background: #4CB847;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
@media (max-width: 767px) {
  .contact-form__button .wpcf7-submit {
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__button .wpcf7-submit:hover:not(:disabled) {
    background: #144E40;
  }
  .contact-form__button .wpcf7-submit:hover:not(:disabled)::after {
    transform: translateX(15px);
  }
}
.contact-form__button .wpcf7-submit:disabled {
  background: #ccc;
  color: #999;
  cursor: not-allowed;
}
.contact-form__button .wpcf7-submit:disabled::after {
  opacity: 0.5;
}
.contact-form__button .wpcf7-submit::after {
  content: "";
  width: 50px;
  height: 8px;
  background-image: url("../images/arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.contact-form__button .wpcf7-submit.contact-form__text {
  position: relative;
  top: 3px;
  transition: all 0.3s ease;
  text-align: center;
}
.contact-form__button .wpcf7-submit.contact-form__text::after {
  content: "";
  width: 50px;
  height: 8px;
  background-image: url("../images/arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__button .wpcf7-submit.contact-form__text:hover::after {
    transform: translateX(15px);
  }
}
.contact-form__button button {
  width: 100%;
  max-width: 542px;
  background: #4CB847;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
@media (max-width: 767px) {
  .contact-form__button button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__button button:hover:not(:disabled) {
    background: #144E40;
  }
  .contact-form__button button:hover:not(:disabled) .contact-form__text-arrow {
    transform: translateX(15px);
  }
}
.contact-form__button button:disabled {
  background: #ccc;
  color: #999;
  cursor: not-allowed;
}
.contact-form__button button:disabled .contact-form__text-arrow {
  opacity: 0.5;
}
.contact-form__button button .contact-form__text {
  position: relative;
  top: 3px;
  transition: all 0.3s ease;
}
.contact-form__button button .contact-form__text-arrow {
  width: 50px;
  height: 8px;
  background-image: url("../images/arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.contact-privacy {
  width: 100%;
  margin: 30px 0;
}
.contact-privacy__container {
  width: 100%;
}
.contact-privacy__title {
  font-size: 18px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .contact-privacy__title {
    font-size: 16px;
  }
}
.contact-privacy__content {
  background: #F8F8F8;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-privacy__content {
    padding: 15px;
    max-height: 250px;
  }
}
.contact-privacy__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #343a40;
  margin: 20px 0 10px 0;
}
.contact-privacy__content h4:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .contact-privacy__content h4 {
    font-size: 14px;
  }
}
.contact-privacy__content p {
  font-size: 14px;
  line-height: 1.6;
  color: #343a40;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .contact-privacy__content p {
    font-size: 12px;
  }
}
.contact-privacy__content ul {
  margin: 10px 0 15px 20px;
}
.contact-privacy__content ul li {
  font-size: 14px;
  line-height: 1.6;
  color: #343a40;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .contact-privacy__content ul li {
    font-size: 12px;
  }
}

.error-page {
  width: 100%;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.error-page__container {
  max-width: 600px;
  text-align: center;
  padding: 120px 20px;
}
.error-page__title {
  font-size: 60px;
  color: #144E40;
  line-height: 1.2;
  font-family: adobe-caslon-pro, serif;
  letter-spacing: 0.05em;
}
.error-page__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #144E40;
  line-height: 1.6;
  margin-bottom: 40px;
}
.error-page__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #144E40;
  margin-bottom: 50px;
}
.error-page__content p {
  margin-bottom: 15px;
}
.error-page__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .error-page {
    padding: 15px;
  }
  .error-page__container {
    padding: 80px 15px;
  }
  .error-page__title {
    font-size: 45px;
    margin-bottom: 50px;
  }
  .error-page__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .error-page__content {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.not-btn {
  padding: 20px 15px;
}
@media (max-width: 767px) {
  .not-btn .com-btn__text {
    padding-right: 0 !important;
    text-align: center !important;
  }
}

[pc-only] {
  display: block !important;
}

[sp-only] {
  display: none !important;
}

@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
  [sp-only] {
    display: block !important;
  }
}
.atag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  opacity: 0;
}
/*# sourceMappingURL=main.css.map */
