@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

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

html, body {
  height: 100%;
  min-height: 100dvh;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #191919;
}

a {
  transition: opacity 0.3s ease;
  color: #191919;
}
a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.75;
}

p {
  font-weight: 700;
}

.header {
  position: relative;
}

.header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header__logo {
  width: 130px;
}

.header__logo img {
  width: 100%;
}

.hamburger__icon {
  width: 30px;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger__icon {
    position: fixed;
    top: 24px;
    right: 24px;
    transform: translateY(-50%);
  }
}

.hamburger__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #191919;
  transition: all 0.3s ease;
}

.hamburger__icon span + span {
  margin-top: 8px;
}

.hamburger__icon.active span {
  background-color: #ffffff;
}

.hamburger__icon.active span:first-child {
  transform: translateY(10px) rotate(45deg);
}

.hamburger__icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger__icon.active span:last-child {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger {
  position: fixed;
  top: 0;
  padding: 40px 24px 40px;
  right: -100%;
  width: 250px;
  height: 435px;
  background-color: #1B2951;
  z-index: 99;
  transition: right 0.3s ease-in-out;
}

.hamburger.active {
  right: 0;
}

.hamburger ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger li {
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  font-size: 14px;
}

.hamburger a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: opacity 0.2s ease;
}

.hamburger a:hover {
  opacity: 0.8;
}

.footer {
  padding-top: 20px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__top {
    width: 33%;
  }
}

.footer__logo {
  width: 180px;
  margin: 0 auto;
}
.footer__logo img {
  width: 100%;
}

.footer__address {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .footer__address {
    font-size: 16px;
  }
}

.footer__address p:nth-child(2) {
  letter-spacing: 0.05em;
}

.footer__sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.footer__snsItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.footer__snsItem img {
  width: 100%;
}

.footer__menu {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .footer__menu {
    width: 33%;
  }
}

.footer__menuItem {
  position: relative;
  width: 100%;
}
.footer__menuItem:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.footer__menuLink {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
@media screen and (min-width: 768px) {
  .footer__menuLink {
    font-size: 16px;
  }
}

body > main > footer > div > ul.footer__menu > li:nth-child(7) a {
  font-size: 16px;
}

.footer__banners {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .footer__banners {
    width: 33%;
    margin-left: 0;
  }
}

.footer__bannerItem {
  width: 100%;
  display: flex;
}

.footer__bannerLink {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bannerLink img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.footer__bannerLink img:hover {
  opacity: 0.8;
}

.footer__copyright p {
  font-size: 12px;
  padding: 16px 0;
  letter-spacing: -0.01em;
  text-align: center;
}

.l-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding-right: 100px;
    padding-left: 100px;
  }
}

.l-section {
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.kv {
  position: relative;
  width: 100%;
  height: 338px;
  background-image: url("../img/top/kv_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .kv {
    background-image: url("../img/top/kv_pc.webp");
    height: 500px;
  }
}
.kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  -webkit-clip-path: polygon(0 0, 100% 0, -34% 111%, 0 65%);
          clip-path: polygon(0 0, 100% 0, -34% 111%, 0 65%);
  z-index: 1;
}
.kv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  -webkit-clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.kv__copy {
  position: relative;
  padding-top: 85px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .kv__copy {
    font-size: 36px;
  }
}

.kv__copy span {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .kv__copy span {
    font-size: 30px;
  }
}

.kv__text {
  padding-top: 44px;
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .kv__text {
    padding-left: 100px;
    padding-top: 140px;
    margin: 0 auto;
    max-width: 1200px;
    font-size: 80px;
  }
}

.kv--service {
  position: relative;
  background-image: url("../img/service/kv_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 282px;
}
@media screen and (min-width: 768px) {
  .kv--service {
    background-image: url("../img/service/kv_sp.webp");
    height: 400px;
  }
}

.kv__text--sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .kv__text--sub {
    padding-top: 132px;
  }
}

.kv__text--subTitle {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .kv__text--subTitle {
    font-size: 40px;
  }
}

.kv__text--subTitleEn {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .kv__text--subTitleEn {
    font-size: 30px;
  }
}

.kv--recruit img {
  width: 100%;
}

.u-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 80px;
  background-color: #191919;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.25rem;
  position: relative;
}
@media screen and (min-width: 670px) {
  .u-button {
    min-width: 100%;
    font-size: 1.125rem;
    padding: 12px 40px;
  }
}
.u-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #F3962E;
  border-radius: 0 60% 60% 0;
}
.u-button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.u-button:hover::after {
  right: 20px;
}

.fade-in-up {
  will-change: opacity, transform;
}

.fade-in-down {
  will-change: opacity, transform;
}

.fade-in-left {
  will-change: opacity, transform;
}

.fade-in-right {
  will-change: opacity, transform;
}

.crop-from-left {
  position: relative;
  overflow: hidden;
}
.crop-from-left::after {
  content: "";
  width: 100%;
  height: 102%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: translateX(0);
}
.crop-from-left.is-visible::after {
  transform: translateX(100%);
}
.crop-from-left img {
  opacity: 0;
  transform: scale(1.3);
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 1.2s cubic-bezier(0.473, 0.427, 0, 0.993) 0.8s;
}
.crop-from-left.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.crop-from-right {
  position: relative;
  overflow: hidden;
}
.crop-from-right::after {
  content: "";
  width: 100%;
  height: 102%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: translateX(0);
}
.crop-from-right.is-visible::after {
  transform: translateX(-100%);
}
.crop-from-right img {
  opacity: 0;
  transform: scale(1.3);
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 1.2s cubic-bezier(0.473, 0.427, 0, 0.993) 0.8s;
}
.crop-from-right.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.crop-from-top {
  position: relative;
  overflow: hidden;
}
.crop-from-top::after {
  content: "";
  width: 100%;
  height: 102%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: translateY(0);
}
.crop-from-top.is-visible::after {
  transform: translateY(-100%);
}
.crop-from-top img {
  opacity: 0;
  transform: scale(1.3);
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 1.2s cubic-bezier(0.473, 0.427, 0, 0.993) 0.8s;
}
.crop-from-top.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.crop-from-bottom {
  position: relative;
  overflow: hidden;
}
.crop-from-bottom::after {
  content: "";
  width: 100%;
  height: 102%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: translateY(0);
}
.crop-from-bottom.is-visible::after {
  transform: translateY(100%);
}
.crop-from-bottom img {
  opacity: 0;
  transform: scale(1.3);
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 1.2s cubic-bezier(0.473, 0.427, 0, 0.993) 0.8s;
}
.crop-from-bottom.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade--up {
  transform: translateY(30px);
}
.fade--down {
  transform: translateY(-30px);
}
.fade--left {
  transform: translateX(-30px);
}
.fade--right {
  transform: translateX(30px);
}

@media print {
  .fade,
  .fade-in-up,
  .fade-in-down,
  .fade-in-left,
  .fade-in-right,
  .crop-from-left,
  .crop-from-right,
  .crop-from-top,
  .crop-from-bottom {
    opacity: 1 !important;
    transform: none !important;
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
}
.section__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 32px;
  }
}

.section__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1facdd;
  margin-top: 10px;
}

.u-font-bold {
  font-weight: bold;
}

.splide__arrow {
  width: 20px !important;
  height: 20px !important;
  background: #1B2951 !important;
}
@media screen and (min-width: 768px) {
  .splide__arrow {
    width: 40px !important;
    height: 40px !important;
  }
}

.splide__arrow svg {
  fill: white !important;
  width: 12px !important;
  height: 16px !important;
}

.splide__arrow--prev {
  left: -10px;
}

.splide__arrow--next {
  right: -10px;
}

@media screen and (min-width: 768px) {
  .splide__arrow svg {
    width: 20px;
    height: 20px;
  }
  .splide__arrow--prev {
    left: -30px;
  }
  .splide__arrow--next {
    right: -30px;
  }
}
.content__heading {
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  color: #1B2951;
  margin-bottom: 16px;
}
.content__heading span {
  color: #1facdd;
}
@media screen and (min-width: 768px) {
  .content__heading {
    font-size: 42px;
  }
}

.content__headingJa {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #1B2951;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .content__headingJa {
    font-size: 14px;
  }
}

.content__headingJa span {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #1B2951;
}

.content__headingBox--reverse .content__heading {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .content__headingBox--reverse .content__heading {
    text-align: left;
  }
}

.content__headingBox--reverse .content__headingJa {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .content__headingBox--reverse .content__headingJa {
    justify-content: flex-start;
  }
}

.pageHead {
  position: relative;
  padding: 40px 0;
  margin-top: 41px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pageHead {
    padding: 80px 0;
  }
}

.pageHead__title {
  font-size: 30px;
}

.pageHead__title--en {
  position: relative;
  width: 100%;
}
.pageHead__title--en img {
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.pageHead__title--en::after {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 103px;
  height: 1px;
  background-color: #1B2951;
}

.pageNav__inner {
  max-width: 600px;
  margin: 0 auto 10px auto;
}
@media screen and (min-width: 768px) {
  .pageNav__inner {
    max-width: 800px;
  }
}

.pageNav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-left: 1px solid #1B2951;
}
@media screen and (min-width: 768px) {
  .pageNav__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.pageNav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fff;
  padding: 6px 0;
  border-right: 1px solid #1B2951;
  border-bottom: 1px solid #1B2951;
  transition: background-color 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pageNav__item:nth-of-type(2) {
    border-bottom: none;
  }
}
.pageNav__item:nth-child(n+3) {
  border-bottom: none;
}
.pageNav__item:hover {
  background-color: #f8f9fa;
}
.pageNav__item--active {
  background-color: #1B2951;
  color: #fff;
}
.pageNav__item--active:hover {
  background-color: #0e162b;
}

.pageNav__text {
  font-size: 18px;
  font-weight: 500;
}

.pageNav__item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.8;
}

.news {
  padding-bottom: 12px;
  background: linear-gradient(to bottom, #eaf6fd 0%, #eaf6fd 90%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .news {
    padding-bottom: 80px;
  }
}

.news__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed #8d8d8d;
  padding: 14px 0;
}

.news__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news__head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news__date {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.news__category {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1facdd;
  border: 1px solid #1facdd;
  padding: 2px 8px;
}

.news__text {
  font-size: 14px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 20px;
  }
}

.news__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 11px;
}
.news__more a {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.news__more a img {
  transition: transform 0.3s ease;
}
.news__more a:hover img {
  transform: translateX(4px);
}

.recruit__img {
  position: relative;
  width: 100%;
  height: 191px;
  background-image: url("../img/top/recruit_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .recruit__img {
    height: 400px;
    background-image: url("../img/top/recruit_pc.webp");
  }
}

.recruit__imgInner {
  padding: 2px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit__imgInner {
    padding: 10px 100px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.recruit__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: #1facdd;
  text-shadow: 0 8px 16px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .recruit__title {
    font-size: 64px;
  }
}

.recruit__imgText {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: #1facdd;
  text-shadow: 0 8px 16px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .recruit__imgText {
    font-size: 22px;
  }
}

.recruit__button {
  position: absolute;
  bottom: 0;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .recruit__button {
    position: inherit;
    max-width: 1200px;
    margin: 260px auto 0 auto;
    padding: 0 100px;
  }
}

.recruit__button-link {
  display: block;
  width: 130px;
}
@media screen and (min-width: 768px) {
  .recruit__button-link {
    width: 200px;
  }
}
.recruit__button-link img {
  width: 100%;
}

.about {
  position: relative;
}

.topContent__headingBox {
  margin-bottom: 20px;
}

.topContent__heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: #1B2951;
  margin-bottom: 16px;
}
.topContent__heading span {
  color: #1facdd;
}
@media screen and (min-width: 768px) {
  .topContent__heading {
    font-size: 42px;
  }
}

.topContent__headingJa {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #1B2951;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .topContent__headingJa {
    font-size: 14px;
  }
}

.topContent__headingJa span {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #1B2951;
}

.topContent__copy {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
}

.topContent__copyText {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #1facdd;
}
.topContent__copyText span {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .topContent__copyText span {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .topContent__copyText {
    font-size: 22px;
  }
}

.topContent__copyText::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-image: url("../img/top/underLine_about_01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.topContent__text {
  font-size: 14px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .topContent__text {
    font-size: 18px;
  }
}

.topContent__button {
  position: absolute;
  bottom: 28px;
  right: 38px;
}
@media screen and (min-width: 768px) {
  .topContent__button {
    bottom: 40px;
    right: 100px;
  }
}

.topContent__buttonLink {
  display: block;
  width: 22px;
}
@media screen and (min-width: 768px) {
  .topContent__buttonLink {
    width: 40px;
  }
}

.solution {
  background-image: url("../img/top/bg_solution_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .solution {
    background-image: url("../img/top/bg_solution.webp");
  }
}

.solution > div > h2 {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .solution > div > h2 {
    text-align: left;
  }
}

.solution > div > p.topContent__headingJa {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .solution > div > p.topContent__headingJa {
    justify-content: flex-start;
  }
}

.solution__list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution__list {
    max-width: 500px;
  }
}

.solution__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.solution__item--parent {
  margin-left: 0;
}
.solution__item--parent::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 3px;
  width: 1px;
  height: 70px;
  background-color: #666;
  transform: translateY(50%);
}
.solution__item--child {
  margin-left: 60px;
}
.solution__item--child::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 20px;
  width: 23px;
  height: 1px;
  background-color: #666;
  transform: translateY(-50%);
}

.solution__item--parent .solution__text {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .solution__item--parent .solution__text {
    font-size: 24px;
  }
}

.solution__text {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: #1B2951;
}
@media screen and (min-width: 768px) {
  .solution__text {
    font-size: 20px;
  }
}

.solution__text span {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 115%;
  height: 10px;
  background-image: url("../img/top/solution_line1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.solution__button {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .solution__button {
    bottom: 40px;
    right: 100px;
  }
}

.solution__buttonLink {
  display: block;
  width: 22px;
}
@media screen and (min-width: 768px) {
  .solution__buttonLink {
    width: 40px;
  }
}

.works__item {
  width: 85%;
  margin: 0 auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.works__itemHead {
  height: 90px;
  background-color: #1B2951;
  padding: 5px;
  transition: all 0.3s ease;
}

.works__itemHeadInner {
  position: relative;
  height: 100%;
  border: solid 1px #ffffff;
}

.works__itemHeadText {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  height: 100%;
  padding-top: 4px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.works__itemHeadText span {
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
}

.works__itemHeadButton {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.works__itemHeadButton img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.works__itemHeadButton.active img {
  transform: rotate(180deg);
}

.works__itemContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.works__itemContent.active {
  max-height: 1200px;
  padding: 4px 4px 20px 4px;
}

.works__slider {
  margin-top: 20px;
}
.works__slider .splide__track {
  padding: 10px 0;
}
.works__slider .splide__slide {
  padding: 0 5px;
}

.works__itemContentImage {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.works__itemContentImage img {
  width: 49%;
}

.works__itemContentText {
  display: flex;
  flex-direction: column;
}

.works__itemContentTextItem {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works__itemContentTextItem {
    font-size: 16px;
  }
}

.works__itemContentTextItem dd {
  margin-left: 10px;
}

.innovation > div > h2 {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .innovation > div > h2 {
    text-align: left;
  }
}

.innovation > div > p.topContent__headingJa {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .innovation > div > p.topContent__headingJa {
    justify-content: flex-start;
  }
}

.innovation__item {
  position: relative;
  display: flex;
  height: 166px;
}
@media screen and (min-width: 768px) {
  .innovation__item {
    height: 400px;
  }
}

.innovation__imgBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 57%;
}
.innovation__imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovation__textBox {
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  background-image: url("../img/top/innovation_bg1.png");
  background-size: cover;
  text-align: center;
  padding: 20px 0 20px 30px;
}
@media screen and (min-width: 768px) {
  .innovation__textBox {
    padding: 95px 0 20px 0px;
  }
}

.innovation__copy {
  font-size: 13px;
  font-weight: 700;
  color: #231815;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .innovation__copy {
    font-size: 20px;
  }
}

.innovation__heading, .innovation__heading--2 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .innovation__heading, .innovation__heading--2 {
    font-size: 28px;
  }
}

.innovation__link {
  margin-top: 6px;
}

.innovation__linkText {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background-color: #1B2951;
  padding: 3px 10px;
  border-radius: 50px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .innovation__linkText {
    font-size: 20px;
  }
}

.innovation__item:nth-child(2) .innovation__imgBox {
  left: auto;
  right: 0;
}
.innovation__item:nth-child(2) .innovation__textBox {
  left: 0;
  right: auto;
  background-image: url("../img/top/innovation_bg2.png");
  background-size: cover;
  padding: 20px 0 20px 0px;
}
@media screen and (min-width: 768px) {
  .innovation__item:nth-child(2) .innovation__textBox {
    padding: 95px 0 20px 0px;
  }
}

.innovation__heading--2 {
  line-height: 1.3;
  border-bottom: solid 1px #1B2951;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.link__container {
  position: relative;
  display: block;
  background-image: url("../img/top/link_company.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .link__container {
    height: 400px;
  }
}

.link__textBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background-color: #2e95c7;
  opacity: 0.8;
  color: #ffffff;
  padding: 60px 10px 40px 10px;
}
@media screen and (min-width: 768px) {
  .link__textBox {
    padding: 60px 20px 40px 20px;
  }
}

.link__container:nth-child(2) {
  background-image: url("../img/top/link_csr.jpg");
  background-position-y: 0px;
}
.link__container:nth-child(2) .link__textBox {
  left: auto;
  right: 0;
}

.link__text--en {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  margin-bottom: 10px;
}
.link__text--en::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #ffffff;
}
.link__text--en::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 92px;
  width: 13px;
  height: 1px;
  background-color: #ffffff;
  transform: rotate(52deg);
  transform-origin: left center;
}

.link__text--enCsr::before {
  left: 112px;
}

.link__text--enCsr::after {
  width: 120px;
}

.link__text--ja {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* 外観写真 */
.companyPhoto__inner {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .companyPhoto__inner {
    padding: 0;
  }
}

.companyPhoto__img {
  height: 280px;
  background-image: url(../img/company/company_exterior.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .companyPhoto__img {
    height: 400px;
  }
}

/* 挨拶 */
.message {
  background: linear-gradient(to bottom, #eaf6fd 0%, #eaf6fd 80%, transparent 100%);
}

@media screen and (min-width: 1024px) {
  .message__inner {
    display: flex;
    gap: 24px;
  }
}

.messege__img {
  width: 70%;
  margin: 16px auto;
}
.messege__img img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .messege__img {
    width: 40%;
  }
}

@media screen and (min-width: 1024px) {
  .message__textBox {
    width: 60%;
  }
}

.message__text {
  font-size: 12.5px;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 16px;
  }
}

.message__signature {
  font-size: 14px;
  text-align: left;
  margin-top: 12px;
  letter-spacing: 0.03em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.message__signature span {
  font-size: 18px;
  margin-left: 8px;
}

/* Media */
.media__list {
  padding: 16px 0 16px 8px;
}
@media screen and (min-width: 768px) {
  .media__list {
    padding: 24px 0 24px 8px;
  }
}

.media__item {
  list-style: "・";
  font-size: 12px;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .media__item {
    font-size: 16px;
  }
}

/* Profile */
.profile__list {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 14px;
}

.profile__term {
  background-color: #eaf6fd;
  padding: 7px 8px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .profile__term {
    padding: 16px 20px;
    font-size: 16px;
  }
}
.profile__term:last-of-type {
  border-bottom: none;
}

.profile__desc {
  padding: 7px 8px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  font-weight: 700;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .profile__desc {
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* History */
.history__content {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .history__content {
    margin-top: 32px;
  }
}

.history__timeline {
  position: relative;
  padding-left: 60px;
}
.history__timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 6px;
  bottom: 0;
  width: 2px;
  height: 900px;
  background-color: #0a8e9a;
}
@media screen and (min-width: 393px) {
  .history__timeline::before {
    height: 880px;
  }
}
@media screen and (min-width: 405px) {
  .history__timeline::before {
    height: 820px;
  }
}
@media screen and (min-width: 420px) {
  .history__timeline::before {
    height: 780px;
  }
}
@media screen and (min-width: 427px) {
  .history__timeline::before {
    height: 720px;
  }
}
@media screen and (min-width: 618px) {
  .history__timeline::before {
    height: 705px;
  }
}
@media screen and (min-width: 768px) {
  .history__timeline::before {
    height: 1270px;
    left: 36px;
    top: 14px;
  }
}
@media screen and (min-width: 807px) {
  .history__timeline::before {
    height: 1010px;
  }
}
@media screen and (min-width: 1070px) {
  .history__timeline::before {
    height: 980px;
  }
}
@media screen and (min-width: 768px) {
  .history__timeline {
    padding-left: 80px;
  }
}

.history__item {
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 19px;
}
.history__item:last-child {
  margin-bottom: 0;
}
.history__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 4px;
  width: 15px;
  height: 15px;
  background-color: #0a8e9a;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .history__item::before {
    left: -50px;
    top: 10px;
    width: 16px;
    height: 16px;
  }
}

.history__year {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.03em;
  color: #0a8e9a;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
@media screen and (min-width: 768px) {
  .history__year {
    font-size: 28px;
    min-width: 80px;
  }
}

.history__event {
  font-size: 13px;
  line-height: 1.5;
  color: #1B2951;
  letter-spacing: 0.02em;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .history__event {
    font-size: 16px;
    line-height: 1.9;
  }
}

.access {
  background-color: #eaf6fd;
}

.access__infoText {
  margin-top: 16px;
  margin-bottom: 8px;
}

.access__map {
  width: 100%;
  aspect-ratio: 16/9;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.servicePageTop {
  background-color: #eaf6fd;
  padding-bottom: 24px;
}

.serviceDescription {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 2;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .serviceDescription {
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.serviceConstraction {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 24px 12px;
}
@media screen and (min-width: 768px) {
  .serviceConstraction {
    padding: 40px 24px;
  }
}

.serviceConstraction__title--ja {
  position: relative;
  font-size: 26px;
  color: #1B2951;
  padding-left: 20px;
}
.serviceConstraction__title--ja::before {
  position: absolute;
  top: 11px;
  left: 9px;
  content: "";
  display: block;
  width: 3px;
  height: 65%;
  background-color: #1B2951;
}

.serviceConstraction__title--sub {
  font-size: 12px;
  letter-spacing: -0.01em;
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__title--sub {
    font-size: 18px;
    padding-top: 20px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  .serviceConstruction__slider {
    max-width: 600px;
    margin: 0 auto;
  }
}

.service__sliderItemImg img {
  margin: 0 auto;
}

.serviceConstraction__text {
  padding-top: 16px;
  padding-bottom: 105px;
  font-size: 13px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__text {
    padding-top: 24px;
    padding-bottom: 120px;
    font-size: 16px;
  }
}

.serviceConstraction__bgLogo {
  position: absolute;
  z-index: -1;
  top: 560px;
  left: -10px;
}

.serviceConstraction__content {
  position: relative;
  padding: 56px 10px 24px 10px;
  border: 1px solid #5984b5;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__content {
    padding: 76px 24px 40px 24px;
  }
}

.serviceConstraction__contentTitle {
  position: absolute;
  font-size: 17px;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  background-color: #5984b5;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentTitle {
    font-size: 24px;
  }
}

.serviceConstraction__contentList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentList {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .serviceConstraction__contentItem {
    width: 50%;
  }
}

.serviceConstraction__contentItemTitle {
  padding-left: 10px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentItemTitle {
    min-height: 100px;
  }
}

.serviceConstraction__contentItemTitle--ja, .serviceConstraction__contentItemTitle--ja2 {
  position: relative;
  font-size: 16px;
  color: #0074b5;
  padding-left: 12px;
  line-height: 1.6;
}
.serviceConstraction__contentItemTitle--ja span, .serviceConstraction__contentItemTitle--ja2 span {
  margin-left: -10px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.serviceConstraction__contentItemTitle--ja::before, .serviceConstraction__contentItemTitle--ja2::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  display: block;
  width: 3px;
  height: 92%;
  background-color: #0074b5;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentItemTitle--ja, .serviceConstraction__contentItemTitle--ja2 {
    font-size: 18px;
  }
}

.serviceConstraction__contentItemTitle--ja2::before {
  height: 42%;
}

.serviceConstraction__contentItemTitle--sub {
  font-size: 11px;
  padding-top: 2px;
  padding-left: 11px;
  color: #0074b5;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentItemTitle--sub {
    font-size: 14px;
  }
}

.serviceConstraction__contentItemText {
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.099em;
}
@media screen and (min-width: 768px) {
  .serviceConstraction__contentItemText {
    font-size: 14px;
  }
}

.serviceStrength__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.serviceStrength__title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .serviceStrength__title {
    margin-bottom: 40px;
  }
}

.serviceStrength__title--ja {
  font-size: 24px;
  font-weight: 900;
  color: #1B2951;
}
@media screen and (min-width: 768px) {
  .serviceStrength__title--ja {
    font-size: 32px;
  }
}

.serviceStrength__title--en {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.03em;
  padding-left: 120px;
}
.serviceStrength__title--en::before {
  position: absolute;
  top: 11px;
  left: 4px;
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #1B2951;
}
@media screen and (min-width: 768px) {
  .serviceStrength__title--en {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .serviceStrength__item {
    display: flex;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .serviceStrength__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .serviceStrength__itemImg {
    width: 50%;
  }
}
.serviceStrength__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .serviceStrength__itemTextBox {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
}

.serviceStrength__itemTitle {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.serviceStrength__itemText {
  font-size: 14px;
  letter-spacing: -0.03em;
}

.philosophy {
  padding-bottom: 52px;
}

.philosophy__textBox {
  margin-top: 20px;
  margin-bottom: 28px;
}

.philosophy__head {
  font-size: 20px;
  text-align: center;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .philosophy__head {
    font-size: 24px;
  }
}

.philosophy__text {
  font-size: 13px;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.85;
}
@media screen and (min-width: 768px) {
  .philosophy__text {
    font-size: 18px;
  }
}

.philosophy__img {
  width: 87%;
  margin: 0 auto 13px auto;
}
.philosophy__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .philosophy__img {
    width: 70%;
  }
}

.philosophy__item {
  font-size: 13px;
  letter-spacing: -0.08em;
  line-height: 2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .philosophy__item {
    font-size: 16px;
  }
}

.philosophy__itemSpace {
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .philosophy__itemSpace {
    padding-left: 0;
  }
}

.content__heading--philosophy {
  font-size: 30px;
}

.content__headingJa--philosophy {
  font-size: 16px;
}

/* SDGs */
.sdgs {
  background-color: #eaf6fd;
  padding-top: 27px;
}
@media screen and (min-width: 768px) {
  .sdgs {
    padding-top: 80px;
  }
}

.content__heading--sdgs {
  font-size: 28px;
  letter-spacing: -0.01em;
}

.content__headingJa--sdgs {
  font-size: 16px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.content__headingJa--sdgs span {
  width: calc(100% - 252px);
}

.sdgs__container {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .sdgs__container {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.sdgs__img {
  width: 90%;
  margin: 0 auto 16px auto;
}
.sdgs__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sdgs__img {
    width: 70%;
    margin-bottom: 40px;
  }
}

.sdgs__text {
  font-size: 12.5px;
  letter-spacing: -0.03em;
  line-height: 1.85;
}
@media screen and (min-width: 768px) {
  .sdgs__text {
    font-size: 16px;
  }
}

.sdgs__sliderTitle {
  padding: 20px 0 40px 0;
  background-color: #ffffff;
  margin-top: 16px;
}

.sdgs__sliderTitleText {
  position: relative;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  color: #1B2951;
}

.sdgs__sliderTitleText::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #1B2951;
  margin-top: 10px;
}

.sdgs__item {
  background-color: #ffffff;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 365px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .sdgs__item {
    padding: 12px;
  }
}

.sdgs__itemImg {
  width: 100%;
  height: 180px;
}
.sdgs__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sdgs__itemText {
  height: 50%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.sdgs__itemTextIcon {
  width: 77px;
  height: 77px;
}
.sdgs__itemTextIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sdgs__itemTextIcon {
    width: 80px;
    height: 80px;
  }
}

.sdgs__itemTextList {
  width: calc(100% - 77px);
  display: flex;
  flex-direction: column;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sdgs__itemTextList {
    width: calc(100% - 80px);
  }
}

.sdgs__itemTextList--lh12 {
  line-height: 1.2;
}

.sdgs__itemTextList--lh15 {
  line-height: 1.5;
}

.sdgs__itemTextList--lh17 {
  line-height: 1.7;
}

.sdgs__itemTextListItem {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.15em;
}
@media screen and (min-width: 768px) {
  .sdgs__itemTextListItem {
    font-size: 14px;
  }
}

.sdgs__itemTextListItem::before {
  content: "・";
  margin-left: -16px;
}

/* エコステージ */
.content__heading--ecoStage {
  font-size: 31px;
  letter-spacing: -0.01em;
}

.content__headingJa--ecoStage {
  font-size: 16px;
}
.content__headingJa--ecoStage span {
  width: calc(100% - 83px);
}

.ecoStage__textBox {
  margin-top: 18px;
  margin-bottom: 18px;
}

.ecoStage__text {
  font-size: 12.5px;
  letter-spacing: -0.03em;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .ecoStage__text {
    font-size: 16px;
  }
}

.ecoStage__img {
  width: 200px;
  margin: 0 auto;
}
.ecoStage__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ecoStage__imgTitle {
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 1.85;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .ecoStage__imgTitle {
    font-size: 18px;
  }
}

/* 健康経営 */
.health {
  background-color: #eaf6fd;
}

.content__heading--health {
  font-size: 31px;
  letter-spacing: -0.01em;
}

.content__headingJa--health {
  font-size: 16px;
}
.content__headingJa--health span {
  width: calc(100% - 170px);
}

.health__container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.health__img {
  width: 170px;
}
.health__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.health__textBox {
  margin-top: 12px;
  width: calc(100% - 150px);
}

.health__text {
  font-size: 12.5px;
  letter-spacing: -0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .health__text {
    font-size: 18px;
  }
}

.health__item {
  background-color: #ffffff;
  padding: 8px;
  min-height: 365px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .health__item {
    padding: 12px;
  }
}

.health__itemTitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.5;
  margin-bottom: 6px;
}

.health__itemImg {
  height: 174px;
}
.health__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.health__itemTextHead {
  text-align: center;
  font-size: 19px;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.health__itemTextText {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .health__itemTextText {
    font-size: 14px;
  }
}

/* 福利厚生 */
.benefits__itemTitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.benefits__item {
  background-color: #bae3f9;
  padding: 8px;
  min-height: 305px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .benefits__item {
    padding: 12px;
  }
}

.benefits__itemImg {
  height: 125px;
  width: 125px;
  margin: 0 auto;
}
.benefits__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits__itemTextHead {
  text-align: center;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.benefits__itemTextText {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .benefits__itemTextText {
    font-size: 14px;
  }
}

.recruitMessage {
  background-color: #eaf6fd;
}

.recruitMessage__head {
  font-size: 24px;
  color: #1B2951;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .recruitMessage__head {
    font-size: 32px;
  }
}

.recruitMessage__text {
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: -0.08em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .recruitMessage__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.businessOutline {
  background-color: #ffffff;
  padding: 18px 8px;
}
@media screen and (min-width: 768px) {
  .businessOutline {
    padding: 20px 20px;
  }
}

.businessOutline__heading {
  font-size: 24px;
  color: #1B2951;
  font-weight: 900;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .businessOutline__heading {
    font-size: 32px;
  }
}

.businessOutline__headingJa {
  font-size: 12px;
  color: #1B2951;
}
@media screen and (min-width: 768px) {
  .businessOutline__headingJa {
    font-size: 14px;
  }
}

.businessOutline__text {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 2;
  letter-spacing: -0.08em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .businessOutline__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.businessOutline__img img {
  width: 100%;
  height: auto;
}

.recruitFlow {
  background-image: url("../img/recruit/flow_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruitFlow__inner {
  padding: 12px 8px;
  background-color: #ffffff;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .recruitFlow__inner {
    padding: 20px 20px;
  }
}

.recruitFlow__headingBox {
  margin-bottom: 21px;
}

.recruitFlow__heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .recruitFlow__heading {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .recruitFlow__headingJa {
    font-size: 14px;
  }
}

.recruitFlow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recruitFlow__list::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 33px;
  width: 1px;
  height: calc(100% - 70px);
  background-color: #1facdd;
}
@media screen and (min-width: 768px) {
  .recruitFlow__list::before {
    left: 49px;
  }
}

.recruitFlow__item {
  display: flex;
  gap: 16px;
}

.recruitFlow__itemImg {
  width: 69px;
  height: 68px;
}
.recruitFlow__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .recruitFlow__itemImg {
    width: 102px;
    height: 100px;
  }
}

.recruitFlow__itemTextBox {
  width: calc(100% - 80px);
  padding-top: 19px;
}
@media screen and (min-width: 768px) {
  .recruitFlow__itemTextBox {
    padding-top: 24px;
    width: calc(100% - 102px);
  }
}

.recruitFlow__itemTextHead {
  font-size: 19px;
  margin-bottom: 4px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .recruitFlow__itemTextHead {
    font-size: 24px;
  }
}

.recruitFlow__itemText {
  font-size: 12px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .recruitFlow__itemText {
    font-size: 14px;
  }
}

.recruitBenefits {
  padding: 18px 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruitBenefits {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.recruitBenefits__inner {
  padding: 20px 12px;
  border: 1px solid #1facdd;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__inner {
    padding: 20px 20px;
  }
}

.recruitBenefits__heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__heading {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .recruitBenefits__headingJa {
    font-size: 14px;
  }
}

.recruitBenefits__text {
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 2;
  padding: 10px 10px;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__text {
    font-size: 18px;
    padding: 10px 20px;
  }
}

.recruitBenefits__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recruitBenefits__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #1facdd;
  padding: 2px 8px;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__item {
    gap: 24px;
    width: 500px;
    margin: 0 auto;
  }
}

.recruitBenefits__itemImg {
  width: 60px;
  height: 60px;
}
.recruitBenefits__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitBenefits__itemTextBox {
  width: calc(100% - 80px);
  color: #ffffff;
}

.recruitBenefits__itemTextHead {
  font-size: 22px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__itemTextHead {
    font-size: 28px;
  }
}

.recruitBenefits__itemText {
  font-size: 12px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__itemText {
    font-size: 14px;
  }
}

.recruitBenefits__itemText2 {
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .recruitBenefits__itemText2 {
    font-size: 18px;
  }
}

.recruitVoice {
  background-color: #eaf6fd;
}

.recruitVoice__heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .recruitVoice__heading {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .recruitVoice__headingJa {
    font-size: 14px;
  }
}

.recruitVoice__list {
  max-width: 700px;
  margin: 0 auto;
}

.recruitVoice__text {
  margin-top: 27px;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .recruitVoice__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.recruitVoice__contentHead {
  z-index: 1;
  position: relative;
  background-color: #eaf6fd;
  height: 210px;
}

.recruitVoice__contentHeadImg {
  z-index: 3;
  position: absolute;
  top: 0;
  left: -37px;
  width: 267px;
  height: 200px;
}
.recruitVoice__contentHeadImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recruitVoice__contentHeadImg {
    width: 300px;
  }
}

.recruitVoice__contentHeadText {
  z-index: 2;
  position: absolute;
  top: 105px;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ffffff;
}

.recruitVoice__contentHeadTextInner {
  z-index: -1;
  position: absolute;
  padding: 20px 10px 10px 100px;
  bottom: -6px;
  right: 2%;
  font-size: 13px;
  letter-spacing: -0.03em;
}

.recruitVoice__contentHeadTextDepartment {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .recruitVoice__contentHeadTextDepartment {
    font-size: 14px;
  }
}

.recruitVoice__contentHeadTextEntry {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .recruitVoice__contentHeadTextEntry {
    font-size: 14px;
  }
}

.recruitVoice__contentHeadTextJob {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .recruitVoice__contentHeadTextJob {
    font-size: 18px;
    line-height: 1.2;
  }
}

.recruitVoiceInterview {
  background-color: #ffffff;
  padding-bottom: 10px;
}

.accordion__button {
  position: relative;
  width: 96%;
  padding: 0 10px;
  margin: 0 auto;
  display: block;
  color: #ffffff;
  font-size: 12px;
  border: none;
  text-align: left;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .accordion__button {
    font-size: 14px;
  }
}

.accordion__button::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #ffffff;
  border-bottom: 0;
}

.recruitVoiceInterview__button {
  background-color: #61c3d4;
}

.recruitVoiceOneDay__button {
  background-color: #0b6ba5;
}

.recruitVoiceInterview__content {
  padding: 12px 12px;
  background-color: #ffffff;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
@media screen and (min-width: 768px) {
  .recruitVoiceInterview__content {
    padding: 20px 20px;
  }
}

.recruitVoiceInterview.active .recruitVoiceInterview__content {
  display: block;
  opacity: 1;
}

.recruitVoiceInterview__contentImg {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.recruitVoiceInterview__contentImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitVoiceInterview__question {
  letter-spacing: -0.03em;
  color: #0074b5;
}
@media screen and (min-width: 768px) {
  .recruitVoiceInterview__question {
    font-size: 18px;
  }
}

.recruitVoiceInterview__answer {
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 2;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .recruitVoiceInterview__answer {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.recruitVoiceInterview__recruitBox {
  position: relative;
  border: 8px solid #68b2d6;
  background-color: #ffffff;
  margin-bottom: 16px;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.recruitVoiceInterview.active .recruitVoiceInterview__recruitBox {
  display: block;
  opacity: 1;
}

.recruitVoiceInterview__recruitBoxTitle {
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  background-color: #68b2d6;
  color: #ffffff;
  padding: 2px;
  text-align: center;
}

.recruitVoiceInterview__recruitBoxText {
  padding: 52px 15px 15px 15px;
  font-size: 13.5px;
  letter-spacing: -0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .recruitVoiceInterview__recruitBoxText {
    font-size: 16px;
  }
}

.recruitVoiceOneDay {
  background-color: #ffffff;
  padding-bottom: 10px;
}

.recruitVoiceOneDay__contentImg {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.recruitVoiceOneDay__contentImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitVoiceOneDay.active .recruitVoiceOneDay__contentImg {
  display: block;
  opacity: 1;
}

.recruitVoice__item {
  margin-bottom: 24px;
}

.recruitVoice__item:last-child {
  margin-bottom: 0;
}

.recruitInformation__headingBox {
  margin-bottom: 20px;
}

.recruitInformation__heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .recruitInformation__heading {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .recruitInformation__headingJa {
    font-size: 14px;
  }
}

.recruitInformation__text {
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .recruitInformation__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .recruitInformation__link {
    max-width: 700px;
    margin: 0 auto;
  }
}

.recruitInformation__linkItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid #1B2951;
}

.recruitInformation__linkItemTitle {
  font-size: 18px;
  color: #1B2951;
  font-weight: 700;
}

.recruitInformation__linkItemLink {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruitInformation__linkItemLink span {
  font-size: 16px;
  font-weight: 700;
  color: #1facdd;
}

.recruitInformation__linkItemLink img {
  width: 55px;
  height: 55px;
}

.innovationAroma,
.innovationMental {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .innovationAroma,
  .innovationMental {
    margin-bottom: 40px;
  }
}

.innovationHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.innovationHead__icon {
  width: 24px;
  height: 24px;
}
.innovationHead__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .innovationHead__icon {
    width: 32px;
    height: 32px;
  }
}

.innovationHead {
  background-color: #1B2951;
  color: #ffffff;
  padding: 4px 20px;
}
@media screen and (min-width: 768px) {
  .innovationHead {
    padding: 12px 100px;
  }
}

.innovationHead__title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .innovationHead__title {
    font-size: 32px;
  }
}

.innovationHead__titleJa {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.innovationHead__titleJa span {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background-color: #ffffff;
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .innovationHead__titleJa {
    font-size: 16px;
  }
}

.innovationAccordion__button {
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.innovationAccordion__content {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.innovationAccordion.active .innovationAccordion__content {
  display: block;
  opacity: 1;
}

.innovationAromaAccordion__content {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.innovationAromaAccordion.active .innovationAromaAccordion__content {
  display: block;
  opacity: 1;
}

.innovationAccordion__thumbnail {
  width: 100%;
}
.innovationAccordion__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.innovationAroma:has(.innovationAccordion.active) .innovationAccordion__thumbnail,
.innovationMental:has(.innovationAccordion.active) .innovationAccordion__thumbnail,
.innovationSupport:has(.innovationAccordion.active) .innovationAccordion__thumbnail {
  display: none !important;
}

.innovationHead__kv {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.innovationHead__kv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationHead__kv {
    margin-bottom: 80px;
  }
}

.innovationHead__kvCopy {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.35em;
  color: #ffffff;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .innovationHead__kvCopy {
    font-size: 48px;
  }
}

.innovationHead__kvLink {
  position: absolute;
  bottom: 5%;
  right: 50%;
  transform: translateX(50%);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 2px;
  width: 226px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .innovationHead__kvLink {
    font-size: 32px;
    width: 420px;
  }
}

.innovationAromaAbout__heading {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__heading {
    font-size: 32px;
  }
}

.innovationAromaAbout__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__title {
    font-size: 32px;
  }
}

.innovationAromaAbout__title::before {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 62px;
  top: 0;
  left: -20px;
  background-color: #1B2951;
}

.innovationAroma__titleText, .innovationAromaAbout__titleText {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .innovationAroma__titleText, .innovationAromaAbout__titleText {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.innovationAromaAbout__headingBox {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__headingBox {
    margin-bottom: 40px;
  }
}

.innovationAromaAbout__imgBox {
  position: relative;
}

.innovationAromaAbout__img {
  width: 78%;
  margin: 0 auto;
}
.innovationAromaAbout__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .innovationAromaAbout__img {
    width: 570px;
  }
}

.innovationAromaAbout__imgText {
  position: absolute;
  height: 100%;
  color: #1B2951;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.6em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .innovationAromaAbout__imgText {
    font-size: 30px;
  }
}

.innovationAromaAbout__imgText1 {
  top: 0;
  right: 0;
}

.innovationAromaAbout__imgText2 {
  left: 0;
  top: 210px;
}

.innovationAromaAbout__list {
  margin-top: 20px;
  position: relative;
  height: 755px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__list {
    height: 1200px;
    width: 800px;
    margin: 40px auto 0 auto;
  }
}

.innovationAromaAbout__item {
  position: absolute;
  width: 320px;
}
.innovationAromaAbout__item img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item {
    width: 500px;
  }
}

.innovationAromaAbout__item:nth-child(1) {
  top: 0;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(1) {
    right: 0;
  }
}

.innovationAromaAbout__item:nth-child(2) {
  top: 120px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(2) {
    top: 180px;
    right: 0;
  }
}

.innovationAromaAbout__item:nth-child(3) {
  top: 240px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(3) {
    top: 360px;
    left: 0;
  }
}

.innovationAromaAbout__item:nth-child(4) {
  top: 360px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(4) {
    top: 540px;
    left: 0;
  }
}

.innovationAromaAbout__item:nth-child(5) {
  top: 480px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(5) {
    top: 720px;
    right: 0;
  }
}

.innovationAromaAbout__item:nth-child(6) {
  top: 600px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaAbout__item:nth-child(6) {
    top: 900px;
    right: 0;
  }
}

.innovationAromaMerit {
  background-color: #eaf6fd;
}

@media screen and (min-width: 768px) {
  .innovationMerit__inner {
    max-width: 1000px;
    margin: 40px auto 0 auto;
  }
}

.innovationAromaMerit__headingBox {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaMerit__headingBox {
    margin-bottom: 40px;
  }
}

.innovationAromaMerit__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
}
.innovationAromaMerit__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationAromaMerit__logo {
    right: 100px;
  }
}

.innovationAromaMerit__heading {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .innovationAromaMerit__heading {
    font-size: 32px;
  }
}

.innovationMerit__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #ffffff;
  padding: 6px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .innovationMerit__list {
    gap: 40px;
    padding: 20px;
  }
}

.innovationMerit__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.innovationMerit__itemHeading {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #1B2951;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .innovationMerit__itemHeading {
    font-size: 24px;
  }
}

.innovationMerit__itemText {
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .innovationMerit__itemText {
    font-size: 16px;
  }
}

.innovationAromaCase {
  background-color: #eaf6fd;
}

.innovationAromaCase__headingBox {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaCase__headingBox {
    margin-bottom: 40px;
  }
}

.innovationAromaCase__logo {
  position: absolute;
  top: -20px;
  right: 0;
  width: 94px;
}
.innovationAromaCase__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovationAromaCase__heading {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .innovationAromaCase__heading {
    font-size: 32px;
  }
}

.innovationAromaCase__item {
  padding: 6px;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 2px;
}

.innovationAromaCase__itemImg {
  width: 100%;
  height: 240px;
  margin-bottom: 4px;
}
.innovationAromaCase__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovationAromaCase__itemText {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: right;
  margin-right: 12px;
}

.innovationAromaFlow {
  padding-bottom: 0;
}

.innovationAromaFlow__inner {
  position: relative;
}

.innovationAromaFlow__headingBox {
  position: absolute;
  top: 0;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .innovationAromaFlow__headingBox {
    left: 100px;
  }
}

.innovationAromaFlow__heading {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .innovationAromaFlow__heading {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .innovationAromaFlow__headingJa {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .innovationAromaFlow__img {
    padding: 0 100px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.innovationContact__inner {
  position: relative;
}

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

.innovationContact__img {
  width: 100%;
  height: 400px;
}
.innovationContact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationContact__img {
    height: 500px;
  }
}

.innovationContact__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #ffffff;
  opacity: 0.8;
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .innovationContact__content {
    height: 180px;
    padding-top: 40px;
  }
}

.innovationContact__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #1B2951;
  text-decoration: none;
  margin-bottom: 12px;
  border: 1px solid #191919;
  padding: 4px 30px;
}
@media screen and (min-width: 768px) {
  .innovationContact__link {
    font-size: 20px;
  }
}

.innovationContact__text {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.5;
  width: 100%;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .innovationContact__text {
    margin-top: 30px;
    font-size: 16px;
  }
}

.innovationHead__kvCopy--mental {
  writing-mode: horizontal-tb;
  top: 2%;
  right: 50%;
  transform: translateX(50%);
  font-size: 24px;
  width: 332px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .innovationHead__kvCopy--mental {
    top: 10%;
    font-size: 48px;
    width: 672px;
  }
}

.innovationMental__title, .innovationMental__titleText {
  padding: 0 6px;
  font-size: 19px;
  color: #1B2951;
  letter-spacing: -0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .innovationMental__title, .innovationMental__titleText {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.innovationMental__titleText {
  position: relative;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .innovationMental__titleText {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  .innovationMental__aboutText {
    text-align: center;
    margin-bottom: 80px;
  }
}

.innovationMental__titleText::after {
  position: absolute;
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1B2951;
}

.innovationMental__figure {
  width: 300px;
  margin: 10px auto 40px auto;
}
.innovationMental__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovationAroma__aboutText {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .innovationAroma__aboutText {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.innovationMentalEffect {
  background-color: #eaf6fd;
}

.innovationMentalProgram {
  background-color: #eaf6fd;
}

.innovationMental__headingBox {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .innovationMental__headingBox {
    margin-bottom: 20px;
  }
}

.innovationMental__heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .innovationMental__heading {
    font-size: 32px;
  }
}

.innovationMental__headingJa span {
  width: calc(100% - 100px);
}

.innovationMentalProgram__list {
  margin-bottom: 12px;
}

.innovationMentalProgram__item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .innovationMentalProgram__item {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.innovationMentalProgram__img {
  width: 100%;
  height: 100%;
  margin-bottom: 8px;
}
.innovationMentalProgram__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationMentalProgram__img {
    width: 800px;
    margin: 0 auto 20px auto;
  }
}

.innovationMentalProgram__sheet {
  padding: 4px 8px;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
}
.innovationMentalProgram__sheet img {
  width: 120%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationMentalProgram__sheet {
    width: 800px;
    margin: 0 auto;
  }
}

.innovationMentalProgram__sheetText {
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .innovationMentalProgram__sheetText {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.innovationMentalFlow {
  position: relative;
}

.innovationMentalFlow__headingBox {
  position: absolute;
  top: 40px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .innovationMentalFlow__headingBox {
    top: 80px;
  }
}

.innovationMentalFlow__heading {
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .innovationMentalFlow__heading {
    font-size: 32px;
  }
}

.innovationMentalFlow__img {
  width: 100%;
  height: 100%;
}
.innovationMentalFlow__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationMentalFlow__img {
    padding: 0 100px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.innovationMentalTeacher {
  position: relative;
}

.innovationMentalTeacher__head {
  background-color: #eaf6fd;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.innovationMentalTeacher__subtitle {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__subtitle {
    font-size: 16px;
  }
}

.innovationMentalTeacher__subtitle::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  display: block;
  width: 3px;
  height: 80%;
  background-color: #1facdd;
}

.innovationMentalTeacher__title {
  font-size: 19px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__title {
    font-size: 24px;
  }
}

.innovationMentalTeacher__img {
  position: absolute;
  top: 36px;
  right: 20px;
  width: 105px;
}
.innovationMentalTeacher__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__img {
    top: 0;
    right: 100px;
    width: 200px;
  }
}

.innovationMentalTeacher__text {
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 4px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.innovationMentalTeacher__subtitle--history {
  line-height: 2.5;
}

.innovationMentalTeacher__subtitle--history::before {
  top: 8px;
  width: 2px;
  height: 60%;
}

.innovationMentalTeacher__historyList {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 4px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__historyList {
    font-size: 18px;
  }
}

.innovationMentalTeacher__historyItem {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .innovationMentalTeacher__historyItem {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .innovationMentalContact__img img {
    -o-object-position: 0% 20%;
       object-position: 0% 20%;
  }
}

.innovationHead__kvCopy--support {
  writing-mode: horizontal-tb;
  top: 44%;
  right: 50%;
  transform: translateX(50%);
  font-size: 24px;
  width: 332px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .innovationHead__kvCopy--support {
    font-size: 48px;
    width: 612px;
    top: 57%;
  }
}

.innovationSupport__title, .innovationSupport__subTitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.08em;
  color: #1B2951;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .innovationSupport__title, .innovationSupport__subTitle {
    font-size: 32px;
  }
}

.innovationSupport__figure {
  width: 100%;
  margin: 10px auto 0 auto;
}
.innovationSupport__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovationSupport__subTitle {
  position: relative;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.innovationSupport__subTitle::after {
  position: absolute;
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1B2951;
}

.innovationSupport__text {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .innovationSupport__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

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

.innovationSupport__linkGroup {
  padding: 0 10px;
}

.innovationSupport__linkItem {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid #1B2951;
  padding: 10px 0 6px 0;
  text-align: center;
}

.innovationSupport__linkText {
  color: #1B2951;
}

.innovationSupport__aboutBoxGroup {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .innovationSupport__aboutBoxGroup {
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .innovationSupport__aboutBox {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .innovationSupport__img {
    height: 350px;
  }
  .innovationSupport__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.innovationSupport__bannerGroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .innovationSupport__bannerGroup {
    min-height: 350px;
    justify-content: space-between;
  }
}

.innovationSupportPhoto {
  background-color: #eaf6fd;
}

.innovationSupportFuture__text {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .innovationSupportFuture__text {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .innovationSupportPhoto__inner {
    max-width: 1000px;
    padding: 0 100px;
    margin: 0 auto;
  }
}

.inquiryPage {
  background-color: #eaf6fd;
}

.inquiryPage__text {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .inquiryPage__text {
    font-size: 20px;
    margin-bottom: 80px;
  }
}

/* アスタリスクのみを赤くする */
.required-star {
  color: #ff0000; /* 赤色 */
  font-weight: bold;
  margin-left: 3px; /* ラベルテキストとの間隔 */
}

.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

#wpcf7-f6-o1 > form > div.address-group > p {
  line-height: 0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc; /* 希望の色の16進数コードを指定 (例: #999999 は薄いグレー) */
  opacity: 1; /* Firefoxで文字が薄く表示されるのを防ぐ */
}

input::placeholder,
textarea::placeholder {
  color: #ccc; /* 希望の色の16進数コードを指定 (例: #999999 は薄いグレー) */
  opacity: 1; /* Firefoxで文字が薄く表示されるのを防ぐ */
}

.wpcf7-form label > br:first-of-type {
  display: none;
}

#wpcf7-f6-o1 > form > div.address-group > p > label:nth-child(1) > span.wpcf7-form-control-wrap > input {
  border-bottom: none;
}

.label__text {
  font-size: 17px;
  padding-left: 10px;
  line-height: 3.3;
}

.wpcf7-form label {
  display: block;
  padding: 0;
  margin-bottom: 0;
  font-weight: bold;
  color: #fff;
  background-color: #71c7d5;
}

.required-star {
  color: #ff0000;
  margin-left: 2px;
}

.main-label-address {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  color: #fff;
  background-color: #71c7d5;
  line-height: 1;
  margin-bottom: 0;
}

.wpcf7-form-control {
  width: 100%;
  padding: 8px 16px;
  border: solid 10px #eaf6fd;
  background-color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control {
    border-right: none;
    border-left: none;
  }
}

.address-group-wrapper .wpcf7-form-control {
  margin-bottom: 5px;
}

.wpcf7-form-control.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="white" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px 10px;
  color: #fff;
  background-color: #4a4a4a;
  border: none;
  border-radius: 24px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.wpcf7-submit:hover {
  background-color: #333;
}

.form-title {
  display: block;
  padding: 0;
  margin-bottom: 0;
  font-weight: bold;
  color: #fff;
  background-color: #71c7d5;
  font-size: 17px;
  padding-left: 10px;
  line-height: 3.3;
}

.label__text--none {
  display: none;
}

p:has(.wpcf7-submit) {
  background-color: #71c7d5;
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  p:has(.wpcf7-submit) {
    background-color: #eaf6fd;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.newsPage {
  background-color: #eaf6fd;
}

.newsCategory__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .newsCategory__inner {
    gap: 16px;
  }
}

.newsCategory__label {
  font-size: 14px;
  font-weight: 600;
  color: #191919;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .newsCategory__label {
    font-size: 16px;
  }
}

.newsCategory__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .newsCategory__list {
    gap: 12px;
  }
}

.newsCategory__item {
  margin: 0;
  padding: 0;
}

.newsCategory__link {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #191919;
  text-decoration: none;
  background-color: #d0d0d0;
}
@media screen and (min-width: 768px) {
  .newsCategory__link {
    padding: 4px 16px;
    font-size: 16px;
  }
}
.newsCategory__link--active {
  background-color: #c0c0c0;
  font-weight: 600;
}

.newsList {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .newsList {
    padding: 60px 0;
  }
}

.newsList__inner {
  max-width: 900px;
}

.newsList__item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .newsList__item {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.newsList__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.newsList__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.newsList__link:hover {
  opacity: 0.8;
}

.newsList__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .newsList__meta {
    gap: 16px;
    margin-bottom: 16px;
  }
}

.newsList__date {
  font-size: 12px;
  color: #191919;
}
@media screen and (min-width: 768px) {
  .newsList__date {
    font-size: 16px;
  }
}

.newsList__categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .newsList__categories {
    gap: 12px;
  }
}

.newsList__category {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #191919;
  background-color: #d0d0d0;
}
@media screen and (min-width: 768px) {
  .newsList__category {
    padding: 4px 12px;
    font-size: 14px;
  }
}

.newsList__title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .newsList__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.newsList__excerpt {
  font-size: 14px;
  color: #191919;
  line-height: 1.8;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .newsList__excerpt {
    font-size: 16px;
    margin-top: 16px;
  }
}

.newsList__content {
  font-size: 14px;
  color: #191919;
  line-height: 1.8;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .newsList__content {
    font-size: 16px;
    margin-top: 16px;
  }
}
.newsList__content p {
  margin-bottom: 1em;
}
.newsList__content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.newsList__content h1,
.newsList__content h2,
.newsList__content h3,
.newsList__content h4,
.newsList__content h5,
.newsList__content h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.newsList__content ul,
.newsList__content ol {
  margin: 1em 0;
  padding-left: 2em;
}
.newsList__content li {
  margin-bottom: 0.5em;
}
.newsList__content a {
  color: #1facdd;
  text-decoration: underline;
}
.newsList__content a:hover {
  opacity: 0.8;
}

.newsList__image {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .newsList__image {
    margin-bottom: 20px;
  }
}
.newsList__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.newsList__pagination {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  background-color: #eaf6fd;
}
@media screen and (min-width: 768px) {
  .newsList__pagination {
    margin-top: 60px;
    padding: 30px 0;
  }
}
.newsList__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .newsList__pagination .page-numbers {
    gap: 20px;
  }
}
.newsList__pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.newsList__pagination .page-numbers a,
.newsList__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #1B2951;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .newsList__pagination .page-numbers a,
  .newsList__pagination .page-numbers span {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.newsList__pagination .page-numbers a:hover,
.newsList__pagination .page-numbers span:hover {
  opacity: 0.7;
}
.newsList__pagination .page-numbers .current {
  background-color: #1B2951;
  color: #ffffff;
}
.newsList__pagination .page-numbers .current:hover {
  opacity: 1;
}

.newsList__empty {
  text-align: center;
  font-size: 16px;
  color: #8d8d8d;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .newsList__empty {
    font-size: 18px;
    padding: 80px 0;
  }
}

.kv--newGraduates {
  height: 200px;
}
.kv--newGraduates img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .kv--newGraduates {
    height: 500px;
  }
}

.requirements {
  background: linear-gradient(to bottom, #eaf6fd 0%, #eaf6fd 90%, transparent 100%);
}

.requirements__text {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .requirements__text {
    font-size: 20px;
  }
}

.requirements__heading {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .requirements__heading {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .requirements__headingJa {
    font-size: 16px;
  }
}

.guidelines {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .guidelines {
    padding: 60px 0;
  }
}

.guidelines__table {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .guidelines__table {
    margin-top: 40px;
  }
}

.guidelines__row {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #1facdd;
}

.guidelines__term {
  background-color: #eaf6fd;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #191919;
  flex-shrink: 0;
  width: 102px;
}
@media screen and (min-width: 768px) {
  .guidelines__term {
    padding: 16px 24px;
    font-size: 18px;
    width: 200px;
  }
}

.guidelines__desc {
  padding: 8px 12px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #191919;
  background-color: #ffffff;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .guidelines__desc {
    padding: 16px 24px;
    font-size: 18px;
  }
}
.guidelines__desc strong {
  font-weight: 700;
}

.guidlines__margin {
  margin-bottom: 20px;
  display: block;
}

/* キャリアアップ・研修制度について */
.recquirementsCareer__inner {
  background-color: #eaf6fd;
}

.recquirementsCareer__img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.recquirementsCareer__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recquirementsCareer__img {
    max-width: 1000px;
    margin: 40px auto;
  }
}

/* 新入社員研修について */
.requirements__heading--training {
  margin-bottom: 8px;
}

.requirements__headingJa--training {
  font-size: 15px;
  font-weight: 900;
  color: #1B2951;
}

.requirements__heading--trainingMidCareer {
  margin-bottom: 8px;
  text-align: center;
}

.newGraduatesTraining {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .newGraduatesTraining {
    padding: 60px 0;
  }
}

.newGraduatesTraining__img {
  margin-top: 16px;
  margin-bottom: 16px;
}
.newGraduatesTraining__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .newGraduatesTraining__img {
    max-width: 1000px;
    margin: 64px auto;
  }
}

.newGraduatesTraining__listBox {
  background-image: url(../img/newGraduates/training_bg.webp);
  background-position: center;
  background-repeat: repeat;
}

.newGraduatesTraining__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .newGraduatesTraining__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .newGraduatesTraining__list--midCareer {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
}

.newGraduatesTraining__item {
  list-style: none;
}

.newGraduatesTraining__itemImg {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.newGraduatesTraining__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.newGraduatesTraining__itemTitle {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  color: #1B2951;
}
@media screen and (min-width: 768px) {
  .newGraduatesTraining__itemTitle {
    font-size: 20px;
  }
}

.newGraduatesTraining__itemText {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: -0.08em;
}
@media screen and (min-width: 768px) {
  .newGraduatesTraining__itemText {
    font-size: 16px;
    margin-top: 12px;
  }
}

/* 職場生活 */
.workLife {
  background-color: #eaf6fd;
}

.requirements__heading--workLife {
  text-align: center;
  margin-bottom: 8px;
}

.requirements__headingJa--workLife {
  text-align: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .requirements__headingJa--workLife {
    font-size: 16px;
  }
}

.workLife__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "april may" "june july" "august september" "october november" "dec-jan dec-jan" "february march";
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .workLife__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "april may june july" "august september october november" "dec-jan dec-jan february march";
    gap: 16px;
    margin-top: 40px;
  }
}

.workLife__item {
  width: 100%;
}
.workLife__item img {
  width: 100%;
  height: auto;
  display: block;
}
.workLife__item--april {
  grid-area: april;
}
.workLife__item--may {
  grid-area: may;
}
.workLife__item--june {
  grid-area: june;
}
.workLife__item--july {
  grid-area: july;
}
.workLife__item--august {
  grid-area: august;
}
.workLife__item--september {
  grid-area: september;
}
.workLife__item--october {
  grid-area: october;
}
.workLife__item--november {
  grid-area: november;
}
.workLife__item--dec-jan {
  grid-area: dec-jan;
}
.workLife__item--february {
  grid-area: february;
}
.workLife__item--march {
  grid-area: march;
}

.workLife__eventSlider {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .workLife__eventSlider {
    margin-top: 40px;
  }
}

.workLife__eventItem {
  width: 100%;
}
.workLife__eventItem img {
  width: 100%;
  height: auto;
  display: block;
}

.u-lineBreak {
  display: block;
}

.u-lineBreak--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-lineBreak--sp {
    display: inline;
  }
}

.u-lineBreak--pc {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-lineBreak--pc {
    display: block;
  }
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-pb80 {
  padding-bottom: 80px;
}/*# sourceMappingURL=style.css.map */