/* Minimal reset (formerly rest.css) */
body,
h1,
h2,
h3,
ul,
li,
p,
dl {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #666;
}

ul,
ol {
  list-style: none;
}

:root {
  --font-sans: "Zen Kaku Gothic New", system-ui, sans-serif;
  --text: #666666;
  --white: #fff;
  --accent-blue:#0097C2;
  --accent-pink:#DD6A87;
  --bg:#F7FCFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  font-feature-settings: "palt";
  font-kerning: normal;
  background: var(--white);
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

p {
  color: inherit;
  font-weight: 500;
  line-height: 1.75;
}

.about-area-list,
.info-profile address{
  line-height: 1.75;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.support-image picture,
.support-safety-image picture,
.about-image picture {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 24px;
}
.br-sp{
  display: none;
}
@media (max-width: 760px) {
  .br-sp{
    display: block;
  }
  section {
    margin: 70px auto;
  }
  .pc-only{
    display: none;
  }
}


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: clamp(16px, 2.2vw, 32px);
  background-color: var(--white);
}

.header-inner {
  width: min(14400px, calc(100% - 100px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.4vw, 28px);
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--accent-blue);
  font-weight: 700;
  white-space: nowrap;
}

.header .brand img {
  width: clamp(160px, 24vw, 387px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  display: block;
  grid-column: 1;
  grid-row: 1;
  background: var(--accent-blue);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.global-nav {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 28px);
  color: #68777b;
  font-size: clamp(11px, 1.35vw, 18px);
  font-weight: 500;
}

.global-nav a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: var(--accent-blue);
}

.social-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sns {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
}

.sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .sns span{
  display: none;
}

.footer{
  padding: clamp(48px, 6vw, 72px) 0 32px;
  background-color: var(--white);
}

.footer-inner{
  max-width: 1000px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(35px, 1.4vw, 28px);
}

.footer .brand img{
  width: clamp(160px, 24vw, 387px);
}

.copyright{
  margin: 40px 16px 0;
  color: #8c8c8c;
  font-size: 13px;
  text-align: center;
}

.page-top{
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 20;
  width: clamp(62px, 8vw, 78px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 9px 8px 8px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid #9BD0E1;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(0, 151, 194, 0.1);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, box-shadow 0.2s ease;
}

.page-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.page-top:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 151, 194, 0.14);
}

.page-top img{
  width: min(42px, 70%);
}

.page-top span{
  display: block;
}

.fv {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.fv-inner {
  position: relative;
  min-height: 520px;
  margin: 0 auto;
}

.fv-img {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

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

.news-inner{
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.section-heading span {
  color: var(--accent-blue);
  font-size: 22px;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 2vw, 35px);
  letter-spacing: 2px;
}

.news-more {
  position: absolute;
  right: 0;
  bottom: 8px;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.news-more:hover{
  color: var(--accent-blue);
}

.news-more::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  display: inline-block;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  vertical-align: 1px;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 8px 0;
}

.news-item time {
  color: #8c8c8c;
  font-size: 18px;
}

.news-item p {
  margin: 0;
  font-size:clamp(18px, 2vw, 20px);
  font-weight: 700;
}

.news-item a{
  background: linear-gradient(currentColor, currentColor) left 100% / 0 1px no-repeat;
  transition: color 0.2s ease;
}

.news-item a:hover{
  color: var(--accent-blue);
  background-size: 100% 1px;
}

.news-page{
  max-width: 100%;
  min-height: 50vh;
  padding-top: 0;
  overflow: hidden;
  margin-top: 30px;
}

.news-page-heading{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-bottom: 100px;
  padding: 32px 16px 34px;
  text-align: left;
  background-color: var(--bg);
}

.news-page-heading-inner{
  max-width: 760px;
  margin: 0 auto;
}
.news-page-heading h1{
  color: var(--accent-blue);
  font-size: clamp(34px, 5vw, 46px);
}

.news-page-heading p{
  margin: 18px 0 0;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
}

.news-page-list{
  max-width: 760px;
  margin: 0 auto;
}

.pagination{
  margin-top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination a,
.pagination span{
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--accent-blue);
  border-radius: 6px;
}

.pagination a{
  transition: color 0.2s ease, background-color 0.2s ease;
}

.pagination a:hover,
.pagination-current{
  color: var(--white);
  background-color: var(--accent-blue);
}

.pagination .pagination-current{
  color: var(--white);
}

.pagination-disabled{
  color: #a6b8bd;
  border-color: #d5e6eb;
}

.news-detail{
  max-width: 860px;
  margin: clamp(64px, 8vw, 96px) auto;
  padding: 0 16px;
}

.news-detail-heading{
  padding-bottom: 32px;
  border-bottom: 1px solid #9BD0E1;
}

.news-detail-heading time{
  color: #8c8c8c;
  font-size: clamp(16px, 2vw, 18px);
}

.news-detail-heading h1{
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.news-detail-body{
  padding: 40px 0;
  display: grid;
  gap: 18px;
}

.news-detail-body p{
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.news-detail-body img{
  width: 100%;
  height: auto;
  margin-top: 24px;
  border: 1px solid #e5eef1;
}

.news-detail-images{
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.news-detail-images img{
  margin-top: 0;
}

.news-detail-nav{
  margin-top: 16px;
  text-align: center;
}

.news-detail-nav a{
  min-width: 220px;
  min-height: 54px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-weight: 700;
  border: 1px solid var(--accent-blue);
  border-radius: 6px;
}

@media (max-width: 1000px) {
  .header-inner {
    min-height: auto;
    padding: 16px;
  }

  .fv {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .header{
    padding-top: 0;
  }

  .header.is-menu-open{
    position: fixed;
    inset: 0;
    overflow-y: auto;
    background-color: var(--bg);
  }

  .fv-inner {
    padding: 0;
  }

  .news {
    display: grid;
  }

  .header-inner {
    position: relative;
    width:100%;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--white);
  }

  .header.is-menu-open .header-inner {
    min-height: 100vh;
    min-height: 100dvh;
    align-content: flex-start;
    background-color: var(--bg);
  }

  .header .brand {
    flex: 1 1 auto;
  }

  .header .brand img {
    width: clamp(210px, 72vw, 290px);
  }

  .menu-toggle {
    display: grid;
  }

  .header .global-nav,
  .header .social-links {
    display: none;
    width: 100%;
    background-color: var(--bg);
  }

  .header.is-menu-open .global-nav,
  .header.is-menu-open .social-links {
    position: static;
    display: flex;
  }

  .header .global-nav {
    flex-direction: column;
    align-items: stretch;
    order: 3;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    padding: clamp(28px, 6dvh, 56px) 24px 24px;
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .header .global-nav a{
    position: relative;
    padding: 16px 30px 16px 4px;
    border-bottom: 1px solid rgba(0, 151, 194, 0.18);
  }

  .header .global-nav a:first-child{
    border-top: 1px solid rgba(0, 151, 194, 0.18);
  }

  .header .global-nav a::after{
    position: absolute;
    top: 50%;
    right: 6px;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 1px solid var(--accent-blue);
    border-right: 1px solid var(--accent-blue);
    transform: translateY(-50%) rotate(45deg);
  }

  .header .social-links {
    order: 4;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 16px max(24px, env(safe-area-inset-bottom));
  }

  .header.is-menu-open .social-links{
    position: relative;
  }

  .header .social-links .sns{
    position: relative;
    width: min(100%, 360px);
    max-width: none;
    height: 62px;
    min-height: 0;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-blue);
    background-color: var(--white);
    border: 1px solid rgba(0, 151, 194, 0.42);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 151, 194, 0.07);
  }

  .header .social-links .sns span{
    display: none;
  }

  .header .social-links .sns img{
    position: absolute;
    left: 24px;
    width: 34px;
    height: auto;
  }

  .header .social-links .sns::after{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transform: translateX(5px);
  }

  .header .social-links .sns-line::after{content: "LINEで相談";}
  .header .social-links .sns-instagram::after{content: "Instagram";}

  .footer-inner{
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer .brand img{
    width: clamp(220px, 78vw, 300px);
  }

  .footer .global-nav{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(14px, 4vw, 18px);
  }

  .footer .social-links{
    justify-content: flex-start;
  }

  .copyright{
    font-size: 12px;
  }

  .fv-inner {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .fv-img {
    width: 100%;
    min-height: 260px;
    border-radius: 14px;
  }

  .news-inner {
    display: contents;
  }

  .section-heading {
    order: 1;
    margin-bottom:3rem;
  }

  .news-list {
    order: 2;
  }

  .news-more {
    position: static;
    order: 3;
    justify-self: end;
    margin-top: 12px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .support-safety-list{
    flex-direction: column;
  }

  .support-safety-item:not(:last-child){
    padding-right: 0;
    padding-bottom: clamp(20px, 6vw, 40px);
  }

  .support-safety-item + .support-safety-item{
    padding-left: 0;
    padding-top: clamp(20px, 6vw, 40px);
    border-left: 0;
    border-top: 1px solid #9BD0E1;
  }
}

.support{
  max-width: 100%;
}
.support-inner{
  max-width: 1000px;
  margin: 0 auto;
}
.support-text h3{
  font-size: clamp(22px, 4vw, 30px);
  color:var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.support-text h3 span{
  font-size: clamp(26px, 3vw, 35px);
  color:var(--accent-pink)
}
.support-text{
  width: 50%;
}
.support-text p{
  text-align: justify;
  text-align-last: left;
  font-weight: 500;
}
.support-main{
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 64px max(16px, calc((100vw - 1000px) / 2));
  background-color:var(--bg);
  margin-bottom: 4rem;
}
.support-content{
  display: flex;
  align-items: center;
  gap:40px;
}
.support-main::before{
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: -150px;
  width: min(30vw, 300px);
  aspect-ratio: 638 / 669;
  content: "";
  background: url("../images/bg02.png") left bottom / contain no-repeat;
  background: image-set(
    url("../images/bg02.webp") type("image/webp"),
    url("../images/bg02.png") type("image/png")
  ) left bottom / contain no-repeat;
  pointer-events: none;
}
.support-main::after{
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background-image:
    url("../images/bg03.svg"),
    url("../images/bg01.png");
  background-image:
    url("../images/bg03.svg"),
    image-set(
      url("../images/bg01.webp") type("image/webp"),
      url("../images/bg01.png") type("image/png")
    );
  background-position:
    center calc(50% + 120px),
    right top;
  background-size:
    100% auto,
    min(30vw, 300px) auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.support-main > *{
  position: relative;
  z-index: 2;
}
.support-image{
  width: 50%;
}

@media (max-width: 760px) {
  .support-main::before{
    bottom: -60px;
    width: min(40vw, 360px);
  }
  .support-main::after{
      background-size: min(40vw, 360px);
  }
}


.support-safety-text{
  width:100%;
  text-align: center;
}
.support-safety-text p{
  margin-top: 1rem;
  text-align: center;
  text-align-last: center;
}
.support-text h3 .support-safety-count{
  font-size: clamp(32px, 4.5vw, 43px);
}
.support-safety-list{
  display: flex;
  text-align: center;
  margin: 4rem 0;
}
.support-safety-item{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.support-safety-item:not(:last-child){
  padding-right: clamp(20px, 3vw, 40px);
}
.support-safety-item + .support-safety-item{
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid #9BD0E1;
}
.support-safety-item p{
  text-align: justify;
  text-align-last: left;
}
.support-safety-number{
  font-size: clamp(40px, 4.5vw, 55px);
  color: #9DD2E3;
}
.support-safety-title{
  font-size: clamp(18px, 3vw, 20px);
  color: var(--accent-blue);
  min-height: 3.8em;
}
.support-safety-title span{
  font-weight: 700;
  font-size: clamp(20px, 5vw, 23px);
  background: linear-gradient(#F3BAC8, #F3BAC8) left calc(100% - 2px) / 100% 4px no-repeat;
  box-decoration-break: clone;
}

.support-safety-image{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.support-safety-image img{
  width: max(100%, 760px);
  margin-left: calc((100% - max(100%, 670px)) * 0.42);
  max-width: none;
  height: auto;
}

.support-service{
  position: relative;
  isolation: isolate;
  max-width: none;
  width: 100vw;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
  background-color: var(--bg);
}

.support-service-inner{
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 16px;
}

.support-service::before{
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: -80px;
  width: min(42vw, 360px);
  aspect-ratio: 638 / 669;
  content: "";
  background: url("../images/bg02.png") left bottom / contain no-repeat;
  background: image-set(
    url("../images/bg02.webp") type("image/webp"),
    url("../images/bg02.png") type("image/png")
  ) left bottom / contain no-repeat;
  pointer-events: none;
}

.support-service-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.support-service-item{
  padding: 20px 16px;
  display: grid;
  grid-template-rows: 88px 4.2em auto 2.6em;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--accent-blue);
  border-radius: 16px;
}

.support-service-item img{
  width: 80px;
  margin: 0 auto;
}

.support-service-lead{
  color: var(--accent-pink);
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 700;
  letter-spacing: 1px;
}

.support-service-item hr{
  width: 100%;
  margin: 16px 0;
  border: 0;
  border-top: 1px solid var(--accent-blue);
}

@media (max-width: 760px) {
  .support-service-item hr{
      margin: 8px 0;
  }
}

.support-service-item h4{
  margin: 0;
  color: var(--accent-blue);
  font-size: clamp(18px, 2vw, 19px);
}

.flow{
  position: relative;
  max-width: 100%;
  margin: 100px auto;
  padding: 0;
  overflow: hidden;
}

.flow-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.flow .section-heading{
  margin-bottom: clamp(72px, 8vw, 104px);
}

.flow-list{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 48px;
  display: grid;
  gap:42px;
}

.flow-list::before{
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 5px;
  width: 1px;
  content: "";
  background-color: #9BD0E1;
}

.flow-list::after{
  position: absolute;
  bottom:1px;
  left: 1px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 1px solid #9BD0E1;
  border-bottom: 1px solid #9BD0E1;
  transform: rotate(45deg);
}

.flow-item{
  position: relative;
}

.flow-item::before{
  position: absolute;
  top: 8px;
  left: -48px;
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--accent-blue);
  border-radius: 50%;
}

.flow-step{
  display: block;
  color: var(--accent-blue);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flow-text h3{
  margin: 10px 0 18px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-item:last-child .flow-text h3{
  color: var(--accent-blue);
}

.flow-text p{
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.area-image{
  width: 100vw;
  /*margin-top: clamp(72px, 8vw, 96px);*/
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  opacity: 0.72;
  pointer-events: none;
}

.area-image img{
  width: 100%;
  max-width: none;
}

.about{
  position: relative;
  isolation: isolate;
  max-width: 100%;
  padding: 0;
}

.about::before{
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: url("../images/bg04.svg") center 21% / 100% auto no-repeat;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about::before{
    display: none;
  }
}

.about-inner{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-content{
  display: grid;
  gap: 100px;
}

.about .section-heading,
.about-text,
.about-area{
  position: relative;
  z-index: 2;
}

.about-block{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.about-block-reverse{
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-image img{
  width: 100%;
  aspect-ratio: 520 / 320;
  object-fit: cover;
  border-radius: 14px;
}

@media (min-width: 1001px) and (max-width: 1440px) {
  .about-block:not(.about-block-reverse) .about-image{
    margin-left: calc((100vw - 1000px) / -2 - 16px);
  }

  .about-block:not(.about-block-reverse) .about-image img{
    width: calc(100% + (100vw - 1000px) / 2 + 16px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .about-block-reverse .about-image{
    margin-right: calc((100vw - 1000px) / -2 - 16px);
  }

  .about-block-reverse .about-image img{
    width: calc(100% + (100vw - 1000px) / 2 + 16px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 1000px) {
  .about-block:not(.about-block-reverse) .about-image{
    margin-left: -16px;
  }

  .about-block:not(.about-block-reverse) .about-image img{
    width: calc(100% + 16px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .about-block-reverse .about-image{
    margin-right: -16px;
  }

  .about-block-reverse .about-image img{
    width: calc(100% + 16px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.about-text{
  max-width: 460px;
}

.about-block-reverse .about-text{
  justify-self: center;
}

.about-text h3{
  margin-bottom: 28px;
  color: var(--accent-blue);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.08em;
}

.about-text h3 span{
  font-size: clamp(26px, 3vw, 35px);
  color: var(--accent-pink);
}

.about-text p{
  color: var(--text);
  font-weight: 500;
}

.about-area{
  max-width: none;
  margin: clamp(120px, 12vw, 150px) 0 0;
  padding: clamp(56px, 7vw, 72px) 0 0;
  border-top: 1px solid rgba(155, 208, 225, 0.7);
}

.about-area-text{
  text-align: center;
}

.about-area-text h3{
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: 0.08em;
}

#support-service-title{
  color: var(--text);
}

.about-area-text span{
  display: block;
  color: var(--accent-pink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-area-text p{
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .about-area-text p{
  margin-top: 8px;
  }
}

.about-area-map{
  margin-top: clamp(48px, 7vw, 72px);
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.9fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: center;
}

.about-area-map img{
  width: 100%;
}

.about-area-list{
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.about-area-list li::before{
  content: "・";
}

.about-area-note{
  margin-top: 8px;
  font-weight: 500;
}

.info{
  max-width: 100%;
  margin: 0;
  padding: 96px 0 104px;
  background-color: var(--bg);
}

.info-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.info .section-heading{
  margin-bottom: 40px;
}

.info-profile{
  display: grid;
  justify-items: center;
  text-align: center;
}

.info-profile img{
  width: min(100%, 580px);
}

.info-profile address{
  margin-top: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.info-profile address p{
  margin: 0;
}

.info-profile address p:first-child{
  font-size: clamp(16px, 2vw, 19px);
}

.info-profile address p:nth-child(2){
  margin-top: 8px;
  color: var(--accent-blue);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.info-profile address p:nth-child(2)::before{
  margin-right: 8px;
  content: "☎";
  font-size: 0.76em;
  vertical-align: 0.04em;
}

.info-profile address p:nth-child(2) a{
  color: inherit;
}

.info-profile address p:last-child{
  color: var(--accent-blue);
  font-size: 15px;
}

.info-map{
  max-width: 860px;
  margin: 48px auto 0;
  overflow: hidden;
  border-radius: 14px;
}

.info-map iframe{
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  display: block;
}

.info-contact{
  max-width: 740px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.info-contact-link{
  min-height: 118px;
  padding: 16px 30px;
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-areas:
    "label label"
    "icon text";
  gap: 8px 18px;
  align-items: center;
  color: var(--accent-blue);
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--accent-blue);
  border-radius: 14px;
  box-shadow: 0 8px 14px rgba(0, 151, 194, 0.12);
}

.info-contact-link span:first-child{
  grid-area: label;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.info-contact-link img{
  grid-area: icon;
  width: 54px;
  justify-self: end;
}

.info-contact-link span:last-child{
  grid-area: text;
  justify-self: start;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.info-documents{
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.info-documents-row{
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.info-documents a{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.info-documents a::before{
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--accent-blue);
}

.info-documents img,
.info-partner a img{
  width: 18px;
  flex: 0 0 auto;
}

.info hr{
  max-width:1000px;
  margin: 52px auto 42px;
  border: 0;
  border-top: 1px solid #9BD0E1;
}

.info-partner{
  max-width: 1000px;
  margin: 0 auto;
}

.info-partner > span{
  color: var(--accent-blue);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.info-partner p{
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.info-partner a{
  width: min(100%, 350px);
  min-height: 62px;
  margin: 56px auto 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent-blue);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: var(--white);
  border: 1px solid var(--accent-blue);
  border-radius: 6px;
  box-shadow: 0 8px 14px rgba(0, 151, 194, 0.12);
}

@supports (width: 100dvw) {
  .support-main{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    padding: 64px max(16px, calc((100dvw - 1000px) / 2));
  }

  .support-safety-image{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
  }

  .support-service{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
  }

  .area-image{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
  }

  .news-page-heading{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
  }

}

@media (max-width: 850px) {
  .support-content{
    flex-direction: column;
  }

  .support-text,
  .support-image{
    width: 100%;
  }
}

@media (max-width: 819px) {
  .info-documents{
    margin-top: 42px;
    align-items: flex-start;
    gap: 14px;
  }

  .info-documents-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .news-page-heading{
    margin-bottom: 56px;
    padding-top: 0;
  }

  .info{
    padding: 72px 0 80px;
  }

  .info .section-heading{
    margin-bottom: 40px;
  }

  .info-profile img{
    width: min(100%, 360px);
  }

  .info-profile address{
    margin-top: 18px;
    letter-spacing: 0.04em;
  }

  .info-profile address p:nth-child(2){
    font-size: clamp(32px, 10vw, 42px);
  }

  .info-map{
    margin-top: 36px;
    border-radius: 12px;
  }

  .info-contact{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .info-contact-link{
    min-height: 108px;
    padding: 18px 24px;
    grid-template-columns: clamp(44px, 12vw, 54px) clamp(140px, 52vw, 200px);
    justify-content: center;
    column-gap: 16px;
  }

  .info-contact-link span:first-child{
    justify-self: center;
  }

  .info-contact-link img{
    width: clamp(44px, 12vw, 54px);
    justify-self: center;
  }

  .info-contact-link span:last-child{
    justify-self: center;
    text-align: center;
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .info hr{
    margin: 40px auto 34px;
  }

  .flow{
    margin-top: 80px;
  }

  .flow .section-heading{
    margin-bottom: 48px;
  }

  .flow-list{
    max-width: none;
    padding-left: 34px;
    gap: 36px;
  }

  .flow-list::before{
    left: 4px;
  }

  .flow-list::after{
    left: 0;
  }

  .flow-item::before{
    left: -34px;
    width: 9px;
    height: 9px;
  }

  .flow-step{
    font-size: 16px;
  }

  .flow-text h3{
    margin: 6px 0 10px;
  }

  .flow-text p{
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .area-image{
    margin-top: 56px;
  }

  .area-image img{
    width: 200%;
    margin-left: -70%;
  }

  .about-block,
  .about-area-map{
    grid-template-columns: 1fr;
  }

  .about-block-reverse .about-image{
    order: -1;
  }

  .about-text,
  .about-block-reverse .about-text{
    max-width: none;
    justify-self: auto;
  }

  .about-area{
    margin-top: 80px;
    padding-top: 48px;
  }

  .about-area-map{
    gap: 28px;
    margin-top: 32px;
  }

  .about-area-list{
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    grid-template-columns: repeat(2, max-content);
    column-gap: 48px;
    justify-content: center;
  }

  .support-service-inner{
    padding: 56px 24px;
  }

  .support-service-list{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .support-safety-title{
    min-height: auto;
    margin: 0.35em 0 1.5em;
  }

  .support-safety-list{
    flex-direction: column;
  }

  .support-safety-item:not(:last-child){
    padding-right: 0;
    padding-bottom: clamp(20px, 6vw, 40px);
  }

  .support-safety-item + .support-safety-item{
    padding-left: 0;
    padding-top: clamp(20px, 6vw, 40px);
    border-left: 0;
    border-top: 1px solid #9BD0E1;
  }

  .about-area-note{
    text-align: center;
  }
}
