@charset "UTF-8";
html {
  overflow-x: hidden;
}

body {
  border-left: 5px solid #00678b;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #333;
  cursor: none;
  overflow-x: hidden;
}

body.is-fv-locked {
  overflow: hidden;
  touch-action: none;
}

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

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

ul {
  list-style-position: inside;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 5%;
}

.pointer {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 190, 222, 0.8) 0%, rgba(187, 229, 241, 0.6) 40%, rgba(234, 244, 247, 0.2) 70%);
  pointer-events: none;
  transition: transform 0.3s ease;
  z-index: 9999;
}

.pointer.is-hover {
  transform: translate(-50%, -50%) scale(3.2);
}

section {
  margin-block: 200px !important;
}
@media (max-width: 600px) {
  section {
    margin-block: 100px !important;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.sompo {
  display: block;
  margin: 0 auto;
  width: 90%;
}

.himawari {
  display: block;
  margin: 0 auto;
  width: 90%;
}

header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eaf4f7;
  height: 80px;
  background: #fff;
}
header .header-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  height: 80px;
}
@media (max-width: 600px) {
  header .header-wrapper {
    gap: 15px;
  }
}
header .header-wrapper p {
  color: #00678b;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}
header .header-wrapper img {
  width: 70px;
  filter: drop-shadow(0 0 28px rgba(234, 244, 247, 0.25));
}
@media (max-width: 600px) {
  header .header-wrapper img {
    width: 50px;
  }
}

.hamburger {
  position: fixed;
  top: 40px;
  right: 5%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 50px;
  height: 50px;
  border: #eaf4f7 1.5px solid;
  border-radius: 10px;
  background: transparent;
  transition: border 0.5s ease;
}
.hamburger:hover {
  border: #00678b 1.5px solid;
}
.hamburger .hamburger-inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 20px;
}
.hamburger .hamburger-inner span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #00678b;
  border-radius: 1px;
  transition: all 0.5s ease;
}
.hamburger .hamburger-inner span:nth-child(1) {
  top: 0;
  transform: translateY(0);
}
.hamburger .hamburger-inner span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger .hamburger-inner span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

nav {
  position: fixed;
  inset: 0;
  z-index: 888;
  background-color: #00678b;
  width: 100%;
  height: 100dvh;
  transform: translateY(-120%);
  transition: transform 0.5s ease-in, visibility 0.5s ease-in;
  visibility: hidden;
  pointer-events: none;
}
nav .header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 90px auto;
  padding-inline: 5%;
  list-style: none;
}
nav .header-nav .header-nav_list {
  width: 100%;
  padding-block: 20px 10px;
  border-bottom: 1px solid #fff;
}
nav .header-nav .header-nav_list .header-subnav {
  list-style: none;
}
nav .header-nav .header-nav_list .header-subnav li {
  padding: 0 10px;
}
@media (max-width: 600px) {
  nav .header-nav .header-nav_list .header-subnav li {
    padding: 0;
  }
}
nav .header-nav .header-nav_list .header-subnav li a {
  font-size: 0.75rem;
}
nav .header-nav .header-nav_list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 10px 15%;
  width: 100%;
  font-size: 0.875rem;
  transition: background 0.5s ease;
}
@media (max-width: 600px) {
  nav .header-nav .header-nav_list a {
    padding: 10px 0%;
  }
}
nav .header-nav .header-nav_list a:hover {
  background: rgba(234, 244, 247, 0.1);
}
nav .header-nav .header-nav_list a span {
  text-align: right;
  font-family: "Zen Old Mincho", "Times New Roman", serif;
}

.is-open .hamburger span {
  background: #fff;
}
.is-open .hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(375deg);
}
.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.is-open .hamburger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-375deg);
}
.is-open nav {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.top-section-button {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.main-btn {
  position: relative;
  display: inline-block;
  width: 280px;
  line-height: 300%;
  text-align: center;
  border-radius: 2px;
  background: #00678b;
  color: #fff;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.35s ease, color 0.35s ease;
}
@media (max-width: 600px) {
  .main-btn {
    width: 150px;
  }
}
.main-btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: 0;
}
.main-btn span, .main-btn {
  z-index: 1;
}
.main-btn::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  transition: width 0.35s ease, right 0.35s ease;
}
@media (max-width: 600px) {
  .main-btn::before {
    display: none;
  }
}
.main-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.main-btn:hover::after {
  transform: translateX(0);
}
.main-btn:hover::before {
  width: 42px;
  right: -6px;
}

.front-fv {
  --fv-top-space: 5%;
  --fv-bottom-space: 0%;
  --fv-marquee-space: 77px;
  position: relative;
  width: 100%;
  height: calc(100vh - 170px);
  margin-block: 0 20px;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.fv-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.2s ease;
}

.fv-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

section.fv-slide {
  margin-block: 0 !important;
}

.fv-slide--hero-1,
.fv-slide--hero-2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fv-slide--hero-1::before,
.fv-slide--hero-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/fv.jpg) center/cover no-repeat;
  transform: scale(1.55);
  filter: blur(24px);
  opacity: 0.9;
  transition: transform 2s ease, filter 2s ease, opacity 1.2s ease;
  z-index: 0;
}

.fv-slide--hero-1.is-active::before,
.fv-slide--hero-2.is-active::before {
  transform: scale(1);
  filter: blur(10px);
  opacity: 1;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fv-slide--hero-1 .fv-overlay {
  background: rgba(225, 225, 225, 0.6);
}

.fv-slide--hero-2 .fv-overlay {
  background: rgba(0, 103, 139, 0.72);
}

.fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.fv-copy {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  padding-inline: 7%;
}

.fv-slide.is-active .fv-copy {
  opacity: 1;
}

.fv-copy--hero {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.fv-slide.is-active .fv-copy--hero {
  transform: translateY(-50%);
}

.fv-main-copy {
  color: #00678b;
  font-size: clamp(1.5rem, 1.1038732394rem + 1.6901408451vw, 2.625rem);
  font-weight: 900;
  line-height: 1.5;
}

.fv-sub-copy {
  margin-top: 20px;
  color: #00678b;
  font-size: 1rem;
}

.fv-slide.is-active .fv-copy--hero2 {
  transform: translateY(-50%);
}

.fv-lead {
  line-height: 2.5;
  color: #fff;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
}

.fv-triangle {
  position: absolute;
  right: clamp(8%, 6vw, 100px);
  top: var(--fv-top-space);
  height: calc(100% - var(--fv-top-space) - var(--fv-marquee-space) - var(--fv-bottom-space));
  width: auto;
  aspect-ratio: 1/0.92;
  z-index: 2;
  overflow: hidden;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0;
  transform: translateY(20px) scale(1.04);
  transition: opacity 0.9s ease 0.35s, transform 1.2s ease 0.35s;
}
.fv-triangle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(225, 225, 225, 0.6);
}
@media (max-width: 1024px) {
  .fv-triangle {
    left: 50%;
    top: 50%;
    right: auto;
    width: 90vw;
    height: auto;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.fv-slide.is-active .fv-triangle {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 1024px) {
  .fv-slide.is-active .fv-triangle {
    transform: translate(-50%, -50%) scale(1);
  }
}

.fv-triangle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fv-slide--hero-2 .fv-triangle::before {
  background: rgba(0, 103, 139, 0.72);
}

.fv-line {
  position: absolute;
  top: 16%;
  right: 8%;
  width: 2px;
  height: 120px;
  background: #eaf4f7;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
}

.fv-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00678b;
  transform: scaleY(0);
  transform-origin: top;
}

.fv-line.is-animating::after {
  animation: fvMeter 4s linear forwards;
}

@keyframes fvMeter {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.fv-marquee {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  z-index: 2;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(2.8rem, 4.5vw, 6rem);
  color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

.fv-slide.is-active .fv-marquee {
  opacity: 1;
}

.fv-slide--concept {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  --layer-top: 24%;
  --layer-middle: 42%;
  --layer-bottom: 34%;
}

.fv-slide--concept[data-concept=mission] {
  --layer-top: 0%;
}

.fv-slide--concept[data-concept=vision] {
  --layer-top: 34%;
}

.fv-slide--concept[data-concept=values] {
  --layer-top: 53%;
}

.fv-layout {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv-layer {
  position: absolute;
  left: 0;
  width: 100%;
}

.fv-layer--top {
  top: 0;
  height: var(--layer-top);
}

.fv-layer--middle {
  top: var(--layer-top);
  height: var(--layer-middle);
}

.fv-layer--bottom {
  bottom: 0;
  height: var(--layer-bottom);
}

.fv-slide--concept[data-concept=mission] .fv-layer--middle {
  background: #f3ecdf;
}

.fv-slide--concept[data-concept=vision] .fv-layer--middle {
  background: #f8e8ea;
}

.fv-slide--concept[data-concept=values] .fv-layer--middle {
  background: #e9ecff;
}

.fv-copy--concept {
  position: absolute;
  top: calc(var(--layer-top) + var(--layer-middle) / 2);
  left: 0;
  z-index: 3;
  opacity: 0;
  transform: translateY(calc(-50% + 30px));
}

.fv-copy--concept.is-animating {
  animation: conceptFadeUp 0.8s ease forwards;
}

@keyframes conceptFadeUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.fv-concept-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(2.2rem, 4.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.fv-concept-en,
.fv-concept-ja {
  transition: color 0.4s ease;
}

.fv-concept-ja {
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  font-weight: 500;
}

.fv-slide--concept[data-concept=mission] .fv-concept-en,
.fv-slide--concept[data-concept=mission] .fv-concept-ja {
  color: #febd59;
}

.fv-slide--concept[data-concept=vision] .fv-concept-en,
.fv-slide--concept[data-concept=vision] .fv-concept-ja {
  color: #ff5757;
}

.fv-slide--concept[data-concept=values] .fv-concept-en,
.fv-slide--concept[data-concept=values] .fv-concept-ja {
  color: #5271ff;
}

.fv-concept-text {
  margin-top: 18px;
  color: #333;
  font-size: 1rem;
  line-height: 1.2;
}

.fv-values-list {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.fv-values-list li {
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
  padding-left: 20px;
}

.fv-visual {
  position: absolute;
  right: clamp(8%, 6vw, 100px);
  top: 27%;
  height: calc(57% - 24px);
  aspect-ratio: 1/0.92;
  z-index: 2;
  --circle-size: 55px;
  --circle-border: 1.5px;
}

.fv-triangle--concept {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0;
  transform: translateY(20px) scale(1.04);
  transition: opacity 0.9s ease 0.35s, transform 1.2s ease 0.35s;
}

.fv-slide.is-active .fv-triangle--concept {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fv-triangle--concept img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fv-circle {
  position: absolute;
  width: var(--circle-size);
  height: var(--circle-size);
  border: var(--circle-border) solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transition: border-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

/* 表示 */
.fv-slide.is-active .fv-circle {
  opacity: 1;
}

/* 三角の頂点に中心を合わせる */
.fv-circle--top {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.fv-circle--left {
  left: 0;
  top: 100%;
  transform: translate(-50%, -50%);
}

.fv-circle--right {
  left: 100%;
  top: 100%;
  transform: translate(-50%, -50%);
}

.fv-slide--concept[data-concept=mission] .fv-circle--top {
  border-color: #f0ab39;
  transform: translate(-50%, -50%) scale(1.12);
}

.fv-slide--concept[data-concept=mission] .fv-circle--left,
.fv-slide--concept[data-concept=mission] .fv-circle--right {
  border-color: rgba(240, 171, 57, 0.2);
}

.fv-slide--concept[data-concept=vision] .fv-circle--left {
  border-color: #ff5b57;
  transform: translate(-50%, -50%) scale(1.12);
}

.fv-slide--concept[data-concept=vision] .fv-circle--top,
.fv-slide--concept[data-concept=vision] .fv-circle--right {
  border-color: rgba(255, 91, 87, 0.2);
}

.fv-slide--concept[data-concept=values] .fv-circle--right {
  border-color: #4d68ff;
  transform: translate(-50%, -50%) scale(1.12);
}

.fv-slide--concept[data-concept=values] .fv-circle--top,
.fv-slide--concept[data-concept=values] .fv-circle--left {
  border-color: rgba(77, 104, 255, 0.2);
}

.fv-slide--concept .fv-marquee {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
  z-index: 2;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(3rem, 4vw, 5.4rem);
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

/* Mission */
.fv-slide--concept[data-concept=mission] .fv-marquee {
  left: 0;
  bottom: 20%;
  color: rgba(254, 189, 89, 0.1);
}

/* Vision */
.fv-slide--concept[data-concept=vision] .fv-marquee {
  left: 0;
  bottom: 0%;
  color: rgba(255, 87, 87, 0.1);
}

/* Values */
.fv-slide--concept[data-concept=values] .fv-marquee {
  left: 0;
  top: 20%;
  color: rgba(82, 113, 255, 0.1);
}

@media (max-width: 1024px) {
  .fv-line {
    right: 24px;
    height: 100px;
  }
  .fv-copy--concept {
    top: 20%;
    left: 0;
    max-width: 100%;
    padding-inline: 6%;
    transform: translateY(20px);
  }
  .fv-slide.is-active .fv-copy--concept {
    transform: translateY(0);
  }
  .fv-visual {
    left: 50%;
    right: auto;
    top: 40%;
    width: min(52vw, 380px);
    height: auto;
    aspect-ratio: 1/0.92;
    transform: translateX(-50%);
    --circle-size: 50px;
  }
  .fv-slide--concept .fv-marquee {
    bottom: 10%;
    font-size: clamp(2.6rem, 3.4vw, 4rem);
  }
}
@media (max-width: 600px) {
  .fv-copy--concept {
    top: 28%;
    left: 0;
    max-width: 100%;
    padding-inline: 24px;
    transform: translateY(20px);
  }
  .fv-slide.is-active .fv-copy--concept {
    transform: translateY(0);
  }
  .fv-visual {
    left: 50%;
    right: auto;
    top: 46%;
    width: 64vw;
    min-width: 220px;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1/0.92;
    transform: translateX(-50%);
  }
  .fv-slide--concept .fv-marquee {
    bottom: 14%;
    font-size: 2.2rem;
  }
}
.sub-fv {
  position: relative;
  height: calc(100vh - 220px);
  margin-block: 60px 20px;
  overflow: hidden;
  color: #00678b;
}
.sub-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg.png) center/contain no-repeat;
  z-index: 0;
}

.sub-three {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 90px;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #eaf4f7;
}

.section-title {
  flex-shrink: 0;
  color: #00678b;
  text-align: right;
  overflow: hidden;
}
.section-title h2 {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
}
.section-title span {
  display: block;
  font-size: 0.875rem;
  font-family: "Zen Old Mincho", "Times New Roman", serif;
}

.sub-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  text-align: right;
}
.sub-title h1 {
  font-size: clamp(1.25rem, 0.8978873239rem + 1.5023474178vw, 2.25rem);
}
.sub-title span {
  font-size: clamp(0.875rem, 0.6549295775rem + 0.9389671362vw, 1.5rem);
  font-family: "Zen Old Mincho", "Times New Roman", serif;
}

.sub-title-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
@media (max-width: 600px) {
  .sub-title-nav {
    display: none;
  }
}
.sub-title-nav ul {
  list-style: none;
}
.sub-title-nav ul li {
  margin-bottom: 6px;
}
.sub-title-nav ul li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}
.sub-title-nav ul li a:hover {
  background: rgba(110, 213, 244, 0.1);
}

.section-title-sub {
  position: relative;
  display: inline-block;
  color: #00678b;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
}
.section-title-sub::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  content: "";
  width: 1px;
  height: 24px;
  background: #00678b;
}
@media (max-width: 600px) {
  .section-title-sub::after {
    display: none;
  }
}

footer {
  color: #00678b;
  padding-bottom: 60px;
}
footer .footer-products {
  padding-block: 150px 180px;
  border-bottom: 1.5px solid #eaf4f7;
}
@media (max-width: 600px) {
  footer .footer-products {
    padding-block: 80px 70px;
  }
}
footer .footer-products .container {
  display: flex;
  justify-content: center;
  gap: 50px;
}
footer .footer-products .container img {
  width: 30%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-info {
  padding-top: 200px;
}
@media (max-width: 600px) {
  footer .footer-info {
    padding-top: 80px;
  }
}
footer .footer-info .container {
  display: flex;
  justify-content: space-between;
}
footer .footer-info .container .footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer-info .container .footer-logo img {
  width: 70px;
}
footer .footer-info .container .footer-logo small {
  font-size: clamp(0.5rem, 0.411971831rem + 0.3755868545vw, 0.75rem);
}
footer .footer-info .container .footer-nav {
  list-style: none;
}
footer .footer-info .container .footer-nav li {
  padding-bottom: 15px;
}
footer .footer-info .container .footer-nav li a {
  font-size: 0.875rem;
  text-decoration: none;
  color: inherit;
}
footer .footer-info .container .footer-nav li a img {
  width: 45px;
  margin-top: 30px;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}
@media (max-width: 600px) {
  footer .footer-info .container .footer-nav li a img {
    width: 35px;
    margin-top: 15px;
  }
}
footer .footer-info .container .footer-nav li a:hover img {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(0, 103, 139, 0.25)) drop-shadow(0 0 12px rgba(0, 103, 139, 0.2));
}
footer .footer-info .container .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 600px) {
  footer .footer-info .container .footer-links {
    display: none;
  }
}
footer .footer-info .container .footer-links .main-btn {
  margin-bottom: 10px;
}

.product-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  color: #00678b;
  padding-inline: 50px;
}
@media (max-width: 600px) {
  .product-items {
    flex-direction: column;
    padding-inline: 0px;
  }
}
.product-items .product-item {
  border: 1px solid #00678b;
  border-radius: 10px;
  padding: 25px;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.product-items .product-item p {
  padding-bottom: 20px;
}

.insurance-items {
  padding-inline: 50px;
}
@media (max-width: 600px) {
  .insurance-items {
    padding-inline: 0;
  }
}
.insurance-items .insurance-item-business {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 90px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .insurance-items .insurance-item-business {
    flex-direction: column;
    gap: 50px;
  }
}
.insurance-items .insurance-item-business img {
  max-width: 350px;
}
.insurance-items .insurance-item-business a {
  position: relative;
  left: -155px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  color: #00678b;
  text-decoration: none;
  transition: color 0.35s ease, transform 0.35s ease;
}
@media (max-width: 600px) {
  .insurance-items .insurance-item-business a {
    gap: 2px;
  }
}
.insurance-items .insurance-item-business a span {
  display: block;
  font-size: clamp(0.5rem, 0.411971831rem + 0.3755868545vw, 0.75rem);
  position: relative;
  z-index: 2;
}
.insurance-items .insurance-item-business a::after {
  position: absolute;
  bottom: 0;
  left: 100%;
  content: "";
  width: 125px;
  height: 35px;
  margin-left: 30px;
  border-radius: 1px;
  background: #00678b;
  transition: transform 0.45s ease, box-shadow 0.35s ease;
}
.insurance-items .insurance-item-business a::before {
  position: absolute;
  top: calc(100% - 17px);
  left: calc(100% + 30px);
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  z-index: 3;
  transition: width 0.35s ease, left 0.35s ease;
}
@media (max-width: 600px) {
  .insurance-items .insurance-item-business a::before {
    top: calc(100% - 17px);
  }
}
.insurance-items .insurance-item-business a:hover {
  transform: translateX(6px);
}
.insurance-items .insurance-item-business a:hover::after {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.insurance-items .insurance-item-business a:hover::before {
  width: 42px;
  left: calc(100% + 24px);
}

#information {
  position: relative;
  background-image: url(../img/info.png);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-block: 88px;
}
#information::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  inset: 0;
  background: rgba(0, 103, 139, 0.5);
  z-index: 1;
}
#information .section-title {
  color: #fff;
}
#information .information-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 600px) {
  #information .information-content {
    flex-direction: column;
  }
}
#information .information-content dl {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
}
#information .information-content dl dt {
  font-weight: 500;
}
#information .information-content dl dd {
  margin-bottom: 15px;
}
#information .information-content iframe {
  max-width: 500px;
  width: 100%;
  height: 375px;
}
@media (max-width: 600px) {
  #information .information-content iframe {
    width: 100%;
    margin-top: 70px;
  }
}

#information > * {
  position: relative;
  z-index: 2;
}

#business .business-text {
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  margin-block: 50px;
}
@media (max-width: 600px) {
  #business .business-text {
    margin-block: 30px;
  }
}

.business-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}
@media (max-width: 600px) {
  .business-grid {
    grid-template-columns: 1fr;
    padding-inline: 30px;
  }
}

.business-card {
  border: 1px solid rgba(0, 103, 139, 0.4);
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.business-card-button {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  padding: 20px;
  color: #00678b;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.35s ease;
}
.business-card-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.business-card-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00678b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.business-grid-name,
.business-grid-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 3;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.business-grid-name {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.business-grid-detail {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -45%);
  line-height: 1.8;
}

@media (hover: hover) and (pointer: fine) {
  .business-card:hover {
    border-color: #00678b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .business-card:hover .business-card-button::before {
    transform: translateX(100%);
  }
  .business-card:hover .business-card-button::after {
    transform: scaleX(1);
  }
}
.business-card.is-open {
  border-color: #00678b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.business-card.is-open .business-card-button {
  background: #eaf4f7;
}
.business-card.is-open .business-card-button::before {
  transform: translateX(100%);
}
.business-card.is-open .business-card-button::after {
  transform: scaleX(1);
}
.business-card.is-open .business-grid-name {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -55%);
}
.business-card.is-open .business-grid-detail {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

#individuals .individuals-text {
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  margin-block: 50px;
}
@media (max-width: 600px) {
  #individuals .individuals-text {
    margin-block: 30px;
  }
}

.individuals-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}
@media (max-width: 600px) {
  .individuals-grid {
    grid-template-columns: 1fr;
    padding-inline: 30px;
  }
}

.individuals-card {
  border: 1px solid rgba(0, 103, 139, 0.4);
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.individuals-card:hover {
  border-color: #00678b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.individuals-card-button {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  padding: 20px;
  color: #00678b;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  overflow: hidden;
  transition: background-color 0.35s ease;
}
.individuals-card-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.individuals-card-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00678b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.individuals-card:hover .individuals-card-button::before {
  transform: translateX(100%);
}

.individuals-card:hover .individuals-card-button::after {
  transform: scaleX(1);
}

.individuals-grid-name,
.individuals-grid-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 3;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.individuals-grid-name {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.individuals-grid-detail {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -45%);
  line-height: 1.8;
}

.individuals-card.is-open {
  border-color: #00678b;
}
.individuals-card.is-open .individuals-card-button {
  background: #eaf4f7;
}
.individuals-card.is-open .individuals-card-button::after {
  transform: scaleX(1);
}
.individuals-card.is-open .individuals-grid-name {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -55%);
}
.individuals-card.is-open .individuals-grid-detail {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.news-slick {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
.news-slick .slick-track {
  display: flex;
}
.news-slick .slick-slide {
  height: auto;
}
.news-slick .slick-slide > div {
  height: 100%;
}
.news-slick .news-slick-item {
  position: relative;
  border: 1px solid rgba(0, 103, 139, 0.4);
  border-radius: 10px;
  padding: 20px;
  margin-inline: 20px;
  height: 100%;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.news-slick .news-slick-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}
.news-slick .news-slick-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00678b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.news-slick .news-slick-item:hover {
  background: #eaf4f7;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  border-color: #00678b;
}
.news-slick .news-slick-item:hover::before {
  transform: translateX(100%);
}
.news-slick .news-slick-item:hover::after {
  transform: scaleX(1);
}
.news-slick .news-slick-item a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #333;
  font-size: 0.875rem;
  text-decoration: none;
  height: 100%;
}
.news-slick .news-slick-item a h3 {
  line-height: 1.5;
  min-height: 3em;
  margin: 0;
}
.news-slick .news-slick-item a .news-date {
  align-self: flex-end;
}
.news-slick .news-slick-item a span {
  display: inline-block;
  align-self: flex-end;
  width: 30px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.news-slick .news-slick-item:hover span {
  transform: translateX(6px);
  opacity: 0.7;
}

.news-slider-wrap {
  position: relative;
}

.news-more {
  margin-top: 90px;
  text-align: right;
}

.news-arrows {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 16px;
}

.news-prev,
.news-next {
  width: 48px;
  height: 48px;
  border: 1px solid #00678b;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-prev img,
.news-next img {
  width: 20px;
}

#news-archive {
  padding-block: 80px 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin-top: 60px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  list-style: none;
}
@media (max-width: 600px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}

.news-list-item {
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 103, 139, 0.4);
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  font-size: 0.875rem;
}
.news-list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}
.news-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00678b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.news-list-item:hover {
  background: #eaf4f7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border-color: #00678b;
}
.news-list-item:hover::before {
  transform: translateX(100%);
}
.news-list-item:hover::after {
  transform: scaleX(1);
}
.news-list-item a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  color: #333;
  text-decoration: none;
}
.news-list-item a .news-date {
  align-self: flex-end;
}
.news-list-item .news-arrow {
  align-self: flex-end;
  width: 30px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.news-list-item:hover .news-arrow {
  transform: translateX(6px);
  opacity: 0.7;
}

.news-pagination {
  display: flex;
  gap: 16px;
  margin-top: 80px;
}
.news-pagination .news-prev,
.news-pagination .news-next {
  width: 48px;
  height: 48px;
  border: 1px solid #00678b;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.news-pagination .news-prev img,
.news-pagination .news-next img {
  width: 20px;
}

.single-news__article .single-news__date {
  display: block;
  margin-block: 60px 20px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
}
.single-news__article .single-news__content {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 60px;
  max-width: 800px;
}
.single-news__article .single-news__thumbnail {
  max-width: 800px;
}
.single-news__article .single-news__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}

.single-news__back {
  text-align: right;
  margin-top: 30px;
}

.greeting-contents {
  margin-top: 50px;
  display: flex;
  gap: 90px;
}
@media (max-width: 600px) {
  .greeting-contents {
    flex-direction: column;
    gap: 50px;
  }
}
.greeting-contents img {
  width: 50%;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .greeting-contents img {
    width: 100%;
  }
}
.greeting-contents .greeting-content__text {
  width: 50%;
}
@media (max-width: 600px) {
  .greeting-contents .greeting-content__text {
    width: 100%;
  }
}
.greeting-contents .greeting-content__text h3 {
  position: relative;
  color: #00678b;
  font-size: 1.25rem;
  margin-block: 30px 50px;
  z-index: 1;
}
.greeting-contents .greeting-content__text h3::after {
  position: absolute;
  content: "SEIYA KATO";
  bottom: 33%;
  left: 15%;
  font-size: 2.5rem;
  color: #eaf4f7;
  z-index: -1;
}
.greeting-contents .greeting-content__text p {
  line-height: 1.8;
}

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

#philosophy {
  position: relative;
  background-image: url(../img/company.jpg);
  background-position: center 23%;
  padding-block: 70px;
}
#philosophy::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  inset: 0;
  background: rgba(0, 103, 139, 0.5);
  z-index: 0;
}
#philosophy .container {
  position: relative;
  z-index: 1;
}
#philosophy .container .section-title-sub {
  color: #fff;
}
#philosophy .container .section-title-sub::after {
  background: #fff;
}
#philosophy .container ul {
  max-width: 900px;
  list-style-position: inside;
  margin: 40px auto 0;
}
#philosophy .container ul li {
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.guideline-list {
  margin-top: 50px;
  padding: 35px 0px 70px;
  background: #00678b;
  color: #fff;
  border-radius: 5px;
}

.guideline-item {
  position: relative;
  padding: 35px 0 28px;
}
.guideline-item::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 90%;
  height: 1px;
  background: #fff;
}

.guideline-item dt,
.guideline-item dd {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 30px;
}

#policy p {
  margin-block: 50px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}
@media (max-width: 600px) {
  #policy p {
    margin-block: 30px;
  }
}
#policy .policy-list {
  border: 1px solid #00678b;
  border-radius: 5px;
  padding: 70px 30px 35px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policy .policy-list dt {
  font-weight: 700;
  margin-bottom: 20px;
}
#policy .policy-list dd {
  font-size: 0.875rem;
  margin-bottom: 35px;
}

.policy-list dt,
.policy-list dd {
  max-width: 800px;
  margin: 0 auto;
}

#support .support-text {
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  margin-block: 50px;
}
@media (max-width: 600px) {
  #support .support-text {
    margin-block: 30px;
  }
}

.support-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}
@media (max-width: 600px) {
  .support-grid {
    gap: 6px;
  }
}
.support-grid li {
  position: relative;
  border: 1px solid #00678b;
  border-radius: 5px;
  text-align: center;
  aspect-ratio: 1/1;
}
.support-grid li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.support-grid li .support-grid-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #00678b;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}

.support-grid__center {
  background: #eaf4f7;
}

.contact-text {
  margin-block: 50px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.contact-form {
  max-width: 700px;
  margin: 100px auto 0;
  color: #1f5f8b;
}
.contact-form__group {
  margin-bottom: 25px;
  border: none;
}
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form__label-text {
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
}
.contact-form__required {
  display: inline-block;
  padding: 5px 10px;
  background: #9f2d20;
  color: #fff;
  font-size: 0.6rem;
  line-height: 1;
  border-radius: 1px;
}
.contact-form__field {
  margin-top: 10px;
  padding-left: 30px;
}
@media (max-width: 600px) {
  .contact-form__field {
    padding-left: 0;
  }
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  border: none;
  background: #eaf1f5;
  padding: 3px 16px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  box-sizing: border-box;
  border-radius: 5px;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: 1px solid #1f5f8b;
}
.contact-form__input {
  height: 48px;
}
.contact-form__textarea {
  min-height: 220px;
  resize: vertical;
}
.contact-form__address {
  margin-top: 4px;
}
.contact-form__address-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form__address-row + .contact-form__address-row {
  margin-top: 12px;
}
.contact-form__postal-mark {
  font-size: 0.875rem;
  line-height: 1;
}
.contact-form__input--postal {
  max-width: 195px;
}
.contact-form__note {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #333;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  text-align: right;
}
.contact-form__description {
  margin-bottom: 14px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.875rem;
  color: #333;
}
.contact-form__submit {
  margin-top: 56px;
  text-align: center;
}
.contact-form__submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  height: 52px;
  padding: 0 24px;
  border: none;
  background: #00678b;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 0.3s;
  border-radius: 5px;
}
.contact-form__submit-button:hover {
  opacity: 0.85;
}
.contact-form__submit-button::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form .wpcf7-list-item {
  display: block;
  margin: 0;
}
.contact-form .wpcf7-list-item-label {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
}
.contact-form .wpcf7-checkbox label,
.contact-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form .wpcf7-checkbox input[type=checkbox],
.contact-form .wpcf7-acceptance input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: none;
  background: #eaf1f5;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form .wpcf7-checkbox input[type=checkbox]:checked::after,
.contact-form .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #00678b;
  border-bottom: 2px solid #00678b;
  transform: rotate(45deg);
}
.contact-form__acceptance-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
}
.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.875rem;
  color: #c0392b;
}
.contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: none;
}

#accident .accident-text {
  margin-block: 50px 20px;
}
#accident .product-items {
  margin-top: 100px;
}
#accident .accident-notion {
  margin-top: 15px;
  text-align: right;
  font-size: 0.75rem;
}

#policies-customer {
  color: #fff;
  background: #00678b;
  padding-block: 80px;
}
#policies-customer .section-title-sub {
  color: inherit;
}
#policies-customer .section-title-sub::after {
  background: #fff;
}
#policies-customer dl {
  max-width: 800px;
  margin: 0 auto;
  margin-block: 50px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policies-customer dl dd {
  margin-bottom: 30px;
}
#policies-customer dl dd ul {
  list-style: none;
}
#policies-customer dl dd ul li {
  margin-bottom: 20px;
}

#policies-solicitation p {
  margin-block: 50px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policies-solicitation dl {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policies-solicitation dl dd {
  margin-bottom: 30px;
}
#policies-solicitation dl dd ul {
  margin-top: 10px;
  margin-left: 20px;
}

#policies-antisocial p {
  margin-block: 50px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policies-antisocial dl {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
#policies-antisocial dl dd {
  margin-bottom: 30px;
}
#policies-antisocial dl dd ul {
  margin-top: 10px;
  margin-left: 20px;
}

#privacy .privacy-text {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  margin-block: 70px 50px;
}
@media (max-width: 600px) {
  #privacy .privacy-text {
    margin-block: 30px;
  }
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
.privacy-content dl {
  margin-block: 50px;
}
.privacy-content dl dt {
  font-weight: bold;
}
.privacy-content dl dd {
  margin-bottom: 30px;
}
.privacy-content dl dd ul {
  padding: 10px 0 0 30px;
}/*# sourceMappingURL=style.css.map */