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

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.site-header .hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  margin-left: auto;
  transform-origin: center center;
}
.site-header .hamburger__bar {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: #333;
  border-radius: 0.125rem;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.18s ease;
  transform-origin: center center;
}
.site-header .hamburger.is-active .hamburger__bar:nth-of-type(1) {
  top: 10px;
  transform: translateY(0.5rem) rotate(45deg);
}
.site-header .hamburger.is-active .hamburger__bar:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header .hamburger.is-active .hamburger__bar:nth-of-type(3) {
  transform: translateY(-0.625rem) rotate(-45deg);
}
.site-header .main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0.5rem 1.375rem rgba(0, 0, 0, 0.08);
  transform-origin: top;
  z-index: 1001;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}
.site-header .main-nav.is-open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}
.site-header .main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .main-nav__list a {
  display: block;
  padding: 0.3125rem 0.625rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  text-align: left;
  font-size: 0.875rem;
}
.site-header .nav-login,
.site-header .main-nav .btn--login {
  display: block;
  padding: 0.3125rem 0.625rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  text-align: left;
  font-size: 0.875rem;
}
.site-header .header__login {
  display: none;
}
@media (min-width: 900px) {
  .site-header .header__login {
    flex: 0 0 auto;
    background: #00c2d9;
    color: #fff;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
  }
  .site-header .hamburger {
    display: none;
  }
  .site-header .main-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;
  }
  .site-header .main-nav__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .site-header .nav-login,
  .site-header .main-nav .btn--login {
    display: none;
  }
  .site-header .header__login {
    display: inline-block;
  }
}

.main-nav__item--has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 10px 0 0;
  min-width: 120px;
  z-index: 10;
}

.main-nav__item--has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu__item a {
  display: block;
  padding: 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown-menu__item a:hover {
  background-color: #f5f5f5;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e9eef0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 4rem;
  position: relative;
  justify-content: space-between;
}
.site-header .logo {
  flex: 0 0 auto;
  display: block;
}
.site-header .logo img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: 10rem;
}

.footer {
  background: #fff;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  min-width: 13.75rem;
}
.footer__left .footer__logo {
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  max-width: 100%;
  object-fit: contain;
}
.footer__left .footer__company {
  color: #00c2d9;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.4;
  white-space: pre-line;
}
.footer__left .footer__company .footer__title {
  font-weight: bold;
  margin-bottom: 0.375rem;
}
.footer .footer__nav {
  width: 100%;
}
.footer .footer__menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.5rem 1.75rem;
  align-items: start;
}
.footer .footer__col ul.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer__col li {
  margin: 0 0 0.375rem 0;
}
.footer .footer__col a {
  display: inline-block;
  text-decoration: none;
  white-space: normal;
  padding: 0.1875rem 0;
  transition: opacity 0.15s ease, transform 0.06s ease;
}
.footer .footer__col a:hover,
.footer .footer__col a:focus-visible {
  opacity: 0.95;
  text-decoration: underline;
  outline: none;
}
.footer .footer__col a:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 194, 217, 0.12);
  border-radius: 0.25rem;
}
.footer__bottom {
  margin-top: 1.125rem;
  text-align: center;
  padding: 0.75rem 0;
  background: #00c2d9;
  color: #fff;
  font-size: 0.8125rem;
}
@media (max-width: 1279px) {
  .footer .footer__inner {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .footer__left {
    width: 100%;
    min-width: 0;
  }
  .footer__left .footer__logo {
    width: 8.75rem;
    margin-bottom: 0.5rem;
  }
  .footer .footer__menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(8.75rem, 1fr));
    gap: 0.75rem 1.125rem;
    width: 100%;
  }
  .footer__bottom {
    margin-top: 0.75rem;
  }
}

#loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ddd;
  border-top-color: #00c2d9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#page-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #00c2d9;
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  z-index: 1000;
  text-decoration: none;
  font-size: 14px;
}
#page-top:hover {
  background: #00a5b8;
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.guide__arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--guide-accent, #00c2d9);
  display: block;
  margin: 16px auto;
}

.guide__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #00c2d9;
}

.intro__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #00c2d9;
}

.guide .guide__substep::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #00c2d9;
}

.is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.esg {
  background: #fff;
  color: #0b2b36;
  padding: 48px 16px;
}
.esg__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.esg__title {
  color: #00b7d3;
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.esg__lead {
  margin: 30px 0;
  color: #6b7b80;
  line-height: 1.8;
  font-size: 0.95rem;
}
.esg__lead--sm {
  margin: 6px 0 12px;
  color: #6b7b80;
  font-size: 0.94rem;
}
.esg__section-title {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  margin: 18px 0 12px;
  color: #00b7d3;
  font-weight: 700;
}
.esg__section-title .esg__bar {
  display: inline-block;
  width: 6px;
  height: 18px;
  background: #00b7d3;
  border-radius: 2px;
  margin-right: 8px;
}
.esg__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}
.esg__item {
  display: block;
  padding: 8px 0;
}
.esg__label {
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.esg__label strong,
.esg__label .esg__label-sub {
  position: relative;
  z-index: 2;
  background: transparent;
}
.esg__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 8px;
  background: #c8f2f7;
  z-index: 1;
  pointer-events: none;
}
.esg__desc {
  margin: 0 0 12px;
  color: #6b7b80;
  font-size: 0.95rem;
  line-height: 1.8;
}
.esg__sdgs {
  margin-top: 8px;
}
.esg__sdg-item {
  margin-bottom: 14px;
}
.esg__sdg-title {
  font-size: 1.5rem;
  margin: 8px 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #0b2b36;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .esg__sdg-title {
    font-size: 0.875rem;
  }
}
.esg__sdg-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: #c8f2f7;
  z-index: 1;
  pointer-events: none;
}
.esg__sdg-desc {
  margin: 0;
  color: #6b7b80;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (min-width: 860px) {
  .esg__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1100px) {
  .esg {
    padding: 64px 0;
  }
}

.support-section {
  background-color: #c8f2f7;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}
.support-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.support-section__img {
  position: absolute;
  width: 12.5rem;
  height: auto;
  object-fit: contain;
  transition: left 0.2s, right 0.2s;
}
.support-section__img--left {
  left: calc((100% - 1100px) / 2 - 0.625rem);
  top: -1.875rem;
}
.support-section__img--right {
  right: calc((100% - 1100px) / 2 - 0.625rem);
  top: -2.5rem;
}
.support-section__title {
  background: url("../images/top/ribbon.png") no-repeat center top;
  transform: translateY(-70px);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 50px;
  text-align: center;
  padding: 0 1.875rem;
  color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .support-section__title {
    background-size: 98%;
  }
}
.support-section__text-block {
  transform: translateY(-30px);
}
.support-section__subtitle {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: #333;
  line-height: 1.25;
  letter-spacing: 0.6px;
  font-weight: 500;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .support-section__subtitle {
    font-size: 1.125rem;
  }
}

.support-features {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .support-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  background-color: #fff;
  padding: 1.875rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
}
.feature-box__icon {
  font-size: 2.5rem;
  color: #0076a3;
  margin-bottom: 1.25rem;
}
.feature-box__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0.9375rem;
}
.feature-box__description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

@media (max-width: 1100px) {
  .support-section__img {
    display: none;
  }
  .support-section__title {
    margin-bottom: 1rem;
  }
}
.hero-features {
  padding: 28px 16px;
  color: #0b2b36;
  background-color: #f6f6f6;
}
.hero-features__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.hero-features__card {
  display: flex;
  position: relative;
  border: 2px solid rgb(115, 240.1612903226, 255);
  border-radius: 8px;
  padding: 80px 24px;
  background: #ffffff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02) inset;
  overflow: visible;
  justify-content: center;
}
.hero-features__badge {
  position: absolute;
  left: -12px;
  top: 12px;
  background: #00c2d9;
  color: #fff;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 1.875rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.02em;
}
.hero-features__grid {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  margin: 6px 0 6px;
  flex-wrap: nowrap;
}
.hero-features .hf-feature {
  --bubble: clamp(160px, 60vw, 340px);
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.hero-features .hf-feature__bubble {
  flex-direction: column;
  width: var(--bubble);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #a5e9f1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.02);
  padding: 18px;
}
.hero-features .hf-feature .hf-icon {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.hero-features .hf-feature .hf-caption {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  max-width: min(200px, var(--bubble));
}
.hero-features .hero-features__grid .hf-feature:nth-child(1) .hf-feature__bubble {
  padding: 0;
}
.hero-features .hero-features__grid .hf-feature:nth-child(3) .hf-feature__bubble {
  padding: 0;
}
.hero-features .hero-features__grid .hf-feature:nth-child(3) .hf-feature__bubble .hf-icon {
  margin-bottom: -12px;
}
.hero-features .hero-features__grid .hf-feature:nth-child(2) .hf-feature__bubble .hf-icon {
  margin-bottom: 18px;
  height: 60%;
}
.hero-features__card-tail {
  margin: 8px 0 0;
  text-align: right;
  color: #00c2d9;
  font-weight: 700;
  font-size: 1.875rem;
}
.hero-features__lead {
  margin: 18px 0 0;
  text-align: center;
  color: #00c2d9;
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero-features__lead {
    font-size: 1.75rem;
  }
}
@media (max-width: 1100px), (orientation: landscape) and (max-height: 768px) {
  .hero-features__card {
    padding: 0;
  }
  .hero-features__grid {
    flex-direction: column;
    align-items: center;
    margin: 100px 0 50px 0;
  }
  .hero-features .hf-feature {
    width: 45%;
  }
  .hero-features .hf-feature .hf-icon {
    width: 220px;
    height: 160px;
    padding: 14px;
  }
  .hero-features .hf-feature .hf-caption {
    max-width: 220px;
    font-size: 0.82rem;
  }
  .hero-features__card-tail {
    text-align: center;
    margin-top: 12px;
  }
  .hero-features .hero-features__grid .hf-feature:nth-child(2) .hf-feature__bubble {
    padding: 0;
  }
  .hero-features .hero-features__grid .hf-feature:nth-child(3) .hf-feature__bubble {
    padding: 0;
  }
  .hero-features .hero-features__grid .hf-feature:nth-child(3) .hf-feature__bubble .hf-icon {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 480px) {
  .hero-features .hf-feature .hf-feature__bubble {
    padding: 0;
  }
  .hero-features .hf-feature .hf-feature__bubble .hf-icon {
    width: 70%;
  }
  .hero-features .hf-feature .hf-caption {
    transform: translateY(-16px);
    max-width: 120px;
  }
}

.hero-about {
  height: 450px;
  background: url("../images/about/bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-about__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero-about__content {
  width: 100%;
}
.hero-about__content .hero-about__sub-title {
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
}
.hero-about__content .hero-about__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.slogan {
  text-align: center;
  background-color: #f4f4f4;
}
.slogan__container {
  display: flex;
  min-height: 500px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
  flex-direction: column;
}
.slogan__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.slogan__title {
  text-align: left;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #00c2d9;
  font-size: 4.5rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}
@media (max-width: 768px) {
  .slogan__title {
    font-size: 1.875rem;
  }
}
.slogan__divider {
  width: 100px;
  height: 1px;
  background-color: #ccc;
  margin: 2.5rem 0;
  border: none;
}
.slogan__text {
  text-align: left;
  line-height: 2;
}
.slogan__text p {
  margin-bottom: 1.5em;
}

.company-name {
  position: relative;
  background: url("../images/about/bg2.png") center/cover no-repeat;
  color: #fff;
}
.company-name__container {
  display: flex;
  align-items: center;
  min-height: 500px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}
.company-name__content {
  line-height: 2;
}
.company-name__content p {
  margin-bottom: 1.5em;
}
.company-name__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}
.company-name__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 80%;
  background-color: #be0002;
}
.company-name__label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.company-name__title {
  font-size: 2rem;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  margin: 0 0 1.875rem;
}

.vision-philosophy {
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}
.vision-philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}
.vision-philosophy__bg-logo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 250px;
}
@media (max-width: 768px) {
  .vision-philosophy__bg-logo {
    width: 150px;
  }
}
.vision-philosophy .vision {
  margin-bottom: 80px;
}
.vision-philosophy .vision__text,
.vision-philosophy .philosophy__text {
  line-height: 2;
}
.vision-philosophy .vision__text p,
.vision-philosophy .philosophy__text p {
  margin-bottom: 1.5em;
}

.heading-with-line {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}
.heading-with-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: #be0002;
}
.heading-with-line__label {
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
}
.heading-with-line__title {
  margin: 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}

.hero-company {
  height: 450px;
  background-image: url("../images/about/bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-company .hero-company__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero-company .hero-company__news {
  width: 100%;
}
.hero-company .hero-company__sub-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.hero-company .hero-company__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.info {
  padding: 0;
  overflow-x: hidden;
}
.info__bg {
  background-color: #c8f2f7;
  width: 100%;
  padding: 6.25rem 1.25rem;
}
.info__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.info__table {
  background-color: #f7f7f7;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}
.info__table tr {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.info__table tr th,
.info__table tr td {
  padding: 1rem;
  vertical-align: top;
}
.info__table tr th {
  font-weight: bold;
  width: 8.75rem;
  white-space: nowrap;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: #000;
}
.info__table tr td {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #0b2b36;
}
.info__map-wrapper {
  width: 100%;
  background-color: #fff;
}
.info__map {
  text-align: center;
}
.info__map iframe {
  width: 100%;
  height: 31.25rem;
  border: none;
  margin-bottom: 3.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .hero-company .hero-about__main-title {
    font-size: 2rem;
  }
  .info__table {
    display: block;
    width: 100%;
  }
  .info tr {
    display: block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
  .info tr th,
  .info tr td {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
  }
  .info th {
    background-color: #c8f2f7;
    border-radius: 0;
    font-weight: bold;
  }
  .info td {
    border-top: 1px solid #ddd;
  }
}
.hero-contact {
  height: 450px;
  background: url("../images/common/bg.png") no-repeat center top/cover;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-contact .hero-contact__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero-contact .hero-contact__news {
  width: 100%;
}
.hero-contact .hero-contact__sub-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.hero-contact .hero-contact__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

#contents {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1rem 0 1rem;
}

.hero-contact-form {
  background-color: #f6f6f6;
}

#cf7-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 1rem;
}
#cf7-area .cf7-item {
  margin-bottom: 2rem;
}
#cf7-area .cf7-item .cf7-title {
  color: #00c2d9;
  font-size: 1.875rem;
}
#cf7-area .cf7-item .cf7-q {
  margin-bottom: 0.5rem;
}
#cf7-area .cf7-item .cf7-q label {
  font-weight: bold;
  display: block;
}
#cf7-area .cf7-item .cf7-q label .cf7-req {
  color: #d9534f;
  margin-left: 0.5em;
  font-size: 0.9em;
}
#cf7-area .cf7-item .cf7-a input,
#cf7-area .cf7-item .cf7-a textarea {
  background-color: #fff;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#cf7-area .cf7-item .cf7-a input:focus,
#cf7-area .cf7-item .cf7-a textarea:focus {
  border-color: #00c2d9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 169, 111, 0.2);
}
#cf7-area .cf7-item .cf7-a textarea {
  min-height: 150px;
  resize: vertical;
}
#cf7-area .cf7-accept-check {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
#cf7-area .cf7-accept-check input[type=checkbox] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  appearance: auto;
}
#cf7-area .tips {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}
#cf7-area .tips a.greentxt {
  color: #00c2d9;
  text-decoration: underline;
}
#cf7-area .tips a.greentxt:hover {
  text-decoration: none;
}
#cf7-area .cf7-submit {
  text-align: center;
  margin: 1.875rem 0 0 2.8125rem;
}
#cf7-area .cf7-submit input[type=submit] {
  background-color: #007280;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#cf7-area .cf7-submit input[type=submit]:hover {
  background-color: #00c2d9;
}

#cf7-area2 {
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 1rem;
}
#cf7-area2 .cf7-item {
  margin-bottom: 2rem;
}
#cf7-area2 .cf7-item .cf7-title {
  color: #00c2d9;
  font-size: 1.875rem;
}
#cf7-area2 .cf7-item .cf7-q {
  margin-bottom: 0.5rem;
}
#cf7-area2 .cf7-item .cf7-q label {
  font-weight: bold;
  display: block;
}
#cf7-area2 .cf7-item .cf7-q label .cf7-req {
  color: #d9534f;
  margin-left: 0.5em;
  font-size: 0.9em;
}
#cf7-area2 .cf7-item .cf7-a input,
#cf7-area2 .cf7-item .cf7-a textarea,
#cf7-area2 .cf7-item .cf7-a select {
  background-color: #f6f6f6;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#cf7-area2 .cf7-item .cf7-a input:focus,
#cf7-area2 .cf7-item .cf7-a textarea:focus,
#cf7-area2 .cf7-item .cf7-a select:focus {
  border-color: #00c2d9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 169, 111, 0.2);
}
#cf7-area2 .cf7-item .cf7-a textarea {
  min-height: 150px;
  resize: vertical;
}
#cf7-area2 .cf7-accept-check {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
#cf7-area2 .cf7-accept-check input[type=checkbox] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  appearance: auto;
}
#cf7-area2 .tips {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}
#cf7-area2 .tips a.greentxt {
  color: #00c2d9;
  text-decoration: underline;
}
#cf7-area2 .tips a.greentxt:hover {
  text-decoration: none;
}
#cf7-area2 .cf7-submit {
  text-align: center;
  margin: 1.875rem 0 0 2.8125rem;
}
#cf7-area2 .cf7-submit input[type=submit] {
  background-color: #007280;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#cf7-area2 .cf7-submit input[type=submit]:hover {
  background-color: #00c2d9;
}

.wpcf7-response-output {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto !important;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
  display: block;
}

/* reCAPTCHAバッジを左下に配置 */
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
  bottom: 10px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

#cf7-area .wpcf7-checkbox input[type=checkbox] {
  appearance: auto; /* CF7のチェックボックスのネイティブな見た目を回復 */
  margin-right: 0.5rem; /* ラベルとの間隔を調整 */
}

#cf7-area2 .wpcf7-checkbox input[type=checkbox] {
  appearance: auto; /* CF7のチェックボックスのネイティブな見た目を回復 */
  margin-right: 0.5rem; /* ラベルとの間隔を調整 */
  /* 必要に応じて、幅や高さも調整できます */
  /* width: 1em; height: 1em; */
}

.hero-news {
  height: 450px;
  background: url("../images/common/bg.png") no-repeat center top/cover;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-news .hero-news__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero-news .hero-news__news {
  width: 100%;
}
.hero-news .hero-news__sub-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.hero-news .hero-news__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.news-list__bg {
  background-color: #c8f2f7;
  width: 100%;
  padding: 6.25rem 1.25rem;
}

.news-list {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem 0.5rem;
  display: grid;
  gap: 1.5rem;
}
.news-list .news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.news-list .news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.news-list .news-item__link {
  display: block;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}
.news-list .news-item__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
}
.news-list .news-item__date {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}
.news-list .news-item__content {
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.hero-policy {
  height: 450px;
  background: url("../images/common/bg.png") no-repeat center top/cover;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-policy .hero-policy__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero-policy .hero-policy__news {
  width: 100%;
}
.hero-policy .hero-policy__sub-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.hero-policy .hero-policy__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.policy-card {
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem 4rem;
  max-width: 1100px;
  margin: 2rem auto;
}
.policy-card__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
.policy-card__heading {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}
.policy-card__heading::before {
  content: "";
  display: inline-block;
  background-color: #00c2d9;
  margin-right: 1rem;
  width: 10px;
  height: 20px;
  align-items: center;
  vertical-align: middle;
}
.policy-card__text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 2rem auto;
}
.policy-card__text:last-child {
  text-align: end;
}
.policy-card__list {
  margin-bottom: 1rem;
  counter-reset: number;
  list-style: none;
  padding-left: 1.5em;
  position: relative;
}
.policy-card__list--decimal {
  padding-left: 2rem;
}
.policy-card__list--decimal ol {
  list-style: none;
  counter-reset: number;
}
.policy-card__list--decimal li {
  position: relative;
  padding-left: 40px;
}
.policy-card__list--decimal li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}
.policy-card__list--bullet {
  list-style: disc inside;
  padding-left: 2rem;
}
.policy-card__list li {
  margin: 0.5rem auto;
  line-height: 1.5;
}

.hero {
  background: url("../images/common/bg.png") no-repeat center top/cover;
  color: #fff;
  padding: 2.25rem 0 3.5rem;
  height: 37.5rem;
  display: flex;
}
.hero__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
  }
}
.hero__content {
  width: 100%;
  color: #000;
}
.hero__title {
  margin: 0 0 0.75rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.08;
  color: inherit;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
.hero__title .highlight {
  display: inline-block;
  background-color: #007280;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin: 0.125rem;
  border-radius: 0.25rem;
  box-decoration-break: clone;
}
.hero__lead {
  margin: 0 0 1rem;
  font-size: 1.625rem;
  opacity: 0.95;
  font-weight: bold;
}
@media screen {
  .hero__lead {
    font-size: 1.125rem;
  }
}
.hero__visual {
  width: 100%;
  max-width: 25rem;
  margin-top: 0;
}
.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.875rem;
}

.intro {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-direction: row;
  text-align: left;
}
.intro__text {
  flex: 1;
}
.intro h2 {
  position: relative;
  color: #0076a3;
  padding: 0 1.25rem;
  margin: 0 0 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: start;
}
.intro h2:nth-of-type(1) {
  padding-left: 0;
}
.intro p {
  color: #0b2b36;
  line-height: 1.8;
  margin: 0 0 1.875rem;
  font-size: 1rem;
}
.intro .badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.intro .badge-list li {
  width: 100%;
}
.intro .badge-list .badge-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}
.intro .badge-list .badge {
  background-color: #0076a3;
  color: #fff;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 9.375rem;
  text-align: center;
}
.intro .badge-list .badge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-left: 11px solid #0076a3;
}
.intro .badge-list .badge-description {
  margin: 0;
  color: #0b2b36;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.intro__phones {
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 0.25rem;
  overflow: hidden;
}
.intro__phones .phone {
  flex: 0 0 calc((100% - 0.75rem) / 2);
  max-width: calc((100% - 0.75rem) / 2);
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.intro__phones .phone img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 66vh;
  border-radius: 0.75rem;
}

.guide {
  padding: 40px 16px;
  color: var(--guide-text);
  background: #fff;
}
.guide .guide__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.guide .guide__title {
  font-size: 1.875rem;
  color: #00c2d9;
  text-align: left;
  margin: 0 0 30px;
  font-weight: 700;
}
.guide .guide__subtitle {
  position: relative;
  text-align: left;
  margin: 20px 0;
  font-weight: 700;
  padding-left: 1.25rem;
}
.guide .guide__lead {
  margin: 0 0 50px;
  color: var(--guide-muted);
  line-height: 1.8;
  font-size: 14px;
}
.guide .guide__card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  border: 2px solid #00c2d9;
  border-radius: 0.625rem;
  padding: 18px;
  margin: 8px 0 24px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02) inset;
}
.guide .guide__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--guide-accent);
  padding-top: 2px;
}
.guide .guide__icon svg {
  width: 44px;
  height: 44px;
}
.guide .guide__body {
  min-width: 0;
}
.guide .guide__step {
  margin: 0 0 8px;
  font-size: 16px;
  color: #00c2d9;
  font-weight: 700;
}
.guide .guide__substep {
  font-size: 18px;
  position: relative;
  padding-left: 14px;
  margin: 20px 0;
}
.guide .guide__text {
  margin: 0;
  color: var(--guide-text);
  font-size: 14px;
  line-height: 1.7;
  list-style-position: outside;
}
@media (min-width: 768px) {
  .guide .guide {
    padding: 56px 24px;
  }
  .guide .guide__card {
    padding: 44px;
    grid-template-columns: 72px 1fr;
    gap: 40px;
  }
  .guide .guide__icon svg {
    width: 52px;
    height: 52px;
  }
  .guide .guide__step {
    font-size: 18px;
  }
  .guide .guide__text {
    font-size: 15px;
  }
}
@media (min-width: 1100px) {
  .guide .guide {
    padding: 64px 0;
  }
  .guide .guide__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
  }
  .intro__phones {
    max-width: 100%;
    gap: 0.5rem;
  }
  .intro__phones .phone {
    flex: 0 0 clamp(5.625rem, 44%, 8.75rem);
    max-width: clamp(5.625rem, 44%, 8.75rem);
  }
  .intro__phones .phone img {
    max-height: none;
  }
  .hero {
    height: auto;
    padding: 1.5rem 0 2.25rem;
  }
}
.notice {
  background: transparent;
  padding: 28px 16px;
  color: #122;
}
.notice__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}
.notice__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 20px 0 20px;
}
.notice__list {
  margin: 0 auto;
  padding-left: 1.15em;
  list-style: disc;
  max-width: 680px;
  color: #233238;
  line-height: 1.8;
  font-size: 0.9rem;
}
.notice__list li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .notice {
    padding: 18px 12px;
  }
  .notice__inner {
    padding: 0;
  }
  .notice__list {
    font-size: 0.88rem;
    max-width: 100%;
    padding-left: 1em;
  }
  .notice__title {
    font-size: 0.9rem;
  }
}

.faq {
  padding: 40px 16px;
}
.faq .faq__inner {
  max-width: 980px;
  margin: 0 auto;
}
.faq__title {
  color: #0b2b36;
  font-weight: 700;
  margin: 0 0 18px;
  font-size: 1.125rem;
}
.faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq__item {
  border-top: 1px solid #00c2d9;
  position: relative;
}
.faq__item:last-child {
  border-bottom: 1px solid #00c2d9;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  background: transparent;
}
.faq__question .faq__qmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.875rem;
  flex: 0 0 26px;
  text-align: center;
}
.faq__question .faq__qtext {
  flex: 1 1 auto;
  font-weight: 700;
  color: #0b2b36;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .faq__question .faq__qtext {
    font-size: 0.875rem;
  }
}
.faq__question .faq__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #00c2d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transform: rotate(0deg);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.faq__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 0 16px;
  background-color: #c8f2f7;
  color: #0b2b36;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease, padding 180ms ease;
}
.faq__answer .faq__amark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #00c2d9;
  font-weight: 700;
  font-size: 1.875rem;
  flex: 0 0 26px;
  text-align: center;
}
.faq__answer .faq__atext {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
  color: #0b2b36;
}
@media screen and (max-width: 768px) {
  .faq__answer .faq__atext {
    font-size: 0.875rem;
  }
}
.faq__item.is-open .faq__question {
  background: transparent;
}
.faq__item.is-open .faq__question .faq__icon {
  transform: rotate(0deg);
  background: transparent;
}
.faq__item.is-open .faq__answer {
  padding: 1.875rem 1.125rem;
  opacity: 1;
  max-height: 800px;
}
.faq__item.is-open .faq__atext {
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
  white-space: normal;
  word-break: break-word;
}
@media (min-width: 768px) {
  .faq__question {
    padding: 16px 20px;
  }
  .faq__answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cta-register {
  padding: 36px 0;
}

.cta-register__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-register__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-register__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-register__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  color: #007280;
}

.cta-register__lead {
  margin: 20px 0;
  color: #000000;
  line-height: 1.6;
  max-width: 880px;
}

.cta-register__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 0;
  align-self: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
}

.btn--primary {
  background: #00c2d9;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 160, 233, 0.18);
}

.btn--ghost {
  background: transparent;
  color: #012b41;
  border: 1px solid rgba(1, 43, 65, 0.08);
  padding: 9px 14px;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .cta-register__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-register__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .btn {
    width: auto;
  }
  .cta-register__title {
    font-size: 18px;
  }
  .cta-register {
    padding: 24px 0;
  }
}
.cta-register__bar {
  display: inline-block;
  width: 8px;
  height: 28px;
  background: #00c2d9;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 115, 192, 0.25);
}

@media (max-width: 767px) {
  .cta-register__title {
    font-size: 18px;
    gap: 8px;
  }
  .cta-register__bar {
    width: 6px;
    height: 24px;
  }
}
.hero-news {
  height: 450px;
  background: url("../images/common/bg.png") no-repeat center top/cover;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-news__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-news__content {
  width: 100%;
  text-align: left;
}
.hero-news__content > .hero-news__sub-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.hero-news__content > .hero-news__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.post-single__content {
  min-height: 50vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.375rem 1rem;
}
.post-single__article {
  background: #fff;
  padding: 1.5rem;
}
.post-single__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  word-break: break-word;
}
.post-single__meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1rem;
}
.post-single__thumbnail {
  margin-bottom: 1rem;
}
.post-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.post-single__body {
  font-size: 1rem;
  line-height: 1.8;
  overflow-wrap: break-word;
}
.post-single__body img {
  max-width: 100%;
  height: auto;
}
.post-single__body p {
  margin-bottom: 1rem;
}
.post-single__body a {
  color: #00c2d9;
  text-decoration: underline;
}
.post-single__body a:hover {
  text-decoration: none;
}

.not-found-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
  text-align: center;
  background-color: #c8f2f7;
}
.not-found-page .not-found-main {
  max-width: 1100px;
  width: 100%;
}
.not-found-page .not-found__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}
.not-found-page .not-found__text {
  font-size: 1rem;
  color: #555;
}
.not-found-page .not-found__text .not-found__link {
  color: #0073aa;
  text-decoration: underline;
}
.not-found-page .not-found__text .not-found__link:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */