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

html {
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  word-break: break-all;
  margin: 0;
  padding: 0;
  border: 0;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2 {
  line-height: 1.2;
}

h3,
h4 {
  line-height: 1.5;
}

h5,
h6 {
  line-height: inherit;
}

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

blockquote,
q {
  quotes: none;
}

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

b,
strong {
  font-weight: bolder;
}

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

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

[role=button] {
  cursor: pointer;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

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

[hidden] {
  display: none !important;
}

*:focus {
  outline: none;
}

.clearfix::after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

body {
  position: relative;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}
body.no-scroll.ready {
  overflow: hidden;
  height: 100vh;
}
body.ready {
  overflow: auto;
}

.pc-hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

img.w100 {
  max-width: 100%;
  height: auto;
}

a {
  cursor: pointer;
}
a.default {
  transition: 0.4s ease;
}
a.default:hover {
  opacity: 50%;
}

.wow {
  opacity: 0;
}

.desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .desc p {
    font-feature-settings: "palt";
  }
}

.w800 {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.w1280 {
  width: min(80%, 1280px);
  margin: 0 auto;
}

.w1328 {
  width: min(90%, 1328px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .w1328 {
    width: 94%;
  }
}

.w1440 {
  width: min(95%, 1440px);
  margin: 0 auto;
}

.inline-block {
  display: inline-block;
}

.bg-w {
  background-color: #fff;
}

/* ボタン */
.arrow {
  width: 32px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.arrow .icon-bg {
  background-color: #00579e;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}
.arrow .icon_bg-hover {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s ease-in, opacity 0.25s ease-out;
  display: block;
  z-index: 4;
}
.arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(16 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
  z-index: 4;
}
@media print, screen and (max-width: 1200px) {
  .arrow::before {
    width: 12px;
    height: 10px;
  }
}
:hover > .arrow {
  animation: Scale 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  background-color: #00579e;
}
:hover > .arrow::before {
  z-index: 5;
}
:hover > .arrow .icon_bg-hover {
  transform: scale(1);
  opacity: 1;
}

.sec-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
.sec-title .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.sec-title .tit-en {
  transition: 0.4s ease;
}
.sec-title .line-tit path {
  fill: transparent;
  stroke: #001a51;
  stroke-width: 1.5px;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.sec-title .tit-ja {
  background-color: #001a51;
}
.sec-title .tit-ja p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 130%;
  color: #ffffff;
}
.sec-title.is-show .line-tit {
  transition-delay: 1.2s;
}
.sec-title.is-show .line-tit path {
  animation: kf_s01 2s forwards;
}

/* サンプルのお取り寄せ */
.c-sample {
  position: relative;
  z-index: 5;
  background-color: #fff;
}
.c-sample .inner {
  padding: 200px 0;
}
@media print, screen and (max-width: 1023px) {
  .c-sample .inner {
    width: 84%;
    padding: 40px 0;
  }
}
.c-sample .link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  background: url(../img/common/sample-bg.png) no-repeat center/cover;
  padding: 72px 0;
  border-radius: 8px;
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link {
    gap: 24px;
    background: url(../img/common/sample-bg_sp.png) no-repeat center/cover;
    padding: 48px 0;
  }
}
.c-sample .link .tit-en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 3.4678398058rem + 6.5372168285vw, 11.3125rem);
  line-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 30.29%, rgba(255, 255, 255, 0) 62.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  white-space: nowrap;
  position: absolute;
  top: -24px;
  left: -24px;
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link .tit-en {
    top: -10px;
    left: -133px;
  }
}
.c-sample .link .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(17, 22, 53, 0.8);
  padding-bottom: 8px;
  border-bottom: 3px solid #fff;
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link .tit-ja {
    width: 90%;
    margin: 0 auto;
    letter-spacing: 0;
  }
}
.c-sample .link .desc .pc-hidden {
  display: none;
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link .desc {
    width: 90%;
    margin: 0 auto;
  }
  .c-sample .link .desc .pc-hidden {
    display: block;
  }
}
.c-sample .link .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.c-sample .link .desc p .f-40 {
  font-size: 40px;
  line-height: 130%;
}
.c-sample .link .desc p .f-32 {
  font-size: 32px;
}
.c-sample .link .arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: calc(50 / 1920 * 100vw);
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link .arrow {
    width: 32px;
    height: 32px;
    right: 18px;
    bottom: 13px;
  }
}
.c-sample .link .arrow .icon-bg {
  background-color: #ffffff;
}
.c-sample .link .arrow .icon_bg-hover {
  background: #00579e;
}
.c-sample .link .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow_b.svg) no-repeat center/contain;
  width: calc(25 / 1920 * 100vw);
  height: calc(20 / 1920 * 100vw);
}
@media print, screen and (max-width: 1023px) {
  .c-sample .link .arrow::before {
    width: 16px;
    height: 13px;
  }
}
.c-sample .link:hover .arrow {
  background-color: #00579e;
}
.c-sample .link:hover .arrow::before {
  background-image: url(../img/common/icon-arrow.svg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  transform: translateY(-100%);
  transition: 0.4s ease;
}
.header.ready, .header.is-active {
  transform: translateY(0);
}
.header.menu-open {
  pointer-events: none;
}
.header.menu-open .inner {
  opacity: 0;
}
.header.menu-open .hamburger {
  pointer-events: all;
}
.header .inner {
  padding-left: calc(24 / 1920 * 100vw);
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 1300px) {
  .header .inner {
    padding: 20px 8px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 4px rgba(117, 116, 116, 0.2);
  }
}
@media only screen and (max-width: 767px) {
  .header .inner {
    padding: 8px 8px 8px 16px;
  }
}
.header .inner .h_logo {
  max-width: calc(400 / 1920 * 100vw);
  width: 22%;
  margin: 12px 0;
  margin-right: calc(63 / 1920 * 100vw);
}
@media print, screen and (max-width: 1555px) {
  .header .inner .h_logo {
    margin-right: 24px;
  }
}
@media print, screen and (max-width: 1300px) {
  .header .inner .h_logo {
    margin-right: 0;
    max-width: 276px;
    width: 100%;
  }
}
.header .inner .h_logo a {
  display: block;
}
.header .inner .h_menu {
  flex: 1;
  padding: 0 calc(140 / 1920 * 100vw) 0 calc(56 / 1920 * 100vw);
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0px 0px 0px 8px;
  box-shadow: 0px 4px 4px rgba(117, 116, 116, 0.2);
  backdrop-filter: blur(2px);
}
@media print, screen and (max-width: 1555px) {
  .header .inner .h_menu {
    padding: 0 70px 0 20px;
  }
}
@media print, screen and (max-width: 1300px) {
  .header .inner .h_menu {
    display: none;
  }
}
.header .inner .h_menu .menulist {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 100%;
  color: #000000;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.header .inner .h_menu .menulist .menu-item {
  position: relative;
  padding: 28px 0;
}
.header .inner .h_menu .menulist .menu-item:hover .child-menu-item {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease;
}
.header .inner .h_menu .menulist .dot-menu {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: calc(5 / 1920 * 100vw);
  align-items: center;
}
.header .inner .h_menu .menulist .dot-menu p {
  position: relative;
  transition: 0.4s ease;
}
.header .inner .h_menu .menulist .dot-menu p::after {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.header .inner .h_menu .menulist .dot-menu::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: calc(10 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
  border-radius: 50%;
  background-color: #00579e;
}
.header .inner .h_menu .menulist .dot-menu img {
  width: calc(20 / 1920 * 100vw);
  height: auto;
}
.header .inner .h_menu .menulist .dot-menu:hover p {
  transform: translateY(-100%);
}
.header .inner .h_menu .menulist .dot-menu:hover::after {
  transform: translateY(0);
}
.header .inner .h_menu .menulist .child-menu-item {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -70%;
  width: 230%;
  background-color: rgba(1, 56, 101, 0.9);
  padding: 0 24px;
}
.header .inner .h_menu .menulist .child-menu-item.long {
  width: 100%;
  left: 0;
}
.header .inner .h_menu .menulist .child-menu-item .c-menu-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  border-bottom: 1px solid #fff;
}
.header .inner .h_menu .menulist .child-menu-item .c-menu-item:last-child {
  border: none;
}
.header .inner .h_menu .menulist .child-menu-item .c-menu-item a {
  display: block;
  padding: 24px 0;
  text-align: center;
}
.header .inner .h_menu .menulist .child-menu-item .c-menu-item:last-child a {
  border: none;
}

.hamburger {
  position: absolute;
  background-color: #001a51;
  right: calc(32 / 1920 * 100vw);
  top: 0;
  bottom: 0;
  width: calc(60 / 1920 * 100vw);
  height: calc(60 / 1920 * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  z-index: 300;
  cursor: pointer;
  transition: transform 0.6s ease;
}
@media print, screen and (max-width: 1555px) {
  .hamburger {
    right: 10px;
  }
}
@media print, screen and (max-width: 1200px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
}
.hamburger .line-wrap {
  position: relative;
  width: calc(26 / 1920 * 100vw);
  height: calc(23 / 1920 * 100vw);
  transition: transform 0.6s ease;
}
@media print, screen and (max-width: 1200px) {
  .hamburger .line-wrap {
    width: 26px;
    height: 23px;
  }
  .hamburger .line-wrap::after {
    content: "MENU";
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #fff;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    text-align: center;
  }
}
.hamburger .line-wrap .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: calc(3 / 1920 * 100vw);
  background: #fff;
}
@media print, screen and (max-width: 1200px) {
  .hamburger .line-wrap .line {
    height: 3px;
  }
}
.hamburger .line-wrap .line:first-child {
  top: 0;
  bottom: auto;
  transition: transform 0.8s ease;
}
.hamburger .line-wrap .line:last-child {
  top: calc(19 / 1920 * 100vw);
  bottom: auto;
  transition: transform 0.8s ease;
}
@media print, screen and (max-width: 1200px) {
  .hamburger .line-wrap .line:last-child {
    top: 19px;
  }
}
@media print, screen and (max-width: 1200px) {
  .hamburger.active {
    bottom: auto;
    top: 8px;
  }
}
.hamburger.active .line-wrap {
  width: calc(40 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .hamburger.active .line-wrap {
    width: 26px;
    height: 23px;
  }
  .hamburger.active .line-wrap::after {
    content: "";
  }
}
.hamburger.active .line-wrap .line {
  width: calc(40 / 1920 * 100vw);
  height: calc(5 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .hamburger.active .line-wrap .line {
    height: 3px;
    width: 100%;
  }
}
.hamburger.active .line-wrap .line:first-child {
  bottom: 0;
  transform: rotate(45deg);
}
.hamburger.active .line-wrap .line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .line-wrap .line:last-child {
  bottom: 0;
  top: 0;
  transform: rotate(-45deg);
}

.menu-wrap {
  position: fixed;
  display: flex;
  inset: 0;
  z-index: 150;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap {
    right: 0;
    left: auto;
  }
}
.menu-wrap .menu-left {
  padding: 194px 0 74px;
  overflow: auto;
  width: 39%;
  background: linear-gradient(214.39deg, #36536e 13.05%, #cce5ff 61.88%, #689fd4 83.17%);
  background-blend-mode: plus-darker;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-left {
    display: none;
  }
}
.menu-wrap .menu-left .mainmenu {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}
.menu-wrap .menu-left .mainmenu .menu-item {
  position: relative;
  padding: 0 calc(32 / 1920 * 100vw);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-wrap .menu-left .mainmenu .menu-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.menu-wrap .menu-left .mainmenu .menu-item {
  /* &:first-child {
    &::before {
      background: linear-gradient(90deg, #00579e 0%, #001f38 100%);
    }
    .menu-img {
      left: 203px;
      top: vw(-68);
      bottom: auto;
      height: 235px;
      max-width: 263px;
      width: 44%;
    }
  }*/
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(1)::before {
  background: linear-gradient(270deg, #34afa3 0%, #107d72 100%), #107d72;
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(1) .tit-ja {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(1) .menu-img {
  left: 279px;
  max-width: 196px;
  width: 33%;
  top: calc(-68 / 1920 * 100vw);
  bottom: auto;
  height: 235px;
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(2)::before {
  background: linear-gradient(270deg, #61c7f6 0%, #00a0e9 100%);
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(2) .tit-ja {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(2) .menu-img {
  left: 260px;
  max-width: 220px;
  width: 37%;
  height: 180px;
}
.menu-wrap .menu-left .mainmenu .menu-item:nth-child(2) .menu-img img {
  object-position: bottom;
}
.menu-wrap .menu-left .mainmenu .menu-item .menu-tit {
  position: relative;
  overflow: hidden;
}
.menu-wrap .menu-left .mainmenu .menu-item .menu-tit .front-tit {
  transition: 0.4s ease;
}
.menu-wrap .menu-left .mainmenu .menu-item .menu-tit .back-tit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  pointer-events: none;
}
.menu-wrap .menu-left .mainmenu .menu-item .tit-en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  line-height: 100%;
  color: #ffffff;
}
.menu-wrap .menu-left .mainmenu .menu-item .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}
.menu-wrap .menu-left .mainmenu .menu-item .parentmenu {
  position: absolute;
  inset: 0;
  display: block;
}
.menu-wrap .menu-left .mainmenu .menu-item .arrow {
  margin-top: 8px;
  width: calc(32 / 1920 * 100vw);
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-wrap .menu-left .mainmenu .menu-item .arrow .icon-bg {
  background-color: #001a51;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}
.menu-wrap .menu-left .mainmenu .menu-item .arrow .icon_bg-hover {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s ease-in, opacity 0.25s ease-out;
  display: block;
  z-index: 4;
}
.menu-wrap .menu-left .mainmenu .menu-item .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(16 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
  z-index: 4;
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-left .mainmenu .menu-item:hover .front-tit {
    transform: translateY(-120%);
  }
  .menu-wrap .menu-left .mainmenu .menu-item:hover .back-tit {
    transform: translateY(0);
  }
  .menu-wrap .menu-left .mainmenu .menu-item:hover .arrow {
    animation: Scale 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
    background-color: #fff;
  }
  .menu-wrap .menu-left .mainmenu .menu-item:hover .arrow::before {
    background-image: url(../img/common/icon-arrow_b.svg);
    z-index: 5;
  }
  .menu-wrap .menu-left .mainmenu .menu-item:hover .arrow .icon_bg-hover {
    transform: scale(1);
    opacity: 1;
  }
  .menu-wrap .menu-left .mainmenu .menu-item:hover::before {
    animation: LefttoRoght 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  }
}
.menu-wrap .menu-left .menu-img {
  text-align: right;
  position: absolute;
  bottom: 0;
}
.menu-wrap .menu-left .menu-img img {
  height: 100%;
  object-fit: contain;
}
.menu-wrap .menu-left .btnarea {
  max-width: 85.3333333333%;
  width: 100%;
  margin: 120px auto 0;
  display: flex;
  gap: 25px;
  align-items: center;
}
.menu-wrap .menu-left .morebtn {
  max-width: 362px;
  width: 100%;
  opacity: 1;
}
.menu-wrap .menu-left .morebtn a {
  border: 1px solid #001a51;
  display: flex;
  gap: calc(32 / 1920 * 100vw);
  justify-content: center;
  align-items: center;
  background-color: #001a51;
  padding: 18px 0;
  border-radius: 100px;
  position: relative;
}
.menu-wrap .menu-left .morebtn a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
  opacity: 0;
  transition: 0.4s ease;
}
.menu-wrap .menu-left .morebtn a .arrow {
  width: calc(50 / 1920 * 100vw);
}
.menu-wrap .menu-left .morebtn a .arrow .icon-bg {
  background-color: #00579e;
}
.menu-wrap .menu-left .morebtn a .arrow .icon_bg-hover {
  background: #001a51;
}
.menu-wrap .menu-left .morebtn a .arrow::before {
  content: "";
  background: url(../img/common/icon-mail.svg) no-repeat center/contain;
  width: calc(25 / 1920 * 100vw);
  height: calc(20 / 1920 * 100vw);
}
.menu-wrap .menu-left .morebtn a .menu-tit {
  overflow: hidden;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}
.menu-wrap .menu-left .morebtn a .menu-tit .front-tit {
  color: #ffffff;
  transition: 0.4s ease;
}
.menu-wrap .menu-left .morebtn a .menu-tit .back-tit {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-left .morebtn:hover a {
    border: 1px solid #001a51;
  }
  .menu-wrap .menu-left .morebtn:hover a::before {
    opacity: 1;
  }
  .menu-wrap .menu-left .morebtn:hover a .menu-tit .front-tit {
    transform: translateY(-100%);
  }
  .menu-wrap .menu-left .morebtn:hover a .menu-tit .back-tit {
    transform: translateY(0);
  }
  .menu-wrap .menu-left .morebtn:hover .arrow {
    background-color: #001a51;
  }
}
.menu-wrap .menu-panel {
  background: url("../img/common/menu.jpg") center/cover no-repeat;
  width: 69%;
  position: relative;
  padding: calc(272 / 1920 * 100vw) calc(50 / 1920 * 100vw) calc(50 / 1920 * 100vw) calc(160 / 1920 * 100vw);
  overflow: auto;
  max-height: 100dvh;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel {
    max-width: 400px;
    width: 100%;
    padding: 20px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .menu-wrap .menu-panel {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.menu-wrap .menu-panel .innermenu {
  margin: 0 auto 170px 0;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 40px calc(160 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu {
    width: 90%;
    margin: 44px auto 0;
    padding-bottom: 40px;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: calc(40 / 1920 * 100vw);
}
.menu-wrap .menu-panel .innermenu .menu-item.pc-hidden {
  display: none;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item.pc-hidden {
    display: flex;
  }
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
    padding-bottom: 4px;
    border-bottom: 1px solid #6d7fac;
  }
  .menu-wrap .menu-panel .innermenu .menu-item.is-open {
    gap: 16px;
  }
  .menu-wrap .menu-panel .innermenu .menu-item.is-open .childmenu {
    opacity: 1;
    visibility: visible;
  }
  .menu-wrap .menu-panel .innermenu .menu-item:has(> .childmenu) .parentmenu .arrow {
    position: relative;
    width: 24px;
    height: 24px;
  }
  .menu-wrap .menu-panel .innermenu .menu-item:has(> .childmenu) .parentmenu .arrow::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: none;
    width: 13px;
    height: 1px;
    border-radius: 50px;
    background-color: #fff;
    transition: none;
    z-index: 5;
  }
  .menu-wrap .menu-panel .innermenu .menu-item:has(> .childmenu) .parentmenu .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: none;
    height: 13px;
    width: 1px;
    border-radius: 50px;
    background-color: #fff;
    z-index: 10;
    opacity: 1;
  }
  .menu-wrap .menu-panel .innermenu .menu-item:has(> .childmenu).is-open .arrow::after {
    opacity: 0;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu {
  position: relative;
  display: flex;
  gap: calc(16 / 1920 * 100vw);
  align-items: center;
  overflow: hidden;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu {
    width: 100%;
    justify-content: space-between;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow {
  width: calc(32 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow {
    width: 24px;
    height: 24px;
    animation: none;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow .icon-bg {
  background-color: #00579e;
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow .icon_bg-hover {
  background: #fff;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow .icon_bg-hover {
    background-color: #00579e;
    transform: none;
    animation: none;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(16 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow::before {
    width: 12px;
    height: 10px;
    z-index: 10;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow.otherlink::before {
  background-image: url(../img/common/icon-link.svg);
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .arrow.mail::before {
  background-image: url(../img/common/icon-mail.svg);
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .front-tit {
    transform: translateY(-100%);
  }
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .back-tit {
    transform: translateY(0);
  }
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow {
    background-color: #fff;
  }
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow::before {
    background-image: url(../img/common/icon-arrow_b.svg);
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow::before {
    background-image: url(../img/common/icon-arrow.svg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow.otherlink::before {
    background-image: url(../img/common/icon-link_blu.svg);
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow.otherlink::before {
    background-image: url(../img/common/icon-link.svg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow.mail::before {
    background-image: url(../img/common/icon-mail_blu.svg);
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu:hover .arrow.mail::before {
    background-image: url(../img/common/icon-mail.svg);
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .front-tit {
  transition: 0.4s ease;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu .front-tit {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .parentmenu .back-tit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  pointer-events: none;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .parentmenu .back-tit {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .tit-en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 100%;
  color: #000000;
}
.menu-wrap .menu-panel .innermenu .menu-item .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #000000;
}
.menu-wrap .menu-panel .innermenu .menu-item .childmenu {
  display: flex;
  flex-wrap: wrap;
  gap: calc(32 / 1920 * 100vw);
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .childmenu {
    gap: 16px;
    width: 100%;
    padding-left: 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item {
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #013865;
  position: relative;
  transition: 0.4s ease;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item a {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
  }
}
.menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item .arrow.pc-hidden {
  display: none;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item .arrow.pc-hidden {
    display: flex;
    background-color: #00579e;
    width: 24px;
    height: 24px;
    animation: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-panel .innermenu .menu-item .childmenu .c-menu-item:hover {
    color: #000;
  }
}
.menu-wrap .menu-panel .menu-logo {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .menu-logo.sp-hidden {
    display: none;
  }
  .menu-wrap .menu-panel .menu-logo.pc-hidden {
    display: block;
    max-width: 284px;
    margin-left: 5%;
  }
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .menu-bottom.sp-hidden {
    display: none;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden {
    display: block;
    position: relative;
    z-index: 5;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: url(../img/common/menu-bottom.png) no-repeat left/cover;
    z-index: -1;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner {
    width: 90%;
    margin: 0 auto;
    padding: 24px 0;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .desc {
    margin-bottom: 8px;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .desc p {
    text-align: center;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .link {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 8px;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .link img {
    width: 24px;
    height: auto;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .link .link-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .inner .link a {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn {
    margin-bottom: 16px;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a {
    display: flex;
    background-color: #00579e;
    border-radius: 8px;
    padding: 16px;
    gap: 24px;
    justify-content: center;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .back-tit {
    position: absolute;
    inset: 0;
    transform: translateY(100%);
    color: #00579e;
    transition: 0.4s ease;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .front-tit {
    transition: 0.4s ease;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .link-text {
    overflow: hidden;
    position: relative;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    font-feature-settings: "palt";
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .arrow {
    width: 24px;
    height: 24px;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .arrow .icon-bg {
    background-color: #001a51;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a .arrow .icon_bg-hover {
    background: #00579e;
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a:hover {
    background-color: #fff;
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a:hover .front-tit {
    transform: translateY(-100%);
  }
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .morebtn a:hover .back-tit {
    transform: translateY(0);
  }
}
@media print, screen and (max-width: 1200px) {
  .menu-wrap .menu-panel .menu-bottom.pc-hidden .btnarea {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
}
.menu-wrap.active {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}
@media print, screen and (max-width: 1180px) {
  .menu-wrap.active {
    overflow: auto;
  }
}
.menu-wrap.closing .childmenu {
  transition: none !important;
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.side-navi {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  /* PC専用の要素。1366px以下（タブレット・スマホ）では全ページで非表示にする */
}
@media screen and (max-width: 1366px) {
  .side-navi {
    display: none;
  }
}
.side-navi {
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 140;
}
.side-navi.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.side-navi.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
}
.side-navi .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.side-navi .list .item {
  border-radius: 8px 0 0 8px;
  height: 150px;
}
.side-navi .list .item a {
  justify-content: space-around;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 16px;
}
.side-navi .list .item .menu-tit {
  position: relative;
  overflow: hidden;
}
.side-navi .list .item .menu-tit .front-tit {
  transition: 0.4s ease;
}
.side-navi .list .item .menu-tit .back-tit {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  pointer-events: none;
}
.side-navi .list .item .tit-en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 100%;
  color: #ffffff;
}
.side-navi .list .item .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}
.side-navi .list .item .arrow {
  width: 32px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.side-navi .list .item .arrow .icon-bg {
  background-color: #0e5181;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}
.side-navi .list .item .arrow .icon_bg-hover {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s ease-in, opacity 0.25s ease-out;
  display: block;
  z-index: 4;
}
.side-navi .list .item .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(16 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
  z-index: 4;
}
@media (hover: hover) and (pointer: fine) {
  .side-navi .list .item:hover .front-tit {
    transform: translateY(-120%);
  }
  .side-navi .list .item:hover .back-tit {
    transform: translateY(0);
  }
  .side-navi .list .item:hover .arrow {
    animation: Scale 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
    background-color: #fff;
  }
  .side-navi .list .item:hover .arrow::before {
    background-image: url(../img/common/icon-arrow_b.svg);
    z-index: 5;
  }
  .side-navi .list .item:hover .arrow .icon_bg-hover {
    transform: scale(1);
    opacity: 1;
  }
  .side-navi .list .item:hover::before {
    animation: LefttoRoght 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  }
}
.side-navi .list .item01 {
  background: url(../img/common/btn01.png) no-repeat bottom/cover;
}
.side-navi .list .item02 {
  background: url(../img/common/btn02.png) no-repeat bottom/cover;
}
.side-navi .list .item03 {
  background: url(../img/common/btn03.png) no-repeat bottom/cover;
}

.cta {
  position: relative;
  overflow: hidden;
  z-index: 5;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .cta {
    display: none;
  }
}
.cta::before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(1.2);
  inset: 0;
  background: url(../img/common/contact.png) no-repeat left/cover;
  transition: 0.8s ease;
  clip-path: inset(0 0 100% 0);
  z-index: -1;
}
.cta.is-show::before {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.cta.is-show .sec-body .element {
  opacity: 1;
  transition-delay: 1.6s;
}
.cta.is-show .sec-body .form-btn {
  opacity: 1;
  transition-delay: 1.8s;
}
.cta .sec-title {
  max-width: 563px;
  width: 100%;
  margin: 0 auto;
}
.cta .sec-title.is-show .line-tit path {
  animation: kf_s01 2s forwards 0.4s;
}
.cta .sec-title.is-show .tit-ja {
  transform: translateY(0);
  opacity: 1;
}
.cta .sec-title.is-show .tit-ja p {
  clip-path: inset(0 0 0 0);
}
.cta .inner {
  padding: 120px 0 160px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media print, screen and (max-width: 1200px) {
  .cta .inner {
    gap: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .cta .inner {
    padding: 64px 0 56px;
  }
}
@media print, screen and (max-width: 1200px) {
  .cta .sec-title {
    gap: 20px;
  }
}
.cta .sec-title .tit-en svg {
  width: 100%;
  height: auto;
}
.cta .sec-title .tit-ja {
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.8s ease 0.8s;
}
.cta .sec-title .tit-ja p {
  clip-path: inset(0 100% 0 0);
  transition: 0.8s ease 1.2s;
}
.cta .sec-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 200px;
}
@media print, screen and (max-width: 1400px) {
  .cta .sec-body {
    gap: 60px;
  }
}
@media print, screen and (max-width: 1200px) {
  .cta .sec-body {
    flex-direction: column;
  }
}
.cta .sec-body .element {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  opacity: 0;
  transition: 0.8s ease;
}
.cta .sec-body .element .link {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta .sec-body .element .link a {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta .sec-body .element .link .link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}
.cta .sec-body .form-btn {
  max-width: 612px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: 0.8s ease;
}
.cta .sec-body .form-btn .morebtn {
  opacity: 1;
  width: 100%;
}
.cta .sec-body .form-btn a {
  border: 1px solid #00579e;
  display: flex;
  gap: calc(32 / 1920 * 100vw);
  justify-content: center;
  align-items: center;
  background-color: #00579e;
  padding: 32px 0;
  position: relative;
  border-radius: 0;
}
.cta .sec-body .form-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  inset: 0;
  position: absolute;
  opacity: 0;
  transition: 0.4s ease;
}
.cta .sec-body .form-btn a .link-text {
  overflow: hidden;
  position: relative;
}
.cta .sec-body .form-btn a .link-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  transition: 0.4s ease;
}
.cta .sec-body .form-btn a .link-text .front-tit {
  color: #ffffff;
}
.cta .sec-body .form-btn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  color: #00579e;
}
.cta .sec-body .form-btn a .arrow {
  width: calc(50 / 1920 * 100vw);
}
.cta .sec-body .form-btn a .arrow .icon-bg {
  background-color: #001a51;
}
.cta .sec-body .form-btn a .arrow .icon_bg-hover {
  background: #00579e;
}
.cta .sec-body .form-btn a .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(25 / 1920 * 100vw);
  height: calc(20 / 1920 * 100vw);
}
.cta .sec-body .form-btn a:hover {
  border: 1px solid #00579e;
  background-color: #fff;
}
.cta .sec-body .form-btn a:hover svg path {
  fill: #001a51;
}
.cta .sec-body .form-btn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.cta .sec-body .form-btn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.cta .sec-body .form-btn a:hover::before {
  opacity: 1;
  z-index: -1;
}
.cta .sec-body .form-btn a:hover .arrow {
  background-color: #00579e;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  background: url(../img/common/footer.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer.js-anim::before {
  position: fixed;
  opacity: 1;
  transform: scale(1);
  transition: transform 10s linear;
}
.footer.js-anim.is-show::before {
  transform: scale(1.4);
}
.footer .back-top {
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer .back-top {
    display: none;
  }
}
.footer .back-top .text {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  color: #001a51;
}
.footer .back-top .arrow {
  width: 50px;
}
.footer .back-top .arrow .icon-bg {
  background-color: #001a51;
}
.footer .back-top .arrow .icon_bg-hover {
  background: #fff;
}
.footer .back-top .arrow::before {
  content: "";
  background: url(../img/common/backtop.svg) no-repeat center/contain;
  width: 25px;
  height: 21px;
}
.footer .back-top:hover .arrow {
  animation: Scale 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  background-color: #fff;
}
.footer .back-top:hover .arrow .icon_bg-hover {
  transform: scale(1);
  opacity: 1;
}
.footer .back-top:hover .arrow::before {
  background-image: url(../img/common/backtop_b.svg);
  z-index: 5;
}
.footer .inner {
  padding: 200px 0;
}
@media print, screen and (max-width: 1180px) {
  .footer .inner {
    width: 80%;
    padding: 80px 0;
  }
}
@media print, screen and (max-width: 1200px) {
  .footer .inner {
    width: 91%;
  }
}
.footer .griditem {
  display: flex;
  align-items: center;
  gap: 186px;
}
@media print, screen and (max-width: 1180px) {
  .footer .griditem {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }
}
.footer .griditem .f-logo {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .griditem .f-logo .address .desc p {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 180%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .griditem .f-logo .address .desc p .pc-hidden {
    display: block;
  }
}
.footer .griditem .f-logo .address .column {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 180%;
  color: #fff;
}
.footer .griditem .f-logo .address .column span {
  display: inline-block;
}
.footer .griditem .f-logo .btnarea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.footer .griditem .f_menu {
  max-width: 720px;
  width: 47%;
}
@media print, screen and (max-width: 1180px) {
  .footer .griditem .f_menu {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer .griditem .f_menu {
    display: none;
  }
}
.footer .griditem .f_menu .menulist {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.footer .griditem .f_menu .menu-item {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
}
.footer .griditem .f_menu .menu-item .parentmenu {
  position: relative;
  display: flex;
  gap: calc(16 / 1920 * 100vw);
  align-items: center;
  overflow: hidden;
}
.footer .griditem .f_menu .menu-item .parentmenu .arrow {
  width: calc(32 / 1920 * 100vw);
}
.footer .griditem .f_menu .menu-item .parentmenu .arrow .icon-bg {
  background-color: #00579e;
}
.footer .griditem .f_menu .menu-item .parentmenu .arrow .icon_bg-hover {
  background: #fff;
}
.footer .griditem .f_menu .menu-item .parentmenu .arrow::before {
  content: "";
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  width: calc(16 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
}
.footer .griditem .f_menu .menu-item .parentmenu:hover .front-tit {
  transform: translateY(-100%);
}
.footer .griditem .f_menu .menu-item .parentmenu:hover .back-tit {
  transform: translateY(0);
}
.footer .griditem .f_menu .menu-item .parentmenu:hover .arrow {
  background-color: #fff;
}
.footer .griditem .f_menu .menu-item .parentmenu:hover .arrow::before {
  background-image: url(../img/common/icon-arrow_b.svg);
}
.footer .griditem .f_menu .menu-item .parentmenu .front-tit {
  transition: 0.4s ease;
}
.footer .griditem .f_menu .menu-item .parentmenu .back-tit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  pointer-events: none;
}
.footer .griditem .f_menu .menu-item .tit-en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 100%;
  color: #fff;
}
.footer .griditem .f_menu .menu-item .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.footer .copy {
  border-top: 1px solid #fff;
  text-align: right;
  padding: 24px 240px 24px 0;
}
@media only screen and (max-width: 767px) {
  .footer .copy {
    padding: 0 0 24px 0;
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
}
.footer .copy p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 130%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .copy p {
    line-height: 160%;
  }
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 下層共通 */
.page-tit {
  position: relative;
  background: #fff;
  z-index: 5;
}
.page-tit .fv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-tit .fv-bg::before {
  content: "";
  background: url(../img/common/page-fv.png) no-repeat bottom/cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transform: scale(1.6);
  z-index: -1;
  transition: 0.8s ease;
}
.page-tit .inner {
  padding: 222px 0 122px;
}
@media print, screen and (max-width: 1180px) {
  .page-tit .inner {
    padding: calc(var(--header-height) + 35px) 0 11px;
    width: 88%;
  }
}
.page-tit .inner .line-tit path {
  fill: transparent;
  stroke: #001a51;
  stroke-width: 1px;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.page-tit .inner .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.page-tit .inner .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 160%;
  color: #001a51;
  clip-path: inset(0 100% 0 0);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .page-tit .inner .tit-en svg {
    width: auto;
    height: calc(39 / 400 * 100vw);
  }
}
.page-tit.is-show .fv-bg::before {
  opacity: 1;
  transform: scale(1);
}
.page-tit.is-show .line-tit path {
  animation: fv 2s forwards 0.8s;
}
.page-tit.is-show .tit-ja {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.8s;
}

/* 指定ページのヒーロー（.page-tit / advantagesは.spg-hero）を PC時のみ高さ560pxに統一。
   対象：ABOUT / PHILOSOPHY / WHAT WE ARE / BUSINESS / advantages / assets /
   Case Studies(archive) / contact / news(archive)。body の slug クラスでスコープ */
@media screen and (min-width: 1181px) {
  body.about .page-tit,
  body.pholosophy .page-tit,
  body.what-we-are .page-tit,
  body.business .page-tit,
  body.assets .page-tit,
  body.contact .page-tit,
  body.case_study .page-tit,
  body.news .page-tit,
  body.advantages .spg-hero {
    min-height: 560px;
  }
}
.p-sec-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media print, screen and (max-width: 1180px) {
  .p-sec-title {
    align-items: center;
  }
}
.p-sec-title .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.p-sec-title .tit-en svg {
  width: 100%;
}
@media print, screen and (max-width: 1180px) {
  .p-sec-title .tit-en svg {
    height: calc(64 / 400 * 100vw);
  }
}
.p-sec-title .line-tit path {
  fill: transparent;
  stroke: #001a51;
  stroke-width: 1px;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.p-sec-title .tit-ja {
  width: 100%;
  padding-left: 24px;
  background-color: #001a51;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease 1.2s;
}
@media print, screen and (max-width: 1180px) {
  .p-sec-title .tit-ja {
    padding-left: 0;
    text-align: center;
  }
}
.p-sec-title .tit-ja p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 130%;
  clip-path: inset(0 100% 0 0);
  transition: 0.8s ease;
  color: #ffffff;
}
.p-sec-title.no-sub {
  align-items: center;
  gap: 8px;
}
.p-sec-title.no-sub .tit-ja {
  transform: translateY(0);
  text-align: center;
  padding: 0;
  background-color: transparent;
}
.p-sec-title.no-sub .tit-ja p {
  color: #000000;
}
.p-sec-title.no-sub.is-show .tit-ja {
  transition-delay: 0.8s;
}
.p-sec-title.no-sub.is-show .tit-ja p {
  transition-delay: 0.8s;
}
.p-sec-title.is-show .line-tit path {
  animation: common 2s forwards;
}
.p-sec-title.is-show .tit-ja {
  opacity: 1;
  transform: translateY(0);
}
.p-sec-title.is-show .tit-ja p {
  clip-path: inset(0 0 0 0);
  transition-delay: 1.6s;
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.what-we-are .p-sec-title {
  align-items: center;
  width: fit-content;
  margin: 0 auto 40px;
}
.what-we-are .p-sec-title .tit-ja {
  padding: 0;
  text-align: center;
}
.what-we-are .page-tit {
  margin-bottom: 509px;
  position: relative;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit {
    margin-bottom: calc(113 / 400 * 100vw);
  }
}
.what-we-are .page-tit::after {
  content: "";
  width: 100%;
  height: 600px;
  background-color: #fff;
  top: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit::after {
    height: calc(113 / 400 * 100vw);
  }
}
.what-we-are .page-tit .fv-img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 1920px;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit .fv-img {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    height: calc(105 / 400 * 100vw);
    top: calc(100% + 8px);
    bottom: auto;
  }
}
.what-we-are .page-tit .fv-img .first {
  position: absolute;
  right: calc(54 / 1920 * 100vw);
  top: 205px;
  max-width: 435px;
  width: 23%;
  overflow: hidden;
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1500px) {
  .what-we-are .page-tit .fv-img .first {
    top: 80%;
  }
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit .fv-img .first {
    top: 0;
    right: 0;
    position: relative;
    width: 100%;
    max-width: none;
  }
  .what-we-are .page-tit .fv-img .first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.what-we-are .page-tit .fv-img .second {
  position: absolute;
  right: calc(344 / 1920 * 100vw);
  top: 491px;
  max-width: 680px;
  width: 36%;
  overflow: hidden;
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1500px) {
  .what-we-are .page-tit .fv-img .second {
    top: 100%;
  }
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit .fv-img .second {
    position: relative;
    top: 0;
    right: 0;
    max-width: none;
    width: 100%;
  }
  .what-we-are .page-tit .fv-img .second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.what-we-are .page-tit .fv-img img {
  transform: scale(1.2);
  transition: 0.8s ease;
  clip-path: inset(0 0 100% 0);
  border-radius: 8px;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit .fv-img img {
    border-radius: 1px;
  }
}
.what-we-are .page-tit.is-show .fv-img img {
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.what-we-are .page-tit.is-show .fv-img .first {
  box-shadow: 0px 40px 40px -4px rgba(0, 0, 0, 0.16);
  transition-delay: 2.2s;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit.is-show .fv-img .first {
    transition-delay: 2.6s;
    box-shadow: 0px 3px 3px -0.3px rgba(0, 0, 0, 0.16);
  }
}
.what-we-are .page-tit.is-show .fv-img .first img {
  transition-delay: 2.2s;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit.is-show .fv-img .first img {
    transition-delay: 2.6s;
  }
}
.what-we-are .page-tit.is-show .fv-img .second {
  box-shadow: 0px 40px 40px -4px rgba(0, 0, 0, 0.16);
  transition-delay: 2.6s;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit.is-show .fv-img .second {
    transition-delay: 2.2s;
    box-shadow: 0px 3px 3px -0.3px rgba(0, 0, 0, 0.16);
  }
}
.what-we-are .page-tit.is-show .fv-img .second img {
  transition-delay: 2.6s;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .page-tit.is-show .fv-img .second img {
    transition-delay: 2.2s;
  }
}
.what-we-are .message {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background-color: #fff;
}
.what-we-are .message::before {
  content: "";
  background: url(../img/what-we-are/img03.jpg) no-repeat right/cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scale(1.6);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message::before {
    content: none;
  }
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message::after {
    content: "";
    background: url(../img/what-we-are/img03.jpg) no-repeat right/cover;
    opacity: 0;
    width: 100%;
    z-index: -1;
    transform: scale(1.6);
    position: relative;
    display: inline-block;
    height: 360px;
    transition: 0.8s ease;
  }
}
.what-we-are .message .inner {
  padding: 80px 0;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message .inner {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.what-we-are .message .inner .p-sec-title {
  max-width: 700px;
  width: 100%;
}
.what-we-are .message .inner .sec-body {
  opacity: 0;
  transition: 0.8s ease 1.8s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.what-we-are .message .inner .sec-body .desc {
  margin-bottom: 40px;
  max-width: 700px;
  width: 100%;
}
@media print, screen and (max-width: 1600px) {
  .what-we-are .message .inner .sec-body .desc {
    width: 55%;
  }
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message .inner .sec-body .desc {
    width: 100%;
  }
}
.what-we-are .message .inner .sec-body .desc p {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
}
.what-we-are .message .inner .sec-body .name {
  margin-bottom: 40px;
}
.what-we-are .message .inner .sec-body .name p {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
  color: #000000;
}
.what-we-are .message.is-show .line-tit path {
  animation: common 2s forwards 0.8s;
}
.what-we-are .message.is-show .tit-ja p {
  transition-delay: 1.6s;
}
.what-we-are .message.is-show::before {
  opacity: 1;
  transform: scale(1);
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message.is-show::after {
    opacity: 1;
    transform: scale(1);
    transition-delay: 3s;
  }
}
.what-we-are .message.is-show .sec-body {
  opacity: 1;
}
.what-we-are .message .morebtn {
  opacity: 0;
  transition: 0.4s ease;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .what-we-are .message .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.what-we-are .message .morebtn.is-show {
  opacity: 1;
}
.what-we-are .message .morebtn a {
  border: 1px solid #fff;
  background-color: rgba(0, 26, 81, 0.5);
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .message .morebtn a {
    background-color: #001a51;
  }
}
@media only screen and (max-width: 767px) {
  .what-we-are .message .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.what-we-are .message .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .what-we-are .message .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.what-we-are .message .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.what-we-are .message .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
@media only screen and (max-width: 767px) {
  .what-we-are .message .morebtn a .arrow {
    width: 32px;
  }
}
.what-we-are .message .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.what-we-are .message .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.what-we-are .message .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.what-we-are .message .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.what-we-are .grad-bg {
  background: linear-gradient(180deg, #e0edff 0%, #e0f2ff 10.1%, #ffffff 24.52%);
}
.what-we-are .overview .inner {
  max-width: 1124px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0 80px;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .overview .inner {
    padding: 40px 0;
  }
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .overview .inner {
    width: 94%;
  }
}
.what-we-are .overview .sec-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.what-we-are .overview .t_overview {
  opacity: 0;
  width: 100%;
  border-right: 1px solid #6d7fac;
  border-left: 1px solid #6d7fac;
  border-bottom: 1px solid #6d7fac;
  transition: 0.8s ease 1.2s;
}
.what-we-are .overview .t_overview tr {
  border-top: 1px solid #6d7fac;
}
.what-we-are .overview .t_overview th {
  background-color: #c2d8e9;
  padding: 16px;
  width: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  text-align: left;
  vertical-align: middle;
  color: #00579e;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .overview .t_overview th {
    padding: 29px 16px;
  }
}
.what-we-are .overview .t_overview td {
  padding: 16px 16px 16px 32px;
  width: 596px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  color: #000000;
  text-align: left;
  vertical-align: middle;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .overview .t_overview td {
    padding: 16px;
  }
}
.what-we-are .overview .t_overview td dl {
  display: grid;
  grid-template-columns: 24% auto;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .what-we-are .overview .t_overview td dl {
    grid-template-columns: 44% auto;
  }
}
.what-we-are .overview .morebtn {
  opacity: 0;
  transition: 0.4s ease;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .what-we-are .overview .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.what-we-are .overview .morebtn.is-show {
  opacity: 1;
}
.what-we-are .overview .morebtn a {
  border: 1px solid #fff;
  background-color: #001a51;
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .what-we-are .overview .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.what-we-are .overview .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .what-we-are .overview .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.what-we-are .overview .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.what-we-are .overview .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
@media only screen and (max-width: 767px) {
  .what-we-are .overview .morebtn a .arrow {
    width: 32px;
  }
}
.what-we-are .overview .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.what-we-are .overview .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.what-we-are .overview .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.what-we-are .overview .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.what-we-are .overview.is-show .t_overview {
  opacity: 1;
}
.what-we-are .history {
  padding: 160px 0;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .history {
    padding: 40px 0;
  }
}
.what-we-are .history .inner {
  max-width: 1408px;
  width: 90%;
  margin: 0 auto;
  background-color: #f0f7ff;
  padding: 40px 0;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .history .inner {
    width: 94%;
  }
}
.what-we-are .history .p-sec-title {
  margin-bottom: 80px;
}
.what-we-are .history .history-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transition: 0.8s ease 1.2s;
  margin-bottom: 40px;
}
.what-we-are .history .history-list .dot {
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00579e;
  margin: 6px 0;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .history .history-list .dot {
    width: 16px;
  }
}
.what-we-are .history .history-list .item {
  display: grid;
  grid-template-columns: 24px 152px 1fr;
  gap: 24px;
  position: relative;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .history .history-list .item {
    grid-template-columns: 16px 76px 1fr;
  }
}
.what-we-are .history .history-list .item::before {
  content: "";
  width: 1px;
  height: calc(100% + 24px);
  position: absolute;
  left: 12px;
  top: 6px;
  background-color: #00579e;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .history .history-list .item::before {
    left: 7px;
  }
}
.what-we-are .history .history-list .item:last-child::before {
  content: none;
}
.what-we-are .history .history-list .item .year {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
  color: #00579e;
}
.what-we-are .history .history-list .item .detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
  color: #000000;
  border-bottom: 1px solid #e5e9f1;
}
.what-we-are .history.is-show .history-list {
  opacity: 1;
}
.what-we-are .history .morebtn {
  width: fit-content;
  opacity: 0;
  transition: 0.4s ease;
  margin-left: auto;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .what-we-are .history .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.what-we-are .history .morebtn.is-show {
  opacity: 1;
}
.what-we-are .history .morebtn a {
  border: 1px solid #fff;
  background-color: #001a51;
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .what-we-are .history .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.what-we-are .history .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .what-we-are .history .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.what-we-are .history .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.what-we-are .history .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
@media only screen and (max-width: 767px) {
  .what-we-are .history .morebtn a .arrow {
    width: 32px;
  }
}
.what-we-are .history .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.what-we-are .history .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.what-we-are .history .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.what-we-are .history .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.what-we-are .sec-image {
  width: 100%;
  overflow: hidden;
}
.what-we-are .sec-image .img-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: loopSlider 40s linear infinite;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .sec-image .img-wrap {
    animation: loopSlider 30s linear infinite;
  }
}
.what-we-are .sec-image .img-wrap figure {
  flex-shrink: 0;
  margin: 0 auto;
  opacity: 0;
  transition: 0.8s ease;
}
.what-we-are .sec-image .img-wrap figure img {
  display: block;
  width: auto;
  height: 300px;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .sec-image .img-wrap figure img {
    width: 1118px;
    height: auto;
  }
}
.what-we-are .sec-image.is-show figure {
  opacity: 1;
}
@keyframes loopSlider {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1892px, 0, 0);
  }
}
@media print, screen and (max-width: 1023px) {
  @keyframes loopSlider {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-1132px, 0, 0);
    }
  }
}
.what-we-are .sec-image02 .img-wrap {
  max-width: 1328px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-content: center;
}
.what-we-are .personnel {
  padding: 160px 0;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .personnel {
    padding: 40px 0;
  }
}
.what-we-are .personnel .inner {
  max-width: 1408px;
  width: 90%;
  margin: 0 auto;
  background-color: #f0f7ff;
  padding: 40px 0;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .personnel .inner {
    width: 94%;
  }
}
.what-we-are .personnel .p-sec-title {
  margin-bottom: 80px;
}
.what-we-are .personnel .sec-body {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.what-we-are .personnel .griditem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  opacity: 0;
  transition: 0.8s ease 1.2s;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .personnel .griditem {
    display: flex;
    flex-direction: column;
  }
}
.what-we-are .personnel .griditem .item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #6d7fac;
}
.what-we-are .personnel .griditem .item .item-tit {
  font-family: "Noto Sans JP", sans-serif;
  padding: 16px;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  color: #00579e;
}
.what-we-are .personnel .griditem .item .item-detail {
  font-family: "Noto Sans JP", sans-serif;
  padding: 16px;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  color: #000000;
}
.what-we-are .personnel .morebtn {
  width: fit-content;
  opacity: 0;
  transition: 0.4s ease;
  margin-left: auto;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .what-we-are .personnel .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.what-we-are .personnel .morebtn.is-show {
  opacity: 1;
}
.what-we-are .personnel .morebtn a {
  border: 1px solid #fff;
  background-color: #001a51;
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .what-we-are .personnel .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.what-we-are .personnel .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .what-we-are .personnel .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.what-we-are .personnel .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.what-we-are .personnel .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
@media only screen and (max-width: 767px) {
  .what-we-are .personnel .morebtn a .arrow {
    width: 32px;
  }
}
.what-we-are .personnel .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.what-we-are .personnel .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.what-we-are .personnel .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.what-we-are .personnel .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.what-we-are .personnel.is-show .griditem {
  opacity: 1;
}
.what-we-are .access {
  padding-top: 160px;
}
@media print, screen and (max-width: 1180px) {
  .what-we-are .access {
    padding: 40px 0;
  }
}
.what-we-are .access .inner {
  max-width: 1408px;
  width: 90%;
  margin: 0 auto;
  background-color: #f0f7ff;
  padding: 40px 0;
}
@media print, screen and (max-width: 1023px) {
  .what-we-are .access .inner {
    width: 94%;
  }
}
.what-we-are .access .sec-body {
  opacity: 0;
  transition: 0.8s ease 1.2s;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.what-we-are .access .sec-body iframe {
  width: 100%;
  height: 400px;
}
.what-we-are .access .sec-body .address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.what-we-are .access .sec-body .address .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
  color: #000000;
}
.what-we-are .access .sec-body .address .text .f-24 {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.what-we-are .access .sec-body .column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.what-we-are .access .sec-body .column dt {
  font-family: "Noto Sans JP", sans-serif;
  color: #00579e;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 180%;
}
.what-we-are .access .sec-body .column dd {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
}
.what-we-are .access.is-show .sec-body {
  opacity: 1;
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================================
   OURPATH
========================================= */
html,
body {
  overscroll-behavior: none;
}

body {
  -webkit-overflow-scrolling: auto;
}

.snap-wrapper .page-tit.ourpath .fv-bg::before {
  background: url(../img/ourpath/page-fv.png) no-repeat center/cover;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .page-tit.ourpath .fv-bg::before {
    background-image: url(../img/ourpath/page-fv_sp.png);
  }
}
.snap-wrapper .page-tit.ourpath .desc {
  opacity: 0;
  margin-top: calc(213 / 1920 * 100vw);
  max-width: 998px;
  width: 90%;
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .snap-wrapper .page-tit.ourpath .desc {
    width: 100%;
  }
}
.snap-wrapper .page-tit.ourpath .desc p {
  font-size: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  line-height: 200%;
}
.snap-wrapper .page-tit.ourpath .inner {
  padding: 200px 0;
  position: relative;
}
@media print, screen and (max-width: 1180px) {
  .snap-wrapper .page-tit.ourpath .inner .tit-en svg {
    width: 100%;
    height: calc(64 / 400 * 100vw);
  }
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .page-tit.ourpath .inner {
    padding: calc(var(--header-height) + 32px) 0 24px;
  }
}
.snap-wrapper .page-tit.ourpath.is-show .desc {
  opacity: 1;
  transition-delay: 1.2s;
}
.snap-wrapper {
  /* =========================================
       Section
    ========================================= */
}
.snap-wrapper .section {
  background-color: #ffffff;
  background-image: linear-gradient(to top, rgba(224, 232, 255, 0) 0%, #e0f2ff 10.58%, #ffffff 31.25%);
  overflow-x: hidden;
}
.snap-wrapper .section .inner {
  padding: 200px 0;
}
@media print, screen and (max-width: 1180px) {
  .snap-wrapper .section .inner {
    padding: 140px 0 200px;
    width: 90%;
  }
}
.snap-wrapper .section .content {
  overflow: hidden;
}
.snap-wrapper .section .sec-catch {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.5s;
}
.snap-wrapper .section .sec-catch.is-show {
  opacity: 1;
  transform: translateY(0);
}
.snap-wrapper .section .sec-catch p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 150%;
  letter-spacing: -0.019em;
  color: rgba(0, 0, 0, 0.8);
}
.snap-wrapper .section .desc {
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.5s;
}
.snap-wrapper .section .desc.is-show {
  opacity: 1;
  transform: translateY(0);
}
.snap-wrapper .section .desc p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 150%;
  letter-spacing: -0.019em;
  color: rgba(0, 0, 0, 0.8);
}
.snap-wrapper {
  /* =========================================
       SECTION01
    ========================================= */
}
.snap-wrapper .section01 {
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section01 .inner {
    padding-bottom: 8px;
  }
}
.snap-wrapper .section01 .content {
  display: inline-flex;
  flex-direction: column;
}
.snap-wrapper .section01 .content .p-sec-title {
  align-items: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section01 .content .p-sec-title {
    margin-bottom: 40px;
  }
}
.snap-wrapper .section01 .sec-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(960 / 1920 * 100vw);
  height: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section01 .sec-img {
    position: relative;
    inset: 0;
    width: 90%;
    margin: 0 auto 64px;
  }
}
.snap-wrapper .section02 {
  background: url(../img/ourpath/bg01.png) no-repeat center/cover;
}
.snap-wrapper .section02 .p-sec-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 80px;
}
.snap-wrapper .section02 .p-sec-title .tit-ja p {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section02 .p-sec-title {
    align-items: center;
  }
}
.snap-wrapper .section02 .p-sec-title.is-show .line-tit path {
  animation: common02 2s forwards;
}
.snap-wrapper .section02 .sec-catch p,
.snap-wrapper .section02 .desc p {
  color: #fff;
}
.snap-wrapper .section03 {
  background: url(../img/ourpath/bg02.png) no-repeat center/cover;
}
.snap-wrapper .section03 .p-sec-title {
  align-items: flex-start;
  padding-left: 24px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section03 .p-sec-title {
    padding: 0;
    align-items: center;
  }
}
.snap-wrapper .section03 .p-sec-title .tit-ja {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section03 .p-sec-title .tit-ja {
    text-align: center;
  }
}
.snap-wrapper .section04 {
  background: url(../img/ourpath/bg03.png) no-repeat center/cover;
}
.snap-wrapper .section04 .p-sec-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 80px;
}
.snap-wrapper .section04 .p-sec-title .tit-ja p {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section04 .p-sec-title {
    align-items: center;
  }
}
.snap-wrapper .section04 .p-sec-title.is-show .line-tit path {
  animation: common02 2s forwards;
}
.snap-wrapper .section04 .sec-catch p,
.snap-wrapper .section04 .desc p {
  color: #fff;
}
.snap-wrapper .section05 {
  background: url(../img/ourpath/bg04.png) no-repeat center/cover;
}
.snap-wrapper .section05 .p-sec-title {
  align-items: flex-start;
  padding-left: 24px;
  margin-bottom: 80px;
}
.snap-wrapper .section05 .p-sec-title .tit-ja p {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section05 .p-sec-title .tit-ja p {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section05 .p-sec-title {
    align-items: center;
    padding-left: 0;
  }
}
.snap-wrapper .section06 {
  overflow: initial;
  position: relative;
  min-height: auto;
  background: url(../img/ourpath/bg05.png) no-repeat center/cover fixed;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section06 {
    position: relative;
    background-image: none;
    background-attachment: scroll;
  }
  .snap-wrapper .section06::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/ourpath/bg05.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
  }
}
.snap-wrapper .section06 .inner .content {
  overflow: initial;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section06 .inner .content {
    z-index: 1;
    position: relative;
  }
}
.snap-wrapper .section06 .inner .content .fixed-item {
  position: sticky;
  top: 15%;
  transition: 0.8s ease;
}
.snap-wrapper .section06 .inner .content .fixed-item.fadeout {
  opacity: 0;
}
.snap-wrapper .section06 .p-sec-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section06 .p-sec-title {
    align-items: center;
  }
}
.snap-wrapper .section06 .p-sec-title .tit-ja p {
  text-align: right;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section06 .p-sec-title .tit-ja p {
    text-align: center;
  }
}
.snap-wrapper .section06 .p-sec-title.is-show .line-tit path {
  animation: common02 2s forwards;
}
.snap-wrapper .section07 {
  overflow: initial;
  position: relative;
  min-height: auto;
  background: url(../img/ourpath/bg06.png) no-repeat center/cover fixed;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section07 {
    position: relative;
    background-image: none;
    background-attachment: scroll;
  }
  .snap-wrapper .section07::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/ourpath/bg06.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
  }
}
.snap-wrapper .section07 .inner {
  padding: 200px 0;
  position: relative;
  z-index: 10;
}
.snap-wrapper .section07 .inner .content {
  overflow: initial;
}
.snap-wrapper .section07 .inner .content .fixed-item {
  position: sticky;
  top: 30%;
  transition: 0.8s ease;
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section07 .inner .content .fixed-item {
    top: 20%;
  }
}
.snap-wrapper .section07 .inner .content .fixed-item.fadeout {
  opacity: 0;
}
.snap-wrapper .section07 .content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snap-wrapper .section07 .content .sec-catch {
  transition: 0.8s ease;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.5s;
  text-align: center;
}
.snap-wrapper .section07 .content .sec-catch.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .snap-wrapper .section07 .content .sec-catch {
    text-align: left;
  }
  .snap-wrapper .section07 .content .sec-catch .pc-hidden {
    display: none;
  }
}
.snap-wrapper .section07 .content .sec-catch p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 150%;
  letter-spacing: -0.019em;
  color: rgba(0, 0, 0, 0.8);
}
.snap-wrapper .section07 .content .desc {
  transition: 0.8s ease;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.5s;
}
.snap-wrapper .section07 .content .desc.is-show {
  opacity: 1;
  transform: translateY(0);
}
.snap-wrapper .section07 .content .desc p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 150%;
  letter-spacing: -0.019em;
  color: rgba(0, 0, 0, 0.8);
}
.snap-wrapper .section07 .content .p-sec-title {
  transition: 0.8s ease;
  margin-bottom: 80px;
}
@media print, screen and (max-width: 1180px) {
  .snap-wrapper .section07 .content .p-sec-title .tit-ja svg {
    width: 100%;
    height: calc(70 / 400 * 100vw);
  }
}
.snap-wrapper .section07 .content .p-sec-title.is-show .line-tit path {
  animation: common02 2s forwards;
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.about .page-tit .fv-bg::before {
  background-image: url(../img/about/page-fv.png);
}
@media only screen and (max-width: 767px) {
  .about .page-tit .fv-bg::before {
    background-image: url(../img/about/page-fv_sp.png);
  }
}
.about .morebtn {
  opacity: 0;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .about .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.about .morebtn.is-show {
  opacity: 1;
}
.about .morebtn a {
  border: 1px solid #fff;
  background-color: #001a51;
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .about .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.about .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.about .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.about .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
@media only screen and (max-width: 767px) {
  .about .morebtn a .arrow {
    width: 32px;
  }
}
.about .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.about .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.about .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.about .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}
.about .pholosophy {
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .pholosophy .p-sec-title {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .about .pholosophy .p-sec-title {
    width: 100%;
  }
  .about .pholosophy .p-sec-title .tit-en {
    width: 271px;
  }
}
.about .pholosophy::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(157 / 1920 * 100vw);
  background: url(../img/about/img01.png) no-repeat bottom/contain;
  max-width: 391px;
  width: 21%;
  height: 100%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .about .pholosophy::before {
    bottom: auto;
    top: 17px;
    height: 184px;
    right: 0;
    max-width: 131px;
    width: 100%;
  }
}
.about .pholosophy .inner {
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media only screen and (max-width: 767px) {
  .about .pholosophy .inner {
    padding: 24px 0 40px;
    gap: 40px;
    width: 90%;
  }
}
.about .pholosophy .catch p {
  text-align: center;
}
.about .pholosophy .catch p .char {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  line-height: 200%;
  color: rgba(0, 0, 0, 0.5);
}
.about .pholosophy .catch p.is-show .char {
  animation: textColorAnim 0.4s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}
@media only screen and (max-width: 767px) {
  .about .pholosophy .catch .sp-hidden {
    display: none;
  }
}
.about .sec01 {
  background: linear-gradient(90deg, #a3e8f3 0%, #c8e3ff 47.12%, #f1f8ff 100%);
  margin-bottom: 160px;
}
@media print, screen and (max-width: 1023px) {
  .about .sec01 {
    margin-bottom: 40px;
  }
}
.about .sec01 .p-sec-title {
  width: fit-content;
}
@media print, screen and (max-width: 1180px) {
  .about .sec01 .p-sec-title {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec01 .p-sec-title {
    width: 100%;
  }
  .about .sec01 .p-sec-title .tit-en {
    width: 308px;
    margin: 0 auto;
  }
}
.about .sec01 .p-sec-title .desc {
  margin-top: 40px;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec01 .p-sec-title .desc.is-show {
  opacity: 1;
}
.about .sec01 .p-sec-title .desc p {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  line-height: 130%;
}
.about .sec01 .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  .about .sec01 .inner {
    padding: 40px 0;
    width: 90%;
  }
}
.about .sec01 .column {
  display: flex;
  gap: 80px;
}
@media print, screen and (max-width: 1180px) {
  .about .sec01 .column {
    gap: 40px;
  }
}
@media print, screen and (max-width: 1023px) {
  .about .sec01 .column {
    flex-direction: column;
    align-items: center;
  }
}
.about .sec01 .column .sec-img {
  max-width: 600px;
  width: 71%;
  opacity: 0;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .about .sec01 .column .sec-img {
    max-width: none;
    width: 100%;
  }
}
.about .sec01 .column .sec-img.is-show {
  opacity: 1;
}
.about .sec01 .column .sec-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media print, screen and (max-width: 1180px) {
  .about .sec01 .column .sec-text {
    gap: 40px;
  }
}
.about .sec01 .column .desc {
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec01 .column .desc.is-show {
  opacity: 1;
}
.about .sec01 .column .desc p {
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
}
.about .sec01 .column .morebtn {
  margin-top: auto;
}
.about .sec02 {
  background: url(../img/about/img03.png) no-repeat center/cover, linear-gradient(to top, #d5ebff 0%, #f1f8ff 100%);
  margin-bottom: 160px;
  box-shadow: 5px 10px 10px rgba(98, 98, 98, 0.2);
}
@media print, screen and (max-width: 1023px) {
  .about .sec02 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec02 {
    background: url(../img/about/img03_sp.png) no-repeat center/contain, linear-gradient(to top, #d5ebff 0%, #f1f8ff 100%);
  }
}
.about .sec02 .p-sec-title.is-show .line-tit path {
  animation: common03 2s forwards;
}
.about .sec02 .p-sec-title {
  width: fit-content;
}
@media print, screen and (max-width: 1180px) {
  .about .sec02 .p-sec-title {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec02 .p-sec-title {
    width: 100%;
  }
  .about .sec02 .p-sec-title .tit-en {
    width: 308px;
    margin: 0 auto;
  }
}
.about .sec02 .p-sec-title .tit-ja {
  background-color: #00579e;
}
.about .sec02 .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 127px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about .sec02 .inner {
    padding: 40px 0;
    width: 90%;
    gap: 143px;
  }
}
.about .sec02 .inner::before {
  content: "";
  background: url(../img/about/img04.png) no-repeat center/contain;
  width: 424px;
  height: 269px;
  position: absolute;
  left: -58px;
  bottom: 22px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .about .sec02 .inner::before {
    width: 142px;
    height: 90px;
    left: -24px;
    bottom: 79px;
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec02 .inner::before {
    left: 16px;
  }
}
.about .sec02 .desc {
  width: 100%;
  margin-top: 40px;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec02 .desc.is-show {
  opacity: 1;
}
.about .sec02 .desc p {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  line-height: 130%;
  color: #000000;
  text-align: right;
}
@media print, screen and (max-width: 1180px) {
  .about .sec02 .desc p {
    text-align: left;
  }
}
.about .sec03 {
  background: url(../img/about/img05.jpg) no-repeat center/cover;
  margin-bottom: 160px;
}
@media print, screen and (max-width: 1023px) {
  .about .sec03 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec03 {
    background-image: url(../img/about/img05_sp.jpg);
  }
}
.about .sec03 .sec-head {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media print, screen and (max-width: 1180px) {
  .about .sec03 .sec-head {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.about .sec03 .p-sec-title.is-show .line-tit path {
  animation: common02 2s forwards;
}
.about .sec03 .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 271px;
}
@media print, screen and (max-width: 1180px) {
  .about .sec03 .inner {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec03 .inner {
    padding: 40px 0;
    width: 90%;
    gap: 175px;
  }
}
.about .sec03 .p-sec-title {
  max-width: 50%;
  width: fit-content;
}
@media print, screen and (max-width: 1180px) {
  .about .sec03 .p-sec-title {
    max-width: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec03 .p-sec-title {
    width: 100%;
  }
  .about .sec03 .p-sec-title .tit-en {
    width: 212px;
    margin: 0 auto;
  }
}
.about .sec03 .p-sec-title .tit-ja {
  background: linear-gradient(90deg, #a3e8f3 0%, #c8e3ff 47.12%, #f1f8ff 100%);
}
.about .sec03 .p-sec-title .tit-ja p {
  color: #001a51;
}
.about .sec03 .desc {
  max-width: 50%;
  width: fit-content;
  opacity: 0;
  transition: 0.4s ease;
}
@media print, screen and (max-width: 1180px) {
  .about .sec03 .desc {
    max-width: none;
  }
}
.about .sec03 .desc.is-show {
  opacity: 1;
}
.about .sec03 .desc p {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  line-height: 130%;
  color: #fff;
}
.about .sec04 {
  background: url(../img/about/img06.jpg) no-repeat center/cover;
  margin-bottom: 160px;
  box-shadow: 5px 10px 10px rgba(98, 98, 98, 0.2);
}
@media print, screen and (max-width: 1023px) {
  .about .sec04 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec04 {
    background-image: url(../img/about/img06_sp.jpg);
  }
}
.about .sec04 .p-sec-title.is-show .line-tit path {
  animation: common03 2s forwards;
}
.about .sec04 .p-sec-title {
  width: fit-content;
}
.about .sec04 .p-sec-title .tit-ja {
  background-color: #00579e;
}
@media only screen and (max-width: 767px) {
  .about .sec04 .p-sec-title {
    width: 100%;
  }
  .about .sec04 .p-sec-title .tit-en {
    width: 268px;
    margin: 0 auto;
  }
}
.about .sec04 .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 127px;
  align-items: flex-end;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .sec04 .inner {
    padding: 40px 0;
    width: 90%;
    gap: 175px;
  }
}
.about .sec04 .desc {
  width: fit-content;
  margin-top: 40px;
  margin-left: auto;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec04 .desc.is-show {
  opacity: 1;
}
.about .sec04 .desc p {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  line-height: 130%;
  color: #000000;
  text-align: left;
}
.about .sec05 {
  background: url(../img/about/img07.jpg) no-repeat center/cover;
  margin-bottom: 160px;
}
@media print, screen and (max-width: 1023px) {
  .about .sec05 {
    margin-bottom: 40px;
  }
}
.about .sec05 .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 127px;
}
@media only screen and (max-width: 767px) {
  .about .sec05 .inner {
    padding: 40px 0;
    width: 90%;
    gap: 40px;
  }
}
.about .sec05 .p-sec-title {
  width: fit-content;
}
@media print, screen and (max-width: 1180px) {
  .about .sec05 .p-sec-title {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec05 .p-sec-title {
    width: 100%;
  }
  .about .sec05 .p-sec-title .tit-en {
    width: 274px;
    margin: 0 auto;
  }
}
.about .sec05 .desc {
  width: fit-content;
  margin-top: 40px;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec05 .desc.is-show {
  opacity: 1;
}
.about .sec05 .desc p {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  line-height: 130%;
  color: #000000;
  text-align: left;
}
.about .sec05 .morebtn {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .about .sec05 .morebtn {
    text-align: center;
  }
}
.about .sec06 {
  background: url(../img/about/img08.jpg) no-repeat center/cover;
  margin-bottom: 160px;
  box-shadow: 5px 10px 10px rgba(98, 98, 98, 0.2);
}
@media print, screen and (max-width: 1023px) {
  .about .sec06 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec06 {
    background-image: url(../img/about/img08_sp.jpg);
  }
}
.about .sec06 .p-sec-title.is-show .line-tit path {
  animation: common03 2s forwards;
}
.about .sec06 .p-sec-title {
  width: fit-content;
}
.about .sec06 .p-sec-title .tit-ja {
  background-color: #00579e;
}
@media only screen and (max-width: 767px) {
  .about .sec06 .p-sec-title {
    width: 100%;
  }
  .about .sec06 .p-sec-title .tit-en {
    width: 323px;
    margin: 0 auto;
  }
}
.about .sec06 .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 127px;
  align-items: flex-end;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .sec06 .inner {
    padding: 40px 0;
    width: 90%;
    gap: 80px;
  }
}
.about .sec06 .desc {
  width: fit-content;
  margin-top: 40px;
  margin-left: auto;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec06 .desc.is-show {
  opacity: 1;
}
.about .sec06 .desc p {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  line-height: 130%;
  color: #000000;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .about .sec06 .morebtn {
    text-align: center;
  }
}
.about .sec07 {
  background: linear-gradient(90deg, #a3e8f3 0%, #c8e3ff 47.12%, #f1f8ff 100%);
}
.about .sec07 .p-sec-title {
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .about .sec07 .p-sec-title {
    width: 100%;
  }
  .about .sec07 .p-sec-title .tit-en {
    width: 262px;
    margin: 0 auto;
  }
}
.about .sec07 .p-sec-title .desc {
  margin-top: 40px;
  opacity: 0;
  transition: 0.4s ease;
}
.about .sec07 .p-sec-title .desc.is-show {
  opacity: 1;
}
.about .sec07 .p-sec-title .desc p {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  line-height: 130%;
}
.about .sec07 .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .about .sec07 .inner {
    padding: 40px 0;
    width: 90%;
  }
}
.about .sec07 .inner::before {
  content: "";
  background: url(../img/about/img10.png) no-repeat center/contain;
  max-width: 569px;
  width: 45%;
  height: 509px;
  position: absolute;
  top: -30px;
  right: -9%;
  z-index: -1;
}
@media print, screen and (max-width: 1023px) {
  .about .sec07 .inner::before {
    bottom: 63px;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec07 .inner::before {
    max-width: 199px;
    width: 100%;
    height: 179px;
  }
}
.about .sec07 .column {
  display: flex;
  gap: 80px;
}
@media print, screen and (max-width: 1023px) {
  .about .sec07 .column {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
.about .sec07 .column .sec-img {
  max-width: 600px;
  width: 71%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .sec07 .column .sec-img {
    max-width: none;
    width: 100%;
  }
}
.about .sec07 .column .sec-img::before {
  content: "";
  background: url(../img/about/img11.png) no-repeat center/contain;
  max-width: 272px;
  width: 46%;
  height: 409px;
  position: absolute;
  bottom: 71px;
  left: -107px;
  transform: rotate(-12deg);
}
@media only screen and (max-width: 767px) {
  .about .sec07 .column .sec-img::before {
    left: 0;
    bottom: 101px;
    height: 210px;
    width: 140px;
  }
}
.about .sec07 .column .sec-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media print, screen and (max-width: 1023px) {
  .about .sec07 .column .sec-text {
    gap: 148px;
  }
}
.about .sec07 .column .desc p {
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
  text-shadow: rgb(214, 235, 255) 4px 0px 0px, rgb(214, 235, 255) 3.87565px 0.989616px 0px, rgb(214, 235, 255) 3.51033px 1.9177px 0px, rgb(214, 235, 255) 2.92676px 2.72656px 0px, rgb(214, 235, 255) 2.16121px 3.36588px 0px, rgb(214, 235, 255) 1.26129px 3.79594px 0px, rgb(214, 235, 255) 0.282949px 3.98998px 0px, rgb(214, 235, 255) -0.712984px 3.93594px 0px, rgb(214, 235, 255) -1.66459px 3.63719px 0px, rgb(214, 235, 255) -2.51269px 3.11229px 0px, rgb(214, 235, 255) -3.20457px 2.39389px 0px, rgb(214, 235, 255) -3.69721px 1.52664px 0px, rgb(214, 235, 255) -3.95997px 0.56448px 0px, rgb(214, 235, 255) -3.97652px -0.432781px 0px, rgb(214, 235, 255) -3.74583px -1.40313px 0px, rgb(214, 235, 255) -3.28224px -2.28625px 0px, rgb(214, 235, 255) -2.61457px -3.02721px 0px, rgb(214, 235, 255) -1.78435px -3.57996px 0px, rgb(214, 235, 255) -0.843183px -3.91012px 0px, rgb(214, 235, 255) 0.150409px -3.99717px 0px, rgb(214, 235, 255) 1.13465px -3.8357px 0px, rgb(214, 235, 255) 2.04834px -3.43574px 0px, rgb(214, 235, 255) 2.83468px -2.82216px 0px, rgb(214, 235, 255) 3.44477px -2.03312px 0px, rgb(214, 235, 255) 3.84068px -1.11766px 0px, rgb(214, 235, 255) 3.9978px -0.132717px 0px;
}
.about .sec07 .column .morebtn {
  margin-top: auto;
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.pholosophy .page-tit .fv-bg::before {
  background-image: url(../img/pholosophy/page-fv.png);
}
@media only screen and (max-width: 767px) {
  .pholosophy .page-tit .fv-bg::before {
    background-image: url(../img/pholosophy/page-fv_sp.png);
  }
}
.pholosophy .sec01,
.pholosophy .sec02 {
  background-color: #001a51;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .pholosophy .sec01,
  .pholosophy .sec02 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.pholosophy .sec01::before,
.pholosophy .sec02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/pholosophy/img01.png) no-repeat center/contain;
  max-width: 847px;
  width: 50%;
  z-index: -2;
}
.pholosophy .sec01 .inner,
.pholosophy .sec02 .inner {
  padding: 226px 0 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .pholosophy .sec01 .inner,
  .pholosophy .sec02 .inner {
    padding: 0;
  }
}
.pholosophy .sec01 .sec-head,
.pholosophy .sec02 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid #fff;
  width: 90%;
  margin: 0 auto;
}
.pholosophy .sec01 .sec-head .tit-en,
.pholosophy .sec02 .sec-head .tit-en {
  font-family: "Koulen", sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  font-size: clamp(4rem, 2.1037621359rem + 8.0906148867vw, 11.8125rem);
  line-height: 100%;
  text-shadow: rgb(0, 26, 81) 1px 0px 0px, rgb(0, 26, 81) 0.540302px 0.841471px 0px, rgb(0, 26, 81) -0.416147px 0.909297px 0px, rgb(0, 26, 81) -0.989992px 0.14112px 0px, rgb(0, 26, 81) -0.653644px -0.756802px 0px, rgb(0, 26, 81) 0.283662px -0.958924px 0px, rgb(0, 26, 81) 0.96017px -0.279415px 0px;
}
.pholosophy .sec01 .sec-head .tit-en .char,
.pholosophy .sec02 .sec-head .tit-en .char {
  display: inline-block;
  opacity: 0.65;
  filter: brightness(80%);
  animation-name: titEnSoftFlicker01;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  animation-delay: calc(var(--char-index) * 0.035s);
}
.pholosophy .sec01 .sec-head .tit-en .char.is-flicker-01,
.pholosophy .sec02 .sec-head .tit-en .char.is-flicker-01 {
  animation-name: titEnSoftFlicker01;
}
.pholosophy .sec01 .sec-head .tit-en .char.is-flicker-02,
.pholosophy .sec02 .sec-head .tit-en .char.is-flicker-02 {
  animation-name: titEnSoftFlicker02;
}
.pholosophy .sec01 .sec-head .tit-en .char.is-flicker-03,
.pholosophy .sec02 .sec-head .tit-en .char.is-flicker-03 {
  animation-name: titEnSoftFlicker03;
}
.pholosophy .sec01 .sec-head .tit-en.is-show .char,
.pholosophy .sec02 .sec-head .tit-en.is-show .char {
  animation-play-state: running;
}
.pholosophy .sec01 .sec-head .tit-ja,
.pholosophy .sec02 .sec-head .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #ffffff;
}
.pholosophy .sec01 .catch p,
.pholosophy .sec02 .catch p {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pholosophy .sec01 .catch p,
  .pholosophy .sec02 .catch p {
    text-align: left;
  }
}
.pholosophy .sec01 .catch p .char,
.pholosophy .sec02 .catch p .char {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  line-height: 200%;
  color: rgba(255, 255, 255, 0.5);
}
.pholosophy .sec01 .catch p.is-show .char,
.pholosophy .sec02 .catch p.is-show .char {
  animation: textColorAnim02 0.4s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}
@media only screen and (max-width: 767px) {
  .pholosophy .sec01 .catch .sp-hidden,
  .pholosophy .sec02 .catch .sp-hidden {
    display: none;
  }
}
.pholosophy .sec02 {
  z-index: 2;
  background-color: #0b2a6b;
}
.pholosophy .sec02 .inner {
  padding: 306px 0 226px;
}
@media only screen and (max-width: 767px) {
  .pholosophy .sec02 .inner {
    padding: 0;
  }
}
.pholosophy .sec02::before {
  background-image: url(../img/pholosophy/img02.png);
  left: auto;
  right: 0;
}
.pholosophy .bg-wrap {
  background: linear-gradient(180deg, #e0f2ff 5.24%, #ffffff 31.25%);
}
.pholosophy .bg-wrap .inner {
  padding: 160px 0 0;
  width: min(90%, 1600px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .inner {
    padding-top: 40px;
  }
}
.pholosophy .bg-wrap .div-img {
  margin-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .div-img {
    margin-bottom: 40px;
  }
}
.pholosophy .bg-wrap .div-img img {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.8s ease;
}
.pholosophy .bg-wrap .div-img {
  overflow: hidden;
}
.pholosophy .bg-wrap .div-img.is-show img {
  opacity: 1;
  transform: translateY(0);
}
.pholosophy .bg-wrap .sec-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pholosophy .bg-wrap .sec-column .p-sec-title {
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #6d7fac;
  width: fit-content;
  padding: 0 20px 8px;
  margin: 0 auto 80px;
}
@media print, screen and (max-width: 1180px) {
  .pholosophy .bg-wrap .sec-column .p-sec-title .tit-en svg {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .p-sec-title {
    margin-bottom: 40px;
    padding: 0 0 8px;
  }
}
.pholosophy .bg-wrap .sec-column .p-sec-title .tit-ja {
  background-color: transparent;
  padding: 0;
}
.pholosophy .bg-wrap .sec-column .p-sec-title .tit-ja p {
  color: #000000;
  font-size: 24px;
  text-align: center;
  transition-delay: 0.2s;
}
.pholosophy .bg-wrap .sec-column .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .inner {
    padding: 24px 0;
    gap: 40px;
  }
}
.pholosophy .bg-wrap .sec-column .sec-head .desc {
  opacity: 0;
  transition: 0.4s ease;
}
.pholosophy .bg-wrap .sec-column .sec-head .desc.tal p {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .sec-head .desc br {
    display: none;
  }
}
.pholosophy .bg-wrap .sec-column .sec-head .desc p {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  line-height: 200%;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .sec-head .desc p {
    text-align: left;
  }
}
.pholosophy .bg-wrap .sec-column .sec-head .desc.is-show {
  opacity: 1;
}
.pholosophy .bg-wrap .sec-column .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pholosophy .bg-wrap .sec-column .list .item {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .list .item {
    flex-direction: column;
  }
}
.pholosophy .bg-wrap .sec-column .list .item .num {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
  color: #6d7fac;
  padding: 0 25px;
  border: 1px solid #6d7fac;
  border-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .list .item .desc {
    width: 100%;
  }
}
.pholosophy .bg-wrap .sec-column .list .item .desc .char {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 180%;
  color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .list .item .desc .char {
    font-feature-settings: "palt";
  }
}
.pholosophy .bg-wrap .sec-column .list .item.is-show .desc .char {
  animation: textColorAnim 0.4s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}
.pholosophy .bg-wrap .sec-column .values {
  background: url(../img/pholosophy/img04.jpg) no-repeat center/cover;
  border: 3px solid #6d7fac;
  border-radius: 8px;
}
.pholosophy .bg-wrap .sec-column .vision {
  background: url(../img/pholosophy/img05.jpg) no-repeat center/cover;
  border: 3px solid #6d7fac;
  position: relative;
  border-radius: 8px;
}
.pholosophy .bg-wrap .sec-column .vision::before {
  content: "";
  position: absolute;
  left: 62px;
  bottom: 0;
  background: url(../img/pholosophy/img08.png) no-repeat bottom/contain;
  max-width: 342px;
  width: 22%;
  height: 572px;
}
@media print, screen and (max-width: 1420px) {
  .pholosophy .bg-wrap .sec-column .vision::before {
    width: 16%;
    left: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .vision::before {
    width: 131px;
    height: 175px;
    left: 7px;
    bottom: 13px;
  }
}
.pholosophy .bg-wrap .sec-column .vision::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -21px;
  background: url(../img/pholosophy/img06.png) no-repeat bottom/contain;
  max-width: 455px;
  width: 29%;
  height: 591px;
}
@media print, screen and (max-width: 1420px) {
  .pholosophy .bg-wrap .sec-column .vision::after {
    width: 22%;
  }
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .vision::after {
    width: 181px;
    height: 209px;
    right: 16px;
    bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .vision .inner {
    padding-bottom: 200px;
  }
}
.pholosophy .bg-wrap .sec-column .policy,
.pholosophy .bg-wrap .sec-column .policy02 {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
}
@media print, screen and (max-width: 1180px) {
  .pholosophy .bg-wrap .sec-column .policy,
  .pholosophy .bg-wrap .sec-column .policy02 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.pholosophy .bg-wrap .sec-column .policy .sec-text,
.pholosophy .bg-wrap .sec-column .policy02 .sec-text {
  background: url(../img/pholosophy/img10.jpg) no-repeat center/cover;
  border: 3px solid #6d7fac;
  border-radius: 8px;
}
.pholosophy .bg-wrap .sec-column .policy .sec-img,
.pholosophy .bg-wrap .sec-column .policy02 .sec-img {
  margin-top: 120px;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .pholosophy .bg-wrap .sec-column .policy .sec-img,
  .pholosophy .bg-wrap .sec-column .policy02 .sec-img {
    margin-top: 0;
  }
  .pholosophy .bg-wrap .sec-column .policy .sec-img img,
  .pholosophy .bg-wrap .sec-column .policy02 .sec-img img {
    width: 100%;
  }
}
.pholosophy .bg-wrap .sec-column .policy.is-show .sec-img,
.pholosophy .bg-wrap .sec-column .policy02.is-show .sec-img {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .pholosophy .bg-wrap .sec-column .policy02 {
    flex-direction: column-reverse;
  }
}
.pholosophy .bg-wrap .sec-column .policy02 .sec-img {
  margin-top: 0;
}
.pholosophy .bg-wrap .sec-column .policy02 .sec-text {
  margin-top: 120px;
  background-image: url(../img/pholosophy/img12.jpg);
  border-radius: 8px;
}
@media print, screen and (max-width: 1180px) {
  .pholosophy .bg-wrap .sec-column .policy02 .sec-text {
    margin-top: 0;
  }
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.sustainability .fv-bg::before {
  background: url(../img/sustainability/page-fv.png) no-repeat center/cover;
}
.sustainability .page-tit {
  min-height: 100svh;
}
@media only screen and (max-width: 767px) {
  .sustainability .page-tit {
    min-height: auto;
  }
}
.sustainability .page-tit.is-show .line-tit path {
  animation: fv-w 2s forwards 0.8s;
}
.sustainability .page-tit.is-show .inner .desc {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .page-tit .inner {
  width: min(90%, 1565px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 134px;
}
@media only screen and (max-width: 767px) {
  .sustainability .page-tit .inner {
    flex-direction: column-reverse;
    gap: 67px;
    padding: 182px 0 24px;
  }
}
.sustainability .page-tit .inner .fv-title {
  width: min(90%, 1280px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sustainability .page-tit .inner .fv-title {
    width: 100%;
  }
}
.sustainability .page-tit .inner .tit-en svg {
  width: auto;
}
.sustainability .page-tit .inner .line-tit path {
  stroke: #fff;
}
.sustainability .page-tit .inner .tit-ja {
  color: #fff;
}
.sustainability .page-tit .inner .desc {
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease 0.4s;
}
.sustainability .page-tit .inner .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6875rem, 1.0048543689rem + 2.9126213592vw, 4.5rem);
  line-height: 160%;
  color: #00579e;
  text-shadow: rgb(255, 255, 255) 4px 0px 0px, rgb(255, 255, 255) 3.87565px 0.989616px 0px, rgb(255, 255, 255) 3.51033px 1.9177px 0px, rgb(255, 255, 255) 2.92676px 2.72656px 0px, rgb(255, 255, 255) 2.16121px 3.36588px 0px, rgb(255, 255, 255) 1.26129px 3.79594px 0px, rgb(255, 255, 255) 0.282949px 3.98998px 0px, rgb(255, 255, 255) -0.712984px 3.93594px 0px, rgb(255, 255, 255) -1.66459px 3.63719px 0px, rgb(255, 255, 255) -2.51269px 3.11229px 0px, rgb(255, 255, 255) -3.20457px 2.39389px 0px, rgb(255, 255, 255) -3.69721px 1.52664px 0px, rgb(255, 255, 255) -3.95997px 0.56448px 0px, rgb(255, 255, 255) -3.97652px -0.432781px 0px, rgb(255, 255, 255) -3.74583px -1.40313px 0px, rgb(255, 255, 255) -3.28224px -2.28625px 0px, rgb(255, 255, 255) -2.61457px -3.02721px 0px, rgb(255, 255, 255) -1.78435px -3.57996px 0px, rgb(255, 255, 255) -0.843183px -3.91012px 0px, rgb(255, 255, 255) 0.150409px -3.99717px 0px, rgb(255, 255, 255) 1.13465px -3.8357px 0px, rgb(255, 255, 255) 2.04834px -3.43574px 0px, rgb(255, 255, 255) 2.83468px -2.82216px 0px, rgb(255, 255, 255) 3.44477px -2.03312px 0px, rgb(255, 255, 255) 3.84068px -1.11766px 0px, rgb(255, 255, 255) 3.9978px -0.132717px 0px;
  filter: drop-shadow(6px 6px 0 rgba(249, 251, 255, 0.3));
}
.sustainability .page-tit .inner .desc p .f-56 {
  font-size: clamp(1.3125rem, 0.7815533981rem + 2.2653721683vw, 3.5rem);
}
.sustainability .has-bg {
  background-color: #f0f7ff;
}
.sustainability .sec01 .inner {
  padding: 200px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(80 / 1920 * 100vw);
}
@media print, screen and (max-width: 1500px) {
  .sustainability .sec01 .inner {
    width: 90%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec01 .inner {
    flex-direction: column;
    gap: 24px;
    padding: 40px 0;
  }
}
.sustainability .sec01 .inner .sec-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.sustainability .sec01 .inner .sec-head .tit-en {
  font-family: "Koulen", sans-serif;
  color: #f0f7ff;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 100%;
  letter-spacing: 0.04em;
  text-shadow: rgb(0, 26, 81) 1px 0px 0px, rgb(0, 26, 81) 0.540302px 0.841471px 0px, rgb(0, 26, 81) -0.416147px 0.909297px 0px, rgb(0, 26, 81) -0.989992px 0.14112px 0px, rgb(0, 26, 81) -0.653644px -0.756802px 0px, rgb(0, 26, 81) 0.283662px -0.958924px 0px, rgb(0, 26, 81) 0.96017px -0.279415px 0px;
}
.sustainability .sec01 .inner .sec-head .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 160%;
  color: #0068b7;
}
.sustainability .sec01 .inner .desc {
  max-width: 800px;
  width: 63%;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1500px) {
  .sustainability .sec01 .inner .desc {
    width: 57%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec01 .inner .desc {
    width: 100%;
  }
}
.sustainability .sec01 .inner .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
  color: #000000;
}
.sustainability .sec01.is-show .desc {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec02 {
  overflow: hidden;
}
.sustainability .sec02 .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 216px;
}
@media print, screen and (max-width: 1500px) {
  .sustainability .sec02 .inner {
    width: 90%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .inner {
    padding-bottom: 76px;
    gap: 40px;
  }
}
.sustainability .sec02 .img {
  position: relative;
  overflow: hidden;
}
.sustainability .sec02 .img img {
  opacity: 0;
  transform: scale(1.6);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .img img.pc-hidden {
    display: block;
    width: 100%;
    height: auto;
  }
  .sustainability .sec02 .img img.sp-hidden {
    display: none;
  }
}
.sustainability .sec02 .img .p-sec-title {
  position: absolute;
  top: 24px;
  left: 24px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec02 .img .p-sec-title {
    align-items: flex-start;
  }
}
.sustainability .sec02 .img .p-sec-title .tit-ja {
  width: auto;
  padding: 0;
  background-color: #fff;
}
.sustainability .sec02 .img .p-sec-title .tit-ja p {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  color: #00579e;
  padding: 8px 24px;
  font-weight: 700;
  transition-delay: 1.6s;
}
.sustainability .sec02 .img.is-show img {
  opacity: 1;
  transform: scale(1);
}
.sustainability .sec02 .img.is-show .p-sec-title .line-tit path {
  animation-delay: 0.4s;
}
.sustainability .sec02 .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .text {
    width: 90%;
    margin: 0 auto;
    gap: 24px;
  }
}
.sustainability .sec02 .text .catch {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 4px solid #0068b7;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec02 .text .catch {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
  }
}
.sustainability .sec02 .text .catch .line {
  display: inline-block;
  overflow: hidden;
  position: relative;
  background-color: #00a0e9;
  border-radius: 4px 16px 0px 0px;
  transform: translateY(20px);
  transition: 0.4s ease;
}
.sustainability .sec02 .text .catch .line span {
  color: #fff;
  clip-path: inset(0 100% 0 0);
  transition: 0.4s ease;
}
.sustainability .sec02 .text .catch span {
  color: #001a51;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
  line-height: 100%;
}
.sustainability .sec02 .text .catch.is-show .line {
  transform: translateY(0);
}
.sustainability .sec02 .text .catch.is-show .line span {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.4s;
}
.sustainability .sec02 .text .desc {
  opacity: 0;
  transform: translateY(20px);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  transition: 0.8s ease 0.4s;
}
.sustainability .sec02 .text .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 200%;
  color: #000000;
}
.sustainability .sec02 .text.is-show .desc {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec02 .card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .card {
    display: flex;
    flex-direction: column;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .card {
    width: 90%;
    margin: 0 auto;
  }
}
.sustainability .sec02 .card .item {
  background: #ffffff;
  border: 3px solid #6d7fac;
  border-radius: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.8s ease;
}
.sustainability .sec02 .card .item::before {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.8s ease;
}
.sustainability .sec02 .card .item .box-inner {
  padding: 24px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  height: 100%;
  position: relative;
}
.sustainability .sec02 .card .item .box-inner::before {
  content: "";
  position: absolute;
  background: url(../img/sustainability/check.svg) no-repeat center/contain;
  width: 56px;
  height: 38px;
  top: 71px;
  left: 118px;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec02 .card .item .box-inner::before {
    width: 41px;
    height: 28px;
    top: 28px;
    left: 87px;
  }
}
.sustainability .sec02 .card .item .box-inner .num {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-size: clamp(5.5rem, 5.1359223301rem + 1.5533980583vw, 7rem);
  line-height: 160%;
  color: #b3bcd4;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec02 .card .item .box-inner .num {
    line-height: 90%;
  }
}
.sustainability .sec02 .card .item .box-inner .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 160%;
  color: #000000;
  writing-mode: vertical-rl;
  margin: 0 auto;
}
.sustainability .sec02 .card .item .box-inner .link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid #6d7fac;
  border-radius: 8px;
}
.sustainability .sec02 .card .item .box-inner .link .link-tit {
  overflow: hidden;
  position: relative;
}
.sustainability .sec02 .card .item .box-inner .link .front-tit,
.sustainability .sec02 .card .item .box-inner .link .back-tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6286407767rem + 0.5177993528vw, 1.25rem);
  line-height: 1;
  color: #6d7fac;
}
.sustainability .sec02 .card .item .box-inner .link .front-tit {
  position: relative;
  transition: 0.4s ease;
}
.sustainability .sec02 .card .item .box-inner .link .back-tit {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  pointer-events: none;
}
.sustainability .sec02 .card .item .box-inner .link .arrow {
  width: 20px;
}
.sustainability .sec02 .card .item .box-inner .link .arrow .icon-bg {
  background-color: #6d7fac;
}
.sustainability .sec02 .card .item .box-inner .link .arrow::before {
  width: 10px;
  height: 12px;
}
.sustainability .sec02 .card .item:hover .link {
  background-color: #6d7fac;
}
.sustainability .sec02 .card .item:hover .link .front-tit {
  transform: translateY(-100%);
  color: #fff;
}
.sustainability .sec02 .card .item:hover .link .back-tit {
  transform: translateY(0);
  color: #fff;
}
.sustainability .sec02 .card .item:hover .link .arrow .icon_bg-hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.sustainability .sec02 .card .item:hover .link .arrow::before {
  background-image: url(../img/common/icon-arrow_g.svg);
  z-index: 10;
}
.sustainability .sec02 .card .item:first-child::before {
  content: "";
  position: absolute;
  background: url(../img/sustainability/img02.png) no-repeat bottom/contain;
  width: 185px;
  height: 300px;
  bottom: -11px;
  left: -67px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec02 .card .item:first-child::before {
    width: 50%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .card .item:first-child::before {
    left: -40px;
    width: 143px;
  }
}
.sustainability .sec02 .card .item:nth-child(2)::before {
  content: "";
  position: absolute;
  background: url(../img/sustainability/img03.png) no-repeat bottom/contain;
  width: 195px;
  height: 310px;
  bottom: -11px;
  right: -40px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec02 .card .item:nth-child(2)::before {
    width: 50%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .card .item:nth-child(2)::before {
    width: 150px;
  }
}
.sustainability .sec02 .card .item:nth-child(3)::before {
  content: "";
  position: absolute;
  background: url(../img/sustainability/img04.png) no-repeat bottom/contain;
  width: 164px;
  height: 316px;
  bottom: -11px;
  right: -77px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec02 .card .item:nth-child(3)::before {
    width: 50%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec02 .card .item:nth-child(3)::before {
    width: 132px;
    left: -40px;
  }
}
.sustainability .sec02 .card.is-show .item {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec02 .card.is-show .item:first-child {
  transition-delay: 0.2s;
}
.sustainability .sec02 .card.is-show .item:first-child::before {
  transition-delay: 0.2s;
}
.sustainability .sec02 .card.is-show .item:nth-child(2) {
  transition-delay: 0.4s;
}
.sustainability .sec02 .card.is-show .item:nth-child(2)::before {
  transition-delay: 0.4s;
}
.sustainability .sec02 .card.is-show .item:nth-child(3) {
  transition-delay: 0.6s;
}
.sustainability .sec02 .card.is-show .item:nth-child(3)::before {
  transition-delay: 0.6s;
}
.sustainability .sec02 .card.is-show .item::before {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec03 .inner {
  padding-bottom: 200px;
}
@media print, screen and (max-width: 1500px) {
  .sustainability .sec03 .inner {
    width: 90%;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner {
    padding-bottom: 100px;
  }
}
.sustainability .sec03 .inner .sec-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner .sec-title {
    gap: 24px;
    margin-bottom: 32px;
  }
}
.sustainability .sec03 .inner .sec-title .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
  line-height: 100%;
  color: #00a0e9;
  background-color: transparent;
}
.sustainability .sec03 .inner .sec-title.is-show {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec03 .inner .card-detail {
  display: flex;
  gap: 80px;
  margin-bottom: 120px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec03 .inner .card-detail {
    gap: 57px;
  }
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner .card-detail {
    flex-direction: column-reverse;
    margin-bottom: 48px;
  }
}
.sustainability .sec03 .inner .card-detail:last-child {
  margin-bottom: 0;
}
.sustainability .sec03 .inner .card-detail.column {
  flex-direction: row-reverse;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner .card-detail.column {
    flex-direction: column-reverse;
  }
}
.sustainability .sec03 .inner .card-detail figure {
  max-width: 240px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner .card-detail figure {
    max-width: none;
  }
}
.sustainability .sec03 .inner .card-detail figure img {
  opacity: 0;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec03 .inner .card-detail figure img.sp-hidden {
    display: none;
  }
  .sustainability .sec03 .inner .card-detail figure img.pc-hidden {
    display: block;
    width: 100%;
    height: auto;
  }
}
.sustainability .sec03 .inner .card-detail figure::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #b3bcd4;
  transform: translateX(-100%);
}
.sustainability .sec03 .inner .card-detail .sec-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease 0.8s;
}
.sustainability .sec03 .inner .card-detail .sec-text .item-tit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 160%;
  color: #001a51;
  border-width: 2px 0px;
  border-style: dashed;
  border-color: #001a51;
}
.sustainability .sec03 .inner .card-detail .sec-text .group {
  margin-left: 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media print, screen and (max-width: 1180px) {
  .sustainability .sec03 .inner .card-detail .sec-text .group {
    margin-left: 0;
  }
}
.sustainability .sec03 .inner .card-detail .sec-text .group .label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-weight: 700;
  line-height: 160%;
  position: relative;
}
.sustainability .sec03 .inner .card-detail .sec-text .group .list .item {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 200%;
  color: #000000;
  position: relative;
  padding-left: 1em;
}
.sustainability .sec03 .inner .card-detail .sec-text .group .list .item::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-blue .label {
  color: #00a0e9;
  border: 2px solid #00a0e9;
  border-radius: 4px;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-blue .list .item::before {
  color: #00a0e9;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-blue .list .item .has-color {
  color: #00a0e9;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-green .label {
  color: #009b91;
  border: 2px solid #009b91;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-green .list .item::before {
  color: #009b91;
}
.sustainability .sec03 .inner .card-detail .sec-text .group.t-green .list .item .has-color {
  color: #009b91;
}
.sustainability .sec03 .inner .card-detail.is-show figure img {
  opacity: 1;
  transition-delay: 0.4s;
}
.sustainability .sec03 .inner .card-detail.is-show figure::before {
  animation: moveLefttoRoght 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
.sustainability .sec03 .inner .card-detail.is-show .sec-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.sustainability .sec04 {
  background-color: #fff;
}
.sustainability .sec04 .bg {
  margin-bottom: 160px;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec04 .bg {
    margin-bottom: 80px;
  }
}
.sustainability .sec04 .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/sustainability/img08.png) no-repeat center/cover;
  z-index: -1;
}
.sustainability .sec04 .bg .p-sec-title .tit-ja {
  opacity: 1;
  transform: translateY(0);
}
.sustainability .sec04 .bg .p-sec-title .tit-ja p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #001a51;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  clip-path: inset(0 0 0 0);
}
.sustainability .sec04 .bg .inner {
  max-width: 1009px;
  width: 90%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media print, screen and (max-width: 1023px) {
  .sustainability .sec04 .bg .inner {
    max-width: none;
    width: 100%;
    padding: 56px 0;
  }
}
.sustainability .sec04 .bg .inner .morebtn {
  opacity: 0;
  transition: 0.4s ease;
}
.sustainability .sec04 .bg .inner .morebtn.is-show {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .bg .inner .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.sustainability .sec04 .bg .inner .morebtn.is-show {
  opacity: 1;
}
.sustainability .sec04 .bg .inner .morebtn a {
  border: 3px solid #6d7fac;
  background-color: #e5e9f1;
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 100px;
  gap: 8px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .bg .inner .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.sustainability .sec04 .bg .inner .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .bg .inner .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.sustainability .sec04 .bg .inner .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #6d7fac;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.sustainability .sec04 .bg .inner .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #fff;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.sustainability .sec04 .bg .inner .morebtn a .arrow .icon_bg-hover {
  background-color: #fff;
}
.sustainability .sec04 .bg .inner .morebtn a .arrow .icon-bg {
  background-color: #6d7fac;
}
.sustainability .sec04 .bg .inner .morebtn a:hover {
  border: 3px solid #6d7fac;
  background-color: #6d7fac;
}
.sustainability .sec04 .bg .inner .morebtn a:hover .arrow::before {
  background-image: url(../img/common/icon-arrow_g.svg);
}
.sustainability .sec04 .bg .inner .morebtn a:hover .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .bg .inner .morebtn a:hover .link-text .pc-hidden {
    display: block;
  }
}
.sustainability .sec04 .bg .inner .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.sustainability .sec04 .bg .inner .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
  transition: 0.4s ease;
}
.sustainability .sec04 .morebtn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}
.sustainability .sec04 .morebtn.is-show {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .morebtn {
    margin: 0 auto;
    width: 90%;
  }
}
.sustainability .sec04 .morebtn.is-show {
  opacity: 1;
}
.sustainability .sec04 .morebtn a {
  border: 3px solid #6d7fac;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 100px;
  gap: 8px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .morebtn a {
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.sustainability .sec04 .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sustainability .sec04 .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.sustainability .sec04 .morebtn a .link-text .front-tit,
.sustainability .sec04 .morebtn a .link-text .back-tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  color: #000000;
  transition: 0.4s ease;
}
.sustainability .sec04 .morebtn a .link-text .back-tit {
  color: #fff;
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #fff;
}
.sustainability .sec04 .morebtn a:hover {
  background-color: #6d7fac;
}
.sustainability .sec04 .morebtn a:hover svg {
  filter: brightness(10);
}
.sustainability .sec04 .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.sustainability .sec04 .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.values {
  position: relative;
  z-index: 1;
}
.values::before {
  content: "";
}
.values.values-01.is-show::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/values/img01.png) no-repeat center/cover, #fff;
}
@media only screen and (max-width: 767px) {
  .values.values-01.is-show::before {
    background-image: url(../img/values/img01_sp.png);
  }
}
.values.values-02.is-show::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/values/img02.png) no-repeat center/cover, #fff;
}
.values.values-03.is-show::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/values/img03.png) no-repeat center/cover, #fff;
}
.values .inner {
  padding-top: 154px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (max-width: 1180px) {
  .values .inner {
    width: 90%;
  }
}
.values .fv-title {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .values .fv-title {
    align-items: center;
  }
}
.values .fv-title .line-tit path {
  fill: transparent;
  stroke: #6d7fac;
  stroke-width: 2px;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.values .fv-title .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.values .fv-title .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 160%;
  color: #fff;
  clip-path: inset(0 100% 0 0);
  transition: 0.8s ease;
  text-shadow: rgb(109, 127, 172) 2px 0px 0px, rgb(109, 127, 172) 1.75517px 0.958851px 0px, rgb(109, 127, 172) 1.0806px 1.68294px 0px, rgb(109, 127, 172) 0.141474px 1.99499px 0px, rgb(109, 127, 172) -0.832294px 1.81859px 0px, rgb(109, 127, 172) -1.60229px 1.19694px 0px, rgb(109, 127, 172) -1.97998px 0.28224px 0px, rgb(109, 127, 172) -1.87291px -0.701566px 0px, rgb(109, 127, 172) -1.30729px -1.5136px 0px, rgb(109, 127, 172) -0.421592px -1.95506px 0px, rgb(109, 127, 172) 0.567324px -1.91785px 0px, rgb(109, 127, 172) 1.41734px -1.41108px 0px, rgb(109, 127, 172) 1.92034px -0.558831px 0px;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
}
.values .fv-title .tit-en svg {
  width: auto;
}
@media print, screen and (max-width: 1180px) {
  .values .fv-title .tit-en svg {
    height: calc(39 / 400 * 100vw);
  }
}
.values .fv-title.is-show .line-tit path {
  animation: common02 2s forwards 0.8s;
}
.values .fv-title.is-show .tit-ja {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.8s;
}
.values .catch {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease 1.4s;
}
.values .catch.is-show {
  opacity: 1;
  transform: translateY(0);
}
.values .catch p {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media print, screen and (max-width: 1180px) {
  .values .catch p {
    flex-wrap: wrap;
  }
}
.values .catch img {
  margin-right: 4px;
  text-shadow: rgb(109, 127, 172) 2px 0px 0px, rgb(109, 127, 172) 1.75517px 0.958851px 0px, rgb(109, 127, 172) 1.0806px 1.68294px 0px, rgb(109, 127, 172) 0.141474px 1.99499px 0px, rgb(109, 127, 172) -0.832294px 1.81859px 0px, rgb(109, 127, 172) -1.60229px 1.19694px 0px, rgb(109, 127, 172) -1.97998px 0.28224px 0px, rgb(109, 127, 172) -1.87291px -0.701566px 0px, rgb(109, 127, 172) -1.30729px -1.5136px 0px, rgb(109, 127, 172) -0.421592px -1.95506px 0px, rgb(109, 127, 172) 0.567324px -1.91785px 0px, rgb(109, 127, 172) 1.41734px -1.41108px 0px, rgb(109, 127, 172) 1.92034px -0.558831px 0px;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
}
.values .catch .num {
  font-family: "Yellowtail", cursive;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(3.5rem, 2.6504854369rem + 3.6245954693vw, 7rem);
  line-height: 1;
  margin-right: 40px;
  text-shadow: rgb(109, 127, 172) 2px 0px 0px, rgb(109, 127, 172) 1.75517px 0.958851px 0px, rgb(109, 127, 172) 1.0806px 1.68294px 0px, rgb(109, 127, 172) 0.141474px 1.99499px 0px, rgb(109, 127, 172) -0.832294px 1.81859px 0px, rgb(109, 127, 172) -1.60229px 1.19694px 0px, rgb(109, 127, 172) -1.97998px 0.28224px 0px, rgb(109, 127, 172) -1.87291px -0.701566px 0px, rgb(109, 127, 172) -1.30729px -1.5136px 0px, rgb(109, 127, 172) -0.421592px -1.95506px 0px, rgb(109, 127, 172) 0.567324px -1.91785px 0px, rgb(109, 127, 172) 1.41734px -1.41108px 0px, rgb(109, 127, 172) 1.92034px -0.558831px 0px;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
}
.values .catch .main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
  line-height: 130%;
  color: #f9fbff;
  text-shadow: rgb(109, 127, 172) 2px 0px 0px, rgb(109, 127, 172) 1.75517px 0.958851px 0px, rgb(109, 127, 172) 1.0806px 1.68294px 0px, rgb(109, 127, 172) 0.141474px 1.99499px 0px, rgb(109, 127, 172) -0.832294px 1.81859px 0px, rgb(109, 127, 172) -1.60229px 1.19694px 0px, rgb(109, 127, 172) -1.97998px 0.28224px 0px, rgb(109, 127, 172) -1.87291px -0.701566px 0px, rgb(109, 127, 172) -1.30729px -1.5136px 0px, rgb(109, 127, 172) -0.421592px -1.95506px 0px, rgb(109, 127, 172) 0.567324px -1.91785px 0px, rgb(109, 127, 172) 1.41734px -1.41108px 0px, rgb(109, 127, 172) 1.92034px -0.558831px 0px;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
}
.values .box {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 6px rgba(15, 82, 107, 0.8);
  border-radius: 40px;
  margin-bottom: 120px;
}
.values .box .box-inner {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.values .box .box-inner .desc {
  margin-bottom: 40px;
}
.values .box .box-inner .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
  color: #000000;
}
.values .box .box-inner .label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-weight: 700;
  line-height: 160%;
  position: relative;
  color: #00a0e9;
  border: 2px solid #00a0e9;
  border-radius: 4px;
  margin-bottom: 16px;
}
.values .box .box-inner .post-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media print, screen and (max-width: 1023px) {
  .values .box .box-inner .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.values .box .box-inner .post-list a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.values .box .box-inner .post-list a .thumb-wrap {
  height: 262px;
  width: 100%;
  border-radius: 8px;
}
@media print, screen and (max-width: 1023px) {
  .values .box .box-inner .post-list a .thumb-wrap {
    height: 140px;
  }
}
.values .box .box-inner .post-list a .thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.values .box .box-inner .post-list a .post-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  color: #00a0e9;
  text-decoration-line: underline;
}
.values .box .box-inner .morebtn {
  opacity: 0;
  transition: 0.4s ease;
  width: 100%;
}
.values .box .box-inner .morebtn.is-show {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .values .box .box-inner .morebtn {
    margin: 0 auto;
    width: 100%;
  }
}
.values .box .box-inner .morebtn.is-show {
  opacity: 1;
}
.values .box .box-inner .morebtn a {
  border: 3px solid #6d7fac;
  background-color: #e5e9f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 100px;
  gap: 8px;
  transition: 0.4s ease;
}
@media print, screen and (max-width: 1023px) {
  .values .box .box-inner .morebtn a {
    padding: 12px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .values .box .box-inner .morebtn a {
    justify-content: center;
    gap: 8px;
  }
}
.values .box .box-inner .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .values .box .box-inner .morebtn a .link-text .pc-hidden {
    display: block;
  }
}
.values .box .box-inner .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #6d7fac;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.values .box .box-inner .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  color: #fff;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}
.values .box .box-inner .morebtn a:hover {
  border: 3px solid #6d7fac;
  background-color: #6d7fac;
}
.values .box .box-inner .morebtn a:hover .link-text {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .values .box .box-inner .morebtn a:hover .link-text .pc-hidden {
    display: block;
  }
}
.values .box .box-inner .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.values .box .box-inner .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
  transition: 0.4s ease;
}
.values .box .box-inner .textbtn {
  margin-top: 8px;
}
.values .box .box-inner .textbtn a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.values .box .box-inner .textbtn a .tit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #6d7fac;
  text-decoration: underline;
}
.values .box .box-inner .textbtn a .arrow .icon-bg {
  background-color: #6d7fac;
}
.values .box .box-inner .textbtn a .arrow::before {
  transform: rotate(180deg);
  top: auto;
  left: auto;
}
.values .box .box-inner .textbtn a:hover .arrow::before {
  background-image: url(../img/common/icon-arrow_g.svg);
}

@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
html.is-image-popup-open,
body.is-image-popup-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.launch .w1328 {
  width: min(80%, 1328px);
  margin: 0 auto;
  padding: 120px 0 80px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .launch .w1328 {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .launch .w1328 {
    padding: 40px 0;
  }
}
.launch .w1328.is-show {
  opacity: 1;
  transform: translateY(0);
}
.launch .page-tit .fv-bg::before {
  background: url(../img/launch/page-fv.png) no-repeat center/cover;
}
@media only screen and (max-width: 767px) {
  .launch .page-tit .fv-bg::before {
    background-image: url(../img/launch/page-fv_sp.png);
  }
}
.launch .page-tit .line-tit path {
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.5);
}
.launch .page-tit.is-show .line-tit path {
  animation: common05 2s forwards;
}
.launch .page-tit .sec-title {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .launch .page-tit .sec-title {
    align-items: center;
  }
}
.launch .page-tit .sec-title .tit-ja {
  color: #fff;
  background-color: transparent;
}
.launch .page-tit .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .launch .page-tit .inner {
    flex-direction: column;
  }
}
.launch .page-tit .inner .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
  line-height: 160%;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .launch .page-tit .inner .desc p .sp-hidden {
    display: none;
  }
}
.launch .page-navi {
  background-color: #000000;
}
.launch .page-navi .inner {
  padding: 20px 0;
}
@media print, screen and (max-width: 1180px) {
  .launch .page-navi .inner {
    padding: 16px 0;
    width: 90%;
  }
}
.launch .page-navi .inner .list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .launch .page-navi .inner .list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.launch .page-navi .inner .list .item {
  transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .launch .page-navi .inner .list .item {
    width: 100%;
  }
}
.launch .page-navi .inner .list .item:hover {
  background-color: #272727;
}
.launch .page-navi .inner .list .item a {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
  font-family: "Noto Sans JP", sans-serif;
  gap: 8px;
  border: 1px solid #fff;
  padding: 2px 8px;
}
@media only screen and (max-width: 767px) {
  .launch .page-navi .inner .list .item a {
    padding: 4px 12%;
  }
}
.launch .section .mb40 {
  margin-bottom: 40px;
}
.launch .section .mb80 {
  margin-bottom: 80px;
}
.launch .section .sec-head .tit-ja {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 160%;
  font-family: "Noto Sans JP", sans-serif;
}
.launch .section .sec-catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 160%;
  color: #ffffff;
  text-align: center;
}
@media print, screen and (max-width: 1023px) {
  .launch .section .sec-catch {
    text-align: left;
  }
  .launch .section .sec-catch .pc-hidden {
    display: block;
  }
}
.launch .section .desc.w900 {
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width: 1023px) {
  .launch .section .desc.w900 {
    width: 100%;
  }
}
.launch .section .desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 160%;
  color: #ffffff;
}
.launch .section .has-sub {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width: 1023px) {
  .launch .section .has-sub {
    width: 100%;
  }
}
.launch .section .has-sub img {
  margin: 0 auto;
}
.launch .section .has-sub .tit-sub {
  padding: 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-left: auto;
}
.launch .section .grid-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 24px;
}
@media print, screen and (max-width: 1023px) {
  .launch .section .grid-item {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }
}
.launch .section .grid-item .item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.launch .section .grid-item .item img {
  width: 100%;
}
@media print, screen and (max-width: 1023px) {
  .launch .section .grid-item .item {
    gap: 16px;
  }
}
.launch .section .grid-item .item .label {
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  color: #fff;
}
.launch .section .grid-item .item .desc {
  padding: 0 16px;
}
.launch .section .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.launch .section .dot {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0 14px;
}
.launch .section .dot li {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  position: relative;
  padding-left: 1em;
}
.launch .section .dot li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.launch .section .contact-btn {
  transition: 0.25s;
  border-radius: 48px;
  background-color: #e5e9f1;
}
.launch .section .contact-btn a {
  display: block;
  text-align: center;
  padding: 24px;
  border-radius: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .launch .section .contact-btn a {
    padding: 8px;
  }
}
.launch .section .article-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.launch .section .image-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.launch .section .image-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.launch .section .image-popup__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*

  * ブラウザ標準のピンチズームを止めて、

  * JavaScript側で画像を拡大する

  */
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.launch .section .image-popup__image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%) translate(0, 0) scale(1);
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media print, screen and (min-width: 769px) {
  .launch .section .image-popup {
    display: none;
  }
}
@media print, screen and (max-width: 768px) {
  .launch .section .js-image-popup {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}
.launch .sec01 {
  background-color: #368a72;
}
.launch .sec01 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec01 .sec-head .tit-ja {
  color: #39e5fb;
}
.launch .sec01 .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch .sec01 .has-sub .tit-sub {
  background-color: #009b91;
}
.launch .sec01 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media print, screen and (max-width: 1180px) {
  .launch .sec01 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.launch .sec01 .list .item {
  max-width: 290px;
  width: 100%;
  border-radius: 24px;
  background-color: #009b91;
  border: 2px solid #39e5fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
}
@media print, screen and (max-width: 1180px) {
  .launch .sec01 .list .item:nth-child(odd) {
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .launch .sec01 .list .item {
    padding: 24px 6px;
  }
}
.launch .sec01 .list .item .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  line-height: 160%;
  color: #296b59;
  width: 100%;
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
}
.launch .sec01 .list .item p {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 160%;
}
.launch .sec01 .grid-item .item .label {
  background-color: #296b59;
}
.launch .sec01 .contact-btn {
  border: 3px solid #39e5fb;
}
.launch .sec01 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #39e5fb;
}
.launch .sec02 {
  background-color: #000000;
}
.launch .sec02 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec02 .sec-head .tit-ja {
  color: #ac6dab;
}
.launch .sec02 .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media print, screen and (max-width: 1023px) {
  .launch .sec02 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.launch .sec02 .flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
}
@media print, screen and (max-width: 1023px) {
  .launch .sec02 .flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .launch .sec02 .flex {
    margin-bottom: 80px;
  }
}
.launch .sec02 .flex .sec-img {
  max-width: 758px;
  width: 100%;
}
.launch .sec02 .flex .sec-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.launch .sec02 .flex .sec-text .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  color: #000000;
  background-color: #a0a0a0;
  padding-left: 16px;
}
.launch .sec02 .contact-btn {
  border: 3px solid #ac6dab;
}
.launch .sec02 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #ac6dab;
}
.launch .sec03 {
  background-color: #192642;
}
.launch .sec03 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec03 .sec-head .tit-ja {
  color: #b7dfa5;
}
.launch .sec03 .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch .sec03 .grid-item .item .label {
  background-color: #000000;
}
.launch .sec03 .contact-btn {
  border: 3px solid #b7dfa5;
}
.launch .sec03 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #b7dfa5;
}
.launch .sec04 {
  background-color: #19427b;
}
.launch .sec04 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec04 .sec-head .tit-ja {
  color: #31c7f8;
}
.launch .sec04 .img-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.launch .sec04 .img-column .desc {
  padding: 0 16px;
}
.launch .sec04 .grid-item .item .label {
  background-color: #000000;
}
.launch .sec04 .has-sub .tit-sub {
  background-color: #000000;
}
.launch .sec04 .contact-btn {
  border: 3px solid #31c7f8;
}
.launch .sec04 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #31c7f8;
}
.launch .sec05 {
  background-color: #05132d;
}
.launch .sec05 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec05 .sec-head .tit-ja {
  color: #6b90ea;
}
.launch .sec05 .img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch .sec05 .grid-item {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .launch .sec05 .grid-item {
    margin-bottom: 80px;
  }
}
.launch .sec05 .grid-item .item {
  gap: 16px;
}
.launch .sec05 .contact-btn {
  border: 3px solid #7298f7;
}
.launch .sec05 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #7298f7;
}
.launch .sec06 {
  background-color: #003641;
}
.launch .sec06 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec06 .sec-head .tit-ja {
  color: #9bd7d9;
}
.launch .sec06 .img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch .sec06 .list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  max-width: 900px;
  width: 90%;
  margin: 0 auto 120px;
}
@media print, screen and (max-width: 1023px) {
  .launch .sec06 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .launch .sec06 .list {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.launch .sec06 .list .item {
  max-width: 273px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
}
.launch .sec06 .list .item .label {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  background-color: #000000;
  text-align: center;
}
.launch .sec06 .list .item .dot {
  padding: 0 16px;
}
.launch .sec06 .contact-btn {
  border: 3px solid #9bd7d9;
}
.launch .sec06 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #9bd7d9;
}
.launch .sec07 {
  background-color: #1d175a;
}
.launch .sec07 .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.launch .sec07 .sec-head .tit-ja {
  color: #d087fa;
}
.launch .sec07 .grid-item .item .label {
  background-color: #000000;
}
.launch .sec07 .contact-btn {
  border: 3px solid #d087fa;
}
.launch .sec07 .contact-btn:hover {
  box-shadow: inset 0 0 0 3em #d087fa;
}

/* ============================================================
   事業内容ページ（page-business.php）
   ※ section_header / banner_naturia(parts-sample) / footer は共通パーツ
============================================================ */
.p-business {
  background: #fff;
  overflow: hidden;
}

/* section_header（page-tit）：.inner（タイトル）と .fv-txt（キャッチ）を横並び。
   .fv-txt は tit-ja の表示アニメ後に、tit-ja と同じ clip-path ワイプで表示 */
.page-tit.business {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 80px);
  padding-inline: max(6%, (100% - 1280px) / 2);
}
@media print, screen and (max-width: 1180px) {
  .page-tit.business {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 0;
  }
}
.page-tit.business .inner {
  width: auto;
  max-width: 620px;
  margin: 0;
  flex-shrink: 1;
}
@media print, screen and (max-width: 1180px) {
  .page-tit.business .inner {
    width: 88%;
    max-width: unset;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .page-tit.business .inner {
    padding-left: 5%;
  }
}
.page-tit.business .inner .tit-en svg {
  width: 100%;
  height: auto;
}
.page-tit.business .fv-txt {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  /* tit-ja と同じ動き（clip-path 左→右ワイプ）。初期は非表示 */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
@media print, screen and (max-width: 1180px) {
  .page-tit.business .fv-txt {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 40px;
  }
}
.page-tit.business .fv-txt__sm {
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.6;
}
.page-tit.business .fv-txt__lg {
  font-size: clamp(1.75rem, 1.4466019417rem + 1.2944983819vw, 3rem);
  line-height: 1.3;
  margin-top: 4px;
}
.page-tit.business {
  /* tit-ja のアニメ（delay 1.8s + 0.8s = 2.6s）が終わってから開始 */
}
.page-tit.business.is-show .fv-txt {
  clip-path: inset(0 0 0 0);
  transition-delay: 2.6s;
}

/* ---------- section_header（BUSINESS ヒーロー：page-business直書き） ---------- */
.biz-hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  isolation: isolate;
}
.biz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, #eef4fc 0%, #dfeaf8 50%, #e8eef8 100%);
}
.biz-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.biz-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}
.biz-hero__wave {
  position: absolute;
  left: 50%;
  top: -20%;
  width: 120%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}
.biz-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  width: min(90%, 1280px);
  min-height: 380px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) 0;
}
@media print, screen and (max-width: 1180px) {
  .biz-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }
}
.biz-hero__inner {
  /* 表示アニメーション（page-tit と同様。common.js が .js-anim → .is-show を付与） */
}
.biz-hero__inner .biz-hero__en,
.biz-hero__inner .biz-hero__jp {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s ease;
}
.biz-hero__inner .biz-hero__catch-sm,
.biz-hero__inner .biz-hero__catch-lg {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.biz-hero__inner.is-show .biz-hero__en {
  clip-path: inset(0 0 0 0);
}
.biz-hero__inner.is-show .biz-hero__jp {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.25s;
}
.biz-hero__inner.is-show .biz-hero__catch-sm {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}
.biz-hero__inner.is-show .biz-hero__catch-lg {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}
.biz-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.biz-hero__en {
  font-family: "Jockey One", sans-serif;
  font-size: clamp(3rem, 1.3009708738rem + 7.2491909385vw, 10rem);
  line-height: 1;
  color: #001a51;
  text-transform: uppercase;
}
.biz-hero__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  line-height: 1.4;
  color: #001a51;
}
.biz-hero__catch-sm {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  line-height: 1.6;
  color: #000;
}
.biz-hero__catch-lg {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 0.9805825243rem + 1.6828478964vw, 3rem);
  line-height: 1.4;
  color: #000;
  margin-top: 4px;
}

/* ---------- セクション見出し（取り扱い部品 / 対応する加工） ---------- */
.biz-ttl {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.biz-ttl__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(3.1875rem, 2.9902912621rem + 0.8414239482vw, 4rem);
  line-height: 1.4;
  color: #0068b7;
}
@media only screen and (max-width: 767px) {
  .biz-ttl__ja {
    font-size: clamp(2.1875rem, 2.0358009709rem + 0.6472491909vw, 2.8125rem);
  }
}
.biz-ttl__en {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b3bcd4;
  margin-top: 8px;
}
.biz-ttl {
  /* 画面内で下からフェードイン（common.js が .js-anim → .is-show を付与） */
}
.biz-ttl__ja, .biz-ttl__en {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.biz-ttl.is-show .biz-ttl__ja {
  opacity: 1;
  transform: none;
}
.biz-ttl.is-show .biz-ttl__en {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.biz-ttl--border {
  border-top: 3px solid #0068b7;
  padding-top: clamp(28px, 3.4vw, 48px);
}

/* ---------- 取り扱い部品 ---------- */
.biz-parts {
  padding-top: clamp(56px, 7vw, 120px);
}

.biz-figrow {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(56px, 7vw, 100px);
}
.biz-figrow--last {
  margin-bottom: 0;
}
.biz-figrow {
  /* カテゴリ画像＋カードを番号ごとの縦ペアで横並び。
     余り（1個など）が中央に浮かないよう左寄せ */
}
.biz-figrow--paired {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 52px);
}

/* 同じ番号の biz-cat と biz-card を常に縦に並べる */
.biz-pair {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 24px);
  width: 400px;
  max-width: 100%;
}
.biz-pair .biz-cat {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .biz-pair .biz-cat {
    align-items: center;
  }
}

/* 番号ピン（画像上・スチールカラー） */
.biz-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  /* 初期：ズームイン（拡大）＋透明。画面内でズームアウト＋フェードイン */
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
  width: clamp(46px, 4.2vw, 80px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(109, 127, 172, 0.7);
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.1019417476rem + 1.1650485437vw, 2.5rem);
  line-height: 1;
  z-index: 4;
  /* クリックで下の「対応する加工」該当箇所へスムーススクロール */
  pointer-events: auto;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ホバー時に軽く拡大して押せることを示す（登場後の scale(1) を基準に上書き） */
.biz-cars.is-show .biz-pin:hover,
.biz-cat.is-show .biz-pin:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

/* 車＋ピンの登場アニメ（js-anim → is-show） */
.biz-cars {
  padding: 0 30px;
}

.biz-cars__car {
  opacity: 0;
  transform: scale(1.18);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.biz-cars__car--2 {
  transition-delay: 0.12s;
}

.biz-cars.is-show .biz-cars__car {
  opacity: 1;
  transform: scale(1);
}

.biz-cars.is-show .biz-pin,
.biz-cat.is-show .biz-pin {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* カテゴリーラベル（自動車部品 等） */
.biz-label {
  display: inline-flex;
  align-items: center;
  background: #d7e9fb;
  border: 1px solid #6d7fac;
  color: #00579e;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.6;
  padding: 4px 16px;
  white-space: nowrap;
  z-index: 3;
}

/* 自動車：2枚の車＋ピン */
.biz-cars {
  position: relative;
  width: 100%;
  aspect-ratio: 1308/455;
  margin-inline: auto;
}
.biz-cars .biz-label {
  position: absolute;
  left: 1.5%;
  top: 4%;
}
.biz-cars__car {
  position: absolute;
  height: auto;
}
.biz-cars__car--1 {
  left: 1.12%;
  top: 0;
  width: 57.49%;
}
.biz-cars__car--2 {
  left: 50.87%;
  top: 17.93%;
  width: 47.7%;
}

/* 自動車スライダー：PCではラッパーが素通し（従来レイアウト維持）。
   スマホでは .biz-cars を画面幅より広くして横スクロール＋◁▷ でスライド（下部の sp 参照） */
.biz-cars-slider {
  /* 車の下に中央表示するラベルはスマホ専用。PCでは非表示 */
}
.biz-cars-slider .biz-label--under {
  display: none;
}
.biz-cars-slider__arrow {
  display: none; /* JS が hidden を外し、sp で flex 表示 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 60px;
  padding: 0;
  background: unset;
}
.biz-cars-slider__arrow svg {
  width: 60px;
  display: block;
}
.biz-cars-slider__arrow[hidden] {
  display: none !important;
}
.biz-cars-slider__arrow:disabled {
  opacity: 0.7;
  cursor: default;
}
.biz-cars-slider__arrow--prev {
  left: 2px;
}
.biz-cars-slider__arrow--next {
  right: 2px;
}

/* .biz-label--under はスライダー外(biz-figrow直下)にも出るため単体でも既定非表示 */
.biz-label--under {
  display: none;
}

/* カテゴリー画像（遊戯／厨房／水栓／量販店） */
.biz-cats {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 104px);
}
.biz-cats--single {
  justify-content: flex-start;
}

.biz-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.biz-cat__img {
  position: relative;
  height: clamp(170px, 17vw, 256px);
}
.biz-cat__img img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* 吹き出しカード（部品カード） */
.biz-cards {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(48px, 5vw, 73px) clamp(20px, 3vw, 52px);
  padding: 66px 0 0;
  margin: 0;
}

.biz-card {
  position: relative;
  width: 400px;
  max-width: 100%;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.24));
}
.biz-card__link {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}
.biz-card__link:hover {
  transform: translateY(-6px);
}
.biz-card__link:hover .biz-card__img img {
  transform: scale(1.06);
}
.biz-card__no {
  position: absolute;
  left: 0;
  top: -66px;
  width: 80px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #00a0e9;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem);
  line-height: 1;
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.24));
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .biz-card__no {
    width: 60px;
    top: -46px;
    font-size: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  }
}
.biz-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #00a0e9;
  border-radius: 16px;
  padding: clamp(16px, 2vw, 24px);
  color: #fff;
}
.biz-card__img {
  position: relative;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.biz-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  /* 初期は非表示（左から表示エリアが増える） */
  clip-path: inset(0 100% 0 0);
}
.biz-card__img {
  /* 画像の裏に伸びるグレー背景（カバー） */
}
.biz-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #b3bcd4;
  transform: scaleX(0);
  transform-origin: left center;
}
.biz-card__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.6;
}
.biz-card__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.6;
}

/* 画面内で：グレー背景が左から伸び → その後 画像が左から表示（位置固定・表示エリア拡大） */
.biz-card.is-show .biz-card__img img {
  animation: bizCardImgReveal 1.1s ease forwards;
}
.biz-card.is-show .biz-card__img::after {
  animation: bizCardCoverWipe 1.1s ease forwards;
}

@keyframes bizCardCoverWipe {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  45.01% {
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
@keyframes bizCardImgReveal {
  0%, 45% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ---------- 対応する加工 ---------- */
.biz-capa {
  padding: clamp(56px, 7vw, 120px) 0 clamp(70px, 8vw, 140px);
}
.biz-capa__list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

.biz-capacard {
  /* カードからの直リンク着地位置：固定ヘッダー分オフセット */
  scroll-margin-top: calc(var(--header-height, 90px) + 24px);
  border: 1px solid #b3bcd4;
  border-radius: 8px;
  padding: clamp(10px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 40px);
}
.biz-capacard__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
}
.biz-capacard__tag {
  display: block;
  width: 100%;
  background: #b3bcd4;
  border-radius: 4px;
  padding: 3px 24px;
  color: #fff;
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  font-size: clamp(1.1875rem, 1.1116504854rem + 0.3236245955vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.biz-capacard__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem);
  line-height: 1.3;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .biz-capacard__ttl {
    font-size: clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem);
  }
}
.biz-capacard__num {
  font-family: "Koulen", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.biz-capacard__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.1875rem, 1.1116504854rem + 0.3236245955vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}
.biz-capacard__cols {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 40px);
}
.biz-capacard__img {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  background: #fff;
  padding: clamp(16px, 2.5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-capacard__img img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.biz-capacard__main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.biz-capacard__use {
  display: flex;
  gap: 16px;
  justify-content: center;
  min-height: 128px;
  padding: 24px;
  background: #f9fbff;
  border: 1px solid #b3bcd4;
  border-radius: 8px;
}
.biz-capacard__use-h {
  flex-shrink: 0;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: #6d7fac;
  border-radius: 4px;
  padding: 0 8px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.6;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .biz-capacard__use-h {
    margin: auto;
  }
}
.biz-capacard__use-list {
  flex: 1 1 0;
  min-width: 0;
  list-style: disc;
  padding-left: 30px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.6;
  color: #000;
}
.biz-capacard__desc p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.6;
  color: #000;
}

/* ボタン（〇〇を見る）：about の .morebtn a と同じデザイン・ホバー */
.p-business .morebtn {
  align-self: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-business .morebtn {
    align-self: stretch;
    width: 100%;
  }
}
.p-business .morebtn a {
  border: 1px solid #fff;
  background-color: #001a51;
  display: flex;
  align-items: center;
  padding: 16px 56px;
  border-radius: 100px;
  gap: 32px;
  transition: 0.4s ease;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .p-business .morebtn a {
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }
}
.p-business .morebtn a .link-text {
  overflow: hidden;
  position: relative;
}
.p-business .morebtn a .link-text .front-tit {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  transition: 0.4s ease;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  white-space: nowrap;
}
.p-business .morebtn a .link-text .back-tit {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  color: #001a51;
  transition: 0.4s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-business .morebtn a .arrow {
    width: 32px;
  }
}
.p-business .morebtn a .arrow .icon_bg-hover {
  background-color: #001a51;
}
.p-business .morebtn a:hover {
  border: 1px solid #001a51;
  background-color: #fff;
}
.p-business .morebtn a:hover .link-text .front-tit {
  transform: translateY(-100%);
}
.p-business .morebtn a:hover .link-text .back-tit {
  transform: translateY(0);
}

/* ============================================================
   レスポンシブ（SP）
   ※ SPデザイン(14:11957)では「取り扱い部品」が横スクロールギャラリー＋
     部品詳細カード省略の別レイアウト。本CSSは暫定でカード縦積み表示。
============================================================ */
@media print, screen and (max-width: 1420px) {
  .biz-cards {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .biz-figrow {
    gap: 40px;
  }
  .biz-pin {
    border-width: 3px;
  }
  /* 自動車：横スクロールのスライダー。車を画面幅より広くしてはみ出させ、◁▷ でスライド */
  .biz-cars-slider {
    position: relative;
    /* スライダー自体を画面幅いっぱいに（コンテナの左右余白を打ち消す full-bleed）＝車を大きく表示 */
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .biz-cars-slider__track {
    overflow-x: auto;
    scroll-behavior: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    /* トラックは全幅のまま、初期表示で車の先頭に左余白を確保（prev矢印の置き場所）。
       scroll-padding で snap 時もこの余白を保つ。先頭ピンは矢印の右に来て重ならない */
    padding-left: clamp(80px, 21vw, 90px);
    scroll-padding-left: clamp(80px, 21vw, 90px);
  }
  .biz-cars-slider__track::-webkit-scrollbar {
    display: none;
  }
  .biz-cars-slider .biz-cars {
    width: 640px;
    max-width: none;
    margin-inline: 0;
  }
  /* 車上のラベルは隠し、車の下に中央表示するラベルを出す */
  .biz-cars .biz-label--in {
    display: none;
  }
  .biz-figrow > .biz-label--under {
    display: inline-flex;
    align-self: center;
    margin-top: 16px;
  }
  /* JS が hidden を外したら矢印表示 */
  .biz-cars-slider__arrow:not([hidden]) {
    display: flex;
  }
  .biz-cats {
    gap: 32px;
    justify-content: center;
  }
  .biz-cards {
    justify-content: center;
    gap: 60px 20px;
    padding-top: 56px;
  }
  .biz-card {
    width: 100%;
    max-width: 340px;
  }
  .biz-capacard__cols {
    flex-direction: column;
  }
  .biz-capacard__img {
    width: 100%;
  }
  .biz-capacard__img img {
    height: auto;
    max-height: 320px;
  }
  .biz-capacard__use {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 0;
  }
}
@keyframes imageLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes columMove {
  /* 左から出現 */
  0% {
    transform: translateY(-100%);
  }
  /* 右端で止まる */
  50% {
    transform: translateY(0);
  }
  /* 少しキープ */
  60% {
    transform: translateY(0);
  }
  /* 左から右へ消える */
  100% {
    transform: translateY(100%);
  }
}
@keyframes LefttoRoght {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLefttoRoght {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes fv {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes common {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.3);
  }
}
@keyframes common02 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes common03 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #001a51;
  }
}
@keyframes common04 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #00579e;
  }
}
@keyframes common05 {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.5);
  }
}
@keyframes textColorAnim {
  0% {
    color: rgba(0, 0, 0, 0.5);
  }
  100% {
    color: black;
  }
}
@keyframes textColorAnim02 {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }
  100% {
    color: white;
  }
}
@keyframes titEnSoftFlicker01 {
  0% {
    opacity: 0.55;
    filter: brightness(75%);
  }
  28% {
    opacity: 0.85;
    filter: brightness(115%);
  }
  52% {
    opacity: 0.68;
    filter: brightness(85%);
  }
  76% {
    opacity: 0.94;
    filter: brightness(108%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker02 {
  0% {
    opacity: 0.6;
    filter: brightness(80%);
  }
  18% {
    opacity: 0.78;
    filter: brightness(105%);
  }
  46% {
    opacity: 0.66;
    filter: brightness(88%);
  }
  82% {
    opacity: 0.96;
    filter: brightness(112%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes titEnSoftFlicker03 {
  0% {
    opacity: 0.52;
    filter: brightness(72%);
  }
  34% {
    opacity: 0.9;
    filter: brightness(118%);
  }
  58% {
    opacity: 0.7;
    filter: brightness(90%);
  }
  88% {
    opacity: 0.97;
    filter: brightness(106%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes cursorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ============================================================
   事業内容 下層ページ（プラスチックめっき/金属めっき/塗装/成形/組付/その他）
   ※ header / footer / parts-sample(banner_naturia) / page-cta は共通パーツ
   section_header・左サイドナビ・banner_vr・本文はページ側で描画（共通パーツ非編集）
============================================================ */
.p-biz-detail {
  position: relative;
  background: #fff;
  /* overflow:hidden は sidenav の position:sticky を壊すため付けない。
     hero のはみ出しは .bizd-hero 側で clip する */
}

/* ---------- hero (section_header) ---------- */
.bizd-hero {
  position: relative;
  padding-top: 76px;
  overflow: hidden;
  isolation: isolate;
}
.bizd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(160deg, rgba(127, 164, 255, 0.2), rgba(155, 226, 232, 0.52) 37.5%, rgba(146, 167, 220, 0.8) 71%);
}
.bizd-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ① 背景：business の .fv-bg と同じ opacity + scale(1.6→1)。初期は非表示・拡大 */
  opacity: 0;
  transform: scale(1.6);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.bizd-hero__wave {
  position: absolute;
  left: 50%;
  top: -18%;
  width: 118%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}
.bizd-hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 449px;
  max-width: 1280px;
  width: min(90%, 1280px);
  margin: 0 auto;
  padding: 40px 0;
}
@media print, screen and (max-width: 1180px) {
  .bizd-hero__inner {
    min-height: unset;
    padding: clamp(40px, 8vw, 80px) 0;
  }
}
.bizd-hero {
  /* 数字（左）と サブ/英/和のグループ（右）を横並び ＝ Figma準拠 */
}
.bizd-hero__titles {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: clamp(12px, 2.5vw, 40px);
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .bizd-hero__titles {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.bizd-hero__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.bizd-hero__num {
  flex-shrink: 0;
  font-family: "Koulen", sans-serif;
  font-size: clamp(5.5rem, 3.8009708738rem + 7.2491909385vw, 12.5rem);
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 2px 10px rgba(15, 82, 107, 0.2);
  /* ③ 数字：business の tit-ja と同じ clip-path 左→右ワイプ */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.bizd-hero__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
}
.bizd-hero__sub::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #fff;
}
.bizd-hero__sub {
  /* ③ 日本語と同時に表示。clip-path 左→右ワイプ */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.bizd-hero__en {
  display: block;
  max-width: 100%;
  /* Figma書き出しのインラインSVG。共通の .line-tit 機構を流用：
     common.js が各 path に --len(=getTotalLength×1.5) を付与し、
     common02（縁取り描写→白で塗り）で表示する（.p-sec-title .tit-en と同じ動き） */
}
.bizd-hero__en .bizd-hero__en-svg {
  display: block;
  width: auto;
  height: clamp(46px, 7.6vw, 104px);
  max-width: 100%;
  overflow: visible; /* drop-shadow がクリップされないように */
}
.bizd-hero__en {
  /* 初期：塗りは透明、輪郭は未描画（stroke色はSVGの stroke="white" 属性を維持） */
}
.bizd-hero__en .bizd-hero__en-svg path {
  fill: transparent;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.bizd-hero__en {
  /* テキストfallback（SVG未提供ページ）：従来どおり clip-path ワイプ */
}
.bizd-hero__en--text {
  font-family: "Jockey One", sans-serif;
  font-size: clamp(3.5rem, 2.5291262136rem + 4.142394822vw, 7.5rem);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  word-break: break-word;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.bizd-hero__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(15, 82, 107, 0.8));
  /* ③ 和名：clip-path 左→右ワイプ */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.bizd-hero {
  /* ===== 表示アニメーション（business の .page-tit と全く同じ動き）=====
     ① 背景（opacity+scale, 遅延なし）→ ② 英字（遅延0.8s）→ ③ 数字＋日本語（遅延1.6s）。
     すべて 0.8s ease。common.js が .js-anim → .is-show を付与 */
}
.bizd-hero.is-show .bizd-hero__bg img {
  opacity: 1;
  transform: none;
}
.bizd-hero.is-show {
  /* ② 英字SVG：common02（縁取り描写→白で塗り）を流用。背景の後（delay 0.8s） */
}
.bizd-hero.is-show .bizd-hero__en-svg path {
  animation: common02 2s ease 0.8s forwards;
}
.bizd-hero.is-show {
  /* テキストfallback（SVG未提供時） */
}
.bizd-hero.is-show .bizd-hero__en--text {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.8s;
}
.bizd-hero.is-show {
  /* ③ 数字＋日本語（英字の後） */
}
.bizd-hero.is-show .bizd-hero__num,
.bizd-hero.is-show .bizd-hero__sub,
.bizd-hero.is-show .bizd-hero__jp {
  clip-path: inset(0 0 0 0);
  transition-delay: 2.6s;
}

/* ---------- 本文ラッパー ---------- */
.bizd-body {
  position: relative; /* サイドナビ(absolute)の基準。sidenav はこの範囲内だけ表示 */
  padding: clamp(56px, 8vw, 160px) 0 64px;
}
.bizd-body__inner {
  background: #f0f7ff;
  width: min(92%, 1400px);
  margin: 0 auto;
  /* .bizd-sidenav__inner（幅204px・左固定）が表示される幅（1181px以上）では、
     中央寄せの左余白が不足していても、その幅分の左余白（244px）を必ず維持して重なりを防ぐ。
     左に余白を足す分だけ幅の上限も下げて右へはみ出さないようにする。
     余白が足りている広い画面では従来どおり中央寄せ（計算値が244pxを上回る） */
}
@media screen and (min-width: 1181px) {
  .bizd-body__inner {
    width: min(92%, 1400px, 100% - 244px - 24px);
    margin-left: max((100% - min(92%, 1400px)) / 2, 244px);
    margin-right: auto;
  }
}
.bizd-body__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 160px);
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  .bizd-body__inner {
    width: 100%;
    gap: clamp(34px, 4vw, 80px);
  }
}

/* 見出し（EN eyebrow + JP） */
.bizd-h2__en {
  display: block;
  font-family: "Koulen", sans-serif;
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  /* 縁取り文字（塗りなし・輪郭のみ）。SVG不要＝-webkit-text-stroke で実現 */
  color: transparent;
  -webkit-text-stroke: 1px #001a51;
}
.bizd-h2__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  line-height: 1.6;
  color: #0068b7;
}
@media only screen and (max-width: 767px) {
  .bizd-h2__jp {
    font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  }
}
.bizd-h2__jp.is-lead::first-letter {
  font-size: 1.4em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .bizd-h2__jp.is-lead::first-letter {
    font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  }
}

.bizd-block__main {
  min-width: 0;
}

.bizd-block__subline {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid #001a51;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}

.bizd-item__bullets {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0;
}
.bizd-item__bullets li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}

/* コンテンツブロック（intro / 強み 等） */
.bizd-block__body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bizd-block__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .bizd-block__body p {
    font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  }
}
.bizd-block__body .note {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
.bizd-block__images {
  display: flex;
  gap: clamp(16px, 2.4vw, 40px);
}
@media only screen and (max-width: 767px) {
  .bizd-block__images {
    margin-top: 0;
  }
}
.bizd-block__images .bizd-figure {
  flex: 1 1 0;
  min-width: 0; /* flexアイテムが縮めるように＝幅はみ出し防止 */
  height: clamp(220px, 30vw, 450px);
}
.bizd-block__images.is-single .bizd-figure {
  height: clamp(240px, 32vw, 450px);
}
.bizd-block__images.is-quad {
  flex-wrap: wrap;
}
.bizd-block__images.is-quad .bizd-figure {
  flex: 1 1 calc(50% - clamp(8px, 1.2vw, 20px));
  height: clamp(200px, 24vw, 400px);
}
@media only screen and (max-width: 767px) {
  .bizd-block__images {
    flex-direction: column;
  }
  .bizd-block__images .bizd-figure {
    flex: none;
    width: 100%;
  }
  .bizd-block__images {
    /* is-quad は 2×2 → SPでは1列縦積み（is-quad の詳細度に勝つよう同セレクタで上書き） */
  }
  .bizd-block__images.is-quad .bizd-figure {
    flex: none;
    width: 100%;
    height: clamp(180px, 52vw, 260px);
  }
}
.bizd-block {
  /* intro: 左に縦長画像。hero セクションに少しかぶせて上に配置（デザイン準拠） */
}
.bizd-block.is-intro {
  display: grid;
  grid-template-columns: clamp(300px, 40%, 500px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media print, screen and (max-width: 1180px) {
  .bizd-block.is-intro {
    grid-template-columns: 1fr;
  }
}
.bizd-block.is-intro .bizd-block__main {
  order: 2;
}
@media print, screen and (max-width: 1180px) {
  .bizd-block.is-intro .bizd-block__main {
    order: 1;
  }
}
.bizd-block.is-intro .bizd-block__aside {
  order: 1;
  position: relative;
  z-index: 3;
  /* hero にかぶせて上に引き上げる（和名が隠れない程度） */
  margin-top: clamp(-230px, -16vw, -110px);
}
@media print, screen and (max-width: 1180px) {
  .bizd-block.is-intro .bizd-block__aside {
    order: 2;
    margin-top: 0;
  }
}
.bizd-block.is-intro {
  /* SP（Figma準拠）：小さいサムネイル画像＋見出しを横並び → 本文（全幅）→ 画像2枚（下の __images が縦積み）。
     __main を display:contents で潰し、サムネイル/見出し/本文をグリッドに直接配置 */
}
@media only screen and (max-width: 767px) {
  .bizd-block.is-intro {
    display: grid;
    /* サムネイルは内容幅に対して 74/325 の割合 */
    grid-template-columns: 22.7692307692% 1fr;
    column-gap: 16px;
    row-gap: 16px;
    align-items: start;
  }
  .bizd-block.is-intro .bizd-block__main {
    display: contents;
  }
  .bizd-block.is-intro .bizd-h2 {
    grid-column: 2;
    grid-row: 1;
  }
  .bizd-block.is-intro .bizd-block__body {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 0;
  }
  .bizd-block.is-intro .bizd-block__aside {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }
  .bizd-block.is-intro .bizd-block__aside .bizd-figure {
    width: 100%;
    height: auto;
    /* 画像の縦横比：横74 : 縦120（縦長） */
    aspect-ratio: 74/120;
  }
}
.bizd-block__aside .bizd-figure {
  height: clamp(360px, 44vw, 660px);
}
.bizd-block {
  /* 強み（Figma準拠）：H2は全幅、その下に「左：見出し＋本文／右：画像（等幅・フル高さ）」の2カラム。
     タブレット以下は縦積み */
}
.bizd-block.is-figrow .bizd-block__cols {
  margin-top: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}
@media print, screen and (max-width: 1180px) {
  .bizd-block.is-figrow .bizd-block__cols {
    grid-template-columns: 1fr;
  }
}
.bizd-block.is-figrow .bizd-block__main {
  display: flex;
  flex-direction: column;
}
.bizd-block.is-figrow {
  /* 見出しはカラム先頭。枠線は左カラム幅いっぱいに */
}
.bizd-block.is-figrow .bizd-block__subline {
  display: block;
  width: 100%;
  margin-top: 0;
}
.bizd-block.is-figrow {
  /* 右画像は左カラム(見出し＋本文)の高さいっぱいに伸ばす。
     本文が短いページ(金属めっき等)でもFigmaの約400pxを確保するため min-height を確保 */
}
.bizd-block.is-figrow .bizd-block__aside .bizd-figure {
  height: 100%;
  min-height: clamp(340px, 28vw, 440px);
}
@media print, screen and (max-width: 1180px) {
  .bizd-block.is-figrow .bizd-block__aside .bizd-figure {
    height: clamp(240px, 44vw, 380px);
    min-height: 0;
  }
}
.bizd-block.is-figrow {
  /* SP：Figma(21-3639)では強みセクションに右側画像は無く、見出し＋本文→強み画像の縦積みのみ */
}
@media only screen and (max-width: 767px) {
  .bizd-block.is-figrow .bizd-block__aside {
    display: none;
  }
}

/* 本文＋画像のセットを縦に複数並べる（PHP: 'sets' => [ ['body'=>[..],'images'=>[..]], ... ]）。
   各セットの間隔を確保し、セット先頭の本文は上マージンを打ち消す */
@media only screen and (max-width: 767px) {
  .bizd-block__set {
    margin-top: 0;
  }
}
.bizd-block__set .bizd-block__body {
  margin-top: 0;
}

/* 画像下キャプション（sets の cap） */
.bizd-block__cap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bizd-block__cap p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6;
  color: #000;
}
.bizd-block__cap .note {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  color: #555;
}

/* 画像の共通枠：角丸＋影＋クリップ（内側 img がズームしても枠外に出ない） */
.bizd-figure {
  margin: 0;
  border-radius: 8px;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.15));
}
.bizd-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== スクロール表示アニメ（対応一覧より前のコンテンツセクション）=====
   文字：下からふわっとフェードイン／画像：ズームアウト＋フェードイン。
   common.js が .js-anim → .is-show を付与（画面内で発火） */
.js-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-zoom {
  opacity: 0;
  overflow: hidden; /* ズームを枠内でクリップ＝幅からはみ出さない */
  transition: opacity 0.9s ease;
}
.js-zoom img {
  transform: scale(1.18);
  transition: transform 0.9s ease;
}
.js-zoom.is-show {
  opacity: 1;
}
.js-zoom.is-show img {
  transform: scale(1);
}

/* 同ブロック内は 見出し→補足→本文 の順に軽くスタガー */
.bizd-block__subline.js-fadeup {
  transition-delay: 0.08s;
}

.bizd-block__body.js-fadeup {
  transition-delay: 0.16s;
}

/* ---------- 対応一覧（リスト型） ---------- */
.bizd-listhead {
  scroll-margin-top: calc(var(--header-height, 90px) + 40px); /* サイドナビ「対応一覧」→#list 遷移時にヘッダーで隠れない位置へ */
  text-align: center;
}
.bizd-listhead__en {
  display: block;
  /* Figma書き出しSVG（塗りpath[fill-opacity]＋輪郭path[stroke-opacity]の透かし仕様）
     common.js が .line-tit path に --len を付与。輪郭を描画 → 中を塗る */
}
.bizd-listhead__en svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: clamp(60px, 13vw, 158px);
  overflow: visible;
}
.bizd-listhead__en {
  /* 輪郭パス：初期は未描画（stroke色=SVGの black0.2 を維持、塗りはしない） */
}
.bizd-listhead__en .line-tit path[stroke-opacity] {
  fill: none;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.bizd-listhead__en {
  /* 塗りパス：初期は非表示（fill=white のまま fill-opacity を 0→0.3） */
}
.bizd-listhead__en .line-tit path[fill-opacity] {
  fill-opacity: 0;
}
.bizd-listhead__en {
  /* テキストfallback（SVG未提供）：Koulen透かし＋下からフェードイン */
}
.bizd-listhead__en--text {
  font-family: "Koulen", sans-serif;
  font-size: clamp(3.5rem, 1.4824029126rem + 8.6084142395vw, 11.8125rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(127, 142, 174, 0.28);
  text-shadow: 5px 5px 10px rgba(127, 142, 174, 0.25);
  word-break: break-word;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.bizd-listhead__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  color: #000;
  margin-top: -0.4em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.bizd-listhead {
  /* 表示アニメ（common.js が .js-anim → .is-show を付与）
     hero の common02 と同じ協調モーション：輪郭は2s通して描画、塗りは40%以降でなめらかにイーズイン */
}
.bizd-listhead.is-show .line-tit path[stroke-opacity] {
  animation: bizdLhDraw 2s ease forwards;
}
.bizd-listhead.is-show .line-tit path[fill-opacity] {
  animation: bizdLhFill 2s ease forwards;
}
.bizd-listhead.is-show .bizd-listhead__en--text {
  opacity: 1;
  transform: none;
}
.bizd-listhead.is-show .bizd-listhead__jp {
  opacity: 1;
  transform: none;
  transition-delay: 1.6s; /* 英字（描画→塗り）の後に */
}

/* listhead英字SVG：hero と同じ動き（輪郭を全体で描画、塗りは40%以降でなめらかに0.3へ） */
@keyframes bizdLhDraw {
  from {
    stroke-dashoffset: var(--len);
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bizdLhFill {
  0%, 40% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 0.3;
  }
}
.bizd-list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
}

.bizd-item {
  scroll-margin-top: calc(var(--header-height, 90px) + 24px); /* grid からのアンカー遷移でヘッダー下にぴったり */
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media print, screen and (max-width: 1180px) {
  .bizd-item {
    grid-template-columns: 1fr;
  }
}
.bizd-item {
  /* スマホ：ttl → img → body の順に並べ替え（PCは現状維持）。
     __txt を display:contents で潰し、ttl/img/body を .bizd-item の直接の子として order 制御 */
}
@media only screen and (max-width: 767px) {
  .bizd-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bizd-item .bizd-item__txt {
    display: contents;
  }
  .bizd-item .bizd-item__ttl {
    order: 1;
  }
  .bizd-item .bizd-item__img {
    order: 2;
  }
  .bizd-item .bizd-item__body {
    order: 3;
    margin-top: 0;
  }
}
.bizd-item__img img {
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.15));
}
@media only screen and (max-width: 767px) {
  .bizd-item__img img {
    height: unset;
  }
}
.bizd-item__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 16px 0;
  border-top: 6px solid #a5a9b5;
  border-bottom: 6px solid #a5a9b5;
}
.bizd-item__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.2839805825rem + 0.3883495146vw, 1.75rem);
  color: #001a51;
}
.bizd-item__en {
  font-family: "Koulen", sans-serif;
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.bizd-item__body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bizd-item__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}
.bizd-item__body p.note {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .bizd-item__body p {
    font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  }
}

/* ---------- 対応一覧（グリッド型：その他表面処理加工） ---------- */
.bizd-grid {
  background-image: url(../img/business/detail/common/bizd-grid-bg.jpg);
  background-size: cover;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
}
.bizd-grid__card {
  display: flex;
  flex-direction: column;
  width: 270px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.bizd-grid {
  /* サムネイル：普段は暗転なし。グリッド内にマウスがある間だけ #6D7FAC(0.5) で暗転し、
     乗っているカードだけ暗転を解除する */
}
.bizd-grid__thumb {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.bizd-grid__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(109, 127, 172, 0.5); /* #6D7FAC @ 0.5 */
  opacity: 0; /* 通常時：暗転なし */
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.bizd-grid__img {
  display: block;
  width: 100%;
  height: unset;
  object-fit: cover;
  border-radius: 6px;
  filter: drop-shadow(6px 6px 10px rgba(0, 0, 0, 0.25));
}
@media only screen and (max-width: 767px) {
  .bizd-grid__img {
    height: unset;
  }
}
.bizd-grid {
  /* .bizd-grid 内にマウスがある間は、全サムネイルを暗転 */
}
.bizd-grid:hover .bizd-grid__thumb::after {
  opacity: 1;
}
.bizd-grid {
  /* マウスが乗ったカードだけ暗転を解除（同じ詳細度なので後に書いて勝たせる） */
}
.bizd-grid__card:hover .bizd-grid__thumb::after {
  opacity: 0;
}
.bizd-grid {
  /* ラベル：カードの残り高さいっぱいに広げ、テキストを中央寄せ
     → 同じ行で 1行/2行ラベルが混在しても白ボックスの高さが揃う（隙間の崩れ防止） */
}
.bizd-grid__label {
  flex: 1 1 auto;
  margin-top: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.4;
  color: #4c5a62;
}

/* 04 その他表面処理加工：グリッドを PC で3列固定（tb:2列 / sp:1列） */
.p-biz-detail--other_treatments .bizd-grid,
.p-biz-detail--surface-treatment .bizd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: initial;
}
.p-biz-detail--other_treatments .bizd-grid .bizd-grid__card,
.p-biz-detail--surface-treatment .bizd-grid .bizd-grid__card {
  width: auto;
}
@media print, screen and (max-width: 1180px) {
  .p-biz-detail--other_treatments .bizd-grid,
  .p-biz-detail--surface-treatment .bizd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- スマホ：グリッドを横スライダー化 ----------
   PCの並びは維持したまま、画面幅を超えたら横スクロール。
   カードは2行に配置してカラム送り（◁▷ボタンは JS でスクロール量を制御） */
.bizd-grid-slider {
  position: relative;
  /* 矢印は sp でスクロール可能な時のみ JS が hidden を外して表示 */
}
.bizd-grid-slider__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  background-color: unset;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.bizd-grid-slider__arrow svg {
  width: 50px;
  height: auto;
  display: block;
}
.bizd-grid-slider__arrow[hidden] {
  display: none !important;
}
.bizd-grid-slider__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.bizd-grid-slider__arrow--prev {
  left: 4px;
}
.bizd-grid-slider__arrow--next {
  right: 4px;
}
@media only screen and (max-width: 767px) {
  .bizd-grid-slider {
    /* スライダー自体を画面幅いっぱいに（.bizd-body__inner の左右パディングを打ち消す full-bleed） */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* JS が hidden を外したら flex で表示 */
  }
  .bizd-grid-slider__arrow:not([hidden]) {
    display: flex;
  }
}

/* sp：両グリッド（flex版 / grid版）とも「3列×4行」の並び(行方向・読み順)を維持したまま、
   3列が画面幅を超える分だけ横スクロール。◁▷ で1列ずつスライド */
@media only screen and (max-width: 767px) {
  .bizd-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, clamp(135px, 44vw, 230px));
    grid-template-rows: none;
    justify-content: start;
    align-content: start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    /* 初期表示で先頭カードが左端に貼り付かないよう左に余白（prev矢印分）。
       scroll-padding で snap 時もこの余白を保つ */
    padding-left: clamp(28px, 8vw, 38px);
    padding-right: clamp(16px, 5vw, 28px);
    scroll-padding-left: clamp(58px, 16vw, 68px);
  }
  .bizd-grid::-webkit-scrollbar {
    display: none;
  }
  .bizd-grid__card {
    width: auto;
    scroll-snap-align: start;
  }
  .bizd-grid__label {
    padding: 0;
  }
  /* surface-treatment の grid 指定を上書き（同詳細度＝後勝ち） */
  .p-biz-detail--other_treatments .bizd-grid,
  .p-biz-detail--surface-treatment .bizd-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, clamp(135px, 44vw, 230px));
    grid-template-rows: none;
  }
}
.bizd-note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}

/* ---------- 左サイドナビ（対応一覧アンカー） ---------- */
/* 左サイドナビ：.bizd-body 内に絶対配置し、中の inner を sticky に
   → hero直後（body先頭）から section内（body末尾）だけ左に固定表示 */
.bizd-sidenav {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 40;
  pointer-events: none;
}
.bizd-sidenav__inner {
  position: sticky;
  top: 100px;
  pointer-events: auto;
  width: max-content;
  max-width: 204px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
}
.bizd-sidenav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bizd-sidenav li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(109, 127, 172, 0.35);
}
.bizd-sidenav li:last-child {
  border-bottom: 0;
}
.bizd-sidenav {
  /* 番号＋タイトル（→各ページトップ）：独立ホバー */
}
.bizd-sidenav__main {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: #6d7fac;
  transition: color 0.3s ease;
}
.bizd-sidenav__main:hover {
  color: #0068b7;
}
.bizd-sidenav {
  /* 番号：先頭に「・」装飾。タイトルが改行しても上詰めで固定 */
}
.bizd-sidenav__no {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Koulen", sans-serif;
  font-size: 22px;
  line-height: 1.5;
}
.bizd-sidenav__no::before {
  content: "・";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  vertical-align: 3px;
  margin-right: 1px;
}
.bizd-sidenav {
  /* タイトル：幅が足りなければ改行 */
}
.bizd-sidenav__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  word-break: break-word;
}
.bizd-sidenav {
  /* 対応一覧（→ #list）：先頭に「-」装飾＋ぶら下げインデント（改行しても揃う） */
}
.bizd-sidenav__sub {
  position: relative;
  display: block;
  margin-top: 8px;
  padding-left: 1.6em;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #6d7fac;
  transition: color 0.3s ease;
}
.bizd-sidenav__sub::before {
  content: "-";
  position: absolute;
  left: 0.5em;
  top: 0;
}
.bizd-sidenav__sub:hover {
  color: #00579e;
}
.bizd-sidenav li.is-current .bizd-sidenav__main {
  color: #0068b7;
}

/* ---------- タブレット以下：左固定 → メインエリア上部の横並びメニュー ---------- */
/* .bizd-sidenav は .bizd-body__inner の直前にあるので、静的配置にすれば本文の上に並ぶ。
   番号・対応一覧(サブ)は隠し、ページ名のみを横並び。現在ページは枠で囲う */
@media print, screen and (max-width: 1180px) {
  .bizd-sidenav {
    position: static;
    height: auto;
    z-index: auto;
    pointer-events: auto;
    width: min(92%, 1400px);
    margin: 0 auto clamp(20px, 4vw, 32px);
  }
  .bizd-sidenav__inner {
    position: static;
    width: auto;
    max-width: none;
    background: transparent;
    padding: 0;
  }
  .bizd-sidenav ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px 2px;
  }
  .bizd-sidenav li {
    padding: 0;
    border-bottom: 0;
  }
  /* 番号・対応一覧リンクは非表示（ページ名メニューのみ） */
  .bizd-sidenav__no,
  .bizd-sidenav__sub {
    display: none;
  }
  .bizd-sidenav__main {
    display: inline-flex;
    align-items: center;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
  }
  .bizd-sidenav__ttl {
    font-size: 15px;
    line-height: 1.4;
    word-break: normal;
  }
  /* 現在ページ：枠で囲んでネイビー */
  .bizd-sidenav li.is-current .bizd-sidenav__main {
    border-color: #a9b2c9;
    color: #001a51;
    font-weight: 700;
  }
}
/* ============================================================
   下層ページ共通（about構造準拠）
   ・ヒーロー：Jockey One 英字＋和名（濃紺 on 明背景）＋波形＋任意サイド画像
   ・セクション見出し：Koulen 透かし英字＋青ラベルバー＋サブ見出し
   ・下部は parts-sample(banner_naturia)／page-cta／footer を流用
============================================================ */
/* ---------- ヒーロー ---------- */
.tb-show {
  display: none;
}
@media print, screen and (max-width: 1180px) {
  .tb-show {
    display: block;
  }
}

@media print, screen and (max-width: 1180px) {
  .tb-hidden {
    display: none;
  }
}

.spg-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 549px;
}
@media print, screen and (max-width: 1180px) {
  .spg-hero {
    aspect-ratio: 1920/749;
    height: unset;
  }
}
@media only screen and (max-width: 767px) {
  .spg-hero {
    aspect-ratio: 2/1;
    height: unset;
  }
}
.spg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, #eef4fc 0%, #dfeaf8 50%, #e8eef8 100%);
}
.spg-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  object-position: right;
}
.spg-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.spg-hero__wave {
  position: absolute;
  left: 50%;
  top: -20%;
  width: 120%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}
.spg-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  width: min(90%, 1280px);
  min-height: 380px;
  height: 100%;
  align-items: flex-end;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 0;
}
@media print, screen and (max-width: 1180px) {
  .spg-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 0;
  }
}
@media only screen and (max-width: 767px) {
  .spg-hero__inner {
    padding-bottom: clamp(16px, 3vw, 40px);
  }
}
.spg-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.spg-hero__en {
  font-family: "Jockey One", sans-serif;
  font-size: clamp(3.5rem, 1.9223300971rem + 6.7313915858vw, 10rem);
  line-height: 1;
  color: #001a51;
  text-transform: uppercase;
  max-width: 100%;
  word-break: break-word;
}
@media print, screen and (max-width: 1180px) {
  .spg-hero__en {
    width: 80%;
  }
}
.spg-hero__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 1.4;
  color: #001a51;
  margin-top: 8px;
}
.spg-hero__side {
  flex-shrink: 0;
  width: clamp(280px, 34%, 590px);
  margin: 0;
}
.spg-hero__side img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media print, screen and (max-width: 1180px) {
  .spg-hero__side {
    width: min(80%, 520px);
  }
}
.spg-hero__intro {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}
.spg-hero {
  /* SDGs：波形なし・写真濃いめ・英字はネイビーグラデ */
}
.spg-hero--sdgs .spg-hero__bg {
  background: none;
}
.spg-hero--sdgs .spg-hero__en {
  background: linear-gradient(90deg, #001a51 0%, #00579e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 本文ラッパー ---------- */
.spg-main {
  padding: clamp(64px, 9vw, 160px) 0 clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vw, 160px);
  overflow: hidden;
}

.spg-inner {
  width: min(92%, 1328px);
  margin: 0 auto;
}

/* ---------- セクション見出しトリプレット ---------- */
.spg-ttl {
  margin-bottom: clamp(32px, 4vw, 56px);
  text-align: center;
}
.spg-ttl__en {
  display: block;
  font-family: "Koulen", sans-serif;
  font-size: clamp(3.5rem, 1.4824029126rem + 8.6084142395vw, 11.8125rem);
  line-height: 1;
  text-transform: uppercase;
  color: rgba(127, 142, 174, 0.3);
  text-shadow: 5px 5px 10px rgba(127, 142, 174, 0.28);
  word-break: break-word;
}
.spg-ttl__label {
  display: inline-block;
  background: #001a51;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.3;
  padding: 6px 24px;
  margin-top: -0.25em;
  width: 100%;
}
.spg-ttl__label.is-blue {
  background: #00579e;
}
.spg-ttl__label.is-full {
  display: block;
}
.spg-ttl__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1.6;
  color: #000;
  margin-top: 20px;
}

/* サブ見出し（小：Koulen eyebrow ＋ 青JP。生産設備の強み 等） */
.spg-subttl {
  margin-bottom: 24px;
}
.spg-subttl__en {
  display: block;
  font-family: "Koulen", sans-serif;
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(127, 142, 174, 0.5);
  line-height: 1.3;
}
.spg-subttl__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1.6;
  color: #0068b7;
}

/* 共通本文テキスト */
.spg-text {
  display: flex;
  flex-direction: column;
}
.spg-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.6;
  color: #000;
}
.spg-text .note {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}

/* 選ばれる理由（page-advantages）専用 */
/* hero英字SVGのサイズ（Jockeyテキスト相当の高さで表示） */
/* hero 表示アニメを他ページ(.page-tit)と統一：
   bg=ズームアウト＋フェードイン / en=輪郭を描いて#001A51で塗り(fv) / jp=左からワイプ。
   セクションの .js-anim → .is-show を common.js が付与。sdgs等に影響しないよう --adv でスコープ */
@media print, screen and (max-width: 1180px) {
  .spg-hero--adv {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .spg-hero--adv {
    height: unset;
    aspect-ratio: 200/120;
  }
}
.spg-hero--adv .tit-en svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(48px, 10vw, 142px);
  overflow: visible;
}
.spg-hero--adv .fv-bg::before {
  background-image: url(../img/advantages/hero-bg.png);
  background-position: right;
}
@media print, screen and (max-width: 1300px) {
  .spg-hero--adv .fv-bg::before {
    background-image: url(../img/advantages/hero-bg_sp.png);
  }
}
@media print, screen and (max-width: 1180px) {
  .spg-hero--adv .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 5%;
  }
}

/* セクション見出し（About Us / Chosen）：about の .tit-en と同じ表示アニメーション。
   en＝SVG(.line-tit)を輪郭描画→塗り0.3、label＝1.2s遅れでフェードアップ＋左からワイプ。
   共通の .spg-ttl__en テキストは触らず、.spg-ttl--svg 配下だけSVGとして扱う */
.spg-ttl--svg .spg-ttl__en {
  display: block;
}
.spg-ttl--svg .spg-ttl__en svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: clamp(56px, 11vw, 158px);
  overflow: visible;
}
.spg-ttl--svg .spg-ttl__en {
  /* 輪郭path[stroke-opacity]を描画、塗りpath[fill-opacity]を0→0.3 */
}
.spg-ttl--svg .spg-ttl__en .line-tit path[stroke-opacity] {
  fill: none;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.spg-ttl--svg .spg-ttl__en .line-tit path[fill-opacity] {
  fill-opacity: 0;
}
.spg-ttl--svg {
  /* label：下からのフェードは無し。背景の帯が左から伸びる → 文字が左から表示。
     帯＝::before(scaleX)、文字＝内側spanをクリップワイプ。en描画の後(1.2s〜)に発火 */
}
.spg-ttl--svg .spg-ttl__label {
  position: relative;
  overflow: hidden;
  background: transparent; /* 帯は ::before で描く */
}
.spg-ttl--svg .spg-ttl__label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #001a51;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease 1.2s;
}
.spg-ttl--svg .spg-ttl__label-in {
  position: relative;
  z-index: 1;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease 1.7s; /* 帯が伸びた後に文字を左から */
}
.spg-ttl--svg {
  /* sub（白金鍍金はこんなところ 等）：labelの後に軽くフェードアップ */
}
.spg-ttl--svg .spg-ttl__sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 1.9s, transform 0.6s ease 1.9s;
}
.spg-ttl--svg {
  /* keyframes は _business-detail.scss の bizdLhDraw / bizdLhFill を流用 */
}
.spg-ttl--svg.is-show .line-tit path[stroke-opacity] {
  animation: bizdLhDraw 2s ease forwards;
}
.spg-ttl--svg.is-show .line-tit path[fill-opacity] {
  animation: bizdLhFill 2s ease forwards;
}
.spg-ttl--svg.is-show .spg-ttl__label::before {
  transform: scaleX(1);
}
.spg-ttl--svg.is-show .spg-ttl__label-in {
  clip-path: inset(0 0 0 0);
}
.spg-ttl--svg.is-show .spg-ttl__sub {
  opacity: 1;
  transform: translateY(0);
}

.adv-intro {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  align-items: flex-start;
}
@media print, screen and (max-width: 1180px) {
  .adv-intro {
    flex-direction: column;
  }
}
.adv-intro__img {
  flex: 0 0 clamp(280px, 42%, 548px);
  margin: 0;
}
.adv-intro__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.adv-intro__body {
  flex: 1;
  min-width: 0;
}
.adv-intro__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1.6;
  color: #000;
  margin-bottom: 24px;
}

/* 理由カード（6枚・画像左右交互） */
.adv-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 100px);
}

.adv-card {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  /* アンカー(#01〜)遷移時、固定ヘッダー＋番号バッジのはみ出し分だけ手前で止めて隠れないように。
     ※ var(--header-height) は JS で読み込み中に値が変わり、ネイティブのハッシュジャンプ時と
        JSの再スクロール時でオフセットがズレて画面が揺れる。固定値にして両者を一致させる
        （JSは本要素の computed scroll-margin-top を読んで同じ値でスクロールする） */
  scroll-margin-top: 130px;
}
@media only screen and (max-width: 767px) {
  .adv-card {
    scroll-margin-top: 110px;
  }
}
.adv-card--rev {
  flex-direction: row-reverse;
}
@media print, screen and (max-width: 1180px) {
  .adv-card {
    flex-direction: column;
  }
  .adv-card--rev {
    flex-direction: column;
  }
}
.adv-card__media {
  position: relative;
  flex: 0 0 clamp(300px, 48%, 620px);
}
@media print, screen and (max-width: 1180px) {
  .adv-card__media {
    width: 100%;
    flex-basis: auto;
  }
}
.adv-card__img {
  margin: 0;
}
.adv-card__img img {
  width: 100%;
  height: clamp(280px, 38vw, 620px);
  object-fit: cover;
  border-radius: 8px;
}
.adv-card__num {
  position: absolute;
  z-index: 2;
  top: clamp(-24px, -1.5vw, -12px);
  left: clamp(12px, 1.5vw, 24px);
  width: clamp(92px, 9vw, 140px);
  aspect-ratio: 1;
  background: #6d7fac;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.adv-card__num .label {
  /* Koulen は大文字専用フォントなので HTML の大小がそのまま出ない。
     小文字を持つ Oswald にして「Why Us」を原文どおり表示 */
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(0.6875rem, 0.6116504854rem + 0.3236245955vw, 1rem);
  letter-spacing: 0.06em;
}
.adv-card__num .no {
  font-family: "Koulen", sans-serif;
  font-size: clamp(2.75rem, 2.0825242718rem + 2.8478964401vw, 5.5rem);
  line-height: 0.9;
}
.adv-card--rev .adv-card__num {
  left: auto;
  right: clamp(12px, 1.5vw, 24px);
}
.adv-card__body {
  flex: 1;
  min-width: 0;
}
.adv-card__head {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #000;
}
.adv-card__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1.4;
  color: #6d7fac;
}
.adv-card__en {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  letter-spacing: 0.04em;
  color: #b3bcd4;
}

/* ナンバーブロック：2段階で表示。
   ①後ろの背景(::before)がまず左から伸びる → ②表面の背景(::after)＋文字が左から現れる。
   common.js が .js-anim → .is-show を付与。前回より約2倍速く（各0.3s／計0.6s） */
.adv-card__num {
  overflow: hidden; /* 帯・ワイプを角丸内にクリップ */
  background: transparent; /* 表面の背景は ::after に移す */
  /* ① 後ろの背景：左から伸びる（scaleX） */
}
.adv-card__num::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #b3bcd4;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.adv-card__num {
  /* ② 表面の背景：後ろが伸びた後に左からワイプ */
}
.adv-card__num::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #6d7fac;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease 0.3s;
}
.adv-card__num {
  /* 文字：表面と一緒に左から */
}
.adv-card__num .label,
.adv-card__num .no {
  position: relative;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease 0.3s;
}
.adv-card__num.is-show::before {
  transform: scaleX(1);
}
.adv-card__num.is-show::after {
  clip-path: inset(0 0 0 0);
}
.adv-card__num.is-show .label,
.adv-card__num.is-show .no {
  clip-path: inset(0 0 0 0);
}

/* 設備・機器（page-assets）専用 */
/* hero（.page-tit）の背景画像を assets 専用に差し替え（body.assets でスコープ） */
.assets .page-tit .fv-bg::before {
  background-image: url(../img/assets/page-fv.jpg);
}

/* セクション見出し（H：Koulen透かし＋JP＋濃紺バー）※中央揃え */
.eqp-ttl {
  margin-bottom: clamp(32px, 4vw, 56px);
  text-align: center;
}
.eqp-ttl__en {
  display: block;
  /* Figma書き出しSVG（.p-sec-title と同じ .line-tit：輪郭描画→塗り0.3の透かし）。
     common.js が --len を付与、輪郭path[stroke-opacity]を描画→塗りpath[fill-opacity]をイーズイン */
}
.eqp-ttl__en svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: clamp(48px, 10vw, 115px);
  overflow: visible;
}
.eqp-ttl__en .line-tit path[stroke-opacity] {
  fill: none;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.eqp-ttl__en .line-tit path[fill-opacity] {
  fill-opacity: 0;
}
.eqp-ttl__en {
  /* テキストfallback（SVG未提供）：Koulen透かし＋下からフェードイン */
}
.eqp-ttl__en--text {
  font-family: "Koulen", sans-serif;
  font-size: clamp(3rem, 1.9077669903rem + 4.6601941748vw, 7.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: rgba(127, 142, 174, 0.3);
  text-shadow: 5px 5px 10px rgba(127, 142, 174, 0.28);
  word-break: break-word;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.eqp-ttl__jp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  line-height: 1.4;
  color: #000;
  margin-top: -0.15em;
}
.eqp-ttl__bar {
  display: block;
  height: 8px;
  background: #001a51;
  margin-top: 16px;
}
.eqp-ttl {
  /* 表示アニメ（.p-sec-title と同じ動き：輪郭を2s通して描画、塗りは40%以降でなめらかに0.3へ）。
     common.js が .js-anim → .is-show を付与。keyframes は _business-detail.scss の bizdLhDraw/bizdLhFill を流用 */
}
.eqp-ttl.is-show .line-tit path[stroke-opacity] {
  animation: bizdLhDraw 2s ease forwards;
}
.eqp-ttl.is-show .line-tit path[fill-opacity] {
  animation: bizdLhFill 2s ease forwards;
}
.eqp-ttl.is-show .eqp-ttl__en--text {
  opacity: 1;
  transform: none;
}

/* セクション内の縦積み */
.eqp-block {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
  /* Production / Research Capabilities を縁取り文字（塗りなし・輪郭#001A51のみ） */
}
.eqp-block .spg-subttl__en {
  color: transparent;
  -webkit-text-stroke: 1px #001a51;
}

/* イントロ（テキスト全幅 → その下に全幅画像） */
.eqp-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.eqp-intro__body {
  min-width: 0;
}
.eqp-intro__img {
  margin: 0;
}
.eqp-intro__img img {
  width: 100%;
  height: clamp(240px, 30vw, 450px);
  object-fit: cover;
  border-radius: 8px;
}
.eqp-intro--lg .eqp-intro__body p {
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}

/* 研究設備の強み 4枚ギャラリー（2×2） */
.eqp-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
@media only screen and (max-width: 767px) {
  .eqp-gallery {
    grid-template-columns: 1fr;
  }
}
.eqp-gallery img {
  width: 100%;
  height: clamp(200px, 26vw, 420px);
  object-fit: cover;
  border-radius: 8px;
}

/* Lineup（設備一覧テーブル） */
.eqp-lineup__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid #6D7FAC;
}
.eqp-lineup__head .en {
  font-family: "Koulen", sans-serif;
  font-size: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: #0068b7;
}
.eqp-lineup__head .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  color: #000;
}
.eqp-lineup__table {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(24px, 3vw, 48px);
}
.eqp-lineup .row {
  flex: 1 1 clamp(280px, 44%, 627px);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 30px 4px 20px;
  border-bottom: 1px dashed #6d7fac;
  width: calc(50% - clamp(24px, 3vw, 48px) / 2);
}
.eqp-lineup .row .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.5;
  color: #00579e;
}
.eqp-lineup .row .val {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  color: #000;
}

/* 設備写真グリッド */
.eqp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 40px);
}
@media only screen and (max-width: 767px) {
  .eqp-grid {
    grid-template-columns: 1fr;
  }
}
.eqp-grid__img {
  margin: 0;
}
.eqp-grid__img img {
  width: 100%;
  aspect-ratio: 630/414;
  object-fit: cover;
  border-radius: 8px;
}
.eqp-grid__cap {
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.5;
  color: #000;
}

/* フル幅バナー画像：.spg-inner(中央92%)を突き破って画面幅いっぱいに */
.eqp-banner {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.eqp-banner img {
  width: 100%;
  height: clamp(180px, 18vw, 300px);
  object-fit: cover;
  border-radius: 0;
}

/* ---------- 本文レイアウト＋左サイドナビ（PCのみ） ---------- */
/* .eqp-main（=.spg-main）：サイドナビ(絶対配置)の基準。overflow:clip で全幅バナーの
   横はみ出しをクリップしつつ、スクロール枠を作らない＝内部の position:sticky を保つ */
.eqp-main {
  position: relative;
  overflow: clip;
}

/* ページ内アンカー：固定ヘッダーで隠れないよう逃がす */
.eqp-anchor {
  scroll-margin-top: calc(var(--header-height, 90px) + 40px);
}

/* 左サイドナビ：.eqp-main 内だけ左に固定表示（強み／一覧へページ内ジャンプ） */
.eqp-sidenav {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 40;
  pointer-events: none;
}
@media print, screen and (max-width: 1180px) {
  .eqp-sidenav {
    display: none;
  }
}
.eqp-sidenav__inner {
  position: sticky;
  top: 100px;
  pointer-events: auto;
  width: max-content;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 20px;
}
.eqp-sidenav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eqp-sidenav li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(109, 127, 172, 0.5);
}
.eqp-sidenav li:last-child {
  border-bottom: 0;
}
.eqp-sidenav {
  /* 強み（→各強みセクション）：先頭に▼マーカー */
}
.eqp-sidenav__main {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #6d7fac;
  transition: color 0.3s ease;
}
.eqp-sidenav__main::before {
  content: "▼";
  font-size: 12px;
  line-height: 1;
  color: #6d7fac;
  transition: color 0.3s ease;
}
.eqp-sidenav__main:hover {
  color: #00579e;
}
.eqp-sidenav__main:hover::before {
  color: #00579e;
}
.eqp-sidenav {
  /* 一覧（→各設備一覧）：先頭に「-」＋ぶら下げインデント */
}
.eqp-sidenav__sub {
  position: relative;
  display: block;
  margin-top: 8px;
  padding-left: 1.6em;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #6d7fac;
  transition: color 0.3s ease;
}
.eqp-sidenav__sub::before {
  content: "-";
  position: absolute;
  left: 0.5em;
  top: 0;
}
.eqp-sidenav__sub:hover {
  color: #0068b7;
}

/* SDGs（page-sdgs）専用 */
.spg-main {
  background-color: #fff;
}

/* ---------- FV（ヒーロー）：中央寄せ・SDGs青縁取り ---------- */
.spg-hero--sdgs {
  /* Figma(PC 29-6721)：SDGsヒーローは他ヒーロー(560px)より高い 700px。 */
}
@media screen and (min-width: 1181px) {
  .spg-hero--sdgs {
    height: 700px;
  }
}
.spg-hero--sdgs {
  /* タブレット(768〜1180px)：基本の aspect-ratio(1920/749) だと高さが小さくなりすぎるため無効化し、
     固定高さで維持（PCの700pxからなだらかに縮小）。※sp は下部の content-fit を使う */
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .spg-hero--sdgs {
    aspect-ratio: auto;
    height: clamp(480px, 58vw, 680px);
  }
}
.spg-hero--sdgs {
  /* 背景写真をしっかり見せ、左側を白めにするグラデ */
}
.spg-hero--sdgs .spg-hero__bg img {
  opacity: 0.9;
}
.spg-hero--sdgs .spg-hero__inner {
  justify-content: center;
  align-items: center;
  /* Figma：写真領域を高くとってゆったり中央配置 */
  min-height: clamp(420px, 40vw, 620px);
  background: rgba(255, 255, 255, 0.7);
  padding-top: 76px;
  max-width: 800px;
}
.spg-hero--sdgs .spg-hero__titles {
  align-items: center;
  text-align: center;
}
.spg-hero--sdgs {
  /* SDGs：大小混在の青縁取り文字（塗りなし＝写真が透ける）。Figma 200px */
}
.spg-hero--sdgs .spg-hero__en {
  font-family: "Jockey One", sans-serif;
  font-size: clamp(5.5rem, 3.8009708738rem + 7.2491909385vw, 12.5rem);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0.01em;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 4px #00579e;
}
@media only screen and (max-width: 767px) {
  .spg-hero--sdgs .spg-hero__en {
    -webkit-text-stroke-width: 2.5px;
  }
}
.spg-hero--sdgs {
  /* サブ見出しはSDGsの直下に（Figma：h2内は詰めて配置） */
}
.spg-hero--sdgs .spg-hero__jp {
  margin-top: 4px;
}
.spg-hero--sdgs {
  /* タイトル群と宣言文の間は 40px（Figma gap-40） */
}
.spg-hero--sdgs .spg-hero__intro {
  margin-top: 40px;
  text-align: center;
}
.spg-hero--sdgs {
  /* ===== モバイル（添付デザイン）：背景写真＋中央にSDGsタイトル・宣言文。高さは内容依存 ===== */
}
@media only screen and (max-width: 767px) {
  .spg-hero--sdgs {
    /* aspect-ratio を無効化して内容にフィット（余分な高さ・縮みを出さない） */
    aspect-ratio: auto;
    height: auto;
  }
  .spg-hero--sdgs .spg-hero__inner {
    min-height: 0;
    /* height:100%(基本) は高さautoのheroと循環しビューポート高になるため content-fit に */
    height: auto;
    width: 100%;
    padding: 130px 20px 40px;
  }
  .spg-hero--sdgs .spg-hero__intro {
    margin-top: 24px;
    text-align: left;
  }
}

/* ---------- アンカーナビ（FV下部に重ねる丸アイコン付きpill） ---------- */
.sdgs-nav {
  position: absolute; /* 流れの中に置く（absoluteだと下の見出しに重なる） */
  z-index: 5;
  width: 100vw;
  margin: clamp(-56px, -3.5vw, -36px) auto clamp(32px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  /* モバイル：FVに重ねず下に。2個ずつの横並び（2×2） */
}
@media only screen and (max-width: 767px) {
  .sdgs-nav {
    width: min(94%, 1080px);
    position: relative;
    padding: 20px 0 0;
    margin: 0;
    width: 100%;
    gap: 12px;
    background-color: #fff;
  }
}
.sdgs-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px 8px 8px;
  background: rgba(179, 188, 212, 0.85);
  border-radius: 100px;
  color: #6D7FAC;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border: 3px solid #6D7FAC;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, color 0.3s ease;
  /* モバイルは2個/行（2×2）に収まるよう詰める */
}
@media only screen and (max-width: 767px) {
  .sdgs-nav__btn {
    gap: 6px;
    padding: 5px 14px 5px 5px;
    font-size: 15px;
    border-width: 2px;
  }
  .sdgs-nav__btn::before {
    width: 30px;
  }
}
.sdgs-nav__btn {
  /* 左：丸い下矢印アイコン */
}
.sdgs-nav__btn::before {
  content: url(../img/common/arrow_s.svg);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3vw, 46px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #001a51;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
  transition: transform 0.3s ease;
}
.sdgs-nav__btn:hover {
  background: #001a51;
  color: #fff;
}
.sdgs-nav__btn:hover::before {
  transform: translateY(2px);
}

/* ---------- C0 見出し（SDGsの達成に向けた取組み） ---------- */
.sdgs-lead {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 1180px) {
  .sdgs-lead {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sdgs-lead__ttl {
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 1.8252427184rem + 1.8122977346vw, 4rem);
  line-height: 1.5;
  color: #b3bcd4;
  text-transform: uppercase;
  width: fit-content;
}
.sdgs-lead__ttl span {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 6px;
}
.sdgs-lead__img {
  flex: 0 0 clamp(280px, 42%, 600px);
  margin: 0;
}
.sdgs-lead__img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  opacity: 0.85;
}

/* ---------- 取組みブロック（01〜04） ---------- */
.sdgs-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 120px);
}

.sdgs-block {
  scroll-margin-top: 90px;
}
.sdgs-block__head {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.sdgs-block__no {
  display: block;
  /* SVG番号（.line-tit：輪郭を描画→塗り0.3の透かし）。common.js が --len を付与 */
}
.sdgs-block__no svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: clamp(80px, 12vw, 180px);
  overflow: visible;
}
.sdgs-block__no .line-tit path[stroke-opacity] {
  fill: none;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.sdgs-block__no .line-tit path[fill-opacity] {
  fill-opacity: 0;
}
.sdgs-block__no {
  /* テキストfallback（SVG未配置時） */
}
.sdgs-block__no--text {
  font-family: "Koulen", sans-serif;
  font-size: clamp(5rem, 3.3464805825rem + 7.0550161812vw, 11.8125rem);
  line-height: 1;
  color: rgba(127, 142, 174, 0.3);
  text-shadow: 5px 5px 10px rgba(127, 142, 174, 0.28);
}
.sdgs-block__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  line-height: 1.4;
  color: #001a51;
  margin-top: -0.3em;
  /* 下からフェードイン（番号の描画に続いて表示） */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.sdgs-block {
  /* 表示アニメ：番号の輪郭を2sで描画→塗り0.3へ（keyframes は _business-detail.scss を流用）。
     common.js が article(.js-anim) に .is-show を付与 */
}
.sdgs-block.is-show .sdgs-block__no .line-tit path[stroke-opacity] {
  animation: bizdLhDraw 2s ease forwards;
}
.sdgs-block.is-show .sdgs-block__no .line-tit path[fill-opacity] {
  animation: bizdLhFill 2s ease forwards;
}
.sdgs-block.is-show .sdgs-block__ttl {
  opacity: 1;
  transform: translateY(0);
}

/* SDGアイコングリッド（点線上下） */
.sdgs-goals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 20px);
  padding: clamp(16px, 2vw, 20px) 0;
  border-top: 2px dashed #001a51;
  border-bottom: 2px dashed #001a51;
}
.sdgs-goals img {
  width: clamp(86px, 10vw, 120px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 4px;
}

/* 写真＋テキスト行（左右交互） */
.sdgs-row {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  align-items: flex-start;
  margin-top: clamp(32px, 4vw, 56px);
}
.sdgs-row--rev {
  flex-direction: row-reverse;
}
@media print, screen and (max-width: 1180px) {
  .sdgs-row {
    flex-direction: column;
  }
  .sdgs-row--rev {
    flex-direction: column;
  }
}
.sdgs-row__img {
  flex: 0 0 clamp(170px, 30%, 350px);
  margin: 0;
}
@media print, screen and (max-width: 1180px) {
  .sdgs-row__img {
    width: 100%;
  }
}
.sdgs-row__img img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(24px, 4vw, 80px);
}
@media print, screen and (max-width: 1180px) {
  .sdgs-row__img img {
    aspect-ratio: 4/3;
    width: 100%;
  }
}
.sdgs-row__text {
  flex: 1;
  min-width: 0;
}
@media print, screen and (max-width: 1180px) {
  .sdgs-row__text {
    width: 100%;
  }
}
.sdgs-row__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 2;
  color: #000;
}

/* 具体的な取組みボックス */
.sdgs-torikumi {
  margin-top: 24px;
  border: 1px solid #00a0e9;
  border-radius: 4px;
  padding: clamp(20px, 2.5vw, 32px);
}
.sdgs-torikumi__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #00a0e9;
  border-radius: 100px;
  padding: 6px 20px;
  color: #00a0e9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.3;
}
.sdgs-torikumi__pill::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.sdgs-torikumi__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(24px, 3vw, 48px);
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .sdgs-torikumi__lists {
    grid-template-columns: 1fr;
  }
}
.sdgs-torikumi__lists ul {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0;
}
.sdgs-torikumi__lists li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.8;
  color: #000;
}

/* ---------- CSR 宣言 ---------- */
.sdgs-csr {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 120px) 0;
}
.sdgs-csr__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.sdgs-csr__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sdgs-csr__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}
.sdgs-csr__inner {
  width: min(90%, 1000px);
  margin: 0 auto;
}
.sdgs-csr__body {
  font-family: "Yuji Syuku", serif;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 2;
  color: #000;
}
.sdgs-csr__sign {
  text-align: right;
  margin-top: 32px;
}
.sdgs-csr__sign .co {
  display: block;
  font-family: "Yuji Syuku", serif;
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  color: #000;
}
.sdgs-csr__sign .name {
  display: block;
  font-family: "Yuji Syuku", serif;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  margin-top: 8px;
}

/* テクノロジー（page-technologies）専用の subpage.css 側スタイル
   ※本文レイアウト(.p-tech-*)は technologies.css。ここは共通ヒーロー(.page-tit)の上書きのみ */
/* hero（.page-tit）の背景画像を technologies 専用に差し替え（body.technologies でスコープ） */
.technologies .page-tit .fv-bg::before {
  background-image: url(../img/technologies/hero-bg.png);
}

/* 404 Not Found（404.php） */
.p-404 {
  /* 固定ヘッダーの下に入り込まないよう余白を確保 */
  padding: calc(var(--header-height, 90px) + clamp(48px, 7vw, 120px)) 0 clamp(56px, 8vw, 120px);
  background-color: #fff;
}
.p-404__inner {
  width: min(90%, 900px);
  margin: 0 auto;
  text-align: center;
}
.p-404__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.4466019417rem + 1.2944983819vw, 3rem);
  line-height: 1.3;
  color: #001a51;
}
.p-404__lead {
  margin-top: clamp(16px, 2.4vw, 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.5;
  color: #001a51;
}
.p-404__desc {
  margin-top: clamp(20px, 3vw, 40px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .p-404__desc {
    text-align: left;
  }
}
.p-404__btn {
  margin-top: clamp(36px, 5vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px 16px 40px;
  background: #001a51;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    padding-left: 28px;
  }
}
.p-404__btn:hover {
  opacity: 0.85;
}
.p-404__btn:hover .p-404__btn-arrow::before {
  transform: rotate(45deg) translate(1px, 1px);
}
.p-404__btn-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-404__btn-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -3px;
  border-top: 2px solid #001a51;
  border-right: 2px solid #001a51;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
