@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_border: #d5d5d5;
  --color_primary: #8BC40D;
  --color_primary_rgb: 139, 196, 13;
  --color_pink: #F55D5D;
  --color_blue: #1A90C4;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B";
  --font_en: "Montserrat", sans-serif;
  --semibold: 600;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
Base
-----------------------------------------------------------*/
body {
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  body {
    font-size: 1.5rem;
    line-height: 2;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  line-height: 1.5;
}

th,
dt {
  font-family: var(--font_jp);
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 95px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.w1400 {
  max-width: 1400px;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.header-layout {
  background-color: #fff;
  padding: 0 330px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 95px;
}

.h-btn-wrap {
  position: absolute;
  top: 0;
  right: 95px;
  display: flex;
  align-items: center;
}

.h-recruit,
.h-contact {
  width: 95px;
  height: 95px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.h-recruit .txt,
.h-contact .txt {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1;
}

.h-recruit {
  background-color: var(--color_pink);
  transition: 0.3s;
}

.h-recruit:hover {
  background-color: #e05252;
}

.h-contact {
  background-color: var(--color_blue);
  transition: 0.3s;
}

.h-contact:hover {
  background-color: #137dab;
}

/*------------
Gnavi 01
--------------*/
.gnavi01-list {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.gnavi01-list>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.9rem;
  white-space: nowrap;
  transition: color 0.3s;
}

.gnavi01-list a:hover {
  color: var(--color_primary);
}

/*dropdown*/
.dropdown {
  padding-right: 20px;
  position: relative;
}

.dropdown::after {
  content: "";
  background: url(../images/share/icon_arrow_dropdown.svg) no-repeat center center/contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 18px;
  right: 0;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  gap: 2px;
  pointer-events: none;
  background-color: #fff;
  border: 3px solid var(--color_primary);
  border-radius: 22px;
  padding: 25px 30px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  position: absolute;
  top: 68px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 35px;
}

.dropdown .sub-menu>li>a {
  padding-left: 22px;
  position: relative;
  transition: color 0.3s;
}

.dropdown .sub-menu>li>a::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: var(--color_primary);
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}

/*------------
Gnavi 02
--------------*/
.gnavi02 {
  position: fixed;
  top: 0;
  right: 0;
}

/* ハンバーガーメニュー */
.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  appearance: none;
  background-color: var(--color_primary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 95px;
  height: 95px;
  transition: background-color 0.3s;
  z-index: 20000;
}

.navi-menu-btn:hover {
  background-color: #7fb30a;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  margin: auto;
  width: 44px;
  height: 10px;
  background: transparent;
}

.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before {
  top: 0;
}

.navi-menu-btn .hamburger-line::after {
  top: 9px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
  top: 3px;
  transform: rotate(21deg);
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  top: 3px;
  transform: rotate(-21deg);
}

.navi-menu-btn .hamburger-txt {
  width: 100%;
  height: 100%;
  position: relative;
}

.navi-menu-btn .hamburger-txt::before {
  content: "MENU";
  position: absolute;
  bottom: 16px;
  right: 0;
  left: 0;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.navi-menu-btn[aria-expanded=true] .hamburger-txt::before {
  content: "CLOSE";
}

/* 中身 */
.gnavi02-contents {
  pointer-events: none;
  visibility: hidden;
  background: #F5F5F5;
  padding-bottom: 200px;
  position: fixed;
  inset: 0;
  transition: 0.5s;
  opacity: 0;
  z-index: 9999;
}

.gnavi02-contents.is-open {
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}

.gnavi02-logo {
  margin: 20px 0 0 30px;
}

/* レイアウト等 */
.gnavi02-layout {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.gnavi02-img {
  margin-bottom: 25px;
}

.gnavi02-img img {
  border-radius: 15px;
}

.gnavi02-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gnavi02-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px 30px;
}

.gnavi02-list {
  font-family: var(--font_jp);
  line-height: 1.5;
  break-inside: avoid;
}

.gnavi02-list .ttl {
  color: var(--color_primary);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 15px;
}

.gnavi02-list a {
  transition: color 0.3s;
}

.gnavi02-list a:hover {
  color: var(--color_primary);
}

.gnavi02-list .main-menu a {
  display: block;
  margin-bottom: 10px;
}

.gnavi02-list .sub-menu {
  display: grid;
  justify-content: start;
  gap: 8px 40px;
  padding-top: 5px;
}

.gnavi02-list .sub-menu.col2 {
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: auto;
}

.gnavi02-list .sub-menu a {
  display: block;
  font-size: 1.6rem;
  padding-left: 17px;
  position: relative;
}

.gnavi02-list .sub-menu a::before {
  content: "";
  background-color: var(--color_primary);
  width: 8px;
  height: 2px;
  position: absolute;
  top: 12px;
  left: 0;
}

.navi-tel {
  text-align: center;
  margin-bottom: 30px;
}

.navi-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.navi-btn>li {
  max-width: 260px;
  width: 100%;
}

.navi-btn a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 15px;
  text-align: center;
  transition: 0.3s;
}

.navi-btn a:hover,
.navi-btn a:focus {
  background: rgba(255, 255, 255, 0.2);
}

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

.sp-navi-btns {
  display: none;
}

@media (max-width: 1024px) {
  .header {
    position: absolute;
  }

  .header-layout {
    height: 82px;
    padding: 0 0 0 20px;
  }

  .h-logo {
    width: 280px;
  }

  .gnavi01,
  .gnavi01-list,
  .h-btn-wrap {
    display: none;
  }

  :root {
    --navi-background: var(--color_primary);
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --navi-font: var(--font_en);
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 1rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0 5px;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    object-fit: cover;
    height: 20px;
    margin-bottom: 6px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .ttl {
    display: block;
    font-family: var(--font_en);
    font-weight: var(--semibold);
    letter-spacing: 0.05em;
  }

  .navi-menu-btn {
    right: 0;
    top: auto;
    bottom: 0;
    width: 25vw;
    height: 50px;
    background: none;
    border: none;
    padding: 0;
  }

  .navi-menu-btn:hover {
    background-color: transparent;
  }

  .navi-menu-btn .hamburger-line {
    width: 35px;
    top: 16px;
  }

  .navi-menu-btn .hamburger-line::after {
    top: 7px;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line {
    top: 18px;
  }

  .navi-menu-btn .hamburger-txt::before {
    font-size: 1rem;
    bottom: 5px;
  }

  .gnavi02-logo {
    margin: 20px 0 0 20px;
  }

  .gnavi02-logo img {
    width: 280px;
  }

  .gnavi02-contents {
    padding-bottom: 90px;
  }

  .gnavi02-layout {
    width: 90%;
    padding-top: 40px;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .gnavi02-img {
    text-align: center;
    margin-bottom: 10px;
  }

  .gnavi02-img img {
    display: inline-block;
    max-width: 250px;
  }

  .gnavi02-list-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gnavi02-list .ttl {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .gnavi02-list .sub-menu {
    gap: 10px 20px;
    padding-top: 0;
  }

  .gnavi02-list .sub-menu a {
    font-size: 1.4rem;
  }

  .gnavi02-list .sub-menu a::before {
    top: 10px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: flex;
  gap: 15px;
  padding: 135px 17px 60px;
  font-family: var(--font_jp);
  position: relative;
}

.hero::before {
  content: "";
  background: url(../images/hero_bg.png) no-repeat bottom center/contain;
  width: 100%;
  aspect-ratio: 1800/540;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero .splide,
.hero .splide__track {
  height: 100%;
}

.hero .splide__slide {
  height: 100%;
}

.hero .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.hero-left {
  min-width: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-catch {
  font-size: clamp(3.2rem, 2.888vw, 5.2rem);
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 5px;
}

.hero-right {
  width: 70%;
  max-width: 1200px;
  background-color: #F5F5F5;
  border-radius: 40px;
  padding: 50px;
}

.hero-right .item01 {
  margin-bottom: 25px;
}

.hero-btn {
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.hero-btn::after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_right_bk.svg) no-repeat center center/contain;
  width: 20px;
  height: 14px;
  transition: background-image 0.3s;
}

.hero-btn:hover {
  color: var(--color_primary);
}

.hero-btn:hover::after {
  background-image: url(../images/share/icon_arrow_right_green.svg);
}

.hero-list01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hero-list01 a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 25px 5px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  position: relative;
  transition: color 0.3s;
}

.hero-list01 a::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 10px 0 9px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: width 0.3s, height 0.3s;
  z-index: 1;
}

.hero-list01 a::after {
  content: "";
  background: url(../images/share/icon_arrow_right_white.svg) no-repeat center center/contain;
  width: 16px;
  aspect-ratio: 16/12;
  position: absolute;
  bottom: 9px;
  right: 7px;
  z-index: 2;
}

.hero-list01 a.purple::before {
  background-color: #8F8BBD;
}

.hero-list01 a.bluegreen::before {
  background-color: #30D5C8;
}

.hero-list01 a.yellow::before {
  background-color: #EBD109;
}

.hero-list01 a.lightblue::before {
  background-color: #7CD0DB;
}

.hero-list01 a.orange::before {
  background-color: #EBAF0C;
}

.hero-list01 a.blue::before {
  background-color: #1A90C4;
}

.hero-list01 a.deepgreen::before {
  background-color: #008B8B;
}

.hero-list01 a.red::before {
  background-color: #F55D5D;
}

.hero-list01 a.green::before {
  background-color: #8BC41A;
}

.hero-list01 a.beige::before {
  background-color: #B59B86;
}

.hero-list01 a img {
  width: 5vw;
  max-width: 90px;
  min-width: 70px;
  background-color: #F5F5F5;
  border-radius: 50%;
  margin-bottom: 5px;
  transition: background-color 0.3s;
  position: relative;
  z-index: 3;
}

.hero-list01 a .txt-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(clamp(1.2rem, 1.125vw, 1.8rem) * 2.2);
  width: 100%;
}

.hero-list01 a .txt {
  width: 100%;
  font-size: clamp(1.2rem, 1vw, 1.8rem);
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-list01 a:hover {
  color: #fff;
}

.hero-list01 a:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.hero-list01 a:hover img {
  background-color: #fff;
}

.hero-ttl {
  font-size: 2.2rem;
  line-height: 1;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.hero-list02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-dropdown {
  position: relative;
}

.hero-dropdown a {
  transition: color 0.3s;
}

.hero-dropdown a:hover {
  color: var(--color_primary);
}

.hero-dropdown>p {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 100px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: clamp(1.2rem, 1vw, 1.8rem);
  line-height: 1.555;
  padding: 10px 35px 10px 20px;
  position: relative;
  cursor: default;
  transition: color 0.3s;
}

.hero-dropdown>p::after {
  content: "";
  background: url(../images/share/icon_arrow_down_green.svg) no-repeat center center/contain;
  width: 14px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.hero-dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.hero-dropdown .sub-menu {
  display: grid;
  gap: 13px;
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px 20px;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  line-height: 1.4;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.hero-dropdown .sub-menu>li>a {
  display: block;
  padding-left: 17px;
  position: relative;
}

.hero-dropdown .sub-menu>li>a::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: var(--color_primary);
  position: absolute;
  top: 0.6em;
  left: 0;
}

@media (max-width: 1400px) {
  .hero-list01 a {
    gap: 4px;
    padding: 10px 5px 30px;
    min-height: 100%;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 82px 17px 59px;
  }

  .hero-left {
    min-width: 300px;
  }

  .hero-right {
    padding: 25px;
  }
}

@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    gap: 60px;
    padding: 82px 0 0;
  }

  .hero::before {
    content: none;
  }

  .hero .splide__slide img {
    border-radius: 0;
  }

  .hero .splide__pagination {
    bottom: -28px;
  }

  .hero .splide__pagination__page {
    background: #C6C6C6;
    width: 8px;
    height: 8px;
  }

  .hero .splide__pagination__page.is-active {
    background: var(--color_primary);
  }

  .hero-left {
    min-width: auto;
    position: relative;
    padding-left: 5%;
  }

  .hero-catch {
    background-color: transparent;
    font-size: 2.5rem;
    line-height: 2.1;
    text-align: left;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 11%;
    transform: translateY(-50%);
  }

  .hero-catch span {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 5px 10px;
    color: var(--color_primary);
    background-color: #fff;
    border-radius: 6px;
  }

  .hero-right {
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
    border-radius: 20px;
  }

  .hero-btn {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-list01 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-list01 a {
    gap: 10px;
    padding: 15px 5px 20px;
  }

  .hero-list01 a::before {
    width: 25px;
    height: 25px;
  }

  .hero-list01 a::after {
    width: 12px;
    bottom: 8px;
    right: 6px;
  }

  .hero-list01 a .txt-wrap {
    height: 3.08rem;
  }

  .hero-list01 a .txt {
    font-size: 1.5rem;
  }

  .hero-list01 a img {
    margin-bottom: 0;
  }

  .hero-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-list02 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-dropdown>p {
    font-size: 1.5rem;
    padding: 10px 25px 10px 15px;
  }

  .hero-dropdown>p::after {
    right: 10px;
  }

  .hero-dropdown .sub-menu {
    font-size: 1.3rem;
    padding: 10px 10px 20px 15px;
  }

  .hero-dropdown .sub-menu>li>a {
    padding-left: 14px;
  }

  .hero-dropdown .sub-menu>li>a::before {
    width: 6px;
    top: 8px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  margin-bottom: 55px;
}

.t-ttl .jp {
  font-size: 2.2rem;
}

.t-ttl [lang=en] {
  color: var(--color_primary);
  font-size: 5.3rem;
  margin-bottom: 8px;
}

.t-ttl.white .jp,
.t-ttl.white [lang=en] {
  color: #fff;
}

.t-ttl.large .jp {
  font-size: 2.8rem;
}

.t-ttl.large [lang=en] {
  font-size: clamp(5rem, 4.166vw, 7.5rem);
}

.t-ttl.center {
  text-align: center;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }

  .t-ttl .jp {
    font-size: 1.8rem;
  }

  .t-ttl [lang=en] {
    font-size: 4rem;
  }

  .t-ttl.large .jp {
    font-size: 2rem;
  }

  .t-ttl.large [lang=en] {
    font-size: 4.2rem;
  }
}

/*------------
sec01
--------------*/
.sec01 {
  background-color: #F5F5F5;
  padding: 120px 0;
}

.sec01 .t-ttl {
  margin-bottom: 0;
  padding-top: 5px;
}

@media (max-width: 800px) {
  .sec01 {
    margin-top: 70px;
    padding: 70px 0;
  }

  .sec01 .t-ttl {
    padding-top: 0;
  }
}

/*------------
sec02
--------------*/
.sec02 {
  padding: 120px 0;
  position: relative;
}

.sec02>.container {
  padding: 280px 0;
  background: url(../images/sec02_bg.jpg) no-repeat center/cover;
  border-radius: 40px;
}

.sec02 .btn-more {
  margin-top: -10px;
}

.sec02-txt {
  width: 100%;
  color: var(--color_primary);
  font-size: min(15.3rem, 8.5vw);
  text-align: center;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .sec02 {
    padding: 70px 0;
  }

  .sec02>.container {
    padding: 50px 0;
  }

  .sec02 .btn-more {
    margin-top: 30px;
  }

  .sec02-txt {
    top: 50px;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  padding: 130px 0 120px;
  position: relative;
  z-index: 1;
}

.sec03::before {
  content: "";
  background-color: #F5F5F5;
  width: 100%;
  height: 527px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.sec03-layout {
  display: flex;
  gap: 6.333vw;
}

.sec03-layout .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 70px 0;
  }

  .sec03-layout {
    flex-direction: column;
    gap: 0;
  }
}

/*------------
sec04
--------------*/
.sec04 {
  padding: 125px 0 120px;
  position: relative;
}

.sec04::before {
  content: "";
  background-color: #F5F5F5;
  width: 74%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec04 .t-ttl {
  margin-bottom: 0;
}

.sec04-layout {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-bottom: 70px;
}

.sec04-layout .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 70px 0;
  }

  .sec04::before {
    width: 85%;
  }

  .sec04-layout {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  background-color: var(--color_pink);
  padding: 125px 0 120px;
}

.sec05 .t-ttl {
  margin-bottom: 85px;
}

.sec05 .t-ttl [lang=en] {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.sec05 .t-ttl [lang=en] img {
  padding-bottom: 5px;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 70px 0;
  }

  .sec05 .t-ttl {
    margin-bottom: 30px;
  }

  .sec05 .t-ttl [lang=en] {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .sec05 .t-ttl [lang=en] img {
    padding-bottom: 0;
    width: 30px;
  }
}

/*------------
sec06
--------------*/
.sec06 {
  background-color: #EBAF0C;
  padding: 120px 0;
}

.sec06 .t-ttl {
  margin-bottom: 0;
  padding-top: 8px;
}

.sec06-layout {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.sec06-layout .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 70px 0;
  }

  .sec06 .t-ttl {
    padding-top: 0;
  }

  .sec06-layout {
    flex-direction: column;
    gap: 30px;
  }
}

/*------------
sec07
--------------*/
.sec07 {
  padding: 157px 0 180px;
  background: url(../images/sec07_bg_pc.jpg) no-repeat center/cover;
}

.sec07 .t-ttl {
  margin-bottom: 50px;
}

.sec07-layout {
  max-width: 463px;
  margin: 0 0 0 auto;
}

@media (max-width: 800px) {
  .sec07 {
    padding: 0 0 70px;
    background: none;
  }

  .sec07 .t-ttl {
    margin-bottom: 30px;
  }

  .sec07-layout {
    max-width: 100%;
    margin: 0;
    padding-top: 30px;
  }
}

/*------------
sec08
--------------*/
.sec08 {
  padding-bottom: 100px;
}

.sec08 .t-ttl {
  margin-bottom: 35px;
}

.sec08-layout {
  position: relative;
}

.sec08-layout iframe {
  vertical-align: bottom;
  height: 550px;
  width: 100%;
}

.sec08-layout .l-desc {
  width: 488px;
  padding: 50px 50px 60px 60px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  display: grid;
  align-content: center;
}

.sec08-layout .l-txt {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .sec08 {
    padding-bottom: 70px;
  }

  .sec08 iframe {
    height: 300px;
  }

  .sec08 .t-ttl {
    margin-bottom: 30px;
  }

  .sec08-layout .l-desc {
    width: 100%;
    padding: 30px 5% 0;
    border-radius: 0;
    position: static;
    transform: none;
  }

  .sec08-layout .l-txt {
    margin-bottom: 30px;
  }
}

/*------------
Layout
--------------*/
.top-layout01 .container {
  display: flex;
  gap: 7vw;
}

.top-layout01 .jp {
  font-size: 4rem;
  margin-bottom: 20px;
}

.top-layout01 [lang=en] {
  color: var(--color_primary);
  font-size: 2.6rem;
}

@media (max-width: 800px) {
  .top-layout01 .container {
    flex-direction: column;
    gap: 30px;
  }

  .top-layout01 .jp {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .top-layout01 [lang=en] {
    font-size: 1.8rem;
  }
}

/*------------
Card
--------------*/
.top-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
}

.top-card01 a {
  display: block;
  background-color: #f5f5f5;
  height: 100%;
  position: relative;
}

.top-card01 a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.3s;
}

.top-card01 a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.top-card01 a:hover .card-img img {
  transform: scale(1.1);
}

.top-card01 .card-img {
  overflow: hidden;
}

.top-card01 .card-img img {
  width: 100%;
  transition: transform 0.3s;
}

.top-card01 .card-desc {
  width: 100%;
  min-height: 190px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0 40px;
}

.top-card01 .card-ttl {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.top-card01 .card-ttl .jp {
  color: #fff;
  font-size: clamp(2rem, 1.555vw, 2.8rem);
  line-height: 1.107;
  margin-bottom: 7px;
}

.top-card01 .card-ttl [lang=en] {
  color: var(--color_primary);
  font-size: clamp(1.2rem, 0.944vw, 1.7rem);
  line-height: 1.235;
}

.top-card01 .card-ttl::before {
  content: "";
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 60px;
  margin-bottom: 22px;
}

.top-card01 .card-ttl::after {
  content: "";
  display: block;
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media (max-width: 800px) {
  .top-card01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .top-card01 .card-desc {
    min-height: auto;
    bottom: 20px;
    padding: 0 20px;
  }

  .top-card01 .card-ttl {
    margin-bottom: 20px;
  }

  .top-card01 .card-ttl::before {
    right: 40px;
  }

  .top-card01 .card-ttl .jp {
    font-size: 2rem;
  }

  .top-card01 .card-ttl [lang=en] {
    font-size: 1.4rem;
  }
}

/*------------
List
--------------*/
.top-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.top-list.height01 {
  min-height: 99.5px;
}

.top-list li {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 46px;
  color: #fff;
  background-color: var(--color_primary);
  border-radius: 6px;
  font-family: var(--font_jp);
  font-size: clamp(1.3rem, 0.888vw, 1.6rem);
  line-height: 1.125;
  text-align: center;
  padding: 0 5px;
}

.top-list .item01 {
  width: calc(33.333% - 3.333px);
}

.top-list .item02 {
  width: calc(50% - 2.5px);
}

.top-btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px 25px;
}

.top-btn-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  color: #fff;
  padding-bottom: 22px;
  font-family: var(--font_jp);
  line-height: 1.2;
  transform-origin: left bottom;
  position: relative;
}

.top-btn-list a:before {
  content: "";
  background: #fff;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: bottom left;
  transition: transform 0.3s ease-in-out;
}

.top-btn-list a::after {
  content: "";
  display: block;
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 14px;
  aspect-ratio: 20/14;
}

.top-btn-list a:hover:before {
  transform: scaleX(0);
  transform-origin: bottom right;
}

.top-bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 3.888vw;
}

.top-bnr-list a:focus-visible img {
  outline: 2px solid var(--color_text);
}

.top-bnr-list img {
  width: 100%;
}

@media (max-width: 800px) {
  .top-list.height01 {
    min-height: auto;
  }

  .top-list li {
    font-size: clamp(1rem, 3.5vw, 1.4rem);
  }

  .top-btn-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }

  .top-btn-list a {
    padding-bottom: 15px;
  }

  .top-bnr-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 70px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 32%;
  left: 0;
}

.top-post-layout01 .l-desc {
  min-height: 250px;
}

.list-top-event {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.list-top-event .list-img {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-top-event .list-img img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 232/180;
  transition: transform 0.3s;
}

.list-top-event time {
  color: var(--color_blue);
  display: block;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  line-height: 1;
  margin-bottom: 20px;
}

.list-top-event .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.list-top-event .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-top-event a {
  display: block;
  height: 100%;
}

.list-top-event a:hover .list-img img {
  transform: scale(1.1);
}

.list-top-event a:hover .list-ttl {
  color: var(--color_primary);
}

.list-top-event .no-post {
  white-space: nowrap;
}

.list-top-news li:first-child a {
  padding: 0 0 23px;
}

.list-top-news a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  padding: 23px 0;
}

.list-top-news a:hover .list-ttl {
  color: var(--color_primary);
}

.list-top-news time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  margin-right: 18px;
}

.list-top-news .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-top-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 2rem;
  transition: color 0.3s;
  margin-top: 8px;
  padding-right: 50px;
  position: relative;
}

.list-top-news .list-ttl::after {
  content: "";
  background: url(../images/share/icon_arrow_right_green.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .top-post-layout01 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
  }

  .top-post-layout01 .l-btn {
    position: static;
    text-align: center;
  }

  .top-post-layout01 .l-desc {
    min-height: auto;
  }

  .top-post-layout02::before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.4rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .list-top-event {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-top-event article {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-top-event .list-img {
    margin-bottom: 15px;
  }

  .list-top-event .category {
    font-size: 1.2rem;
    padding: 5px 10px 7px;
    margin-right: 5px;
  }

  .list-top-event time {
    font-size: 1.2rem;
    margin: 0 10px 5px 0;
  }

  .list-top-event .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .list-top-news li:first-child a {
    padding: 0 0 15px;
  }

  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 15px 0;
  }

  .list-top-news time {
    font-size: 1.2rem;
    margin: 0 10px 5px 0;
  }

  .list-top-news .category {
    font-size: 1.2rem;
    padding: 2px 10px 4px;
    margin-right: 5px;
  }

  .list-top-news .list-ttl {
    font-size: 1.8rem;
    margin-top: 0;
    padding-right: 35px;
  }

  .list-top-news .list-ttl::after {
    width: 16px;
    right: 10px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: url(../images/under/page-ttl_bg.jpg) no-repeat center/cover;
  color: #fff;
  margin-top: 95px;
  padding: 190px 5% 170px;
  text-align: center;
}

.page-ttl [lang=en] {
  font-size: 7.1rem;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.page-ttl .jp {
  font-size: 2.9rem;
  line-height: 1.5;
}

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 1.3rem;
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: var(--color_border);
}

.u-contents p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 82px;
    padding: 60px 0 50px;
  }

  .page-ttl [lang=en] {
    font-size: 4.5rem;
    margin-bottom: 10px;
  }

  .page-ttl .jp {
    font-size: 2rem;
  }

  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.postdata h2,
.u-h2 {
  font-size: 3.2rem;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 50px;
}

.postdata h2::before,
.u-h2::before {
  content: "";
  background: var(--color_primary);
  width: 45px;
  height: 6px;
  border-radius: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h2.left {
  text-align: left;
}

.u-h2.left::before {
  left: 0;
  transform: translateX(0);
}

.postdata h3,
.u-h3 {
  background-color: #F5F5F5;
  color: var(--color_blue);
  font-size: 2.5rem;
  border-radius: 6px;
  padding: 10px 10px 10px 26px;
  margin-bottom: 30px;
}

.u-h3.white {
  background: #fff;
}

h4.is-style-default,
.u-h4 {
  font-size: 2.1rem;
  padding-left: 31px;
  margin-bottom: 15px;
  position: relative;
}

h4.is-style-default::before,
.u-h4::before {
  content: "";
  background: var(--color_pink);
  border-radius: 3px;
  width: 16px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 8px;
  left: 0;
}

.u-ttl01 {
  font-size: 4rem;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.u-ttl01::before {
  content: "";
  background: var(--color_primary);
  width: 45px;
  height: 6px;
  border-radius: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.u-ttl02 {
  display: inline-block;
  color: #fff;
  background-color: var(--color_blue);
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  padding: 4px 15px;
  margin-bottom: 5px;
}

.u-ttl03 {
  margin-bottom: 55px;
}

.u-ttl03 .jp {
  font-size: 2.2rem;
}

.u-ttl03 [lang=en] {
  color: var(--color_primary);
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.u-ttl03 .small {
  font-size: 3.3rem;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.u-catch.small {
  font-size: 2.4rem;
}

.u-txt {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 0 !important;
}

.u-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color_blue);
}

.u-tel img {
  width: 26px;
}

.u-tel.small {
  font-size: 2.6rem;
}

.u-tel.small img {
  width: 18px;
}

.u-tel-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.u-sns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.u-sns a {
  display: flex;
  gap: 20px;
  align-items: center;
}

.u-sns .sns-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
}

.sns-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2.2rem;
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
    padding-left: 25px;
  }

  .u-h4::before,
  .postdata h4::before {
    width: 13px;
  }

  .u-ttl01 {
    font-size: 2.8rem;
  }

  .u-ttl02 {
    min-width: 200px;
    font-size: 1.5rem;
  }

  .u-ttl03 {
    margin-bottom: 30px;
  }

  .u-ttl03 .jp {
    font-size: 1.8rem;
  }

  .u-ttl03 [lang=en] {
    font-size: 3.8rem;
  }

  .u-ttl03 .small {
    font-size: 2.8rem;
  }

  .u-catch {
    font-size: 2.2rem;
  }

  .u-catch.small {
    font-size: 2rem;
  }

  .u-tel {
    font-size: 3.4rem;
  }

  .u-tel img {
    width: 22px;
  }

  .u-sns {
    gap: 15px;
  }

  .u-sns .sns-ttl {
    font-size: 1.8rem;
  }

  .sns-list {
    gap: 15px;
  }
}

.tall+.tall {
  margin-top: 100px;
}

.tall:last-of-type {
  padding-bottom: 100px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.u-bg01 {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.u-bg01.small {
  padding: 60px 0;
}

.u-bg02 {
  background: url(../images/under/u-bg02.jpg) no-repeat center/cover;
  padding: 120px 0;
}

.u-flex {
  max-width: 1212px;
  width: 90%;
  margin: 0 auto 0 max(5%, 50% - 700px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
}

.u-flex.small {
  max-width: 1024px;
  margin: 0 auto;
}

.u-flex.small .u-ttl01 {
  font-size: 2.6rem;
}

.u-flex.small .u-ttl01::before {
  width: 30px;
  height: 4px;
}

.u-flex .u-ttl01 {
  flex-shrink: 0;
}

.u-flex .l-imgL {
  max-width: 743px;
}

.u-flex .item+.item {
  border-top: 1px solid #D8D8D8;
  margin-top: 45px;
  padding-top: 45px;
}

.u-flex .item .u-h3 {
  margin-bottom: 15px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 70px;
  }

  .tall:last-of-type {
    padding-bottom: 70px;
  }

  .short+.short {
    margin-top: 30px;
  }

  .u-bg01,
  .u-bg02 {
    padding: 70px 0;
  }

  .u-bg01.small,
  .u-bg02.small {
    padding: 30px 0;
  }

  .u-flex {
    flex-direction: column;
    gap: 0;
  }

  .u-flex.small .u-ttl01 {
    font-size: 2.2rem;
  }

  .u-flex .item+.item {
    margin-top: 30px;
    padding-top: 30px;
  }

  .u-flex .l-imgL,
  .u-flex .l-imgR {
    align-items: stretch;
  }
}

.list-btn01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.list-btn01 a {
  display: grid;
  place-items: center;
  min-height: 62px;
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 6px;
  font-family: var(--font_jp);
  font-size: 2.1rem;
  line-height: 1.1;
  padding: 5px 45px 5px 5px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.list-btn01 a::before {
  content: "";
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 1;
  transition: background-color 0.3s;
}

.list-btn01 a::after {
  content: "";
  background: url(../images/share/icon_arrow_down_small_white.svg) no-repeat center/contain;
  width: 7px;
  aspect-ratio: 7/9;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  z-index: 2;
  transition: background-image 0.3s;
}

.list-btn01 a:hover {
  background-color: var(--color_primary);
  color: #fff;
}

.list-btn01 a:hover::before {
  background-color: #fff;
}

.list-btn01 a:hover::after {
  background-image: url(../images/share/icon_arrow_down_small_green.svg);
}

.list-btn02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.list-btn02 a {
  display: grid;
  place-items: center;
  min-height: 62px;
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 6px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 5px 45px 5px 5px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.list-btn02 a::before {
  content: "";
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 1;
  transition: background-color 0.3s;
}

.list-btn02 a::after {
  content: "";
  background: url(../images/share/icon_arrow_down_small_white.svg) no-repeat center/contain;
  width: 7px;
  aspect-ratio: 7/9;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
  transition: background-image 0.3s;
}

.list-btn02 a:hover {
  background-color: var(--color_primary);
  color: #fff;
}

.list-btn02 a:hover::before {
  background-color: #fff;
}

.list-btn02 a:hover::after {
  background-image: url(../images/share/icon_arrow_down_small_green.svg);
}

.list-style01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.list-style01 li {
  max-width: 420px;
  min-height: 117px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 10px 15px 10px 30px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 20px;
}

.list-disc {
  display: grid;
  gap: 5px;
}

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "";
  background-color: var(--color_primary);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}

.list-disc.col2 {
  gap: 5px 10px;
}

.list-num {
  counter-reset: number;
  display: grid;
  gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 8px;
  left: 0;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

.list-check {
  display: grid;
  gap: 5px;
}

.list-check>li {
  padding-left: 30px;
  position: relative;
}

.list-check>li:before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
}

.list-check-square {
  display: grid;
  gap: 5px;
}

.list-check-square>li {
  padding-left: 30px;
  position: relative;
}

.list-check-square>li:before {
  content: "";
  background: url(../images/share/icon_check-square.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
}

@media (max-width: 800px) {
  .list-disc>li:before {
    top: 9px;
  }

  .list-num>li:before {
    top: 5px;
  }

  .list-check>li:before {
    top: 7px;
  }

  .list-check-square>li:before {
    top: 7px;
  }

  .list-btn01 {
    grid-template-columns: 1fr;
  }

  .list-btn01 a {
    min-height: 58px;
    font-size: 1.8rem;
  }

  .list-btn02 {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-btn02 a {
    font-size: 1.5rem;
    min-height: 58px;
    padding: 5px 37px 5px 5px;
  }

  .list-btn02 a::before {
    right: 8px;
  }

  .list-btn02 a::after {
    right: 18px;
  }

  .list-style01 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .list-style01 li {
    max-width: 100%;
    min-height: 95px;
    font-size: 1.6rem;
    padding: 10px 15px 10px 20px;
    grid-template-columns: 40px 1fr;
  }
}

.dl-style01 {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 0;
}

.dl-style01 dt {
  padding-left: 17px;
  position: relative;
}

.dl-style01 dt::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color_primary);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}

.dl-style02 .item {
  display: grid;
  grid-template-columns: 95px 1fr;
  font-size: 2.1rem;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.dl-style02 .item+.item {
  margin-top: 20px;
}

.dl-style02 dt {
  color: var(--color_blue);
}

.dl-style02 dd {
  font-family: var(--font_jp);
}

.dl-style03 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style03>dt {
  color: #fff;
  background: var(--color_primary);
  font-size: 1.8rem;
  padding: 15px 20px;
}

.dl-style03>dd {
  background: #f5f5f5;
  font-size: 1.5rem;
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 {
    grid-template-columns: 50px 1fr;
  }

  .dl-style01 dt {
    padding-left: 13px;
  }

  .dl-style01 dt::before {
    width: 6px;
    height: 6px;
    top: 12px;
  }

  .dl-style02 .item {
    font-size: 1.7rem;
    grid-template-columns: 70px 1fr;
  }

  .dl-style02 .item+.item {
    margin-top: 15px;
  }

  .dl-style03 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .dl-style03>dt {
    font-size: 1.5rem;
    padding: 15px;
  }

  .dl-style03>dd {
    padding: 15px;
  }

  .dl-style03>dd+dt {
    margin-top: 15px;
  }
}

.card-style01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px 16px;
}

.card-style01>li:last-child {
  grid-column: span 3/span 3;
  grid-row-start: 2;
}

.card-style01>li:last-child .card-ttl {
  bottom: 60px;
}

.card-style01 a {
  display: block;
  background-color: #f5f5f5;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-style01 a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.3s;
}

.card-style01 a .card-img img {
  width: 100%;
  transition: transform 0.3s;
}

.card-style01 a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.card-style01 a:hover .card-img img {
  transform: scale(1.1);
}

.card-style01 .card-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.card-style01 .card-ttl::before {
  content: "";
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 13px;
  aspect-ratio: 20/14;
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  transition: background-image 0.3s;
}

.card-style01 .card-ttl::after {
  content: "";
  display: block;
  border: 1px solid #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.card-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-style02 .card-ttl {
  font-size: 2.1rem;
  text-align: center;
  background-color: #F5F5F5;
  padding: 25px 0;
  border-radius: 0 0 10px 10px;
}

.card-style02 .card-img img {
  border-radius: 10px 10px 0 0;
}

.card-style03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.222vw;
}

.card-style03 a {
  display: block;
}

.card-style03 a:hover .btn-more::before {
  background-image: url(../images/share/icon_btn-more_arrow_green.svg);
}

.card-style03 a:hover .btn-more::after {
  background-color: #fff;
}

.card-style03 a:hover .card-img img {
  transform: scale(1.1);
}

.card-style03 .card-img {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.card-style03 .card-img img {
  border-radius: 6px;
  transition: transform 0.3s;
}

.card-style03 .btn-more {
  width: 100%;
  font-size: 2.1rem;
  justify-content: space-between;
}

.card-style03 .btn-more::before {
  width: 11px;
  right: 11px;
}

.card-style03 .btn-more::after {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.card-style04 {
  display: grid;
  gap: 30px;
}

.card-style04 .card-img {
  margin-bottom: 25px;
}

.card-style04 .card-img img {
  border-radius: 10px;
}

.card-style04 .card-ttl {
  color: var(--color_blue);
  font-size: 2rem;
  margin-bottom: 5px;
}

.card-style04 .job {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.card-style05 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-style05>li {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 25px;
}

.card-style05 .card-img {
  margin-bottom: 25px;
}

.card-style05 .card-img img {
  border-radius: 10px;
}

.card-style05 .card-ttl {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.card-style06 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-style06>li {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.card-style06 .card-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.card-style06 .card-num span {
  font-size: 2.2rem;
  margin-left: 5px;
}

.card-style06 .card-ttl {
  font-size: 2rem;
}

.card-style07 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-style07>li {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
}

.card-style07 .card-img {
  margin-bottom: 25px;
}

.card-style07 .card-img img {
  border-radius: 10px;
}

.card-style07 .card-ttl {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    gap: 8px;
  }

  .card-style01 li:last-child .card-ttl {
    bottom: 18px;
  }

  .card-style01 .card-ttl {
    font-size: 1.5rem;
    line-height: 1.2;
    gap: 5px;
    bottom: 10px;
  }

  .card-style01 .card-ttl::before {
    width: 10px;
    bottom: 9px;
  }

  .card-style01 .card-ttl::after {
    width: 25px;
    height: 25px;
  }

  .card-style02 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style02 .card-ttl {
    font-size: 1.8rem;
    padding: 15px 0;
  }

  .card-style03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-style03 .card-img {
    margin-bottom: 15px;
  }

  .card-style03 .btn-more {
    font-size: 1.5rem;
    gap: 10px;
  }

  .card-style03 .btn-more::after {
    width: 30px;
    height: 30px;
  }

  .card-style04 {
    grid-template-columns: 1fr;
  }

  .card-style04 .card-img {
    margin-bottom: 17px;
  }

  .card-style04 .card-ttl {
    font-size: 1.8rem;
  }

  .card-style04 .job {
    font-size: 1.4rem;
  }

  .card-style05 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style06 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-style06>li {
    border-radius: 15px;
    padding: 15px;
  }

  .card-style06 .card-num {
    font-size: 1.2rem;
  }

  .card-style06 .card-num span {
    font-size: 16px;
  }

  .card-style06 .card-ttl {
    font-size: 1.8rem;
  }

  .card-style07 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.table-style01 tr:first-child th {
  border-top: 1px solid var(--color_blue);
  border-bottom: 1px solid #fff;
}

.table-style01 tr:not(:first-child) th {
  border-bottom: 1px solid #fff;
}

.table-style01 tr:last-child th {
  border-bottom: 1px solid var(--color_blue);
}

.table-style01 th,
.table-style01 td {
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: left;
  padding: 12px 20px;
  vertical-align: middle;
}

.table-style01 th {
  border: 1px solid var(--color_blue);
  background-color: var(--color_blue);
  color: #fff;
}

.table-style01 td {
  background-color: #fff;
  border: 1px solid #ddd;
}

.table-style02 tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table-style02 th,
.table-style02 td {
  width: 33.333%;
  font-family: var(--font_base);
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: left;
  padding: 15px 20px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style03 th,
.table-style03 td {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 15px;
  border-bottom: 2px solid #D8D8D8;
  vertical-align: middle;
}

.table-style03 th {
  padding: 15px 15px 15px 0;
  text-align: left;
  border-bottom: 2px solid var(--color_primary);
}

.table-style04 th,
.table-style04 td {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 10px 15px;
  border: 1px solid #D1D1D1;
  vertical-align: middle;
}

.table-style04 th {
  background: var(--color_primary);
  color: #fff;
  text-align: left;
}

.table-style04 th.bg01 {
  background: #F5F5F5;
  color: #333;
}

.table-style05 th,
.table-style05 td {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 15px 25px;
  border: 1px solid #D8D8D8;
  border-width: 1px 0;
  vertical-align: middle;
}

.table-style05 th {
  background: #F5F5F5;
  text-align: left;
}

.table-style05.white th {
  background: #fff;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block th {
    border: none !important;
  }

  .table-style02 th,
  .table-style02 td {
    padding: 10px;
  }

  .table-style02.scroll th {
    width: 25%;
  }

  .table-style02.scroll td:first-child {
    width: 37.5%;
  }

  .table-style02.scroll td:last-child {
    width: 37.5%;
  }

  .table-style03.sp-block colgroup {
    display: none;
  }

  .table-style03.sp-block tr:first-child th {
    padding-top: 0;
  }

  .table-style03.sp-block th,
  .table-style03.sp-block td {
    display: block;
    padding: 15px 0;
  }

  .table-style03.sp-block th {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
  }

  .table-style03.sp-block td {
    padding-top: 0;
    position: relative;
  }

  .table-style03.sp-block td::before {
    content: "";
    background-color: var(--color_primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }

  .table-style04 {
    border-bottom: 1px solid #D1D1D1;
  }

  .table-style04.sp-block colgroup {
    display: none;
  }

  .table-style04.sp-block th,
  .table-style04.sp-block td {
    display: block;
    padding: 10px;
    border-bottom: none;
  }

  .table-style05.sp-block {
    border-bottom: 1px solid #D8D8D8;
  }

  .table-style05.sp-block colgroup {
    display: none;
  }

  .table-style05.sp-block th,
  .table-style05.sp-block td {
    display: block;
    padding: 10px 20px;
  }

  .table-style05.sp-block td {
    border: none;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.box-style01 {
  border: 1px solid var(--color_primary);
  background: #fff;
  border-radius: 6px;
  padding: 5%;
}

.box-style01:has(.l-style08) {
  padding: 5% 60px;
}

.box-ttl01 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.box-style02 {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 5%;
  position: relative;
}

.box-style02 .box-en {
  color: var(--color_primary);
  font-size: 5.3rem;
  position: absolute;
  top: -35px;
  left: 24px;
}

.box-style02.small {
  padding: 5%;
}

.box-ttl02 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.box-style03 {
  background-color: #fff;
  border-radius: 6px;
  padding: 60px;
}

.box-style04 {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 60px;
}

.box-ttl04 {
  font-size: 2.2rem;
  padding-bottom: 10px;
}

.box-style05 {
  background: var(--color_primary);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.box-ttl05 {
  display: flex;
  gap: 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }

  .box-style01:has(.l-style08) {
    padding: 20px;
  }

  .box-ttl01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .box-style02 {
    padding: 20px;
  }

  .box-style02:has(.box-en) {
    padding: 30px 20px;
  }

  .box-style02 .box-en {
    font-size: 3.5rem;
    top: -23px;
    left: 10px;
  }

  .box-style02.small {
    padding: 20px;
  }

  .box-ttl02 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .box-style03 {
    padding: 20px;
  }

  .box-style04 {
    padding: 20px;
  }

  .box-ttl04 {
    font-size: 1.8rem;
  }

  .box-style05 {
    padding: 30px;
  }
}

.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.list-anchor-link a {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: background-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.list-anchor-link a:hover {
  background-color: #dcdcdc;
}

@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .list-anchor-link a {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }

  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }

  .list-anchor-link a:hover {
    opacity: 0.7;
  }
}

.slider-history-wrap {
  overflow: hidden;
  margin: 0 0 0 auto;
  padding-top: 110px;
  max-width: 1600px;
  width: 95%;
  position: relative;
}

#slider-history {
  padding: 0 30px 0 0;
}

#slider-history .splide__track {
  overflow: visible;
}

#slider-history .splide__slide {
  display: grid;
  grid-template-rows: 36px 1fr;
}

#slider-history .splide__arrows {
  position: absolute;
  top: -110px;
  right: 11.111vw;
  display: flex;
  gap: 20px;
}

#slider-history .splide__arrow {
  width: 60px;
  height: 60px;
  transform: none;
}

#slider-history .splide__arrow svg {
  display: none;
}

#slider-history .splide__arrow--prev {
  background: url(../images/share/icon_splide__arrow--prev.svg) no-repeat center/contain;
  position: static;
}

#slider-history .splide__arrow--next {
  background: url(../images/share/icon_splide__arrow--next.svg) no-repeat center/contain;
  position: static;
}

.history-content {
  margin-top: 5px;
  border-top: 1px solid #000;
  padding: 65px 100px 0 0;
  position: relative;
}

.history-content::before {
  content: "";
  position: absolute;
  top: -4.5px;
  left: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color_primary);
  border-radius: 4px;
}

.history-content::after {
  position: absolute;
  content: "";
  top: 0;
  left: 13.5px;
  width: 0;
  height: 65px;
  border-left: 1px dotted var(--color_primary);
}

.history-date {
  font-family: var(--font_en);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.history-box {
  background-color: #fff;
  border-radius: 6px;
  padding: 40px 40px 50px;
  height: 100%;
}

.history-year {
  font-family: var(--font_jp);
  line-height: 1;
  margin-bottom: 20px;
}

.under-slider01 .splide__track {
  overflow: hidden;
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__slide {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}

.under-slider01 .splide__slide.is-active {
  opacity: 1;
}

.under-slider01 .splide__slide img {
  border-radius: 40px;
}

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 872px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 872px) / 2);
}

.under-slider01 .item-desc {
  margin-top: 25px;
}

.under-slider01 .item-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.under-slider01 .splide__pagination {
  display: flex !important;
  bottom: -30px;
}

.under-slider01 .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: #C3C3C3;
}

.under-slider01 .splide__pagination__page.is-active {
  transform: scale(1.4);
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__slide {
  display: grid;
  place-items: center;
}

.under-slider02 .splide__slide img {
  aspect-ratio: 800/590;
  object-fit: contain;
}

.under-slider02 .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: #C3C3C3;
}

.under-slider02 .splide__pagination__page.is-active {
  transform: scale(1.4);
}

.under-slider02 .splide__pagination {
  bottom: -30px;
}

@media (max-width: 800px) {
  .slider-history-wrap {
    padding-top: 80px;
  }

  #slider-history {
    padding: 0 5vw 0 0;
  }

  #slider-history .splide__slide {
    grid-template-rows: 30px 1fr;
  }

  #slider-history .splide__arrows {
    top: -80px;
    right: 5%;
    gap: 10px;
  }

  #slider-history .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .history-content {
    padding: 45px 30px 0 0;
  }

  .history-content::after {
    height: 45px;
  }

  .history-box {
    width: 300px;
    padding: 30px 20px;
  }

  .history-year {
    margin-bottom: 15px;
  }

  .under-slider01 .splide__slide img {
    border-radius: 20px;
  }

  .under-slider01 .splide__arrow--prev {
    left: 15px;
  }

  .under-slider01 .splide__arrow--next {
    right: 15px;
  }

  .under-slider01 .item-desc {
    margin-top: 15px;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

.flow-style01 {
  display: grid;
  grid-template-columns: 19.824% 17.089% 19.824% 17.089% 19.824% 17.089%;
  gap: 15px;
}

.flow-style01.arrow>li:nth-child(5)::after {
  content: "";
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: var(--color_primary) transparent transparent transparent;
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style01>li:nth-child(odd) {
  background-color: #fff;
  border-radius: 6px;
  padding: 35px 20px;
  position: relative;
}

.flow-style01>li:nth-child(even) {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}

.flow-style01>li:nth-child(even)::before {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_flow.svg) no-repeat center center/contain;
  max-width: 175px;
  width: 100%;
  aspect-ratio: 175/20;
}

.flow-style01 .flow-num {
  font-family: var(--font_en);
  font-weight: bold;
  color: var(--color_primary);
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 15px;
}

.flow-style01 .flow-ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.flow-style01 .flow-txt {
  line-height: 1.7;
}

.flow-style01+.flow-style01 {
  margin-top: 70px;
}

.flow-style01.reverse {
  grid-auto-flow: row;
  direction: rtl;
}

.flow-style01.reverse>li {
  direction: ltr;
  text-align: left;
}

.flow-style01.reverse>li:nth-child(even)::before {
  transform: rotate(180deg);
}

.flow-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.flow-style02>li {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.flow-style02>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_pink);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style02.not-arrow>li:not(:last-child)::after {
  content: none;
}

.flow-style02 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: -15px;
  left: 30px;
}

.flow-style02 .flow-img {
  margin-bottom: 15px;
}

.flow-style02 .flow-img img {
  border-radius: 10px;
}

.flow-style02 .flow-ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

@media (max-width: 800px) {
  .flow-style01 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flow-style01.arrow>li:nth-child(5)::after {
    bottom: -34px;
  }

  .flow-style01>li:nth-child(odd) {
    padding: 25px 20px;
  }

  .flow-style01>li:nth-child(even) {
    display: grid;
    place-items: center;
    min-height: 100px;
    font-size: 1.6rem;
    margin-top: 0;
    position: relative;
  }

  .flow-style01>li:nth-child(even)::before {
    max-width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(90deg);
  }

  .flow-style01 .flow-num {
    font-size: 2rem;
    top: -10px;
  }

  .flow-style01 .flow-ttl {
    margin-bottom: 5px;
  }

  .flow-style01+.flow-style01 {
    margin-top: 50px;
  }

  .flow-style01.reverse>li:nth-child(even)::before {
    transform: translateY(-50%) rotate(90deg);
  }

  .flow-style02 {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .flow-style02>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.accordion-wrapper {
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 45px 60px;
}

.accordion-wrapper+.accordion-wrapper {
  margin-top: 30px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  border-bottom: 1px solid var(--color_primary);
  padding: 0 35px 10px 0;
  position: relative;
  transition: 0.2s;
}

.accordion-style summary::-webkit-details-marker {
  display: none;
}

.accordion-style summary::before {
  content: "";
  background: url(../images/share/icon_accordion_open.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 4px;
  right: 0;
  transition: background-image 0.3s;
}

.accordion-style summary .ttl {
  font-size: 2.2rem;
  transition: color 0.3s;
}

.accordion-style summary:hover .ttl {
  color: var(--color_primary);
}

.accordion-style.is-open summary::before {
  background-image: url(../images/share/icon_accordion_close.svg);
}

.accordion-style.is-open summary .ttl {
  color: var(--color_primary);
}

.accordion-style .accordion-content {
  overflow: hidden;
  padding-top: 20px;
}

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

.accordion-style .accordion-inner .item+.item {
  margin-top: 30px;
}

.accordion-style.pc-block {
  pointer-events: none;
  cursor: default;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

@media (max-width: 800px) {
  .accordion-wrapper {
    padding: 30px 5%;
  }

  .accordion-style summary {
    font-size: 1.8rem;
    padding: 0 30px 10px 0;
  }

  .accordion-style summary::before {
    width: 25px;
    height: 25px;
    top: 2px;
  }

  .accordion-style summary .ttl {
    font-size: 1.8rem;
  }

  .accordion-style .accordion-inner .item+.item {
    margin-top: 20px;
  }

  .accordion-style.pc-block {
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}

.l-style01 {
  display: flex;
  gap: 60px;
}

.l-style01 .l-ttl {
  font-size: 4rem;
  margin-bottom: 30px;
}

.l-style01 .l-desc {
  max-width: 406px;
  width: 35%;
  flex: 1;
}

.l-style01 .l-list {
  width: 62%;
  max-width: 734px;
  margin-top: 15px;
}

.l-style03 {
  padding: 140px 0 0;
  position: relative;
}

.l-style03::before {
  content: "";
  background-color: #f5f5f5;
  width: 100%;
  max-width: 1332px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.l-style03 .inner {
  max-width: 1600px;
  width: 95%;
  display: flex;
  gap: 5.555vw;
}

.l-style03 .l-img {
  max-width: 871px;
  width: 60%;
}

.l-style03 .l-img img {
  width: 100%;
}

.l-style03 .l-desc {
  flex: 1;
  position: relative;
  z-index: 3;
}

.l-style03 .l-ttl {
  margin-bottom: 70px;
}

.l-style03 [lang=en] {
  color: var(--color_primary);
  font-size: clamp(3.5rem, 4.166vw, 7.5rem);
  margin-bottom: 10px;
}

.l-style03 .jp {
  font-size: 2.8rem;
}

.l-style03 .l-box {
  width: 95%;
  max-width: 1187px;
  margin: -8.777vw 0 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 109px 7% 100px;
  position: relative;
  z-index: 2;
}

.l-style03 .l-box .card-style03 {
  max-width: 854px;
}

.l-style03+.l-style03 {
  margin-top: 90px;
}

.l-style03.reverse::before {
  left: 0;
}

.l-style03.reverse .inner {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
}

.l-style03.reverse .l-box {
  margin: -8.777vw auto 0 0;
}

.l-style03.reverse .l-box .card-style03 {
  margin: 0 0 0 auto;
}

.l-style04 {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto 0 0;
  display: flex;
  gap: 5.555vw;
}

.l-style04 .l-img {
  width: 60%;
  max-width: 871px;
}

.l-style04 .l-img img {
  width: 100%;
}

.l-style04 .l-desc {
  margin-top: 40px;
  flex: 1;
  position: relative;
}

.l-style04 .l-desc::before {
  content: attr(data-en);
  color: #fff;
  text-shadow: 1px 1px 0 rgba(var(--color_primary_rgb), 0.2), -1px -1px 0 rgba(var(--color_primary_rgb), 0.2), -1px 1px 0 rgba(var(--color_primary_rgb), 0.2), 1px -1px 0 rgba(var(--color_primary_rgb), 0.2), 1px 0 0 rgba(var(--color_primary_rgb), 0.2), -1px 0 0 rgba(var(--color_primary_rgb), 0.2), 0 1px 0 rgba(var(--color_primary_rgb), 0.2), 0 -1px 0 rgba(var(--color_primary_rgb), 0.2);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: clamp(20rem, 25vw, 47rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: -5.555vw;
  z-index: -1;
  transform: translate(-0.04em, 0.13em);
}

.l-style04 .l-bnr {
  max-width: 337px;
}

.l-style04.reverse {
  margin: 0 0 0 auto;
  flex-direction: row-reverse;
}

.l-style04.reverse .l-desc::before {
  left: auto;
  right: -5.555vw;
  transform: translate(0.09em, 0.13em);
}

.l-style04 .l-desc[data-en="03"]::before {
  transform: translate(0.04em, 0.13em);
}

.l-style04 .l-desc[data-en="05"]::before {
  transform: translate(0.03em, 0.13em);
}

.l-style04 .l-desc[data-en="07"]::before {
  transform: translate(0.03em, 0.13em);
}

.l-style05 {
  padding: 85px 0 100px;
  position: relative;
}

.l-style05::before {
  content: "";
  background-color: #f5f5f5;
  width: 97.5%;
  max-width: 1600px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-style05 .l-desc {
  flex: 1;
  position: relative;
}

.l-style05 .l-en {
  color: var(--color_primary);
  font-size: 7.5rem;
  position: absolute;
  top: -127px;
  left: 0;
  z-index: 1;
}

.l-style05 .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.l-style05 .u-h4 {
  margin-bottom: 50px;
}

.l-style05 .container:has(.l-img) {
  display: flex;
  gap: 5%;
}

.l-style05 .l-img {
  width: 40%;
}

.l-style05 .l-img img {
  border-radius: 10px;
}

.l-style05.reverse::before {
  left: auto;
  right: 0;
}

.l-style05.reverse .container:has(.l-img) {
  flex-direction: row-reverse;
}

.l-style05+.l-style05 {
  margin-top: 90px;
}

.l-style06 {
  display: flex;
  gap: 7%;
  padding-left: 35px;
}

.l-style06 .l-img {
  margin-bottom: 8px;
}

.l-style06 .l-img img {
  border-radius: 3px;
}

.l-style06 .l-desc {
  flex: 1;
}

.l-style06 .u-ttl02 {
  display: block;
}

.l-style06 .l-ttl {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.l-style06 .l-sub-ttl {
  color: var(--color_blue);
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.l-style06+.box-style03 {
  margin-top: 45px;
}

.l-style07 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-style07:has(.l-sub-ttl) .l-ttl {
  margin-bottom: 15px;
}

.l-style07 .l-img {
  width: 55%;
  max-width: 535px;
}

.l-style07 .l-img img {
  border-radius: 10px;
}

.l-style07 .l-desc {
  flex: 1;
}

.l-style07 .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.5;
}

.l-style07 .l-ttl {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.l-style07 .l-ttl .small {
  font-size: 2.8rem;
}

.l-style07 .l-txt {
  margin-bottom: 25px;
}

.l-style08 {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.l-style08 .large {
  font-size: 4.6rem;
}

.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-img.large,
.l-imgL .l-img.large {
  width: 60%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR .u-h2,
.l-imgL .u-h2 {
  margin-bottom: 30px;
}

.l-imgR .l-ttl,
.l-imgL .l-ttl {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.l-imgR .l-ttl .small,
.l-imgL .l-ttl .small {
  font-size: 2.8rem;
}

.l-imgR:has(.l-sub-ttl) .l-ttl,
.l-imgL:has(.l-sub-ttl) .l-ttl {
  margin-bottom: 15px;
}

.l-imgR .l-sub-ttl,
.l-imgL .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.l-imgR .l-txt,
.l-imgL .l-txt {
  margin-bottom: 25px;
}

.l-imgR {
  flex-direction: row-reverse;
}

@media (max-width: 1400px) {
  .l-style03 .l-box {
    margin-top: -50px;
  }

  .l-style03.reverse .l-box {
    margin-top: -50px;
  }
}

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
    gap: 30px;
  }

  .l-style01 .l-desc {
    width: 100%;
  }

  .l-style01 .l-ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .l-style01 .l-list {
    width: 100%;
    margin-top: 0;
  }

  .l-style03 {
    padding: 50px 0;
  }

  .l-style03::before {
    width: 90%;
  }

  .l-style03 .inner {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .l-style03 .l-img {
    width: 100%;
  }

  .l-style03 .l-desc {
    width: 90%;
    margin: 0 auto;
  }

  .l-style03 .l-ttl {
    margin-bottom: 30px;
  }

  .l-style03 .l-box {
    width: 100%;
    margin: 30px 0 0;
    padding: 30px 5%;
  }

  .l-style03+.l-style03 {
    margin-top: 60px;
  }

  .l-style03.reverse .inner {
    flex-direction: column;
  }

  .l-style03.reverse .l-box {
    margin: 30px 0 0;
  }

  .l-style04 {
    width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 30px;
  }

  .l-style04 .l-img {
    width: 100%;
  }

  .l-style04 .l-desc {
    width: 90%;
    margin: 0 auto;
  }

  .l-style04 .l-desc::before {
    font-size: 14rem;
    top: -30px;
    bottom: auto;
    left: auto;
    right: 0;
    transform: none !important;
  }

  .l-style04 .l-bnr {
    max-width: 100%;
  }

  .l-style04+.l-style04 {
    margin-top: 30px !important;
  }

  .l-style04.reverse {
    margin: 0;
    flex-direction: column;
  }

  .l-style04.reverse .l-desc::before {
    right: 0;
  }

  .l-style05 {
    padding: 50px 0;
  }

  .l-style05::before {
    width: 100%;
  }

  .l-style05 .l-desc {
    position: static;
  }

  .l-style05 .u-h4 {
    margin-bottom: 30px;
  }

  .l-style05 .l-en {
    font-size: 5rem;
    top: -75px;
  }

  .l-style05 .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .l-style05 .container {
    position: relative;
  }

  .l-style05 .container:has(.l-img) {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .l-style05 .l-img {
    width: 100%;
  }

  .l-style05.reverse .container:has(.l-img) {
    flex-direction: column-reverse;
  }

  .l-style05+.l-style05 {
    margin-top: 60px;
  }

  .l-style06 {
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
  }

  .l-style06 .l-img {
    display: inline-block;
  }

  .l-style06 .l-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-style06 .l-ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .l-style06 .l-sub-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .l-style07 {
    flex-direction: column;
    gap: 30px;
  }

  .l-style07.gap-large {
    gap: 45px;
  }

  .l-style07 .l-desc {
    width: 100%;
  }

  .l-style07 .l-img {
    width: 100%;
    max-width: 100%;
    height: 63.75vw;
  }

  .l-style07 .l-sub-ttl {
    font-size: 2rem;
  }

  .l-style07 .l-ttl {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .l-style07 .l-ttl .small {
    font-size: 2.2rem;
  }

  .l-style08 {
    font-size: 1.4rem;
    gap: 15px;
  }

  .l-style08 .large {
    font-size: 3rem;
  }

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgR .l-img.large,
  .l-imgL .l-img.small,
  .l-imgL .l-img.large {
    width: 100%;
  }

  .l-imgR .l-img img,
  .l-imgL .l-img img {
    width: 100%;
  }

  .l-imgR .l-desc,
  .l-imgL .l-desc {
    width: 100%;
  }

  .l-imgR .l-ttl,
  .l-imgL .l-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .l-imgR .l-ttl .small,
  .l-imgL .l-ttl .small {
    font-size: 2.2rem;
  }

  .l-imgR:has(.l-sub-ttl) .l-ttl,
  .l-imgL:has(.l-sub-ttl) .l-ttl {
    margin-bottom: 10px;
  }

  .l-imgR .l-sub-ttl,
  .l-imgL .l-sub-ttl {
    font-size: 2rem;
  }

  .l-imgR:has(.under-slider02),
  .l-imgL:has(.under-slider02) {
    gap: 40px;
  }

  .l-imgR:has(.l-ttl),
  .l-imgL:has(.l-ttl) {
    gap: 30px;
  }
}

/*------------
スタッフ紹介
--------------*/
.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-desc {
  flex: 1;
}

.staff-layout .l-ttl {
  color: var(--color_primary);
  font-size: 2.8rem;
  margin-bottom: 35px;
}

.staff-layout .l-img {
  width: 32%;
}

.staff-layout .l-img img {
  border-radius: 10px;
}

.staff-layout .l-name {
  line-height: 1.5;
  display: grid;
  justify-items: end;
  gap: 10px;
  margin-top: 30px;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout .l-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .staff-layout .job {
    width: 205px;
  }
}

/*------------
施工事例マップ
--------------*/
.works-map {
  background: url(../images/under/service_construction_reform_img04.jpg) no-repeat center center/contain;
  width: 691px;
  aspect-ratio: 691/520;
  margin: 0 auto;
  position: relative;
}

.works-map-btns li {
  position: absolute;
}

.works-map-btns a {
  width: 132px;
  height: 50px;
  background-color: #fff;
  color: #605AA1;
  border: 2px solid #605AA1;
  font-size: 2.6rem;
  font-weight: var(--semibold);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.works-map-btns a::after {
  content: "";
  display: block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #605AA1;
  position: relative;
  top: 2px;
  transition: border-top-color 0.3s;
}

.works-map-btns a:hover {
  background-color: #605AA1;
  color: #fff;
}

.works-map-btns a:hover::after {
  border-top-color: #fff;
}

.works-map-btns li.living {
  top: 21px;
  left: 57px;
}

.works-map-btns li.living a {
  width: 200px;
}

.works-map-btns li.stair {
  top: 247px;
  right: 0;
}

.works-map-btns li.toilet {
  bottom: 129px;
  right: 0;
}

.works-map-btns li.corridor {
  top: 124px;
  right: 0;
}

.works-map-btns li.bathroom {
  bottom: 44px;
  right: 0;
}

.works-map-btns li.entrance {
  top: 108px;
  left: 106px;
}

.works-map-btns li.entrance a {
  width: 151px;
}

.works-map-btns li.bedroom {
  bottom: 41px;
  left: 0;
}

.works-map-btns li.outside {
  top: 204px;
  left: 0;
}

@media (max-width: 800px) {
  .works-map {
    width: 320px;
  }

  .works-map-btns a {
    width: 70px;
    height: 35px;
    gap: 3px;
    font-size: 1.5rem;
  }

  .works-map-btns a::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #605AA1;
  }

  .works-map-btns li.living {
    top: 6px;
    left: 21px;
  }

  .works-map-btns li.living a {
    width: 100px;
  }

  .works-map-btns li.stair {
    top: 108px;
  }

  .works-map-btns li.toilet {
    bottom: 55px;
  }

  .works-map-btns li.corridor {
    top: 58px;
  }

  .works-map-btns li.bathroom {
    bottom: 15px;
  }

  .works-map-btns li.entrance {
    top: 48px;
    left: 50px;
  }

  .works-map-btns li.entrance a {
    width: 70px;
  }

  .works-map-btns li.bedroom {
    bottom: 13px;
  }

  .works-map-btns li.outside {
    top: 89px;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: #f5f5f5;
  border-radius: 10px;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
  min-width: 500px;
}

.tel-layout .l-tel-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tel-layout .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  letter-spacing: 0.05em;
  font-size: 3.5rem;
  line-height: 1;
}

.tel-layout .l-tel img {
  max-width: 23px;
}

.tel-layout .l-time {
  display: grid;
  gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: fit-content;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
}

.tel-layout .l-time dt {
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  padding-bottom: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 2rem;
    margin: 0 auto 25px;
    min-width: 250px;
  }

  .tel-layout .l-tel-wrap {
    gap: 15px;
    flex-wrap: wrap;
  }

  .tel-layout .l-tel {
    font-size: 3rem;
  }

  .tel-layout .l-tel img {
    width: 22px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

/*-----------------------------------------------------------
Recruitページ 採用サイト
-----------------------------------------------------------*/
/*------------
Recruitページ Header
--------------*/
.recruit-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.recruit-h-layout {
  background-color: #fff;
  padding: 0 118px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 95px;
}

.recruit-h-logo a {
  font-weight: normal;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  gap: 12px;
}

.recruit-h-logo .txt {
  font-family: var(--font_jp);
  font-size: clamp(1.4rem, 1.461vw, 1.9rem);
  line-height: 1;
  padding-left: 24px;
  position: relative;
}

.recruit-h-logo .txt::before {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #333;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.recruit-gnavi {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 5px;
}

.recruit-gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.recruit-gnavi-list>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.9rem;
  white-space: nowrap;
  transition: color 0.3s;
}

.recruit-gnavi-list a:hover {
  color: var(--color_primary);
}

.jobdescription-btn {
  width: 95px;
  height: 95px;
  background-color: var(--color_pink);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: background-color 0.3s;
}

.jobdescription-btn:hover {
  background-color: #e05252;
}

.corpsite-btn {
  background-color: var(--color_primary);
  color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 6px;
  padding: 12px 23px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s, color 0.3s;
}

.corpsite-btn::after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_right_white02.svg) no-repeat center/contain;
  width: 17px;
  height: 14px;
  transition: background-image 0.3s;
}

.corpsite-btn:hover {
  background-color: #fff;
  color: var(--color_primary);
}

.corpsite-btn:hover::after {
  background-image: url(../images/share/icon_arrow_right_green02.svg);
}

.corpsite-btn.sp {
  display: none;
}

@media (max-width: 1024px) {
  .recruit-header {
    position: absolute;
  }

  .jobdescription-btn,
  .recruit-gnavi-list {
    display: none;
  }

  .corpsite-btn {
    padding: 17px 18px;
    justify-content: space-between;
  }

  .corpsite-btn.pc {
    display: none;
  }

  .corpsite-btn.sp {
    display: flex;
  }

  .recruit-h-layout {
    height: 82px;
    padding: 0 0 0 20px;
  }

  .gnavi02-recruit-logo {
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 20px;
  }

  .gnavi02-recruit-wrap {
    padding: 10px 5% 0;
  }

  .gnavi02-recruit-list a {
    display: inline-block;
    font-family: var(--font_jp);
    font-size: 1.5rem;
    padding-left: 17px;
    position: relative;
    transition: color 0.3s;
  }

  .gnavi02-recruit-list a::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 8px;
    height: 2px;
    background-color: var(--color_primary);
  }

  .gnavi02-recruit-list a:hover {
    color: var(--color_primary);
  }
}

/*------------
Recruitページ Hero
--------------*/
.recruit-hero {
  padding: 135px 0 100px;
  position: relative;
}

.recruit-hero::before {
  content: "";
  background: url(../images/hero_bg.png) no-repeat bottom center/contain;
  width: 100%;
  aspect-ratio: 1800/540;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.recruit-hero .splide__slide img {
  max-width: 1300px;
  width: 75%;
  border-radius: 40px 0 0 40px;
  margin: 0 0 0 auto;
}

.recruit-hero .splide__controls {
  max-width: calc(100% - 440px);
  margin: 0 0 0 440px;
}

.recruit-hero .splide__toggle {
  display: none;
}

.recruit-hero .splide__controls .splide__pagination {
  max-width: 72.222vw;
  margin: 0 0 0 auto;
  position: absolute;
  bottom: -50px;
}

.recruit-hero .splide__pagination__page {
  width: 16px;
  height: 16px;
  margin: 5px 8px;
}

.recruit-hero-catch {
  color: var(--color_primary);
  letter-spacing: 0.6em;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  top: 194px;
  left: 7.5%;
  white-space: nowrap;
}

.recruit-hero-catch .txt {
  font-family: var(--font_jp);
  font-size: clamp(2rem, 2.777vw, 5rem);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 20px 9px;
  line-height: 2.2;
  background-color: #fff;
  border-radius: 10px;
}

.recruit-hero-catch .kagikakko01 {
  margin-top: -33px;
}

.recruit-hero-catch .kagikakko02 {
  margin-top: -15px;
}

.recruit-hero-catch .sp {
  display: none;
}

@media (max-width: 1200px) {
  .recruit-hero-catch .txt {
    line-height: 2.4;
  }
}

@media (max-width: 800px) {
  .recruit-hero {
    padding: 82px 0 50px;
  }

  .recruit-hero .splide__slide img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
  }

  .recruit-hero .splide__controls .splide__pagination {
    max-width: 100%;
    bottom: -30px;
  }

  .recruit-hero .splide__pagination__page {
    width: 8px;
    height: 8px;
    margin: 5px;
  }

  .recruit-hero-catch {
    letter-spacing: 0.05em;
    top: auto;
    left: 5px;
    bottom: 70px;
  }

  .recruit-hero-catch .txt {
    font-size: 2.5rem;
    line-height: 2.2;
    padding: 10px 5px;
  }

  .recruit-hero-catch .kagikakko01,
  .recruit-hero-catch .kagikakko02 {
    margin-top: -12px;
  }

  .recruit-hero-catch .pc {
    display: none;
  }

  .recruit-hero-catch .sp {
    display: inline-block;
    padding-bottom: 5px;
  }
}

/*------------
Recruitページ TOP
--------------*/
.recruit-sec01 {
  background-color: #f5f5f5;
  padding: 120px 0;
}

.recruit-sec02 {
  padding: 120px 0;
  border-bottom: 1px solid #c3c3c3;
}

.recruit-sec02 .t-ttl .jp,
.recruit-sec03 .t-ttl .jp {
  font-size: clamp(2rem, 1.555vw, 2.8rem);
}

.recruit-sec03 {
  padding: 120px 0;
}

.recruit-sec04 {
  padding: 120px 0;
  position: relative;
}

.recruit-sec04::before {
  content: "";
  background-color: #f5f5f5;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 800px) {

  .recruit-sec01,
  .recruit-sec02,
  .recruit-sec03,
  .recruit-sec04 {
    padding: 70px 0;
  }

  .recruit-sec02 .t-ttl .jp,
  .recruit-sec03 .t-ttl .jp {
    font-size: 2rem;
  }
}

.recruit-layout01 {
  gap: 2.777vw;
  display: grid;
  grid-template-columns: max(23vw, 215px) 1fr;
}

@media screen and (max-width: 800px) {
  .recruit-layout01 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.recruit-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: end;
  gap: 20px;
}

.recruit-card li a {
  display: block;
  max-width: 450px;
  aspect-ratio: 450/360;
  position: relative;
}

.recruit-card li a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.3s;
}

.recruit-card li a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.recruit-card li a:hover .card-img img {
  transform: scale(1.1);
}

.recruit-card .card-img {
  overflow: hidden;
}

.recruit-card .card-img img {
  transition: transform 0.3s;
}

.recruit-card .card-desc::before {
  content: "";
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 18px;
  aspect-ratio: 20/14;
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  z-index: 1;
}

.recruit-card .card-desc::after {
  content: "";
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 43px;
  transform: translateY(-50%);
  z-index: 1;
}

.recruit-card .card-ttl {
  color: #fff;
  font-size: clamp(2rem, 1.666vw, 3rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .recruit-card .card-desc::before {
    right: 30px;
  }

  .recruit-card .card-desc::after {
    width: 50px;
    height: 50px;
    right: 15px;
  }
}

@media screen and (max-width: 800px) {
  .recruit-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .recruit-card li a {
    max-width: 100%;
  }

  .recruit-card .card-ttl {
    font-size: 2.6rem;
  }
}

.recruit-post-layout01 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7.666vw;
  min-height: 170px;
  position: relative;
}

.recruit-post-layout01 .t-ttl {
  margin-bottom: 0;
}

.recruit-post-layout01 .t-ttl [lang=en] {
  font-size: 5rem;
}

.recruit-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-recruit-news {
  max-width: 890px;
}

.list-recruit-news article:first-child a {
  border-top: 1px solid var(--color_border);
}

.list-recruit-news a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  padding: 23px 0;
}

.list-recruit-news a:hover .list-ttl,
.list-recruit-news a:hover h3 {
  color: var(--color_primary);
}

.list-recruit-news time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  line-height: 1;
  white-space: nowrap;
  padding-top: 3px;
  margin-right: 25px;
}

.list-recruit-news .list-ttl,
.list-recruit-news h3 {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
  font-size: 2rem;
  transition: color 0.3s;
  padding-right: 50px;
  position: relative;
}

.list-recruit-news .list-ttl::after,
.list-recruit-news h3::after {
  content: "";
  background: url(../images/share/icon_arrow_right_green.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .recruit-post-layout01 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recruit-post-layout01 .t-ttl [lang=en] {
    font-size: 4rem;
  }

  .recruit-post-layout01 .l-btn {
    position: static;
    text-align: center;
  }

  .list-recruit-news a {
    padding: 15px 0;
  }

  .list-recruit-news time {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .list-recruit-news .category {
    font-size: 1.2rem;
    padding: 2px 10px 4px;
    margin-right: 5px;
  }

  .list-recruit-news .list-ttl,
  .list-recruit-news h3 {
    font-size: 1.6rem;
    margin-top: 0;
    padding-right: 35px;
  }

  .list-recruit-news .list-ttl::after,
  .list-recruit-news h3::after {
    width: 16px;
    right: 10px;
  }
}

.slider-recruit-staff-wrap {
  position: relative;
  margin-bottom: 80px;
}

#slider-recruit-staff .splide__track {
  overflow: visible;
}

#slider-recruit-staff .splide__arrows {
  position: absolute;
  top: -120px;
  right: 0;
  display: flex;
  gap: 20px;
}

#slider-recruit-staff .splide__arrow {
  width: 60px;
  height: 60px;
  transform: none;
}

#slider-recruit-staff .splide__arrow svg {
  display: none;
}

#slider-recruit-staff .splide__arrow--prev {
  background: url(../images/share/icon_splide__arrow--prev.svg) no-repeat center/contain;
  position: static;
}

#slider-recruit-staff .splide__arrow--next {
  background: url(../images/share/icon_splide__arrow--next.svg) no-repeat center/contain;
  position: static;
}

#slider-recruit-staff a {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 450/528;
  padding: 0 40px 38px;
  position: relative;
}

#slider-recruit-staff a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-color 0.3s;
}

#slider-recruit-staff a .list-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#slider-recruit-staff a .list-img img {
  transition: transform 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#slider-recruit-staff a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}

#slider-recruit-staff a:hover .list-img img {
  transform: scale(1.1);
}

#slider-recruit-staff .department {
  display: inline-block;
  color: #fff;
  background-color: var(--color_primary);
  border-radius: 6px;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 8px 10px;
  margin-bottom: 20px;
}

#slider-recruit-staff .department+.department {
  margin-left: 10px;
}

#slider-recruit-staff .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #fff;
  font-size: 1.8rem;
}

@media screen and (max-width: 800px) {
  .slider-recruit-staff-wrap {
    margin-bottom: 30px;
  }

  #slider-recruit-staff .splide__arrows {
    top: -80px;
    gap: 10px;
  }

  #slider-recruit-staff .splide__arrow {
    width: 50px;
    height: 50px;
  }

  #slider-recruit-staff a {
    padding: 0 5% 20px;
  }

  #slider-recruit-staff .department {
    font-size: 1.4rem;
    padding: 6px 8px;
    margin-bottom: 10px;
  }

  #slider-recruit-staff .list-ttl {
    font-size: 1.6rem;
  }
}

/*------------
Recruitページ Footer
--------------*/
.recruit-footer {
  background-color: #f5f5f5;
  position: relative;
}

.recruit-footer-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.recruit-footer-btn a {
  height: 360px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recruit-footer-btn [lang=en] {
  font-size: 7.5rem;
}

.recruit-footer-btn .jp {
  font-size: 2.2rem;
}

.recruit-footer-btn .faq {
  background-color: var(--color_blue);
  transition: 0.3s;
}

.recruit-footer-btn .faq:hover {
  background-color: #137dab;
}

.recruit-footer-btn .entry {
  background-color: var(--color_pink);
  transition: 0.3s;
}

.recruit-footer-btn .entry:hover {
  background-color: #e05252;
}

.recruit-f-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 100px 0;
}

.recruit-f-logo a {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
}

.recruit-f-logo .txt {
  font-family: var(--font_jp);
  font-size: clamp(1.4rem, 1.461vw, 1.9rem);
  line-height: 1;
  padding-left: 20px;
  position: relative;
}

.recruit-f-logo .txt::before {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #333;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.recruit-f-links-ttl {
  display: inline-block;
  font-family: var(--font_jp);
  margin-bottom: 5px;
  transition: color 0.3s;
}

.recruit-f-links-ttl:hover {
  color: var(--color_primary);
}

.recruit-f-links-wrap {
  display: flex;
  gap: 6.5vw;
}

.recruit-f-links {
  font-family: var(--font_jp);
  line-height: 1.5;
  display: grid;
  gap: 7px;
}

.recruit-f-links .recruit-f-links-ttl {
  margin-bottom: 15px;
}

.recruit-f-links a {
  display: inline-block;
  font-size: 1.6rem;
  padding-left: 17px;
  position: relative;
  transition: color 0.3s;
}

.recruit-f-links a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 2px;
  background-color: var(--color_primary);
}

.recruit-f-links a:hover {
  color: var(--color_primary);
}

@media screen and (max-width: 1024px) {
  .recruit-footer {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 800px) {
  .recruit-footer-btn {
    grid-template-columns: 1fr;
  }

  .recruit-footer-btn a {
    height: 200px;
  }

  .recruit-footer-btn [lang=en] {
    font-size: 5rem;
  }

  .recruit-footer-btn .jp {
    font-size: 1.8rem;
  }

  .recruit-f-layout {
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
  }

  .recruit-f-links-ttl {
    font-size: 1.6rem;
  }

  .recruit-f-links-wrap {
    gap: 50px;
  }

  .recruit-f-links a {
    font-size: 1.4rem;
  }

  .recruit-f-links a::before {
    top: 10px;
  }
}

/*------------
Recruitページ 下層
--------------*/
.recruit-ttl01 {
  color: var(--color_blue);
  font-size: 2.5rem;
  border-bottom: 1px solid #C3C3C3;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .recruit-ttl01 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.recruit-company-img {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .recruit-company-img {
    max-width: 100%;
  }
}

.recruit-under01 {
  background-color: #f5f5f5;
  padding: 90px;
  display: grid;
  grid-template-columns: 365px auto;
  align-items: center;
  gap: 7vw;
}

.recruit-under01 [lang=en] {
  color: var(--color_pink);
  font-size: 7.5rem;
  line-height: 1;
}

.recruit-under01 .jp {
  font-size: 2.8rem;
  line-height: 1.8;
}

.recruit-under01+.recruit-under01 {
  margin-top: 16px;
}

.recruit-under02 {
  padding: 115px 0;
  position: relative;
}

.recruit-under02::before {
  content: "";
  background-color: #f5f5f5;
  width: 74%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.recruit-under02 .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.recruit-under02 .l-img {
  width: 37%;
}

.recruit-under02 .l-desc {
  flex: 1;
}

.recruit-under02 .l-ttl {
  color: var(--color_primary);
  font-size: 7.5rem;
  line-height: 1;
  margin-bottom: 25px;
}

.recruit-under02 .l-sub-ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.recruit-under03 {
  display: flex;
}

.recruit-under03 .l-img {
  position: relative;
  width: 50%;
  z-index: 1;
}

.recruit-under03 .l-img img {
  border-radius: 10px;
}

.recruit-under03 .l-img:has(figcaption) img {
  margin-bottom: 5px;
}

.recruit-under03 .l-desc {
  background: #f5f5f5;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  border-radius: 10px;
}

.recruit-under03.reverse {
  flex-direction: row-reverse;
}

.recruit-under03.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.recruit-under03 .l-num {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
}

.recruit-under03 .l-ttl {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

.recruit-under03 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.recruit-under03 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: #4a8eff;
  width: 30px;
  height: 2px;
}

@media (max-width: 800px) {
  .recruit-under01 {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px;
  }

  .recruit-under01 [lang=en] {
    font-size: 5rem;
  }

  .recruit-under01 .jp {
    font-size: 2rem;
  }

  .recruit-under02 {
    padding: 50px 0;
  }

  .recruit-under02 .container {
    flex-direction: column;
    gap: 30px;
  }

  .recruit-under02 .l-img {
    width: 100%;
  }

  .recruit-under02 .l-ttl {
    font-size: 5rem;
  }

  .recruit-under02 .l-sub-ttl {
    font-size: 2rem;
  }

  .recruit-under03 {
    flex-direction: column;
  }

  .recruit-under03 .l-img {
    width: 100%;
  }

  .recruit-under03 .l-desc {
    padding: 155px 5vw 30px;
    margin: -140px -5vw 0;
    border-radius: 0;
  }

  .recruit-under03.reverse {
    flex-direction: column;
  }

  .recruit-under03.reverse .l-desc {
    padding: 155px 5vw 30px;
    margin: -140px -5vw 0;
  }

  .recruit-under03 .l-num {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .recruit-under03 .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .recruit-under03 .l-sub-ttl {
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
  }

  .recruit-under03 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }
}

.recruit-flow-wrap {
  margin-bottom: 60px;
}


@media (max-width: 800px) {
  .recruit-flow-wrap {
    margin-bottom: 30px;
  }

}

.recruit-faq {
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px 60px;
  transition: 0.3s;
}

.recruit-faq+.faq-style {
  margin-top: -1px;
}

.recruit-faq .faq-summary {
  display: block;
  cursor: pointer;
  position: relative;
}

.recruit-faq .faq-summary .faq-icon {
  line-height: 33px;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  top: -2px;
}

.recruit-faq .faq-summary::-webkit-details-marker {
  display: none;
}

.recruit-faq .faq-summary:hover .faq-icon {
  background-color: #fff;
  color: var(--color_primary);
}

.recruit-faq .faq-summary:hover .faq-ttl {
  color: var(--color_primary);
}

.recruit-faq .faq-content {
  overflow: hidden;
}

.recruit-faq .faq-inner {
  padding: 30px 0 3px 57px;
  border-top: 1px dashed #D8D8D8;
  margin-top: 17px;
  position: relative;
}

.recruit-faq .faq-inner .faq-icon {
  background-color: var(--color_pink);
  top: 27px;
}

.recruit-faq .faq-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  padding: 0 35px 0 57px;
  transition: color 0.3s;
}

.recruit-faq .faq-icon {
  border-radius: 3px;
  color: #fff;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 1.7rem;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.recruit-faq .faq-open-icon {
  content: "";
  background: url(../images/share/icon_accordion_open.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  transition: background-image 0.3s;
}

.recruit-faq .faq-desc {
  font-size: 1.5rem;
  line-height: 2;
}

.recruit-faq+.recruit-faq {
  margin-top: 60px;
}

.recruit-faq.is-open .faq-summary .faq-icon {
  background-color: #fff;
  color: var(--color_primary);
}

.recruit-faq.is-open .faq-ttl {
  color: var(--color_primary);
}

.recruit-faq.is-open .faq-open-icon {
  background-image: url(../images/share/icon_accordion_close.svg);
}

@media (max-width: 800px) {
  .recruit-faq {
    padding: 20px 15px;
  }

  .recruit-faq .faq-ttl {
    font-size: 1.8rem;
    padding: 0 40px 0 45px;
  }

  .recruit-faq .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    line-height: 30px;
  }

  .recruit-faq .faq-summary .faq-icon {
    line-height: 28px;
    top: -1px;
  }

  .recruit-faq .faq-inner {
    padding: 20px 0 0 45px;
  }

  .recruit-faq .faq-inner .faq-icon {
    top: 20px;
  }

  .recruit-faq+.recruit-faq {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: 147px;
  background-color: #f5f5f5;
  position: relative;
}

.footer .t-ttl {
  margin-bottom: 0;
}

.footer>.container {
  margin-bottom: 95px;
}

.f-layout01 {
  background-color: var(--color_blue);
  border-radius: 20px;
  max-width: 1700px;
  width: 95%;
  min-height: 295px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  position: absolute;
  top: -147px;
  left: 0;
  right: 0;
}

.f-layout01 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.f-contact {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.f-contact .contact-btn {
  min-width: 255px;
  min-height: 74px;
}

.f-tel a {
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-contact-btn li+li {
  margin-top: 10px;
}

.f-layout02 {
  padding: 235px 0 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.f-links {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.4;
  display: grid;
  gap: 16px;
}

.f-links a {
  transition: color 0.3s;
}

.f-links a:hover {
  color: var(--color_primary);
}

.f-links .sub-menu {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.f-links .sub-menu a {
  display: inline-block;
  padding-left: 17px;
  position: relative;
}

.f-links .sub-menu a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 2px;
  background-color: var(--color_primary);
}

.f-links-ttl {
  color: #6F6F6F;
  font-family: var(--font_jp);
  font-size: 1.9rem;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 10px;
  margin-bottom: 23px;
}

.f-logo {
  line-height: 1;
  margin-bottom: 20px;
}

.f-logo a {
  display: inline-block;
}

.copyright {
  background-color: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 10px;
}

.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright small {
  font-size: 1.4rem;
}

.copyright-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.copyright-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.copyright-links a:hover {
  text-decoration: underline;
}

.pagetop {
  position: absolute;
  bottom: 50px;
  right: 20px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  transition: transform 0.3s;
}

.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 50px;
  }

  .pagetop {
    display: none;
  }
}

@media (max-width: 800px) {
  .footer>.container {
    margin-bottom: 50px;
  }

  .f-layout01 {
    padding: 30px;
  }

  .f-layout01 .container {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .f-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .f-contact .contact-btn {
    width: 100%;
  }

  .f-tel a {
    font-size: 3.4rem;
  }

  .f-tel img {
    width: 20px;
  }

  .f-layout02 {
    padding: 290px 0 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .f-links-ttl {
    font-size: 1.6rem;
    padding-bottom: 7px;
    margin-bottom: 15px;
  }

  .f-links {
    font-size: 1.4rem;
  }

  .f-links .sub-menu {
    margin-top: 10px;
  }

  .f-links .sub-menu a::before {
    top: 9px;
  }

  .copyright {
    font-size: 1.2rem;
    padding: 15px 0;
    text-align: center;
  }

  .copyright .container {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  .copyright small {
    font-size: 1.2rem;
  }

  .copyright-links {
    margin-bottom: 10px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.under-post-layout01 {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 70px;
  min-height: 300px;
  position: relative;
}

.under-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*施工事例*/
.list-under-works01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.list-under-works01 .list-img {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-under-works01 .list-img img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 232/180;
  transition: transform 0.3s;
}

.list-under-works01 time {
  color: var(--color_blue);
  display: block;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

.list-under-works01 .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.list-under-works01 .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-under-works01 a {
  display: block;
  height: 100%;
}

.list-under-works01 a:hover .list-img img {
  transform: scale(1.1);
}

.list-under-works01 a:hover .list-ttl {
  color: var(--color_primary);
}

/*お知らせ・メディア掲載情報*/
.list-under-news-media li:first-child a {
  padding: 0 0 23px;
}

.list-under-news-media a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  padding: 23px 0;
}

.list-under-news-media a:hover .list-ttl {
  color: var(--color_primary);
}

.list-under-news-media time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  margin-right: 18px;
}

.list-under-news-media .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 2rem;
  transition: color 0.3s;
  margin-top: 8px;
  padding-right: 40px;
  position: relative;
}

.list-under-news-media .list-ttl::after {
  content: "";
  background: url(../images/share/icon_arrow_right_green.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*通常投稿（お知らせ・メディア掲載情報のみ）*/
.list-under-news01 {
  border-top: 1px solid var(--color_border);
}

.list-under-news01 a {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 25px 35px 25px 0;
  position: relative;
  transition: background-color 0.3s;
}

.list-under-news01 a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.list-under-news01 a:hover {
  background-color: #fff;
}

.list-under-news01 time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  padding-top: 3px;
}

.list-under-news01 .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 2rem;
  flex: 1;
}

/*通常投稿（お知らせ・全カテゴリ）*/
.list-under-news02 {
  border-top: 1px solid var(--color_border);
}

.list-under-news02 a {
  display: block;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 35px 20px 0;
  position: relative;
  transition: background-color 0.3s;
}

.list-under-news02 a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.list-under-news02 a:hover {
  background-color: #f5f5f5;
}

.list-under-news02 time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  margin-right: 5px;
}

.list-under-news02 .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-under-news02 .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 2rem;
}

/*イベント情報、施工事例、仕事を知る*/
.list-under-event,
.list-under-works02,
.list-under-job {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.list-under-event .list-img,
.list-under-works02 .list-img,
.list-under-job .list-img {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-under-event .list-img img,
.list-under-works02 .list-img img,
.list-under-job .list-img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  transition: transform 0.3s;
}

.list-under-event time,
.list-under-works02 time,
.list-under-job time {
  color: var(--color_blue);
  display: block;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

.list-under-event .list-ttl,
.list-under-works02 .list-ttl,
.list-under-job .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.list-under-event .category,
.list-under-works02 .category,
.list-under-job .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-under-event a,
.list-under-works02 a,
.list-under-job a {
  display: block;
  height: 100%;
}

.list-under-event a:hover .list-img img,
.list-under-works02 a:hover .list-img img,
.list-under-job a:hover .list-img img {
  transform: scale(1.1);
}

.list-under-event a:hover .list-ttl,
.list-under-works02 a:hover .list-ttl,
.list-under-job a:hover .list-ttl {
  color: var(--color_primary);
}

.list-under-job .list-ttl {
  margin-bottom: 0;
}

.recruit-job-single-ttl-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 80px;
}

.recruit-job-single-ttl-wrap .l-img {
  width: 50%;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.recruit-job-single-ttl-wrap .l-img img {
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

/*ぴゅあ通信*/
.list-under-magazine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.list-under-magazine .list-img {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-under-magazine .list-img img {
  object-fit: contain;
  width: 100%;
  aspect-ratio: 240/300;
  transition: transform 0.3s;
}

.list-under-magazine .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 2rem;
  transition: color 0.3s;
}

.list-under-magazine a {
  display: block;
  height: 100%;
}

.list-under-magazine a:hover .list-img img {
  transform: scale(1.1);
}

.list-under-magazine a:hover .list-ttl {
  color: var(--color_primary);
}

/*スタッフ紹介*/
.list-under-staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.list-under-staff a {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 450/528;
  padding: 0 20px 20px;
  position: relative;
}

.list-under-staff a::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-color 0.3s;
}

.list-under-staff a .list-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.list-under-staff a .list-img img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.3s;
}

.list-under-staff a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.list-under-staff a:hover .list-img img {
  transform: scale(1.1);
}

.list-under-staff .list-desc {
  color: #fff;
}

.list-under-staff .department {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 6px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.list-under-staff .department+.department {
  margin-left: 10px;
}

.list-under-staff .staff-year {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
}

.list-under-staff .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;

  font-size: 1.8rem;
  margin-bottom: 10px;
}

/*カテゴリー選択*/
.select-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.6rem;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: var(--color_text);
  font-size: 1.6rem;
  vertical-align: middle;
  height: 44px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*採用ニュース*/
.list-under-saiyonews {
  border-top: 1px solid var(--color_border);
}

.list-under-saiyonews a {
  display: flex;
  border-bottom: 1px solid var(--color_border);
  transition: background-color 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-under-saiyonews a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.list-under-saiyonews a:hover {
  background-color: #f5f5f5;
}

.list-under-saiyonews .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-under-saiyonews .list-img img {
  object-fit: cover;
  width: 100%;
  height: 105px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.list-under-saiyonews .list-desc {
  flex: 1;
}

.list-under-saiyonews time {
  display: inline-block;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  margin-right: 5px;
}

.list-under-saiyonews .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.list-under-saiyonews .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 2rem;
}

/*募集要項*/
.jobdescription-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 20px 60px;
  margin-bottom: 30px;
}

.jobdescription-layout01 {
  display: contents;
}

.jobdescription-layout01 .item {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jobdescription-ttl {
  flex-shrink: 0;
  font-size: 2.1rem;
  padding-left: 31px;
  position: relative;
}

.jobdescription-ttl::before {
  content: "";
  background: var(--color_pink);
  border-radius: 3px;
  width: 16px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 8px;
  left: 0;
}

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




.search-item {
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 6px 45px 8px;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  transition: background-color 0.3s, color 0.3s;
}


.checkbox-hidden:checked+.search-item {
  background-color: var(--color_primary);
  color: #fff;
}

.checkbox-hidden:focus+.search-item {
  outline: 2px solid var(--color_primary);
  outline-offset: 2px;
}


input:checked+.search-item {
  background-color: var(--color_primary);
  color: #fff;
}

.search-btn {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: "#333";
  cursor: pointer;
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  transition: color 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.search-btn::before {
  content: "";
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-image 0.3s;
}

.search-btn::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.search-btn:hover {
  color: var(--color_primary);
}

.search-btn:hover::before {
  background-image: url(../images/share/icon_btn-more_arrow_green.svg);
}

.search-btn:hover::after {
  background-color: transparent;
}

.list-under-jobdescription>.item {

  background-color: #fff;
  border: 1px solid #D8D8D8;
  padding: 50px;
}

.list-under-jobdescription>.item+.item {
  margin-top: 60px;
}

.list-under-jobdescription .category-wrap {
  margin-bottom: 15px;
}

.list-under-jobdescription .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 25px;
}

.list-under-jobdescription .jobdescription-ttl {
  white-space: nowrap;
}

.list-under-jobdescription .inner {
  display: flex;
  gap: 60px;
  margin-bottom: 15px;
}

.list-under-jobdescription .l-desc {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 25px 60px;
}

.list-under-jobdescription .list-img {
  flex: 0 0 43%;
  /* width: 43%; */
}

.list-under-jobdescription .list-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}

.list-under-jobdescription .jobdescription-layout02 {
  display: contents;
}

.list-under-jobdescription .jobdescription-layout02 .list-txt {
  font-size: 1.5rem;
  line-height: 2;
  flex: 1;
  overflow-wrap: break-word;
  word-break: break-all;
  min-width: 0;
}


.jobdescription-category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  padding: 12px 22px;
  margin-right: 10px;
}

/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 50px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 50px;
}

.post-h1-title,
.post-meta-block {
  max-width: 1024px;
  margin-inline: auto;
}

.post-h1-title {
  border-bottom: 1px solid var(--color_border);
  font-size: 2.5rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.post-meta-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-bottom: 20px;
}

.post-meta-block time {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  margin-right: 20px;
}

.post-meta-block .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.single-post-layout .tall:last-child {
  padding-bottom: 0;
}

/*施工事例 詳細ページ*/
.works-single-layout {
  display: flow-root;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 50px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 50px;
}

.works-single-layout .l-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 2.5rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.works-single-layout .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.works-single-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.works-single-layout .psingle-post-layout .post-dataost-data .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
  margin-right: 10px;
}

.works-single-layout .tall:last-child {
  padding-bottom: 0;
}

.works-post-layout {
  display: flex;
  gap: 30px;
}

.works-post-layout .list-img {
  width: 45%;
}

.works-post-layout .list-img img {
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.works-post-layout .list-desc {
  flex: 1;
}

.works-post-layout .list-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 2rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.works-slider .splide__slide img {
  width: 100%;
  aspect-ratio: 800/590;
  object-fit: cover;
  border-radius: 10px;
}

.works-slider .splide__arrow--next {
  right: -5%;
}

.works-slider .splide__arrow--prev {
  left: -5%;
}

.works-slider .splide__pagination {
  display: flex !important;
  bottom: -30px;
}

.works-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: #C3C3C3;
}

.works-slider .splide__pagination__page.is-active {
  transform: scale(1.4);
}

.works-slider .zoom-img {
  display: block;
  position: relative;
}

.works-slider .zoom-img::before {
  content: "";
  background: var(--color_primary) url(../images/share/icon_zoom.svg) no-repeat center/20px auto;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.works-slider+.box-style02 {
  margin-top: 90px;
}

.works-slider+.box-style02+.postdata {
  margin-top: 60px;
}

/*仕事を知る 詳細ページ*/
.recruit-job-single-ttl {
  flex: 1;
  margin-bottom: 50px;
}

.recruit-job-single-ttl .l-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 2.5rem;
  padding: 0 15px 20px 0;
  margin-bottom: 20px;
}

.recruit-job-single-ttl .l-sub-ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  padding-right: 15px;
}

/*スタッフ紹介 詳細ページ*/
.recruit-staff-post-layout {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.recruit-staff-post-layout .l-img {
  width: 35%;
}

.recruit-staff-post-layout .l-img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 450/528;
}

.recruit-staff-post-layout .l-desc {
  flex: 1;
}

.recruit-staff-post-layout .l-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 2.5rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.recruit-staff-post-layout .staff-department {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 15px;
}

.recruit-staff-post-layout .staff-year {
  margin-bottom: 30px;
}

.recruit-staff-post-layout .staff-department,
.recruit-staff-post-layout .staff-year {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.5;
}

.recruit-staff-post-layout .recruit-ttl01 {
  margin-bottom: 15px;
}

.recruit-staff-slider-wrap {
  margin-bottom: 90px;
}

.recruit-staff-slider .splide__slide img {
  border-radius: 10px;
}

.recruit-staff-slider .splide__pagination {
  display: flex !important;
  bottom: -30px;
}

.recruit-staff-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: #C3C3C3;
}

.recruit-staff-slider .splide__pagination__page.is-active {
  transform: scale(1.4);
}

.recruit-message-wrap {
  margin-bottom: 60px;
}

/*募集要項 詳細ページ*/
.recruit-jobdescription-post-layout {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.recruit-jobdescription-post-layout .l-img {
  width: 40%;
}

.recruit-jobdescription-post-layout .l-img img {
  object-fit: cover;
  aspect-ratio: 4/3;
}

.recruit-jobdescription-post-layout .l-desc {
  flex: 1;
}

.recruit-jobdescription-post-layout .category {
  display: inline-block;
  background-color: #EBAF0C;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 18px 7px;
}

.recruit-jobdescription-post-layout .l-ttl {
  margin-bottom: 30px;
}

/*詳細ページ フリーエリア*/
.postdata {
  /*WP必須クラス*/
  overflow-wrap: break-word;
  /*スタイルの調整が必要*/
}

.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

ul.wp-block-list li {
  position: relative;
  padding-left: 15px;
}

ul.wp-block-list li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
}

ul.wp-block-list li>ul {
  margin: 0 0 0 15px;
}

ol.wp-block-list {
  counter-reset: number;
}

ol.wp-block-list li {
  padding-left: 30px;
  position: relative;
}

ol.wp-block-list li::before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 8px;
  left: 0;
  line-height: 19px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

ol.wp-block-list li>ol {
  margin: 0 0 0 15px;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  line-height: 28px;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-left: 2px;
  transition: 0.3s;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--color_primary);
  color: #fff;
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}

.post-number-single a {
  display: inline-block;
  transition: 0.3s;
}

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: transparent;
  color: var(--color_primary);
}

.post-number .prev,
.post-number .next,
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number .prev::before,
.post-number .next::before,
.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
  transition: 0.3s;
}

.post-number .prev:hover,
.post-number .next:hover,
.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: var(--color_primary);
}

.post-number .prev:hover::before,
.post-number .next:hover::before,
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number .prev::before,
.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 10px;
  border-left: 1px solid var(--color_primary);
}

.post-number .next::before,
.post-number-single .next::before {
  transform: rotate(135deg);
  right: 10px;
  border-right: 1px solid var(--color_primary);
}

@media (max-width: 800px) {
  .under-post-layout01 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
  }

  .under-post-layout01 .u-ttl03 {
    margin-bottom: 0;
  }

  .under-post-layout01 .l-btn {
    position: static;
    text-align: center;
  }

  /*施工事例*/
  .list-under-post::before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.4rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }

  .list-under-works01 {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-under-works01 article {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-under-works01 .list-img {
    margin-bottom: 15px;
  }

  .list-under-works01 time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-under-works01 .category {
    font-size: 1.2rem;
    margin-right: 5px;
    padding: 5px 10px 7px;
  }

  .list-under-works01 .list-ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  /*お知らせ,メディア掲載情報*/
  .list-under-news-media li:first-child a {
    padding: 0 0 15px;
  }

  .list-under-news-media a {
    display: block;
    line-height: 1.5;
    padding: 15px 0;
  }

  .list-under-news-media time {
    font-size: 1.2rem;
    margin: 0 10px 5px 0;
  }

  .list-under-news-media .list-ttl {
    font-size: 1.6rem;
    margin-top: 0;
    padding-right: 30px;
  }

  .list-under-news-media .list-ttl::after {
    width: 16px;
  }

  /*通常投稿（お知らせ・メディア掲載情報のみ）*/
  .list-under-news01 a {
    gap: 10px;
    line-height: 1.5;
    padding: 15px 15px 15px 0;
  }

  .list-under-news01 a::before {
    right: 0;
  }

  .list-under-news01 time {
    font-size: 1.2rem;
    padding-top: 4px;
  }

  .list-under-news01 .list-ttl {
    font-size: 1.6rem;
  }

  /*通常投稿（お知らせ・全カテゴリ）*/
  .list-under-news02 a {
    display: block;
    line-height: 1.5;
    padding: 15px 15px 15px 0;
  }

  .list-under-news02 a::before {
    right: 0;
  }

  .list-under-news02 time {
    font-size: 1.2rem;
  }

  .list-under-news02 .category {
    font-size: 1.2rem;
    margin: 0 5px 5px 0;
    padding: 5px 10px 7px;
  }

  .list-under-news02 .list-ttl {
    font-size: 1.8rem;
  }

  /*イベント情報、施工事例、仕事を知る*/
  .list-under-event,
  .list-under-works02,
  .list-under-job {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .list-under-event .list-img,
  .list-under-works02 .list-img,
  .list-under-job .list-img {
    margin-bottom: 15px;
  }

  .list-under-event time,
  .list-under-works02 time,
  .list-under-job time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-under-event .category,
  .list-under-works02 .category,
  .list-under-job .category {
    font-size: 1.2rem;
    margin-right: 5px;
    padding: 5px 10px 7px;
  }

  .list-under-event .list-ttl,
  .list-under-works02 .list-ttl,
  .list-under-job .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .recruit-job-single-ttl-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
  }

  .recruit-job-single-ttl-wrap .l-img {
    width: 100%;
  }

  .recruit-job-single-ttl {
    width: 100%;
    margin-bottom: 0;
  }

  .recruit-job-single-ttl .l-ttl {
    font-size: 2.2rem;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
  }

  .recruit-job-single-ttl .l-sub-ttl {
    font-size: 1.6rem;
    padding-right: 0;
  }

  /*ぴゅあ通信*/
  .list-under-magazine {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }

  .list-under-magazine .list-img {
    margin-bottom: 15px;
  }

  .list-under-magazine .list-ttl {
    font-size: 1.8rem;
  }

  /*スタッフ紹介*/
  .list-under-staff {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .list-under-staff a {
    padding: 0 5% 20px;
  }

  .list-under-staff .department {
    font-size: 1.4rem;
    padding: 6px 8px;
    margin-bottom: 10px;
  }

  .list-under-staff .staff-year {
    font-size: 1.4rem;
  }

  .list-under-staff .list-ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  /*カテゴリー選択*/
  .select-area {
    display: block;
  }

  .select-area .select-item {
    flex-wrap: wrap;
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 30px;
  }

  .select-area .select-ttl {
    font-size: 1.5rem;
    width: 100%;
  }

  #archive-category-form,
  #archive-monthly-form {
    width: 100%;
  }

  /*採用ニュース*/
  .list-under-saiyonews .list-img {
    width: 120px;
    margin-right: 20px;
  }

  .list-under-saiyonews .list-img img {
    height: 90px;
  }

  .list-under-saiyonews .list-desc {
    line-height: 1;
  }

  .list-under-saiyonews time {
    font-size: 1.2rem;
  }

  .list-under-saiyonews .category {
    font-size: 1rem;
    margin: 0 5px 5px 0;
    padding: 5px 10px 7px;
  }

  .list-under-saiyonews .list-ttl {
    font-size: 1.5rem;
  }

  /*募集要項*/
  .jobdescription-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .jobdescription-layout01 {
    display: block;
  }

  .jobdescription-layout01+.jobdescription-layout01 {
    margin-top: 20px;
  }

  .jobdescription-ttl {
    font-size: 1.8rem;
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .jobdescription-ttl::before {
    width: 13px;
  }

  .search-item {
    font-size: 1.6rem;
    padding: 4px 20px 6px;
  }

  .list-under-jobdescription>.item {
    padding: 20px;
  }

  .list-under-jobdescription>.item+.item {
    margin-top: 30px;
  }

  .list-under-jobdescription .list-ttl {
    font-size: 1.8rem;
  }

  .list-under-jobdescription .inner {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 30px;
  }

  .list-under-jobdescription .l-desc {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .list-under-jobdescription .list-img {
    width: 100%;
  }

  .list-under-jobdescription .list-img img {
    max-height: 250px;
  }

  .jobdescription-category {
    font-size: 1.2rem;
    margin-right: 5px;
    padding: 5px 10px 7px;
  }

  .jobdescription-layout02+.jobdescription-layout02 {
    display: block;
    margin-top: 20px;
  }

  /*詳細ページ*/
  .single-post-layout .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .post-h1-title,
  .post-meta-block {
    max-width: 90%;
  }

  .post-meta-block time {
    margin-right: 10px;
  }

  .post-meta-block .category {
    font-size: 1.2rem;
    margin-right: 5px;
    padding: 5px 10px 7px;
  }

  .works-single-layout .l-ttl {
    font-size: 2.2rem;
  }

  .works-single-layout .l-sub-ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .works-post-layout {
    flex-direction: column;
  }

  .works-post-layout .list-img {
    width: 100%;
  }

  .works-post-layout .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .works-slider .zoom-img {
    display: block;
    position: relative;
  }

  .works-slider .zoom-img::before {
    content: "";
    background: var(--color_primary) url(../images/share/icon_zoom.svg) no-repeat center/16px auto;
    width: 22px;
    height: 22px;
    bottom: 5px;
    right: 5px;
  }

  .works-slider+.box-style02 {
    margin-top: 60px;
  }

  .works-slider+.box-style02+.postdata {
    margin-top: 30px;
  }

  .recruit-staff-post-layout {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .recruit-staff-post-layout .l-img {
    width: 100%;
  }

  .recruit-staff-post-layout .l-ttl {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .recruit-staff-slider-wrap {
    margin-bottom: 60px;
  }

  .recruit-staff-slider .splide__list {
    gap: 0 !important;
  }

  .recruit-staff-slider .splide__slide img {
    border-radius: 0;
  }

  .recruit-jobdescription-post-layout {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .recruit-jobdescription-post-layout .l-img {
    width: 100%;
  }

  .recruit-message-wrap {
    margin-bottom: 30px;
  }

  .postdata ul li::before {
    top: 13px;
  }

  .postdata ol li::before {
    top: 6px;
    padding-left: 1px;
  }

  /*ページャー*/
  .post-number-single {
    margin-top: 50px;
    padding-bottom: 70px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  margin-bottom: 60px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-item+.side-contents-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-links {
  display: grid;
  gap: 5px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 15px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .side-area-links li::before {
    top: 11px;
  }
}

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

.archive-form {
  display: grid;
  grid-template-columns: 1fr 65px;
  gap: 10px;
}

.archive-label {
  font-size: 1.4rem;
  margin-bottom: 10px;
}


.archive-dropdown {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  background: #fff;
  transition: border-color 0.2s;
}

.archive-dropdown:focus {
  border-color: #0073aa;
  outline: none;
}

.archive-submit {
  padding: 0.5em 1.2em;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.archive-submit:focus-visible {
  background: #005177;
}

@media (any-hover:hover) {
  .archive-submit:hover {
    background: #005177;
  }
}

@media (max-width:800px) {
  .archive-select-group {
    flex-direction: column;
    align-items: stretch;
  }

  .archive-submit {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.tab-only {
  display: none;
}

.sp-only {
  display: none;
}

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

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.6;
}

.fs11 {
  font-size: 1.1rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs25-18 {
  font-size: 2.5rem;
}

.jp {
  font-family: var(--font_jp);
}

.en,
[lang=en] {
  font-family: var(--font_en);
  font-weight: var(--semibold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.bold,
strong {
  font-weight: bold;
}

.color-red {
  color: #F44336;
}

.color-green {
  color: var(--color_primary);
}

.color-pink {
  color: var(--color_pink);
}

.color-blue {
  color: var(--color_blue);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.br0 {
  border-radius: 0 !important;
}

.br10 {
  border-radius: 10px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tac img {
  display: inline-block;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col2,
.col3,
.col4 {
  display: grid;
}

.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

.col2.gap02,
.col3.gap02,
.col4.gap02 {
  gap: 0 10px;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .tab-only {
    display: block;
  }
}

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

  .sp-only {
    display: block;
  }

  .fs25-18 {
    font-size: 1.8rem;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }

  .sp-mb0 {
    margin-bottom: 0 !important;
  }

  .sp-mb45 {
    margin-bottom: 45px !important;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }

  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }

  .sp-col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-col2.gap {
    gap: 15px;
  }
}

/*ボタン*/
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
  transition: color 0.3s;
  position: relative;
}

.btn-more::before {
  content: "";
  background: url(../images/share/icon_btn-more_arrow_white.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-image 0.3s;
}

.btn-more::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.btn-more:hover {
  color: var(--color_primary);
}

.btn-more:hover::before {
  background-image: url(../images/share/icon_btn-more_arrow_green.svg);
}

.btn-more:hover::after {
  background-color: transparent;
}

.btn-more.small {
  font-size: 1.8rem;
  gap: 10px;
}

.btn-more.small::before {
  width: 16px;
  height: 12px;
  right: 12px;
}

.btn-more.small::after {
  width: 40px;
  height: 40px;
}

.btn-more.down::before {
  transform: translateY(-50%) rotate(90deg);
}

.tel-btn {
  background: #fff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 2.7rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  min-height: 69px;
  min-width: 308px;
  padding: 10px 20px;
}

.contact-btn {
  background-color: var(--color_blue);
  border: 2px solid var(--color_blue);
  color: #fff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 2.2rem;
  line-height: 1.5;
  min-height: 69px;
  min-width: 308px;
  padding: 10px 20px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-btn::before {
  content: "";
  background: url(../images/share/icon_mail02.svg) no-repeat center/contain;
  width: 25px;
  height: 20px;
  display: inline-block;
  transition: 0.3s;
}

.contact-btn.white {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color_blue);
}

.contact-btn.white.contact::before {
  background-image: url(../images/share/icon_mail_blue.svg);
}

.contact-btn.white.recruit::before {
  background-image: url(../images/share/icon_recruit_blue.svg);
  width: 27px;
  height: 27px;
}

.contact-btn:hover {
  background-color: transparent;
  color: var(--color_blue);
}

.contact-btn:hover::before {
  background-image: url(../images/share/icon_mail_blue.svg);
}

.contact-btn:hover.white {
  background-color: var(--color_blue);
  color: #fff;
}

.contact-btn:hover.white.contact::before {
  background-image: url(../images/share/icon_mail02.svg);
}

.contact-btn:hover.white.recruit::before {
  background-image: url(../images/share/icon_recruit_white.svg);
  width: 27px;
  height: 27px;
}

.btn-dl {
  display: inline-grid;
  grid-template-columns: 35px auto;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-width: 420px;
  min-height: 117px;
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font_jp);
  line-height: 1.5;
  transition: background-color 0.3s, color 0.3s;
}

.btn-dl .txt-box {
  width: 265px;
  text-align: center;
}

.btn-dl .txt01 {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.btn-dl .txt02 {
  display: block;
  font-size: 1.5rem;
}

.btn-dl:hover {
  background-color: var(--color_primary);
  color: #fff;
}


.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.btn-wrap.center {
  justify-content: center;
}

.btn-dl-wrap {
  display: inline-grid;
  gap: 18px;
}

@media (max-width: 800px) {
  .tel-btn {
    min-height: 55px;
    font-size: 2.4rem;
  }

  .contact-btn {
    min-height: 55px;
    font-size: 2rem;
  }

  .btn-dl {
    min-width: 100%;
    min-height: 100px;
    gap: 20px;
    padding: 10px;
  }

  .btn-dl .txt-box {
    width: 100%;
  }

  .btn-dl .txt01 {
    font-size: 1.6rem;
  }

  .btn-dl .txt02 {
    font-size: 1.4rem;
  }

  .btn-wrap {
    gap: 15px;
  }

  .btn-dl-wrap {
    width: 100%;
    display: grid;
  }
}

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: var(--color_blue);
  /*矢印*/
  --splide-focus-color: var(--color_blue);
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: var(--color_blue);
  /*アクティブ時のページネーション*/
  --splide-progress-color: var(--color_blue);
  /*プログレスバー*/
  --splide-toggle-color: var(--color_blue);
  /*再生ボタン*/
  --splide-track-color: var(--color_blue);
  /*サムネイルの枠*/
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.3;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

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

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #fff;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}


@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

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

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

/*------------
Fancybox
-------------*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 3枚並び表示用のスタイル */
.recruit-staff-slider .wp-block-gallery.splide__list,
.works-slider .wp-block-gallery.splide__list {
  flex-wrap: nowrap !important;
}


.works-slider .splide__slide figure {
  margin: 0;
  height: 100%;
  width: 100%;
}

.works-slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works-slider .zoom-img:hover img {
  transform: scale(1.05);
}


@media (max-width: 800px) {
  .works-slider.splide {
    max-width: 90% !important;
  }

}


.job-search-accordion {
  background-color: #fff;
  border: 1px solid #D8D8D8;
  padding: 15px 50px;
}

.job-search-accordion summary {
  display: grid;
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--font_jp);
  position: relative;
  transition: 0.2s;
}

.job-search-accordion summary::after {
  content: "";
  background-color: var(--color_primary);
  mask: url(../images/share/icon_open.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.job-search-accordion[open] summary::after {
  background-color: #717171;
  transform: translateY(-50%) rotate(45deg);
}

.job-search-accordion form {
  padding-top: 30px;
}

@media (max-width: 800px) {
  .job-search-accordion {
    padding: 15px;
  }

  .job-search-accordion summary {
    font-size: 2rem;
  }

  .job-search-accordion summary::after {
    width: 20px;
    height: 20px;
  }

  .job-search-accordion form {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

