@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

/********** base **********/
body {
  font-family: "Noto Sans JP", "serif";
  color: #333333;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-feature-settings: "palt";
}

.m-section-ttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
}
@media (max-width: 1080px) {
  .m-section-ttl {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .m-section-ttl {
    font-size: 24px;
    gap: 14px;
  }
}

.m-section-ttl span {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", "serif";
}
@media (max-width: 600px) {
  .m-section-ttl span {
    font-size: 15px;
  }
}

/********** variable **********/
/********** mixin **********/
/********** module **********/
.footer__contents {
  background: #333333;
}

.footer__inner {
  color: #fff;
  width: 85%;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 0px;
  }
}

.footer__logo {
  width: 15vw;
  min-width: 124px;
  max-width: 220px;
}

.footer__logo img {
  object-fit: contain;
}

.footer__address {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .footer__address {
    margin-top: 30px;
  }
}

.footer__address p {
  font-size: 14px;
}
@media (max-width: 600px) {
  .footer__address p {
    font-size: 13px;
  }
}

.footer__address p:first-child {
  margin-bottom: 5px;
}

.footer__recruit {
  margin-top: 80px;
}

.footer__recruit--sp {
  margin-top: 0px;
}

.footer__right-content__inner {
  gap: 40px !important;
}
@media (max-width: 600px) {
  .footer__right-content__inner {
    margin-top: 70px;
  }
}

.footer__nav {
  margin-bottom: 50px;
}

.footer__nav-list {
  margin-top: 16px;
}

.footer__nav-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #404040;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}
.footer__nav-title a {
  width: 100%;
  display: inline-block;
}
@media (max-width: 600px) {
  .footer__nav-title {
    font-size: 14px;
  }
}

.footer__nav-title span {
  display: block;
  width: 16px;
  height: auto;
  transform: translateY(-50%);
}

.footer__nav-item {
  color: #999999;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 600px) {
  .footer__nav-item {
    font-size: 13px;
  }
}

.footer__bottom {
  padding-bottom: 60px;
}

.footer__bottom-inner {
  width: 85%;
  margin: 0 auto;
  color: #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 600px) {
  .footer__bottom-inner {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    align-items: flex-start;
    padding: 0;
  }
}

.footer__lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__lang-switch-item--active {
  color: #fff;
}

.footer__lang-switch-item {
  font-size: 13px;
  font-weight: bold;
}

.footer__lang-switch-item-separator {
  color: #404040;
}

.footer__copyright {
  font-size: 11px;
}

.recruit-footer {
  background: #F2F7FA;
  border-radius: 40px 40px 0 0;
  margin-top: 100px;
}
@media (max-width: 600px) {
  .recruit-footer {
    border-radius: 30px 30px 0 0;
  }
}

.recruit-footer__container {
  width: 85%;
  margin: 0 auto;
}

.recruit-footer__inner {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 20px;
}
@media (max-width: 1080px) {
  .recruit-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .recruit-footer__inner {
    grid-template-columns: 1fr;
    padding: 70px 0 30px 0;
    gap: 60px;
  }
}

.recruit-footer__logo {
  width: 12vw;
  min-width: 110px;
  max-width: 180px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .recruit-footer__logo {
    width: 30vw;
    margin-bottom: 40px;
  }
}

.recruit-footer__sns a {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.recruit-footer__sns-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 600px) {
  .recruit-footer__sns-icon {
    width: 16px;
    height: 16px;
  }
}

.recruit-footer__sns-text {
  line-height: 1;
}
@media (max-width: 600px) {
  .recruit-footer__sns-text {
    font-size: 13px;
  }
}

.recruit-footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recruit-footer__nav-item {
  margin-bottom: 30px;
}
@media (max-width: 1080px) {
  .recruit-footer__nav-item {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .recruit-footer__nav-item {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.recruit-footer__copyright {
  border-top: 1px solid #D8D8D8;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .recruit-footer__copyright {
    padding: 30px 0;
  }
}

.recruit-footer__copyright-inner {
  color: #666666;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .recruit-footer__copyright-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.recruit-footer__copyright-inner a {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
@media (max-width: 600px) {
  .recruit-footer__copyright-inner a {
    font-size: 13px;
  }
}
.recruit-footer__copyright-inner a span {
  display: inline-block;
  width: 12px;
  line-height: 1;
}

.recruit-footer__copyright-inner small {
  font-size: 12px;
  font-family: "Montserrat", "serif";
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px;
}
@media (max-width: 600px) {
  .header {
    padding: 12px;
  }
}

.header__inner {
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .header__inner {
    padding: 0px 18px;
  }
}

.header__logo {
  width: 15vw;
  min-width: 160px;
  max-width: 240px;
}

.header__logo a {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.header__logo img {
  object-fit: contain;
}

.header__nav-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  .header__nav-wrap {
    display: none;
  }
}

.header__nav {
  margin-right: 4vw;
}

.header__nav-list {
  display: flex;
  font-weight: 500;
}

.header__nav-item {
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-left: 2vw;
  font-size: clamp(14px, 1vw, 16px);
}

.header__nav-item a {
  display: inline-block;
  padding: 20px 0;
}

.header__nav-item:hover {
  border-bottom: 2px solid #00AFED;
}

.header__lang-switch {
  margin-right: 16px;
  border-radius: 17px;
  border: 1px solid #D8D8D8;
  padding: 4px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header__lang-switch-item {
  width: 40px;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  color: #999999;
  border-radius: 17px;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .header__lang-switch-item {
    width: 30px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .header__lang-switch-item {
    width: 26px;
    font-size: 10px;
  }
}

.header__lang-switch-item:not(.header__lang-switch-item--active):hover {
  background: #f0f0f0;
  color: #999999;
}

.header__lang-switch-item--active {
  background: #00AFED;
  color: #fff;
}

.header__sns {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.header__sns:hover {
  opacity: 0.7;
}

.header__sp-wrap {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1080px) {
  .header__sp-wrap {
    display: flex;
  }
}

.header__lang-switch--sp {
  margin-right: 0;
}

.hover-menu {
  position: fixed;
  background: #fff;
  width: fit-content;
  border-radius: 10px;
  padding: 40px;
  z-index: 999;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hover-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.hover-menu__title {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}
.hover-menu__title span {
  padding-right: 22px;
  border-right: 1px solid #D8D8D8;
  display: block;
  font-size: 48px;
  font-family: "Montserrat", "serif";
  font-weight: 600;
  line-height: 1.25;
}

.hover-menu__item {
  width: 260px;
}

.hover-menu__text {
  margin-top: 10px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.hover-menu__arrow {
  display: flex;
  align-items: center;
  width: 16px;
  height: auto;
  line-height: 1;
}

.header__hamburger {
  display: none;
}
@media (max-width: 1200px) {
  .header__hamburger {
    display: block;
    width: 30px;
    height: 18px;
    position: relative;
    cursor: pointer;
  }
}

.header__hamburger span {
  display: block;
  width: 30px;
  height: 1px;
  background: #222222;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  top: 100%;
  transform: translateY(-50%);
}

.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.recruit-header {
  padding: 30px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1080px) {
  .recruit-header {
    padding: 30px 30px;
  }
}
@media (max-width: 600px) {
  .recruit-header {
    padding: 18px 20px;
  }
}

.recruit-header__logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1080px) {
  .recruit-header__logo-wrap {
    gap: 10px;
    align-items: baseline;
  }
}
@media (max-width: 600px) {
  .recruit-header__logo-wrap {
    gap: 6px;
    flex-direction: column;
  }
}

.recruit-header__logo {
  width: 14vw;
  max-width: 200px;
  min-width: 140px;
}

.recruit-header__logo-wrap span {
  font-size: 14px;
  font-family: "Montserrat", "serif";
  color: #000;
  display: block;
}
@media (max-width: 768px) {
  .recruit-header__logo-wrap span {
    font-size: 10px;
  }
}

.recruit-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recruit-header__nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  z-index: 210;
  right: 40px;
  top: 0px;
  transform: translateY(50%);
}
@media (max-width: 1080px) {
  .recruit-header__nav-list {
    right: 30px;
  }
}
@media (max-width: 600px) {
  .recruit-header__nav-list {
    right: 20px;
    top: 18px;
    transform: translateY(25%);
  }
}

.recruit-header__nav-item {
  width: 136px;
}
@media (max-width: 768px) {
  .recruit-header__nav-item {
    width: 120px;
  }
}

.switch-btn {
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin: 0 20px;
}
@media (max-width: 600px) {
  .switch-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.recruit-header__hamburger {
  display: block;
  width: 70px;
  height: 30px;
  position: relative;
  cursor: pointer;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .recruit-header__hamburger {
    margin-left: 0;
  }
}

.recruit-header__hamburger span {
  display: block;
  height: 1px;
  background: #222222;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
}
.recruit-header__hamburger span:nth-child(1) {
  top: 0;
  width: 100%;
}
.recruit-header__hamburger span:nth-child(2) {
  width: 80%;
  top: 50%;
  transform: translateY(-50%);
}
.recruit-header__hamburger span:nth-child(3) {
  width: 60%;
  top: 100%;
  transform: translateY(-50%);
}

.recruit-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 100%;
}
.recruit-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.recruit-header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
  width: 100%;
}

.mainV {
  width: 100%;
  height: 100vh;
  position: relative;
}

.mainV .slideshow {
  width: 100%;
  height: 100%;
}

.mainV .slideshow .swiper-slide {
  width: 100%;
  height: 100%;
}

.mainV .slideshow .swiper-slide .slideshow__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainV__title {
  position: absolute;
  font-size: clamp(30px, 4vw, 60px);
  min-width: 260px;
  max-width: 80%;
  bottom: 0;
  color: #fff;
  font-weight: 500;
  left: 7%;
  transform: translate(0%, -50%);
  z-index: 1;
}
@media (max-width: 600px) {
  .mainV__title {
    width: 100%;
    max-width: 300px;
    bottom: 40px;
    left: 24px;
    transform: translate(0%, -60%);
  }
}

.mainV__recruit {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
}
@media (max-width: 600px) {
  .mainV__recruit {
    right: 14px;
    bottom: 20px;
  }
}

.mainV__recruit .m-recruit-thumb {
  width: 64px;
  height: 64px;
}

.mainV__recruit .m-recruit-thumb img {
  width: 100%;
  height: 100%;
}

.sp-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 0 20px;
  height: 90vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}
@media (max-width: 1200px) {
  .sp-nav {
    display: block;
  }
}
@media (max-width: 600px) {
  .sp-nav {
    padding: 0 12px;
  }
}

.sp-nav.is-active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.sp-nav__inner {
  height: 100%;
  overflow-y: scroll;
  padding: 0 30px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .sp-nav__inner {
    padding: 50px 20px;
  }
}

.sp-nav__item:first-child {
  border-top: 1px solid #D8D8D8;
}

.sp-nav__item--padding {
  padding: 30px 0;
  border-bottom: 1px solid #D8D8D8;
}

.sp-nav__item--more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sp-nav__item--more span {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.sp-nav__item--more span::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s ease;
}

.sp-nav__item--more span::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #707070;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  transition: all 0.3s ease;
}

.sp-nav__item--more.is-active span::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.sp-nav__item--blank a {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
}

.sp-nav__item--blank-icon {
  width: 14px;
  height: 14px;
}

.sp-nav__item--arrow a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-nav__item--arrow a p {
  margin-bottom: 0;
  margin-top: 4px;
}

.sp-nav__item--arrow span {
  position: relative;
}

.sp-nav__item--arrow span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/common/arrow-btn01.jpg") center center/contain no-repeat;
}

.sp-nav__sub-list {
  gap: 10px !important;
  padding-top: 30px;
  display: none;
  opacity: 0;
  transform: translateY(0px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.sp-nav__sub-list.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.sp-nav__sub-item p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.sp-nav__btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}

.copy-text {
  font-size: 10px;
  color: #999999;
}

.sp-nav__btm-sns {
  width: 20px;
  margin-right: 10px;
}

.modal-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.modal-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 50vw;
  height: 100vh;
  padding: 40px;
  transition: all 0.3s ease;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 1080px) {
  .modal-menu__inner {
    display: block;
    width: 70vw;
    padding: 100px 40px;
    padding-top: 120px;
  }
}

.modal-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1080px) {
  .modal-menu__list {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .modal-menu__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.modal-menu__item a {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
@media (max-width: 600px) {
  .modal-menu__item a {
    padding: 0;
  }
}

.modal-menu__item-text {
  font-size: 24px;
}
@media (max-width: 768px) {
  .modal-menu__item-text {
    font-size: 18px;
  }
}

.modal-menu__item-blank {
  display: flex;
  align-items: center;
}

.modal-menu__item-blank span {
  display: flex;
  align-items: center;
  width: 16px;
  margin-left: 12px;
  line-height: 1;
}
@media (max-width: 600px) {
  .modal-menu__item-blank span {
    width: 13px;
  }
}

.modal-menu__item-en {
  font-size: 13px;
  color: #00AFED;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .modal-menu__item-en {
    font-size: 10px;
  }
}

.modal-menu__item-instagram a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

.modal-menu__item-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 600px) {
  .modal-menu__item-icon {
    width: 13px;
    height: 13px;
  }
}

.modal-menu__item-text-instagram {
  font-size: 16px;
}
@media (max-width: 600px) {
  .modal-menu__item-text-instagram {
    font-size: 13px;
  }
}

.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(800px + 40px);
}

.container-md {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(960px + 40px);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1100px + 40px);
}

.container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 40px);
}

.container-xl {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1300px + 40px);
}

/* ハンバーガーメニューのボタン位置 */
.hamburger-menu {
  width: 32px; /*ハンバーガーメニューの線の幅*/
  height: 24px;
  position: fixed;
  top: 24px; /*(ヘッダーの高さ)ー(メニューボタンの高さ)/2*/
  right: 20px;
  background: transparent;
  z-index: 999;
}
@media (max-width: 600px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu__icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger-menu__icon span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: #000; /*メニューバーの色*/
  transition: ease 0.4s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}
.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(45deg);
}
.hamburger-menu.active span:nth-child(1) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(-45deg);
}

.opening {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #222222;
  z-index: 999;
}

.opening__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.top-company__info-item a:hover {
  opacity: 1;
}

.top-company__info-item img,
.top-company__info-item p,
.top-company__info-item h3 {
  transition: all 0.3s ease;
}

.top-company__info-item:hover img,
.top-company__info-item:hover p,
.top-company__info-item:hover h3 {
  opacity: 0.7;
}

.wpcf7-submit {
  transition: all 0.3s ease;
}
.wpcf7-submit:hover {
  opacity: 0.7;
}

.top-service__info-content a:hover {
  opacity: 1;
}

.m-red-accent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-red-accent::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  transform: translateY(-4px);
  background: url("../img/common/red-accent.png") center center/contain no-repeat;
}

.m-loading {
  text-align: center;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 40px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 200px;
}
.m-loading__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-loading__dots {
    gap: 15px;
  }
}
.m-loading__dot {
  width: 13px;
  height: 13px;
  background-color: #D7D7D7;
  border-radius: 50%;
  animation: loadingDot 1.5s infinite ease-in-out;
}
@media (max-width: 600px) {
  .m-loading__dot {
    width: 8px;
    height: 8px;
  }
}
.m-loading__dot:nth-child(1) {
  animation-delay: 0s;
}
.m-loading__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.m-loading__dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loadingDot {
  0%, 80%, 100% {
    background-color: #D7D7D7;
    transform: scale(1);
  }
  40% {
    background-color: #A0A0A0;
    transform: scale(1.15);
  }
}
.m-pageV {
  width: 100%;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 600px) {
  .m-pageV {
    margin-bottom: 60px;
  }
}

.m-pageV--base::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 80%;
  background: url("../img/common/page-head_bg.png") top left/cover no-repeat;
  z-index: -1;
}
@media (max-width: 600px) {
  .m-pageV--base::before {
    width: 80%;
    height: 50%;
  }
}

.m-pageV--child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url("../img/common/page-head_bg.png") bottom left/cover no-repeat;
  z-index: -1;
  width: 70%;
}
@media (max-width: 1080px) {
  .m-pageV--child::before {
    background: url("../img/common/page-head_bg.png") bottom right/cover no-repeat;
  }
}
@media (max-width: 600px) {
  .m-pageV--child::before {
    width: 80%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .m-pageV--child .m-pageV__inner {
    flex-direction: column !important;
  }
}
.m-pageV--child .m-pageV__inner h2 {
  font-size: 32px;
}
@media (max-width: 768px) {
  .m-pageV--child .m-pageV__inner h2 {
    font-size: 16px;
  }
}

.m-pageV--base-child .m-pageV__title h1 {
  text-align: left;
}

.m-pageV--base-child .m-pageV__title {
  margin: 0;
}

@media (max-width: 600px) {
  .m-pageV--base-child::before {
    height: 100%;
  }
}

.m-page__head {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .m-page__head {
    font-size: 28px;
  }
}

.m-pageV__inner {
  padding-top: 200px;
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .m-pageV__inner {
    padding-top: 120px;
  }
}
@media (max-width: 600px) {
  .m-pageV__inner {
    width: 100%;
    padding: 0 20px;
    padding-top: 112px;
    flex-direction: column-reverse;
  }
}

.m-pageV__inner--post {
  padding-top: 260px !important;
}
@media (max-width: 600px) {
  .m-pageV__inner--post {
    padding-top: 160px !important;
  }
}

.m-pageV__img {
  width: 22vw;
  min-width: 100px;
  max-width: 400px;
}
@media (max-width: 600px) {
  .m-pageV__img {
    width: 50%;
    margin-top: 40px;
  }
}

.m-pageV__img img {
  aspect-ratio: 1/0.6;
  object-fit: contain;
}

.m-pageV__title {
  text-align: right;
}
@media (max-width: 600px) {
  .m-pageV__title {
    margin: 0 0 0 auto;
  }
}

.m-pageV__title span {
  font-size: 100px;
  font-weight: 600;
  font-family: "Montserrat", "serif";
}
@media (max-width: 1080px) {
  .m-pageV__title span {
    font-size: 64px;
  }
}
@media (max-width: 600px) {
  .m-pageV__title span {
    font-size: 50px;
  }
}
@media (max-width: 390px) {
  .m-pageV__title span {
    font-size: 40px;
  }
}

.m-pageV__title h1 {
  font-size: 24px;
  font-weight: 500;
  color: #00AFED;
}
@media (max-width: 600px) {
  .m-pageV__title h1 {
    font-size: 16px;
  }
}

.m-pageV__title .m-post__title-date {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  font-family: "Noto Sans JP", "serif";
}
@media (max-width: 600px) {
  .m-pageV__title .m-post__title-date {
    font-size: 13px;
  }
}

.m-pageV__title .m-post__title-date-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 600px) {
  .m-pageV__title .m-post__title-date-wrap {
    gap: 10px;
  }
}

.m-pageV__title .m-post__title-category {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  font-family: "Noto Sans JP", "serif";
  color: #00AFED;
  pointer-events: none;
}
@media (max-width: 600px) {
  .m-pageV__title .m-post__title-category {
    font-size: 13px;
  }
}

.m-pageV__title .m-post__title {
  font-size: 32px;
  font-weight: 400;
  margin-top: 40px;
  color: #333333;
}
@media (max-width: 600px) {
  .m-pageV__title .m-post__title {
    font-size: 22px;
    margin-top: 24px;
  }
}

.m-page-main {
  border-top: 1px solid #D8D8D8;
}

.m-grid-4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-4col {
    grid-template-columns: 1fr 1fr;
  }
}

.m-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-3col {
    grid-template-columns: 1fr;
  }
}

.m-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-2col {
    grid-template-columns: 1fr;
  }
}

.m-flex-2col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.m-more-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 260px;
  padding: 20px 14px 20px 24px;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
}

@media (max-width: 600px) {
  .m-more-btn a span:nth-child(1) {
    font-size: 14px;
  }
}

.m-more-btn a span:nth-child(2) {
  width: 50px;
  height: 32px;
}
@media (max-width: 600px) {
  .m-more-btn a span:nth-child(2) {
    width: 40px;
    height: 25px;
  }
}

.m-recruit {
  background: #fff;
  width: fit-content;
  padding: 10px;
  padding-right: 24px;
  border-radius: 6px;
}

.m-recruit a {
  display: flex;
  position: relative;
}

.m-recruit-text {
  margin-left: 20px;
  margin-right: 24px;
}

.m-recruit-text-title {
  color: #00AFED;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .m-recruit-text-title {
    font-size: 20px;
  }
}

.m-recruit-text-description {
  color: #333333;
  font-size: 13px;
}
@media (max-width: 600px) {
  .m-recruit-text-description {
    font-size: 12px;
  }
}

.m-recruit-thumb {
  width: 120px;
  height: 120px;
}
@media (max-width: 600px) {
  .m-recruit-thumb {
    width: 90px;
    height: 90px;
  }
}

.m-recruit-arrow {
  position: absolute;
  width: 16px;
  height: auto;
  bottom: 0;
  right: 0;
  transform: translateY(-50%);
}

.m-news-cat__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-news-cat__list {
    flex-direction: row;
    gap: 10px;
  }
}

.m-news-cat--sp {
  display: none;
}
@media (max-width: 600px) {
  .m-news-cat--sp {
    display: block;
    margin-top: 40px;
  }
}

.m-news-cat__item a {
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  padding: 12px 19px;
  border-radius: 4px;
  background: #ECF2F5;
}
@media (max-width: 600px) {
  .m-news-cat__item a {
    font-size: 14px;
    padding: 10px 14px;
  }
}

.m-news-cat__item.active a {
  color: #fff;
  background-color: #00AFED;
}

.m-news-posts__list .m-news-posts__item:first-child {
  padding-top: 0;
}

.m-news-posts__item {
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 600px) {
  .m-news-posts__item {
    padding: 28px 0;
  }
}

.m-news-posts__item--loaded {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.m-news-posts__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-news-posts__item-inner {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .m-news-posts__item-inner {
    gap: 15px;
  }
}

.m-news-posts__item-thumb {
  width: 100%;
  max-width: 180px;
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 180/120;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .m-news-posts__item-thumb {
    max-width: 120px;
    aspect-ratio: 120/80;
  }
}

.m-news-posts__date {
  padding-left: 30px;
}
@media (max-width: 1080px) {
  .m-news-posts__date {
    padding-left: 0px;
  }
}
@media (max-width: 600px) {
  .m-news-posts__date {
    padding-left: 0;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
  }
}

.m-news-posts__date-day {
  font-size: 15px;
}
@media (max-width: 600px) {
  .m-news-posts__date-day {
    font-size: 12px;
  }
}

.m-news-posts__date-cat {
  color: #00AFED;
  font-size: 13px;
  font-weight: 500;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .m-news-posts__date-cat {
    margin-top: 0;
    font-size: 11px;
    margin-left: 12px;
  }
}

.m-news-posts__item-content {
  display: flex;
}
@media (max-width: 1080px) {
  .m-news-posts__item-content {
    flex-direction: column;
  }
}

.m-news-posts__title {
  padding-left: 70px;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .m-news-posts__title {
    padding-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .m-news-posts__title {
    font-size: 14px;
    margin-top: 0px;
  }
}

.m-news-posts__arrow {
  height: auto;
  padding-left: 80px;
}
@media (max-width: 1080px) {
  .m-news-posts__arrow {
    padding-left: 25px;
  }
}
@media (max-width: 600px) {
  .m-news-posts__arrow {
    display: none;
  }
}

.m-news-posts__arrow img {
  width: 20px;
  height: auto;
}

.m-page-2col {
  position: relative;
}

.m-page-2col__inner {
  padding-right: 8%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .m-page-2col__inner {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .m-page-2col__inner {
    padding-right: 0;
  }
}

.m-page-2col__aside {
  width: 22vw;
  position: sticky;
  top: 0px;
  left: 0;
  padding-top: 160px;
  padding-bottom: 160px;
  padding-left: 5%;
}
@media (max-width: 1080px) {
  .m-page-2col__aside {
    width: 35vw;
    padding-top: 100px;
  }
}
@media (max-width: 600px) {
  .m-page-2col__aside {
    display: none;
  }
}

.m-page-2col__aside-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-page-2col__aside-item a {
  display: block;
  padding: 0px 12px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
  border-radius: 4px;
  line-height: 1;
}

.m-page-2col__aside-item.is-active a {
  color: #00AFED;
}

.m-page-2col__main {
  width: 100%;
  position: relative;
  padding-left: 10%;
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 1080px) {
  .m-page-2col__main {
    padding-left: 40px;
    padding-top: 100px;
  }
}
@media (max-width: 600px) {
  .m-page-2col__main {
    padding: 80px 20px;
    padding-left: 20px;
  }
}

.m-page-2col__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #D8D8D8;
  z-index: -1;
}
@media (max-width: 600px) {
  .m-page-2col__main::before {
    display: none;
  }
}

.grecaptcha-badge {
  opacity: 0 !important;
}

.sp-search-container__inner {
  display: none;
}

@media (max-width: 600px) {
  .sp-search-container__inner {
    display: block;
    padding-top: 24px;
  }
}

@media (max-width: 600px) {
  .sp-search-container {
    position: relative;
    padding-bottom: 24px;
  }
  .sp-search-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 100vw;
    height: 1px;
    background-color: #D8D8D8;
  }
}

.sp-search-container__title {
  width: fit-content;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
}

.sp-search-container__img {
  width: 22px;
  height: 22px;
}

.sp-search-container__minus-img {
  display: none;
}

.sp-search-container__minus-img.active {
  display: block;
}

.sp-search-container__plus-img.active {
  display: none;
}

.search-container {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .search-container {
    margin-top: 30px;
    display: none;
  }
}

@media (max-width: 600px) {
  .search-container.active {
    display: block;
    margin-bottom: 46px;
  }
}

.search-container__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-container__list-wrap {
  display: flex;
  align-items: baseline;
}
@media (max-width: 600px) {
  .search-container__list-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.search-container__list-title {
  min-width: 8em;
  margin-right: 48px;
}
@media (max-width: 600px) {
  .search-container__list-title {
    margin-right: 0;
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.search-container__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-container__item {
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  padding: 10px 16px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media (max-width: 1080px) {
  .search-container__item {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .search-container__item {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .search-container__item {
    font-size: 12px;
  }
}
.search-container__item input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  position: absolute;
  left: -9999px;
  pointer-events: none;
}
.search-container__item label {
  cursor: pointer;
  margin: 0;
  flex: 1;
}

.search-container__btn-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .search-container__btn-wrap {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .search-container__btn-wrap {
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .search-container__btn-wrap {
    max-width: 280px;
  }
}

.search-container__btn {
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
  background: rgb(34, 34, 34);
  color: #fff;
  padding: 27px 10px;
  margin-top: 60px;
  transition: background 0.2s ease;
}
@media (max-width: 1080px) {
  .search-container__btn {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .search-container__btn {
    font-size: 14px;
    margin-top: 16px;
  }
}

.search-container__btn::before {
  content: "";
  transform: translateY(2px);
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url(../img/common/search-icon.png) no-repeat center center/contain;
}

.search-container__btn:hover {
  background: rgba(34, 34, 34, 0.9);
}

.search-container__btn:disabled {
  cursor: not-allowed;
  background: rgba(34, 34, 34, 0.6);
}

.search-container__item.active {
  background: #ECF2F5;
  color: #333;
  border-color: #333;
}

.search-container__item input[type=checkbox]:checked + label {
  color: #333;
  font-weight: 500;
}

.search-container__item:has(input[type=checkbox]:checked) {
  background: #ECF2F5;
  color: #333;
  border-color: #333;
}

.search-result {
  padding-top: 120px;
  padding-bottom: 160px;
}
@media (max-width: 600px) {
  .search-result {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.search-result__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
}
@media (max-width: 1080px) {
  .search-result__list {
    gap: 60px 40px;
  }
}
@media (max-width: 768px) {
  .search-result__list {
    gap: 50px 20px;
  }
}
@media (max-width: 600px) {
  .search-result__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 70px 0;
  }
}

.search-result__item {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.search-result__item:hover {
  opacity: 0.8;
}

.search-result__item-desc {
  padding-top: 24px;
}
@media (max-width: 600px) {
  .search-result__item-desc {
    padding-top: 16px;
  }
}

.search-result__item-title {
  font-size: 22px;
  line-height: 1.35;
}
@media (max-width: 1080px) {
  .search-result__item-title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .search-result__item-title {
    font-size: 18px;
  }
}

.search-result__item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.search-result__item-category span {
  font-size: 13px;
  color: #666;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  padding: 4px 8px;
}
@media (max-width: 768px) {
  .search-result__item-category span {
    font-size: 12px;
  }
}

.search-result__item-img img {
  aspect-ratio: 1/0.6;
}

.search-result__loading {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  color: #666;
}

.search-result__no-results {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  color: #666;
}

.popup-contents .swiper-wrapper {
  max-height: 500px;
}
@media (max-width: 600px) {
  .popup-contents .swiper-wrapper {
    max-height: 250px;
  }
}

.popup-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.popup-swiper {
  width: 100%;
  margin-bottom: 20px;
}

.popup-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.popup-carousel__controls {
  margin-top: auto;
}

.popup-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.popup-carousel__prev,
.popup-carousel__next {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  padding: 0;
}

.popup-carousel__prev:hover,
.popup-carousel__next:hover {
  opacity: 0.7;
}

.popup-carousel__prev img,
.popup-carousel__next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.popup-carousel__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  opacity: 1;
}
@media (max-width: 600px) {
  .popup-carousel__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.popup-carousel__pagination .swiper-pagination-bullet-active {
  background: #007bff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-result__no-results {
  text-align: center;
  padding: 60px 0px;
  color: #333333;
}
.search-result__no-results p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 600px) {
  .search-result__no-results p {
    font-size: 13px;
  }
}

.m-post-main {
  width: 100%;
  border-top: 1px solid #D8D8D8;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .m-post-main {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}
@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}
.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}
.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}
.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}
.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

.m-post-main__inner {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 60px;
}

.m-pagination {
  margin-top: 80px;
}

.m-pagination__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.m-pagination__btn a {
  text-decoration: none;
  color: #222222;
}

.m-pagination__btn--back {
  width: 50%;
  max-width: 260px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .m-pagination__btn--back {
    width: 50%;
    max-width: 180px;
  }
}

.m-pagination__btn--back a {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
  padding: 24px;
  padding-left: 15px;
}
@media (max-width: 600px) {
  .m-pagination__btn--back a {
    padding: 15px;
    padding-left: 10px;
  }
}

.m-pagination__btn--back span {
  flex-shrink: 0;
  display: block;
}

.m-pagination__btn--back img {
  width: 50px;
  height: auto;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .m-pagination__btn--back img {
    width: 30px;
  }
}

.m-switch-btn {
  display: flex;
  align-items: center;
}

.m-pagination__btn--back span {
  font-weight: 400;
}

.m-switch-btn img {
  display: inline-block;
  width: 20px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .m-switch-btn img {
    display: none;
  }
}

.desktop-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .desktop-text {
    font-size: 13px;
  }
}

/********** utils **********/
.u-mt5 {
  margin-top: 5px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

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

.u-mt64 {
  margin-top: 64px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

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

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-center {
  text-align: center;
}

.u-mc {
  margin: 0 auto;
}

.u-mr {
  margin: 0 0 0 auto;
}

.u-en {
  font-family: "Montserrat", "serif";
}

.u-ja {
  font-family: "Noto Sans JP", "serif";
}

.u-pc-only {
  display: block;
}
@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.m-more-btn--center a {
  margin: 0 auto;
}

/********** pages **********/
/* top-page*/
.top-service {
  margin-top: 160px;
  position: relative;
}
@media (max-width: 600px) {
  .top-service {
    margin-top: 90px;
  }
}

.top-service .m-section-ttl {
  width: 65vw;
  max-width: 700px;
}
@media (max-width: 600px) {
  .top-service .m-section-ttl {
    width: 100%;
  }
}

.top-move__txt {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  transform: translateY(50%);
  z-index: -1;
}
@media (max-width: 600px) {
  .top-move__txt {
    transform: translateY(156%);
  }
}
.top-move__txt img {
  animation: slideText 25s linear infinite;
  display: inline-block;
  height: 150px;
  width: auto;
  object-fit: contain;
  object-position: center;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .top-move__txt img {
    animation: slideText 15s linear infinite;
    height: 90px;
    margin-right: 30px;
  }
}

@keyframes slideText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-service__inner {
  align-items: start;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .top-service__inner {
    margin-top: 88px;
    flex-direction: column-reverse;
  }
}

.top-service__left {
  width: 40%;
}
@media (max-width: 600px) {
  .top-service__left {
    width: 100%;
  }
}

.top-service__left-content-text {
  line-height: 2;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .top-service__left-content-text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.top-service__right {
  width: 50%;
}
@media (max-width: 600px) {
  .top-service__right {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

.top-service__info {
  margin-top: 100px;
}

.top-service__info-container {
  width: 83%;
  margin: 0 0 0 auto;
}
@media (max-width: 600px) {
  .top-service__info-container {
    width: calc(100% - 20px);
  }
}

.top-service__info-inner {
  width: 100%;
  display: flex;
  justify-content: end;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .top-service__info-inner {
    flex-direction: column;
  }
}

.top-service__info-content {
  width: 100%;
  height: 80vh;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .top-service__info-content {
    height: 20vh;
  }
}
@media (max-width: 600px) {
  .top-service__info-content {
    height: 30vh;
  }
}

.top-service__info-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.top-service__info-content a {
  display: block;
  width: 100%;
  height: 100%;
}

.top-service__info-content-icon {
  position: absolute;
  bottom: 50px;
  right: 40px;
  width: 72px;
  height: auto;
  transition: all 0.3s ease;
}
@media (max-width: 1080px) {
  .top-service__info-content-icon {
    width: 50px;
    right: 24px;
    bottom: 30px;
  }
}

.top-service__info-content-icon--blue {
  opacity: 0;
}

.top-service__info-content:hover .top-service__info-content-icon--white {
  opacity: 0;
}
.top-service__info-content:hover .top-service__info-content-icon--blue {
  opacity: 1;
}

.top-service__info-content-inner {
  padding: 70px 40px;
}
@media (max-width: 1080px) {
  .top-service__info-content-inner {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .top-service__info-content-inner {
    padding: 28px;
  }
}

.top-service__info-inner .top-service__info-content:nth-child(1) {
  border-radius: 30px 0 0 30px;
}
@media (max-width: 1080px) {
  .top-service__info-inner .top-service__info-content:nth-child(1) {
    border-radius: 20px 0 0 0px;
  }
}

@media (max-width: 1080px) {
  .top-service__info-inner .top-service__info-content:nth-child(3) {
    border-radius: 0px 0 0 20px;
  }
}

.top-service__info-inner .top-service__info-content:nth-child(1)::before {
  background: url(../img/top/top-service_01.webp) bottom center/cover no-repeat;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.top-service__info-inner .top-service__info-content:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
  z-index: -1;
}

.top-service__info-inner .top-service__info-content:nth-child(1):hover::before {
  transform: scale(1.02);
}

.top-service__info-inner .top-service__info-content:nth-child(1):hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.top-service__info-inner .top-service__info-content:nth-child(2)::before {
  background: url(../img/top/top-service_02.webp) bottom center/cover no-repeat;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.top-service__info-inner .top-service__info-content:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
  z-index: -1;
}

.top-service__info-inner .top-service__info-content:nth-child(2):hover::before {
  transform: scale(1.02);
}

.top-service__info-inner .top-service__info-content:nth-child(2):hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.top-service__info-inner .top-service__info-content:nth-child(3)::before {
  background: url(../img/top/top-service_03.webp) bottom center/cover no-repeat;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.top-service__info-inner .top-service__info-content:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
  z-index: -1;
}

.top-service__info-inner .top-service__info-content:nth-child(3):hover::before {
  transform: scale(1.02);
}

.top-service__info-inner .top-service__info-content:nth-child(3):hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.top-service__info-content-inner h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1080px) {
  .top-service__info-content-inner h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .top-service__info-content-inner h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.top-service__info-content-inner h3 span {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .top-service__info-content-inner h3 span {
    font-size: 12px;
  }
}

.top-recruit {
  margin-top: 200px;
  background-color: #00AFED;
  border-radius: 24px;
}
@media (max-width: 600px) {
  .top-recruit {
    margin-top: 80px;
    border-radius: 28px 28px 24px 24px;
  }
}

.top-recruit__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .top-recruit__inner {
    flex-direction: column;
  }
}

.top-recruit__inner {
  display: flex;
}

.top-recruit__inner-left {
  width: 60%;
  height: 100%;
}
@media (max-width: 768px) {
  .top-recruit__inner-left {
    width: 40%;
  }
}
@media (max-width: 600px) {
  .top-recruit__inner-left {
    width: 100%;
    margin: 0 0 0 auto;
  }
}

.top-recruit__inner-left picture {
  width: 100%;
  height: 100%;
}

.top-recruit__inner-left picture img {
  object-fit: cover;
}

.top-recruit__inner-right {
  width: 40%;
  padding: 40px 40px 40px 7vw;
}
@media (max-width: 768px) {
  .top-recruit__inner-right {
    width: 60%;
  }
}
@media (max-width: 600px) {
  .top-recruit__inner-right {
    width: 100%;
    padding: 20px;
    padding-bottom: 70px;
    margin-top: -50px;
  }
}

.top-recruit__btn {
  width: 260px;
  margin-top: 70px;
}
@media (max-width: 600px) {
  .top-recruit__btn {
    margin-top: 30px;
    width: 210px;
  }
}

.top-recruit__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  padding: 24px 16px;
  border-radius: 4px;
}

.top-recruit__btn-text-title {
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .top-recruit__btn-text-title {
    font-size: 14px;
  }
}

.top-recruit__btn-arrow {
  width: 50px;
  height: auto;
}
@media (max-width: 600px) {
  .top-recruit__btn-arrow {
    width: 40px;
  }
}

.top-news {
  margin-top: 150px;
}
@media (max-width: 600px) {
  .top-news {
    margin-top: 80px;
  }
}

.top-news__inner {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 600px) {
  .top-news__inner {
    flex-direction: column;
    margin-top: 50px;
  }
}

.top-news .m-news-posts {
  width: 70%;
}
@media (max-width: 600px) {
  .top-news .m-news-posts {
    width: 100%;
  }
}

.top-news .m-more-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
}

@media (max-width: 600px) {
  .top-news .m-news-cat__list {
    margin-bottom: 60px;
  }
}

.top-news .m-news-cat {
  width: 30%;
}
@media (max-width: 600px) {
  .top-news .m-news-cat {
    width: 100%;
  }
}

.top-company {
  margin-top: 180px;
}
@media (max-width: 600px) {
  .top-company {
    margin-top: 90px;
  }
}

.top-company__head-wrap {
  position: relative;
}

.top-company__head-container {
  position: absolute;
  width: 60%;
  padding-left: 15%;
  background: #fff;
  padding-top: 88px;
  padding-bottom: 60px;
  padding-right: 20px;
  left: 0;
  bottom: 0;
  border-radius: 0px 40px 0 0;
}
@media (max-width: 1080px) {
  .top-company__head-container {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .top-company__head-container {
    position: relative;
    width: 100%;
    padding: 0 20px;
    padding-top: 50px;
  }
}

.top-company__head {
  display: flex;
  align-items: end;
}
@media (max-width: 600px) {
  .top-company__head {
    flex-direction: column;
    align-items: start;
  }
}

.top-company__head-ttl {
  margin-right: 40px;
  flex-shrink: 0;
}

.top-company__head p {
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 600px) {
  .top-company__head p {
    font-size: 14px;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}

.top-company__info-container {
  width: 85%;
  margin: 0 0 0 auto;
}
@media (max-width: 600px) {
  .top-company__info-container {
    width: 100%;
    margin: 0 auto;
  }
}

.top-company__info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .top-company__info-inner {
    grid-template-columns: 1fr;
  }
}

.top-company__info-item a {
  display: block;
  border: 1px solid #E8E8E8;
  padding: 40px;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media (max-width: 600px) {
  .top-company__info-item a {
    display: flex;
    padding: 28px 20px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-right: none;
    border-left: none;
    align-items: center;
  }
}

.top-company__info .top-company__info-item:nth-child(1) a {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 600px) {
  .top-company__info .top-company__info-item:nth-child(1) a {
    border-radius: 0px;
  }
}

.top-company__info-item-inner {
  display: flex;
}
@media (max-width: 600px) {
  .top-company__info-item-inner {
    align-items: center;
  }
}

.top-company__info-item-thumb {
  width: 100px;
  height: 100px;
}
@media (max-width: 600px) {
  .top-company__info-item-thumb {
    width: 80px;
    height: 80px;
  }
}

.top-company__info-item-text {
  padding-left: 40px;
}
@media (max-width: 600px) {
  .top-company__info-item-text {
    padding-left: 20px;
  }
}

.top-company__info-item-text h3 {
  font-size: 23px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .top-company__info-item-text h3 {
    font-size: 16px;
  }
}

.top-company__info-item-text p {
  font-size: 14px;
  font-weight: 500;
  color: #00AFED;
  font-family: "Montserrat", "serif";
}
@media (max-width: 600px) {
  .top-company__info-item-text p {
    font-size: 12px;
  }
}

.top-company__more-btn {
  width: 74px;
  height: auto;
  margin: 0 0 0 auto;
  margin-top: 82px;
}
@media (max-width: 600px) {
  .top-company__more-btn {
    margin-top: 0px;
    margin-left: auto;
    width: 40px;
  }
}

.top-cta__inner {
  display: flex;
}
@media (max-width: 600px) {
  .top-cta__inner {
    flex-direction: column;
  }
}

.top-cta__inner-left {
  background: #00AFED;
  padding-top: 300px;
  /* 200pxから250pxに増加 */
  width: fit-content;
  margin-top: -100px;
  position: relative;
  z-index: 0;
  padding-left: 15%;
  padding-right: 15%;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .top-cta__inner-left {
    padding-right: 10%;
    padding-left: 10%;
  }
}
@media (max-width: 600px) {
  .top-cta__inner-left {
    width: 100%;
    padding: 50px 20px;
    margin-top: 0px;
  }
}

.top-cta__inner-left-head {
  white-space: nowrap;
}

.top-cta__inner-left-head p {
  font-size: 15px;
  margin-top: 50px;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .top-cta__inner-left-head p {
    font-size: 14px;
    margin-top: 30px;
  }
}

.top-cta__inner-right {
  padding-top: 200px;
  padding-bottom: 130px;
  width: 100%;
  background: #EFF7FC;
}
@media (max-width: 600px) {
  .top-cta__inner-right {
    padding: 50px 20px 60px 20px;
  }
}

.top-cta__inner-right-contents {
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .top-cta__inner-right-contents {
    width: 100%;
    margin: auto;
  }
}

.top-cta__inner-right-content-inner h3 {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner h3 {
    font-size: 14px;
    gap: 5px;
  }
}
.top-cta__inner-right-content-inner h3 span {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner h3 span {
    font-size: 12px;
  }
}

.top-cta__inner-right-content-inner.u-tel h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
}

.top-cta__inner-right-content-inner.u-tel h3::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/tel-icon.png) no-repeat center center/contain;
  display: inline-block;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner.u-tel h3::before {
    width: 20px;
    height: 20px;
  }
}

.top-cta__inner-right-content-inner.u-mail h3 {
  margin-top: 70px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner.u-mail h3 {
    margin-top: 50px;
  }
}

.top-cta__inner-right-content-inner.u-mail h3::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/mail-icon.png) no-repeat center center/contain;
  display: inline-block;
}

.top-cta__inner-right-content-inner p {
  font-size: 44px;
  font-family: "Montserrat", "serif";
  font-weight: 600;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner p {
    font-size: 32px;
    margin-top: 18px;
  }
}
.top-cta__inner-right-content-inner p span {
  font-size: 26px;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-inner p span {
    font-size: 20px;
  }
}

.top-cta__inner-right-content-btn a {
  display: flex;
  width: 100%;
  max-width: 550px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  padding: 24px 16px;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-btn a {
    font-size: 14px;
    padding: 16px 12px;
  }
}

.top-cta__inner-right-content-btn span {
  display: block;
  width: 50px;
  height: auto;
}
@media (max-width: 600px) {
  .top-cta__inner-right-content-btn span {
    width: 40px;
  }
}

.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 24px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}
.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}
.policy__content .wp-block-spacer {
  height: 40px !important;
}
.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}
.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

.contact {
  padding: 120px 0;
}
@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
  }
}

@media (max-width: 1080px) {
  .contact .container-md {
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .contact .container-md {
    width: 100%;
    padding: 0 20px;
  }
}

.contact__info {
  font-size: 14px;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact__info a {
  text-decoration: underline;
}

.contact__form {
  margin-top: 64px;
  width: 100%;
}

.form-unit,
.form-unit-column {
  width: 100%;
  margin-bottom: 2em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1080px) {
  .form-unit,
  .form-unit-column {
    flex-direction: column;
    padding-bottom: 20px;
    gap: 10px;
  }
}

.form-unit-column .form-unit {
  flex-direction: column;
}

.form-unit-wrap {
  width: 60%;
}
@media (max-width: 1080px) {
  .form-unit-wrap {
    width: 100%;
  }
}

.form-unit__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  min-width: 13em;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .form-unit__head {
    font-size: 16px;
  }
}

.form-unit-wrap .form-unit__head {
  font-size: 15px;
  font-weight: 400;
}

.m-required::after {
  content: "*";
  color: #00AFED;
  font-size: 16px;
  margin-left: 2px;
  border-radius: 4px;
  padding: 3px;
}
@media (max-width: 600px) {
  .m-required::after {
    font-size: 10px;
  }
}

.wpcf7-form-control-wrap {
  width: 60%;
}
@media (max-width: 1080px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.form-unit-wrap .form-unit-item:first-child {
  width: 50%;
}

.form-unit-wrap .form-unit-item {
  margin-top: 13px;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  padding: 16px;
  background: #ECF2F5;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 600px) {
  .form-unit__input,
  .form-unit__input-wrap {
    padding: 10px;
  }
}

.page-contact-confirm .form-unit__input-wrap,
.page-contact-confirm .form-unit__textarea-wrap {
  width: 60%;
}
@media (max-width: 1080px) {
  .page-contact-confirm .form-unit__input-wrap,
  .page-contact-confirm .form-unit__textarea-wrap {
    width: 100%;
  }
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  background: #ECF2F5;
  border-radius: 4px;
  font-size: 16px;
}

input::placeholder {
  color: #AFAFAF;
}

textarea::placeholder {
  color: #AFAFAF;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
}
.wpcf7-list-item:first-child {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}
@media (max-width: 600px) {
  .wpcf7-list-item {
    margin-left: 0;
    margin-top: 13px;
  }
}

.wpcf7-submit {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 70px auto 0;
  padding: 20px;
  border-radius: 4px;
  background: #222222;
  color: #fff;
  border: 1px solid #222222;
  transition: 0.3s;
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}
@media (max-width: 600px) {
  .wpcf7-radio {
    flex-direction: column;
  }
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  position: relative;
  background-color: #ECF2F5;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00AFED;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 5px;
  height: 10px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  transform: rotate(45deg) translate(-50%, -50%);
}

.form-unit__policy-link {
  border-bottom: 1px solid #555;
}

@media screen and (max-width: 768px) {
  .form-unit__policy-link {
    font-size: 15px;
  }
}
.form-consent {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.form-unit__info {
  line-height: 1.8;
}
@media (max-width: 600px) {
  .form-unit__info {
    font-size: 13px;
  }
}

.contact__btn {
  margin-top: 30px;
}

.contact__btn a {
  text-decoration: underline;
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  background-color: transparent;
}

.page-message__section {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  overflow-y: scroll;
}

.page-message__section-accent {
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  clip-path: inset(0);
  z-index: -1;
}

.page-message__section-accent-01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/company/company-section-bg01.jpg);
  background-size: cover;
  background-position: top 0% left 22%;
  z-index: -1;
  transition: filter 0.3s ease;
}

.page-message__section-inner {
  width: 50vw;
  margin: 0 0 0 auto;
  padding-top: 25vh;
  padding-right: 10vw;
  padding-bottom: 120px;
  color: #fff;
}
@media (max-width: 600px) {
  .page-message__section-inner {
    width: 100%;
    padding-top: 45vh;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-message__section-ttl {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .page-message__section-ttl {
    font-size: 20px;
  }
}

.page-message__section-ttl span:first-child {
  font-size: 100px;
  font-weight: 600;
  font-family: "Montserrat", "serif";
}
@media (max-width: 600px) {
  .page-message__section-ttl span:first-child {
    font-size: 64px;
  }
}

.page-message__section-copy {
  margin-top: 150px;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .page-message__section-copy {
    font-size: 22px;
    margin-top: 90px;
  }
}

.page-message__section-name {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .page-message__section-name {
    font-size: 18px;
  }
}

.page-message__section-name span {
  font-size: 12px;
  font-weight: 300;
}

.page-message__section-text-container {
  margin-top: 120px;
  line-height: 2;
}
@media (max-width: 600px) {
  .page-message__section-text-container {
    margin-top: 90px;
    font-size: 14px;
  }
}

.page-message__section-text {
  margin-top: 2em;
}

.page-message__mvv {
  margin-top: 160px;
  margin-bottom: 180px;
}
@media (max-width: 600px) {
  .page-message__mvv {
    margin-top: 90px;
    margin-bottom: 100px;
  }
}

.page-message__mvv-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .page-message__mvv-inner {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .page-message__mvv-inner {
    width: 100%;
  }
}

.page-message__mvv-title {
  font-size: 36px;
  font-weight: bold;
  flex-shrink: 0;
  min-width: 6em;
}
@media (max-width: 1080px) {
  .page-message__mvv-title {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .page-message__mvv-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.page-message__mvv-contents-item {
  border-top: 1px solid #D8D8D8;
  padding: 40px 0;
}
@media (max-width: 1080px) {
  .page-message__mvv-contents-item {
    padding: 20px 0;
  }
}

.page-message__mvv-contents-item:last-child {
  border-bottom: 1px solid #D8D8D8;
}

.page-message__mvv-contents-item-title {
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 13px;
}
@media (max-width: 1080px) {
  .page-message__mvv-contents-item-title {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .page-message__mvv-contents-item-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.page-message__mvv-contents-item-title span {
  font-size: 28px;
  color: #00AFED;
  font-family: "Montserrat", "serif";
  margin-bottom: 20px;
}
@media (max-width: 1080px) {
  .page-message__mvv-contents-item-title span {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .page-message__mvv-contents-item-title span {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.page-message__mvv-contents-item-text {
  font-family: "Montserrat", "serif";
}
@media (max-width: 600px) {
  .page-message__mvv-contents-item-text {
    font-size: 13px;
  }
}

.overview-container__content {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .overview-container__content {
    margin-top: 90px;
  }
}

.overview-container__content .overview-table {
  display: flex;
}
@media (max-width: 1080px) {
  .overview-container__content .overview-table {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .overview-container__content .overview-table {
    width: 100%;
  }
}

.overview-table h2 {
  width: 20%;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .overview-table h2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.overview-container__content .overview-table__list {
  width: 100%;
  border-top: 1px solid #D8D8D8;
}

.overview-container__content .overview-table__list a {
  color: #00AFED;
  text-decoration: none;
}
.overview-container__content .overview-table__list a:hover {
  text-decoration: underline;
}

.overview-container__content .overview-table__item {
  display: flex;
  border-bottom: 1px solid #D8D8D8;
  position: relative;
  padding: 30px 0;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__item {
    flex-direction: column;
  }
}

.overview-container__content .overview-table__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 1px;
  border-top: 1px solid #00AFED;
  z-index: 1;
  transform: translateY(-100%);
}

.overview-container__content .overview-table__term {
  flex-shrink: 0;
  width: 10em;
  font-weight: 500;
  border: none;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__term {
    width: 100%;
    font-size: 15px;
    margin-bottom: 13px;
  }
}

.overview-container__content .overview-table__description {
  flex: 1;
  border: none;
  margin: 0;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__description {
    font-size: 14px;
  }
}

.overview-container__content .overview-table__description + dd {
  padding-top: 0;
  margin-top: -15px;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__description + dd {
    margin-top: 0;
    padding-top: 5px;
  }
}

.overview-container__content .overview-table__info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-list {
    gap: 6px;
  }
}

.overview-container__content .overview-table__info-list--2col {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-list--2col {
    flex-direction: column;
    gap: 20px;
  }
}

.overview-table__info-title {
  font-weight: 700;
}

.js-accordion-title {
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.js-accordion-title::after {
  content: "";
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: translateY(-1px) rotate(135deg);
  transition: transform 0.05s ease;
}

.js-accordion-title.is-active::after {
  transform: rotate(-45deg);
}

.js-accordion-content {
  display: none;
}

.js-accordion-content.is-active {
  display: grid;
}

.overview-container__content .overview-table__info-item {
  margin: 0;
  line-height: 2;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-item {
    font-size: 13px;
  }
}

.overview-table__info-data {
  text-align: end;
}

.overview-container__content .overview-table__info-category {
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: bold;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-category {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.overview-container__content .overview-table__info-title {
  margin-bottom: 8px;
  margin-top: 0;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.overview-container__content .overview-table__info-group {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-group {
    margin-bottom: 15px;
  }
}

.overview-container__content .overview-table__info-column {
  gap: 10px;
}
@media (max-width: 600px) {
  .overview-container__content .overview-table__info-column {
    gap: 6px;
    grid-template-columns: 1fr;
  }
}

.organization-chart {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .organization-chart {
    margin-top: 90px;
  }
}

.history {
  margin-top: 120px;
  padding-bottom: 280px;
}
@media (max-width: 600px) {
  .history {
    margin-top: 90px;
    padding-bottom: 140px;
  }
}

/* historyでも共通のボーダーライン(overview-table__item::before)を適用するため上書きしない */
.history .overview-table__item::before {
  border-top: none;
}

.history .overview-table__item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  column-gap: 80px;
  row-gap: 24px;
  align-items: baseline;
  position: relative;
}
@media (max-width: 1080px) {
  .history .overview-table__item {
    column-gap: 30px;
    row-gap: 24px;
  }
}
@media (max-width: 600px) {
  .history .overview-table__item {
    grid-template-columns: 90px 1fr;
    column-gap: 12px;
    row-gap: 10px;
  }
}

.history .overview-table__term {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .history .overview-table__term {
    grid-column: 1/-1;
    gap: 6px;
  }
}

.history-year {
  font-size: 30px;
  font-family: "Montserrat", "serif";
  color: #00AFED;
  transform: translateY(3px);
}
@media (max-width: 600px) {
  .history-year {
    font-size: 24px;
  }
}

.history-month {
  grid-column: 2;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .history-month {
    grid-column: 1;
    font-size: 16px;
  }
}

.overview-table__info-list {
  margin-left: 40px;
}
@media (max-width: 600px) {
  .overview-table__info-list {
    margin-left: 0px;
  }
}

.overview-table__item-group-box {
  display: contents;
}

.overview-table__description .overview-table__info-list:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .overview-table__description .overview-table__info-list:not(:first-child) {
    margin-top: 40px;
  }
}

.history .overview-table__description {
  grid-column: 3;
  padding: 0;
}
@media (max-width: 600px) {
  .history .overview-table__description {
    grid-column: 1/-1;
  }
}

.history .overview-table__item dd:not(.overview-table__description) {
  grid-column: 2;
  margin: 0;
  padding: 0;
}
@media (max-width: 600px) {
  .history .overview-table__item dd:not(.overview-table__description) {
    grid-column: 1;
  }
}

.history .overview-table__info-list {
  margin-left: 0;
}

.history .overview-table__description + dd {
  margin-top: 0;
  padding-top: 0;
}

.sustainability {
  padding-top: 64px;
}

@media (max-width: 1080px) {
  .sustainability .container {
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .sustainability .container {
    width: 100%;
    padding: 0 20px;
  }
}

.sustainability h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1080px) {
  .sustainability h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .sustainability h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.sustainability p {
  line-height: 2;
}
@media (max-width: 600px) {
  .sustainability p {
    font-size: 14px;
  }
}

.sustainability__list {
  margin-top: 60px;
  counter-reset: sustainability-counter;
}

.sustainability__list p {
  display: flex;
  margin-top: 0.5em;
  counter-increment: sustainability-counter;
  font-size: 18px;
}
@media (max-width: 1080px) {
  .sustainability__list p {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .sustainability__list p {
    font-size: 15px;
  }
}

.sustainability__list p::before {
  content: counter(sustainability-counter) ". ";
  margin-right: 10px;
}

.sustainability__data {
  width: fit-content;
  margin: 0 0 0 auto;
  text-align: end;
}

.sustainability__pdf-list {
  margin-top: 96px;
  margin-bottom: 180px;
  gap: 30px 40px;
}
@media (max-width: 1080px) {
  .sustainability__pdf-list {
    gap: 20px 15px;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}
@media (max-width: 600px) {
  .sustainability__pdf-list {
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}

.sustainability__data p:last-child {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .sustainability__data p:last-child {
    font-size: 18px;
  }
}

.sustainability__pdf-list li a {
  display: flex;
  border: 1px solid #D8D8D8;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
}

.sustainability__pdf-list li a span {
  width: 24px;
  height: auto;
}

.privacy-policy {
  padding-top: 64px;
  padding-bottom: 180px;
}
@media (max-width: 600px) {
  .privacy-policy {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}

@media (max-width: 1080px) {
  .privacy-policy .container {
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .privacy-policy .container {
    width: 100%;
    padding: 0 20px;
  }
}

.privacy-policy h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 60px;
}
@media (max-width: 1080px) {
  .privacy-policy h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .privacy-policy h2 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}

.privacy-policy h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .privacy-policy h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

.privacy-policy p {
  line-height: 2;
}
@media (max-width: 600px) {
  .privacy-policy p {
    font-size: 14px;
  }
}

.privacy-policy .m-page-main__content p {
  margin-top: 1em;
}

.privacy-policy .wp-block-separator {
  margin-top: 60px;
  border-top: 1px solid #D8D8D8;
}
@media (max-width: 600px) {
  .privacy-policy .wp-block-separator {
    margin: 40px 0;
  }
}

.offices-list {
  width: 100%;
}

.offices-list__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #00AFED;
  border-left: 6px solid #00AFED;
  padding-left: 16px;
  line-height: 1.35;
}
@media (max-width: 1080px) {
  .offices-list__title {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .offices-list__title {
    font-size: 22px;
    margin-bottom: 20px;
    border-left: 4px solid #00AFED;
    padding-left: 10px;
  }
}

.offices-list__content {
  padding: 40px 0;
  border-top: 1px solid #D8D8D8;
}
@media (max-width: 600px) {
  .offices-list__content {
    padding: 20px 0;
  }
}

.offices-list .offices-list__content-inner {
  display: flex;
}
@media (max-width: 600px) {
  .offices-list .offices-list__content-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.offices-list__content-item-title {
  font-size: 20px;
  font-weight: bold;
  min-width: 240px;
  margin-right: 20px;
}
@media (max-width: 1080px) {
  .offices-list__content-item-title {
    font-size: 18px;
    margin-right: 10px;
  }
}

.offices-list__content-item-text {
  line-height: 1.8;
}
@media (max-width: 600px) {
  .offices-list__content-item-text {
    font-size: 14px;
  }
}

.offices-list__content-item-map {
  width: fit-content;
  margin: 0 0 0 auto;
}

.offices-list__content-item-map a {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 21px;
  background: #ECF2F5;
  font-size: 14px;
}
@media (max-width: 1080px) {
  .offices-list__content-item-map a {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .offices-list__content-item-map a {
    font-size: 13px;
    margin-top: 40px;
  }
}

.offices-list .offices-list__item:not(:first-child) {
  margin-top: 100px;
}
@media (max-width: 600px) {
  .offices-list .offices-list__item:not(:first-child) {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .offices-list__item {
    margin-top: 30px;
  }
}
.m-service-main {
  margin-top: 40px;
}

.m-service__page-map {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .m-service__page-map {
    display: none;
  }
}

.m-service__page-map-inner {
  width: 85%;
  margin: 0 auto;
}

.m-service__page-map ul {
  display: flex;
  gap: 30px;
  color: #666666;
}

.m-service__splide {
  width: 90%;
}
@media (max-width: 600px) {
  .m-service__splide {
    width: 100%;
  }
}

.m-service__splide .splide__track {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 600px) {
  .m-service__splide .splide__track {
    border-radius: 0;
  }
}

.m-service__splide .splide__slide img {
  min-height: 220px;
  max-height: 500px;
}

.m-service__content-wrap {
  padding-bottom: 100px;
}
@media (max-width: 1080px) {
  .m-service__content-wrap {
    padding-bottom: 70px;
  }
}

.m-service__content .m-service__content-wrap:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

@media (max-width: 600px) {
  .m-service__content-wrap .m-service__content:nth-child(even) .m-service__content-img {
    order: 1;
  }
}

@media (max-width: 600px) {
  .m-service__content-title {
    order: 2;
  }
}
.m-service__content {
  margin-top: 120px;
  align-items: center;
}
@media (max-width: 1080px) {
  .m-service__content {
    margin-top: 80px;
  }
}

.m-service__head {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 1080px) {
  .m-service__head {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .m-service__head {
    font-size: 24px;
  }
}

.m-service__head-text {
  line-height: 2;
}
@media (max-width: 600px) {
  .m-service__head-text {
    font-size: 14px;
  }
}

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

.m-service__content-title {
  padding-right: 80px;
}
@media (max-width: 1080px) {
  .m-service__content-title {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .m-service__content-title {
    padding-right: 0;
  }
}

.m-service__content-title h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1080px) {
  .m-service__content-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .m-service__content-title h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.m-service__content-title p {
  line-height: 2;
}
@media (max-width: 600px) {
  .m-service__content-title p {
    font-size: 14px;
  }
}

.m-service__img-grid {
  margin-top: 70px;
}

.m-service__content-title--reverse {
  order: 2;
  padding-right: 0;
  padding-left: 80px;
}
@media (max-width: 1080px) {
  .m-service__content-title--reverse {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .m-service__content-title--reverse {
    padding-left: 0;
  }
}

/* 関連記事 */
.m-record-contents {
  border-radius: 24px 24px 0 0;
  background: #ECF2F5;
  padding: 140px 0 160px 0;
}
@media (max-width: 1080px) {
  .m-record-contents {
    padding: 80px 0 120px 0;
  }
}
@media (max-width: 600px) {
  .m-record-contents {
    border-radius: 12px 12px 0 0;
    padding: 100px 0 120px 0;
  }
}

.m-record-contents__list {
  margin-top: 50px;
}

.m-record-contents__inner .m-more-btn {
  margin-top: 50px;
}/*# sourceMappingURL=main.css.map */