/* ============================================
   藤本商会 - Corporate Site Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #3B3B3B;
  line-height: 1.8;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ---------- VISIBILITY UTILITIES ---------- */
.pc-only-block { display: block; }
.pc-only-inline { display: inline; }
.sp-only-block { display: none; }
.sp-only-inline { display: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 / 1920 * 100vw);
  font-weight: bold;
  transition: opacity 0.3s;
  cursor: pointer;
  border: 1px solid #fff;
}

.btn:hover {
  transition: 0.3s;
  color: #2093E3;
  border: 1px solid #2093E3;
  background-color: #fff;
  box-sizing: border-box;
}

.btn--outline {
  border: 2px solid #3B3B3B;
  color: #3B3B3B;
  background: transparent;
  padding: calc(14 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
  letter-spacing: 0.1em;
}

.btn--outline-dark {
  border: 2px solid #3B3B3B;
  color: #3B3B3B;
  background: transparent;
  padding: calc(14 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
}

.btn--white-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: calc(14 / 1920 * 100vw) calc(48 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
}

.btn--blue {
  background: #2093E3;
  color: #fff;
  border: 1px solid transparent; /* ホバー時と同じ太さにしておき、ずれを防ぐ */
  padding: calc(14 / 1920 * 100vw) calc(48 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
}

.btn--white {
  background: #fff;
  color: #2093E3;
  border: none;
  padding: calc(14 / 1920 * 100vw) calc(32 / 1920 * 100vw);
  font-size: calc(14 / 1920 * 100vw);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(120 / 1920 * 100vw);
  background: #fff;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.header__logo {
  margin-left: calc(181 / 1920 * 100vw);
  font-size: calc(31 / 1920 * 100vw);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.header__nav {
  display: flex;
  justify-content: center;
  width: calc(744 / 1920 * 100vw);
  flex: 0 0 auto;
  margin-left: calc(322 / 1920 * 100vw);
}

.header__nav-list {
  display: flex;
  gap: calc(70 / 1920 * 100vw);
}

.header__nav-link {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: #2093E3;
}

.header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2093E3;
  color: #fff;
  height: calc(120 / 1920 * 100vw);
  width: calc(379 / 1920 * 100vw);
  margin-left: calc(151 / 1920 * 100vw);
  padding: 0 calc(32 / 1920 * 100vw);
  font-size: calc(22 / 1920 * 100vw);
  font-weight: 700;
  white-space: nowrap;
  gap: 4px;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.header__cta-main {
  display: flex;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
}

.header__cta-text {
  font-size: calc(22 / 1920 * 100vw);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.header__cta-icon {
  width: calc(26 / 1920 * 100vw);
  height: calc(26 / 1920 * 100vw);
}

.header__cta-note {
  font-size: calc(13 / 1920 * 100vw);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #CF1B1B;
  background: #FFF;
  padding: calc(2 / 1920 * 100vw) calc(6 / 1920 * 100vw);
}

.header__hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ============================================
   MAIN VISUAL
   ============================================ */
.mv {
  position: relative;
  margin-top: calc(120 / 1920 * 100vw);
  height: calc(798 / 1920 * 100vw);
  overflow: hidden;
}

/* 背景デザイン：コンテンツ1（1305x460・#2093E3） */
.mv__bg--1 {
  position: absolute;
  width: calc(1305 / 1920 * 100vw);
  height: calc(460 / 1920 * 100vw);
  background-color: #2093E3;
  bottom: calc(0 / 1920 * 100vw);
  left: calc(0 / 1920 * 100vw);
  z-index: 1;
}

/* 背景デザイン：コンテンツ2（1006x232・#3B3B3B・不透明度60%） */
.mv__bg--2 {
  position: absolute;
  width: calc(1006 / 1920 * 100vw);
  height: calc(232 / 1920 * 100vw);
  background-color: #3B3B3B;
  opacity: 0.6;
  bottom: calc(51 / 1920 * 100vw);
  right: calc(00 / 1920 * 100vw);
  z-index: 1;
}

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

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mv__slide.active {
  opacity: 1;
}

.mv__img {
  overflow: hidden;
  position: absolute;
}

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

/* 左画像：absolute配置 */
.mv__img--left {
  width: calc(971 / 1920 * 100vw);
  height: calc(558 / 1920 * 100vw);
  top: calc( 37/ 1920 * 100vw);
  left: calc(144 / 1920 * 100vw);
  z-index: 2;
}

/* 右画像：absolute配置 */
.mv__img--right {
  width: calc(927 / 1920 * 100vw);
  height: calc(521 / 1920 * 100vw);
  bottom: calc(127 / 1920 * 100vw);
  right: calc(0 / 1920 * 100vw);
  z-index: 2;
}

.mv__text {
  position: absolute;
  bottom: calc(40 / 1920 * 100vw);
  left: calc(120 / 1920 * 100vw);
  font-size: calc(76 / 1920 * 100vw);
  font-weight: bold;
  font-family: "Heebo", sans-serif;
  line-height: 130%;
  letter-spacing: 0.08em;
  color: #fff;
  z-index: 3;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CATCHCOPY
   ============================================ */
.catchcopy {
  padding: calc(140 / 1920 * 100vw) calc(40 / 1920 * 100vw) 0;
  text-align: center;
}

.catchcopy__heading {
  font-size: calc(40 / 1920 * 100vw);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.catchcopy__orange {
  color: #F6B13B;
}

.catchcopy__green {
  color: #BBE47D;
  font-weight: 900;
}

.catchcopy__blue {
  color: #2093E3;
}

/* ============================================
   COMPANY INTRO
   ============================================ */
.intro {
  padding: calc(75 / 1920 * 100vw) 0 calc(428 / 1920 * 100vw);
}

.intro__inner {
  display: flex;
  gap: calc(42 / 1920 * 100vw);
  width: calc(1530 / 1920 * 100vw);
  margin: 0 auto;
}

.intro__img {
  position: relative;
  width: calc(767 / 1920 * 100vw);
  height: calc(647 / 1920 * 100vw);
  flex-shrink: 0;
}


.intro__text {
  flex: 1;
  padding-top: calc(75 / 1920 * 100vw);
  width: calc(721 / 1920 * 100vw);
}

.intro__text p {
  font-size: calc(18 / 1920 * 100vw);
  line-height: 2.9;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}

/* ============================================
   AUTO SCROLL IMAGES (Splide)
   ============================================ */
.autoscroll {
  position: absolute;
  overflow: hidden;
  width: calc(1920 / 1920 * 100vw);
  padding: calc(0 / 1920 * 100vw) 0 calc(40 / 1920 * 100vw);
  margin-top: calc(-80 / 1920 * 100vw);
  top: calc(1800 / 1920 * 100vw);
}
.autoscroll-splide .splide__track {
  height: calc(1020 / 1920 * 100vw);
}
.autoscroll-splide .splide__list {
  padding-top: calc(170 / 1920 * 100vw) !important;
}
.autoscroll-splide .splide__slide {
  width: calc(459 / 1920 * 100vw);
  height: calc(576.5 / 1920 * 100vw);
  overflow: hidden;
  will-change: transform;
  /* 上下を斜めにカット（左上・右下を切り落とした平行四辺形） */
  clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
  -webkit-clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
}

.autoscroll-splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICE
   ============================================ */
.service {
  background: linear-gradient(180deg, #2093E3 0%, #D8E0D8 100%);
  padding: calc(471 / 1920 * 100vw) calc(80 / 1920 * 100vw) calc(60 / 1920 * 100vw);
}

.service__title {
  font-size: calc(84 / 1920 * 100vw);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 110%;
  color: #fff;
  font-family: "Heebo", sans-serif;
  width: calc(1363 / 1920 * 100vw);
  margin: 0 auto calc(50 / 1920 * 100vw);
}

.service__inner {
  width: calc(1363 / 1920 * 100vw);
  height: calc(737 / 1920 * 100vw);
  margin: 0 auto;
  background-color: #ffffff80;
}

.service__cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(48 / 1920 * 100vw);
  width: 100%;
  margin: 0 auto;
  padding: calc(82 / 1920 * 100vw) calc(60 / 1920 * 100vw) calc(53 / 1920 * 100vw);
}

.service__card {
  display: block;
  background: #2093E3;
  color: #fff;
  padding: calc(0 / 1920 * 100vw) calc(24 / 1920 * 100vw);
  width: calc(360 / 1920 * 100vw);
  height: calc(500 / 1920 * 100vw);
  text-align: center;
  box-shadow: calc(4/1920*100vw) calc(4/1920*100vw) calc(14/1920*100vw) 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a.service__card:hover {
  opacity: 0.85;
}

.service__card-icon {
  width: calc(152 / 1920 * 100vw);
  height: calc(135 / 1920 * 100vw);
  margin: 0 auto calc(20 / 1920 * 100vw);
}

.service__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service__card-title {
  font-size: calc(26 / 1920 * 100vw);
  font-weight: bold;
  margin-bottom: calc(17 / 1920 * 100vw);
  line-height: 1.6;
  letter-spacing: 0.1em;
  height: calc(159 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__card-text {
  font-size: calc(18 / 1920 * 100vw);
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.service__card:nth-child(3) {
  padding-top: calc(29 / 1920 * 100vw);
}

.service__card:nth-child(3) .service__card-title {
  height: calc(130 / 1920 * 100vw);
}

.service__btn-wrap {
  text-align: center;
}
.service__btn-wrap .btn {
  width: calc(251 / 1920 * 100vw);
  height: calc(65 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 2.9;
  background-color: #2093E3;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.service__btn-wrap .btn:hover {
  background-color: #fff;
  color: #2093E3;
  transition: 0.3s;
  
}
/* ============================================
   PARALLAX SECTION
   ============================================ */
.parallax-section {
  position: relative;
}

.parallax-section__bg {
  height: calc(692 / 1920 * 100vw);
  background: url("../images/bg-building.jpg") center / cover;
  background-attachment: fixed;
}

.parallax-section__content {
  background: #C9E1F150;
  padding: calc(139 / 1920 * 100vw) calc(124 / 1920 * 100vw) calc(36 / 1920 * 100vw);
  height: calc(937 / 1920 * 100vw);
}

.parallax-section__heading {
  font-size: calc(58 / 1920 * 100vw);
  color: #2093E3;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 130%;
  margin-bottom: calc(97 / 1920 * 100vw);
}

.parallax-section__body {
  display: flex;
  align-items: flex-start;
}

.parallax-section__tags {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 1920 * 100vw);
}

.parallax-section__tag {
  display: inline-block;
  padding: calc(10 / 1920 * 100vw) calc(24 / 1920 * 100vw);
  border-radius: calc(4 / 1920 * 100vw);
  font-size: calc(40 / 1920 * 100vw);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  /* 右側が尖った矢印（画像と同じ向き） */
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  
}

.parallax-section__tag--1 {
  background: #BBE47D;
  width: calc(328 / 1920 * 100vw);
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.parallax-section__tag--2 {
  background: #F6B13B;
  width: calc(552 / 1920 * 100vw);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
}

.parallax-section__tag--3 {
  background: #3BD0F1;
  width: calc(668 / 1920 * 100vw);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
}

.parallax-section__map {
  right: calc(124 / 1920 * 100vw);
  bottom:  calc(36 / 1920 * 100vw);
  position: absolute;
  display: flex;
  width: calc(775 / 1920 * 100vw);
  height: calc(792 / 1920 * 100vw);
}

.parallax-section__map-badge {
  position: absolute;
  top: calc(160 / 1920 * 100vw);
  left: calc(-140 / 1920 * 100vw);
  width: calc(238.6 / 1920 * 100vw);
  height: calc(244.6 / 1920 * 100vw);
}

.parallax-section__map img {
  width: 100%;
}

/* ============================================
   NEWS
   ============================================ */
.news {
  position: relative;
  color: #3B3B3B;
  padding: calc(160 / 1920 * 100vw) calc(80 / 1920 * 100vw) calc(217 / 1920 * 100vw);
  transition: color 0.8s ease;
}

.news.is-visible {
  color: #fff;
}

.news::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
  background-image: url("../images/news-bg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}

.news.is-visible::before {
  opacity: 1;
}

.news__inner {
  position: relative;
  z-index: 1;
  width: calc(1350 / 1920 * 100vw);
  height: calc(678 / 1920 * 100vw);
  margin: 0 auto;
}

.news__title {
  font-size: calc(84 / 1920 * 100vw);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  font-family: "Heebo", sans-serif;
}

.news__subtitle {
  font-size: calc(24 / 1920 * 100vw);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: calc(80 / 1920 * 100vw);
}

.news__cards {
  display: flex;
  gap: calc(75 / 1920 * 100vw);
  margin-bottom: calc(40 / 1920 * 100vw);
}

.news__card {
  flex: 0;
}

.news__card-img {
  width: calc(400 / 1920 * 100vw);
  height: calc(291 / 1920 * 100vw);
  overflow: hidden;
  margin-bottom: calc(16 / 1920 * 100vw);
}

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

.news__card-date {
  display: block;
  font-size: calc(22 / 1920 * 100vw);
  margin-bottom: calc(25 / 1920 * 100vw);
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
}

.news__card-title {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 500;
  margin-bottom: calc(9 / 1920 * 100vw);
  letter-spacing: 0.1em;
  color: #fff;
}

.news__card-text {
  font-size: calc(16 / 1920 * 100vw);
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 400;
}

.news__btn-wrap {
  text-align: center;
}

.news .btn--white-outline {
  width: calc(251 / 1920 * 100vw);
  height: calc(65 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 2.9;
  transition: 0.3s;
  background-color: #fff;
  color: #2093E3;
  border: 1px solid #2093E3;
}

.news .btn--white-outline:hover {
  border-color: #fff;
  background-color: #2093E3;
  color: #fff;
  transition: 0.3s;
}

/* ============================================
   RECRUIT
   ============================================ */
.recruit {
  overflow: hidden;
  position: relative;
  height: calc(600 / 1920 * 100vw);
}

.recruit__grid {
  display: flex;
  height: 100%;
  position: relative;
}

.recruit__col {
  display: flex;
  flex-direction: column;
  width: calc(200 / 1920 * 100vw);
  flex-shrink: 0;
}

.recruit__col--left {
  width: calc(392 / 1920 * 100vw);
  margin-right: calc(40 / 1920 * 100vw);
}

.recruit__col--left2 {
  width: calc(302 / 1920 * 100vw);
}

.recruit__col--right {
  width: calc(302 / 1920 * 100vw);
  margin-right: calc(40 / 1920 * 100vw);
}

.recruit__col--right2 {
  width: calc(392 / 1920 * 100vw);
}

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

.recruit__col--left img,
.recruit__col--right2 img{
  height: calc(254 / 1920 * 100vw);
  margin-bottom: calc(40 / 1920 * 100vw);
}
.recruit__col--left2 img,
.recruit__col--right img{
  height: calc(453 / 1920 * 100vw);
  margin-bottom: calc(20 / 1920 * 100vw);
}
.recruit__col--left,
.recruit__col--right2 {
  animation: recruitScrollDown 20s linear infinite;
  will-change: transform;
}

.recruit__col--left2,
.recruit__col--right {
  animation: recruitScrollUp 20s linear infinite;
  will-change: transform;
}

@keyframes recruitScrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50%)); }
}

@keyframes recruitScrollUp {
  0% { transform: translateY(calc(-50%)); }
  100% { transform: translateY(0); }
}

.recruit__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.recruit__title {
  font-size: calc(84 / 1920 * 100vw);
  font-weight: 500;
  color: #2093E3;
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: "Heebo", sans-serif;
}

.recruit__subtitle {
  font-size: calc(24 / 1920 * 100vw);
  color: #2093E3;
  font-family: 500;
  letter-spacing: 0.04em;
  margin-bottom: calc(80 / 1920 * 100vw);
}

.recruit__catch {
  font-size: calc(34 / 1920 * 100vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #2093E3;
  margin-bottom: calc(100 / 1920 * 100vw);
}

/* ============================================
   ABOUT US
   ============================================ */
.about {
  
  padding: calc(130 / 1920 * 100vw) 0 0 0;
  position: relative;
}

.about__inner {
  background: linear-gradient(180deg, #2093E3 0%, #D8E0D8 100%);
  display: flex;
  width: calc(1326 / 1920 * 100vw);
  height: calc(676 / 1920 * 100vw);
  padding-top: calc(64 / 1920 * 100vw);
  margin-bottom: calc(34 / 1920 * 100vw);
}

.about__text {
  flex: 1;
}

.about__title {
  font-size: calc(84 / 1920 * 100vw);
  font-weight: 400;
  margin-bottom: calc(32 / 1920 * 100vw);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: "Heebo", sans-serif;
  color: #fff;
  margin: 0 calc(246 / 1920 * 100vw);
}

.about__text p {
  width: calc(701 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  line-height: 2.9;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  margin: 0 calc(286 / 1920 * 100vw) calc(70 / 1920 * 100vw);
}

.about__text .btn {
  margin-left: calc(479 / 1920 * 100vw);
  width: calc(251 / 1920 * 100vw);
  height: calc(65 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 2.9;
  transition: 0.3s;
  background-color: #fff;
  color: #2093E3;
  border: 1px solid #fff;
}

.about__text .btn:hover {
  border-color: #fff;
  background-color: #2093E3;
  color: #fff;
  transition: 0.3s;
}

.about__img {
  position: absolute;
  right: calc(27 / 1920 * 100vw);
  bottom: 0;
  width: calc(864 / 1920 * 100vw);
  height: calc(541 / 1920 * 100vw);
  flex-shrink: 0;
}

.about__img img {
  width: 100%;
  border-radius: calc(4 / 1920 * 100vw);
}

/* ============================================
   ABOUT DETAIL (Greeting + Outline wrapper)
   ============================================ */
.about-detail {
  display: none;
}

.about-detail.is-open {
  display: block;
}

/* ============================================
   GREETING
   ============================================ */
.greeting {
  padding-top: calc(101 / 1920 * 100vw);
  padding-bottom: calc(100 / 1920 * 100vw);
}

.greeting__inner {
  width: calc(1201 / 1920 * 100vw);
  margin: 0 auto;
}

.greeting__title {
  font-size: calc(84 / 1920 * 100vw);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  color: #3B3B3B;
}

.greeting__border {
  width: 100%;
  height: 3px;
  margin-top: calc(28 / 1920 * 100vw);
  margin-bottom: calc(63 / 1920 * 100vw);
  background: linear-gradient(
    to right,
    #2093E3 calc(228 / 1201 * 100%),
    #F1F1F1 calc(228 / 1201 * 100%)
  );
}

.greeting__text {
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.14em;
  line-height: 2.9;
  font-weight: 500;
  color: #3B3B3B;
}

/* ============================================
   OUTLINE
   ============================================ */
.outline {
  padding-bottom: calc(130 / 1920 * 100vw);
}

.outline__inner {
  width: calc(1222 / 1920 * 100vw);
  margin: 0 auto;
}

.outline__title {
  font-size: calc(84 / 1920 * 100vw);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  color: #3B3B3B;
}

.outline__border {
  width: 100%;
  height: 3px;
  margin-top: calc(28 / 1920 * 100vw);
  margin-bottom: calc(104 / 1920 * 100vw);
  background: linear-gradient(
    to right,
    #2093E3 calc(228 / 1222 * 100%),
    #F1F1F1 calc(228 / 1222 * 100%)
  );
}

.outline__content {
  display: flex;
  gap: calc(38 / 1920 * 100vw);
  margin: 0 auto;
  margin-bottom: calc(94 / 1920 * 100vw);
  width: calc(1178/ 1920 * 100vw);
}

.outline__col {
  flex: 1;
}

.outline__row {
  display: flex;
  align-items: baseline;
  padding: calc(20.5 / 1920 * 100vw) 0;
  border-top: 1px solid #d0d0d0;
}

.outline__row:last-child {
  border-bottom: 1px solid #d0d0d0;
}

.outline__label {
  width: calc(160 / 1920 * 100vw);
  flex-shrink: 0;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 600;
  color: #3B3B3B;
  letter-spacing: 0.1em;
}

.outline__value {
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 600;
  color: #3B3B3B;
  line-height: 2;
  letter-spacing: 0.1em;
}

.outline__value--link {
  color: #3B3B3B;
  text-decoration: underline;
}
.outline__note {
  color: #E74C3C;
  font-size: calc(14 / 1920 * 100vw);
}

.outline__map {
  width: calc(1204 / 1920 * 100vw);
  height: calc(572 / 1920 * 100vw);
  margin: 0 auto;
}

.outline__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: #2093E3;
  color: #fff;
  overflow: hidden;
}

.contact__inner {
  display: flex;
  margin: 0 auto;
}

.contact__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 calc(157/ 1920 * 100vw) 0 calc(227 / 1920 * 100vw);
  text-align: center;
  width: calc(704 / 1920 * 100vw);
}
.contact__title {
  font-size: calc(84 / 1920 * 100vw);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-family: "Heebo", sans-serif;
  color: #fff;
}

.contact__subtitle {
  font-size: calc(24 / 1920 * 100vw);
  margin-bottom: calc(59 / 1920 * 100vw);
}

.contact__body {
  display: flex;
  align-items: center;
  gap: calc(60 / 1920 * 100vw);
  width: calc(686 / 1920 * 100vw);
}

.contact__tel {
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.4;
  
}
.contact__tel-item {
  display: flex;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
}
.contact__tel-icon  {
  width: calc(20 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
}
.contact__tel a {
  font-size: calc(30 / 1920 * 100vw);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: "Heebo", sans-serif;
}

.contact__tel-hours {
  font-size: calc(19 / 1920 * 100vw);
  display: block;
  width: 100%;
}
.contact__tel-hours-label {
  font-size: calc(17 / 1920 * 100vw);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: "Heebo", sans-serif;
}

.contact__btn {
  white-space: nowrap;
  width: calc(251 / 1920 * 100vw);
  height: calc(65 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 2.9;
  transition: 0.3s;
  background-color: #fff;
  color: #2093E3;
}

.contact__btn svg {
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
}

.contact__line {
  display: flex;
  width: calc(68 / 1920 * 100vw);
  height: calc(68 / 1920 * 100vw);
}


.contact__img {
  display: flex;
  width: calc(833 / 1920 * 100vw);
  height: auto;
}

.contact__img img {
  width: 100%;
  display: block;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.form-section {
  display: none;
  background: #F1F1F1;
  padding: calc(170 / 1920 * 100vw) calc(360 / 1920 * 100vw) calc(190 / 1920 * 100vw);
}

.form-section.is-open {
  display: block;
}

.form-section__inner {
  width: calc(1200 / 1920 * 100vw);
  margin: 0 auto;
  background: #fff;
  padding: calc(60 / 1920 * 100vw) calc(180 / 1920 * 100vw) calc(80 / 1920 * 100vw);
}

.form-section__header {
  text-align: center;
  margin-bottom: calc(65 / 1920 * 100vw);
}

.form-section__icon {
  width: calc(70 / 1920 * 100vw);
  height: calc(70 / 1920 * 100vw);
  margin-bottom: 0;
}

.form-section__title {
  font-size: calc(22 / 1920 * 100vw);
  letter-spacing: 0;
  font-weight: 700;
  color: #3B3B3B;
}

.form-section__group {
  margin-bottom: calc(30 / 1920 * 100vw);
}

.form-section__label {
  display: flex;
  align-items: center;
  gap: calc(10 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #3B3B3B;
  margin-bottom: calc(10 / 1920 * 100vw);
}

.form-section__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(53 / 1920 * 100vw);
  height: calc(25 / 1920 * 100vw);
  background: #CF1B1B;
  color: #fff;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0;
  border-radius: calc(2 / 1920 * 100vw);
  flex-shrink: 0;
}

.form-section__input {
  width: calc(840 / 1920 * 100vw);
  height: calc(50 / 1920 * 100vw);
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 calc(12 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
  font-family: inherit;
  background: #fff;
}

.form-section__input:focus,
.form-section__textarea:focus {
  outline: 2px solid #2093E3;
  border-color: #2093E3;
}

.form-section__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(12 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  margin-top: calc(8 / 1920 * 100vw);
}

/* CF7 checkbox grid layout: 2 columns, column flow (left 3 items, right 2 items) */
.form-section__checkboxes .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: calc(12 / 1920 * 100vw) calc(0 / 1920 * 100vw);
  width: calc(450 / 1920 * 100vw);
}

.form-section__checkboxes .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
  color: #3B3B3B;
  cursor: pointer;
  margin: 0;
}

.form-section__checkboxes .wpcf7-list-item input[type="checkbox"] {
  width: calc(18 / 1920 * 100vw);
  height: calc(18 / 1920 * 100vw);
  accent-color: #2093E3;
  cursor: pointer;
}

.form-section__checkbox {
  display: flex;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
  color: #3B3B3B;
  cursor: pointer;
}

.form-section__checkbox input[type="checkbox"] {
  width: calc(18 / 1920 * 100vw);
  height: calc(18 / 1920 * 100vw);
  accent-color: #2093E3;
  cursor: pointer;
}

.form-section__textarea {
  width: calc(840 / 1920 * 100vw);
  height: calc(150 / 1920 * 100vw);
  border: 1px solid #ccc;
  border-radius: 0;
  padding: calc(12 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
  font-family: inherit;
  resize: vertical;
  background: #fff;
}

.form-section__privacy {
  width: calc(840 / 1920 * 100vw);
  height: calc(150 / 1920 * 100vw);
  border: 1px solid #ccc;
  padding: calc(16 / 1920 * 100vw);
  overflow-y: auto;
  font-size: calc(14 / 1920 * 100vw);
  line-height: 1.8;
  color: #666;
  background: #fff;
  margin: 0 auto;
}

.form-section__agree {
  text-align: center;
  margin: calc(40 / 1920 * 100vw) 0;
  display: flex;
  justify-content: center;
}

.form-section__submit {
  text-align: center;
}

.form-section__btn {
  width: calc(224 / 1920 * 100vw);
  height: calc(53 / 1920 * 100vw);
  background: #2093E3;
  color: #fff;
  border: none;
  font-size: calc(16 / 1920 * 100vw);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-section__btn:hover {
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-image: url(../images/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: calc(91 / 1920 * 100vw) calc(194/ 1920 * 100vw) calc(14 / 1920 * 100vw) calc(149 / 1920 * 100vw);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(70 / 1920 * 100vw);
}

.footer__logo {
  font-size: calc(30 / 1920 * 100vw);
  font-weight: bold;
  margin-bottom: calc(30 / 1920 * 100vw);
  letter-spacing: 0.05em;
}

.footer__address,
.footer__tel,
.footer__note {
  font-size: calc(20 / 1920 * 100vw);
  line-height: 2;
  letter-spacing: 0.05em;
}

.footer__note {
  font-size: calc(15 / 1920 * 100vw);
  letter-spacing: 0.1em;
}

.footer__nav ul {
  display: flex;
  gap: calc(70 / 1920 * 100vw);
  width: calc(960 / 1920 * 100vw);
  justify-content: space-between;
}

.footer__nav a {
  font-size: calc(22 / 1920 * 100vw);
  opacity: 0.8;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
  transition: opacity 0.3s;
  letter-spacing: 0.2em;
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__copy {
  text-align: center;
  font-size: calc(16 / 1920 * 100vw);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* ----- VISIBILITY UTILITIES ----- */
  .pc-only-block { display: none; }
  .pc-only-inline { display: none; }
  .sp-only-block { display: block; }
  .sp-only-inline { display: inline; }

  /* ----- BUTTONS ----- */
  .btn--outline,
  .btn--outline-dark {
    padding: calc(12 / 390 * 100vw) calc(32 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }

  .btn--white-outline {
    padding: calc(12 / 390 * 100vw) calc(32 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }

  .btn--blue {
    padding: calc(12 / 390 * 100vw) calc(32 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }

  .btn--white {
    padding: calc(10 / 390 * 100vw) calc(24 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }

  /* ----- HEADER ----- */
  .header {
    height: calc(50 / 390 * 100vw);
  }

  .header__inner {
    padding: 0 calc(29 / 390 * 100vw);
  }

  .header__logo {
    font-size: calc(15 / 390 * 100vw);
    z-index: 1002;
    position: relative;
    margin-left: 0;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(7 / 390 * 100vw);
    width: calc(23 / 390 * 100vw);
    height: calc(18 / 390 * 100vw);
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1002;
    position: relative;
    top: calc(0 / 390 * 100vw);
  }

  .header__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #3B3B3B;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(calc(8 / 390 * 100vw)) rotate(45deg);
  }

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

  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(calc(-8 / 390 * 100vw)) rotate(-45deg);
  }

  /* ----- MOBILE FULLSCREEN MENU ----- */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2093E3 0%, #D8E0D8 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    margin-top: calc(50 / 390 * 100vw);
  }

  .mobile-menu__nav {
    display: flex;
    justify-content: center;
    padding-top: calc(60 / 390 * 100vw);
    margin-bottom: calc(60 / 390 * 100vw);
  }

  .mobile-menu__list {
    text-align: center;
    width: calc(214 / 390 * 100vw);
  }

  .mobile-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }


  .mobile-menu__link {
    display: block;
    color: #fff;
    font-size: calc(16 / 390 * 100vw);
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: calc(16 / 390 * 100vw) 0;
  }

  .mobile-menu__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(290 / 390 * 100vw);
    margin: 0 auto;
    
  }

  .mobile-menu__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(8 / 390 * 100vw);
    width: 100%;
    background: #fff;
    color: #2093E3;
    font-size: calc(21 / 390 * 100vw);
    font-weight: bold;
    padding: calc(14 / 390 * 100vw) 0;
    letter-spacing: 0.1em;
    font-weight: 400;
    height: calc(53 / 390 * 100vw);
  }

  .mobile-menu__tel svg {
    width: calc(22 / 390 * 100vw);
    height: calc(22 / 390 * 100vw);
    fill: #2093E3;
  }

  .mobile-menu__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(8 / 390 * 100vw);
    width: 100%;
    background: #2093E3;
    color: #fff;
    font-size: calc(17 / 390 * 100vw);
    font-weight: bold;
    padding: calc(14 / 390 * 100vw) 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: calc(10 / 390 * 100vw);
    height: calc(53 / 390 * 100vw);
  }

  .mobile-menu__contact svg {
    width: calc(22 / 390 * 100vw);
    height: calc(22 / 390 * 100vw);
    fill: #fff;
  }

  .mobile-menu__note {
    color: #CF1B1B;
    font-size: calc(13 / 390 * 100vw);
    font-weight: bold;
    text-align: center;
    background-color: #fff;
    width: calc(290 / 390 * 100vw);
  }

  /* ----- MAIN VISUAL ----- */
  .mv {
    margin-top: calc(60 / 390 * 100vw);
    height: calc(364 / 390 * 100vw);
  }

  .mv__blue-bar {
    width: calc(40 / 390 * 100vw);
  }

  .mv__bg--1 {
    width: calc(347 / 390 * 100vw);
    height: calc(100 / 390 * 100vw);
    bottom: calc(0 / 390 * 100vw);
    left: calc(0 / 390 * 100vw);
  }

  .mv__bg--2 {
    width: calc(302 / 390 * 100vw);
    max-width: none;
    height: calc(100 / 390 * 100vw);
    max-height: none;
    bottom: calc(60 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
  }

  .mv__slide {
    /* 画像はabsoluteのためflexなし */
  }

  .mv__img--left {
    width: calc(337 / 390 * 100vw);
    height: calc(193 / 390 * 100vw);
    top: calc(0 / 390 * 100vw);
    left: calc(0 / 390 * 100vw);
    right: auto;
    bottom: auto;
  }

  .mv__img--right {
    width: calc(337 / 390 * 100vw);
    height: calc(193 / 390 * 100vw);
    top: auto;
    left: auto;
    bottom: calc(77 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
  }

  .mv__text {
    font-size: calc(30 / 390 * 100vw);
    bottom: calc(5 / 390 * 100vw);
    left: calc(15 / 390 * 100vw);
  }

  /* ----- CATCHCOPY ----- */
  .catchcopy {
    padding: calc(48 / 390 * 100vw) calc(20 / 390 * 100vw) 0;
  }

  .catchcopy__heading {
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: calc(0 / 390 * 100vw);
  }

  /* ----- COMPANY INTRO ----- */
  .intro {
    padding: calc(50 / 390 * 100vw) calc(15 / 390 * 100vw) calc(335 / 390 * 100vw);
  }

  .intro__inner {
    flex-direction: column;
    align-items: center;
    gap: calc(0 / 390 * 100vw);
    width: 100%;
  }

  .intro__img {
    width: calc(340 / 390 * 100vw);
    height: calc(287 / 390 * 100vw);
    margin: 0 auto calc(10 / 390 * 100vw);
  }

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

  .intro__illust {
    width: calc(300 / 390 * 100vw);
    height: calc(300 / 390 * 100vw);
  }

  .intro__circle {
    width: calc(120 / 390 * 100vw);
    height: calc(120 / 390 * 100vw);
  }

  .intro__circle img {
    width: calc(36 / 390 * 100vw);
    height: calc(36 / 390 * 100vw);
  }

  .intro__circle span {
    font-size: calc(10 / 390 * 100vw);
  }

  .intro__center-label {
    font-size: calc(16 / 390 * 100vw);
  }

  .intro__text {
    width: 100%;
  }

  .intro__text p {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.045em;
    line-height: 2;
    font-weight: 600;
  }

  /* ----- AUTO SCROLL (Splide) ----- */
  .autoscroll {
    padding: calc(160 / 390 * 100vw) 0 calc(24 / 390 * 100vw);
    top: calc(1083 / 390 * 100vw);
  }

  .autoscroll-splide .splide__track {
    height: calc(350 / 390 * 100vw);
  }

  .autoscroll-splide .splide__list {
    padding-top: calc(50 / 390 * 100vw) !important;
  }

  .autoscroll-splide .splide__slide {
    width: calc(144 / 390 * 100vw);
    height: calc(181 / 390 * 100vw);
  }

  /* ----- SERVICE ----- */
  .service {
    padding: calc(66 / 390 * 100vw) calc(15 / 390 * 100vw) calc(40 / 390 * 100vw);
  }

  .service__title {
    font-size: calc(46 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: calc(42 / 390 * 100vw);
    width: 100%;
    text-align: center;
  }

  .service__inner {
    width: calc(360 / 390 * 100vw);
    height: auto;
    padding-bottom: calc(40 / 390 * 100vw);
  }

  .service__cards {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 390 * 100vw);
    padding: calc(60 / 390 * 100vw) calc(15 / 390 * 100vw) calc(0 / 390 * 100vw);
  }

  .service__card {
    width: calc(330 / 390 * 100vw);
    height: calc(420 / 390 * 100vw);
    padding: calc(16.5 / 390 * 100vw) calc(24 / 390 * 100vw) 0;
    border-radius: 0;
    box-shadow: calc(4 / 390 * 100vw) calc(4 / 390 * 100vw) calc(14 / 390 * 100vw) 0 rgba(0, 0, 0, 0.25);
  }

  .service__card:nth-child(3) {
    padding-top: calc(29 / 390 * 100vw);
  }

  .service__card-icon {
    width: calc(152 / 390 * 100vw);
    height: calc(135 / 390 * 100vw);
    margin: 0 auto calc(17 / 390 * 100vw);
  }

  .service__card:nth-child(3) .service__card-icon {
    margin-bottom: calc(46 / 390 * 100vw);
  }

  .service__card-title {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0.08em;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: calc(17 / 390 * 100vw);
    height: auto;
  }

  .service__card:nth-child(3) .service__card-title {
    margin-bottom: calc(46 / 390 * 100vw);
    height: auto;
  }

  .service__card-text {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 2;
    font-weight: 500;
  }

  .service__btn-wrap {
    margin-top: calc(41 / 390 * 100vw);
  }

  .service__btn-wrap .btn {
    width: calc(203 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1;
  }

  /* ----- PARALLAX ----- */
  .parallax-section__bg {
    height: calc(424 / 390 * 100vw);
    background-attachment: scroll;
    overflow: hidden;
    background-size: calc(1440 / 390 * 100vw);
    background-repeat: no-repeat;
  }

  .parallax-section__content {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw);
    height: calc(743 / 390 * 100vw) !important;
  }

  .parallax-section__heading {
    font-size: calc(22 / 390 * 100vw);
    margin-bottom: calc(23 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 600;
    padding: 0 calc(31 / 390 * 100vw) 0 calc(19 / 390 * 100vw);
  }

  .parallax-section__body {
    flex-direction: column;
    gap: calc( 40/ 390 * 100vw);
    padding: 0 calc(31 / 390 * 100vw) 0 calc(19 / 390 * 100vw);
  }

  .parallax-section__tags {
    gap: calc(14 / 390 * 100vw);
  }
  .parallax-section__tag {
    font-size: calc(18 / 390 * 100vw);
    padding: calc(0 / 390 * 100vw) calc(15 / 390 * 100vw);
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
  }
  
  .parallax-section__tag--1 {
    width: calc(151 / 390 * 100vw);
    height: calc(46 / 390 * 100vw);
  }
  .parallax-section__tag--2 {
    width: calc(254 / 390 * 100vw);
    height: calc(46 / 390 * 100vw);
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  }
  .parallax-section__tag--3 {
    width: calc(308 / 390 * 100vw);
    height: calc(46 / 390 * 100vw);
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);

  }
  .parallax-section__map {
    justify-content: center;
    width: calc(322 / 390 * 100vw);
    height: calc(323 / 390 * 100vw);
    bottom: calc(40 / 390 * 100vw);
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }

  .parallax-section__map-badge {
    width: calc(94 / 390 * 100vw);
    height: calc(95 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
    top: calc(-40 / 390 * 100vw);
    left: calc(-10 / 390 * 100vw);

  }

  .parallax-section__map img {
    width: 100%;
  }

  /* ----- NEWS ----- */
  .news {
    padding: calc(108 / 390 * 100vw) calc(15 / 390 * 100vw);
    overflow: hidden;

  }

  .news::before {
    background-size: auto 100%;
    background-position: center top;
  }

  .news__inner {
    width: 100%;
    height: auto;
  }

  .news__title {
    font-size: calc(40 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
    text-align: center;
  }

  .news__subtitle {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1;
    margin-bottom: calc(40 / 390 * 100vw);
    text-align: center;
  }

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

  .news__card {
    width: calc(360 / 390 * 100vw);
    margin-bottom: calc(85 / 390 * 100vw);
  }

  .news__card:last-child {
    margin-bottom: calc(53 / 390 * 100vw);
  }

  .news__card-img {
    width: 100%;
    height: calc(262 / 390 * 100vw);
    margin-bottom: calc(22 / 390 * 100vw);
  }

  .news__card-date {
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: calc(25 / 390 * 100vw);
  }

  .news__card-title {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: calc(19 / 390 * 100vw);
  }

  .news__card-text {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 600;
  }

  .news .btn--white-outline {
    width: calc(251 / 390 * 100vw);
    height: calc(65 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0.14em;
    font-weight: 600;
    line-height: 1;
  }

  /* ----- RECRUIT (SP) ----- */
  .recruit {
    height: auto;
    overflow: visible;
    padding-top: calc(60 / 390 * 100vw);
  }

  .recruit__grid {
    display: none;
  }

  .recruit-sp__sliders {
    display: flex;
    width: calc(363 / 390 * 100vw);
    height: calc(238 / 390 * 100vw);
    overflow: hidden;
    margin: 0 auto;
    gap: calc(14 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }

  .recruit-sp__col {
    display: flex;
    flex-direction: column;
    gap: calc(19 / 390 * 100vw);
    width: 50%;
  }

  .recruit-sp__col--left {
    align-items: flex-end;
    animation: recruitScrollDown 20s linear infinite;
  }

  .recruit-sp__col--right {
    align-items: flex-start;
    animation: recruitScrollUp 20s linear infinite;
  }

  .recruit-sp__col img {
    width: 100%;
    height: calc(135 / 390 * 100vw);
    flex-shrink: 0;
    object-fit: cover;
  }

  .recruit-sp__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: calc(30 / 390 * 100vw) 0 calc(40 / 390 * 100vw);
  }

  .recruit-sp__title {
    font-size: calc(46 / 390 * 100vw);
    font-weight: 500;
    color: #2093E3;
    letter-spacing: 0.04em;
    line-height: 110%;
    font-family: "Heebo", sans-serif;
  }

  .recruit-sp__subtitle {
    font-size: calc(13 / 390 * 100vw);
    color: #2093E3;
    letter-spacing: 0;
    margin-bottom: calc(20 / 390 * 100vw);
  }

  .recruit-sp__catch {
    font-size: calc(22 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 160%;
    font-weight: 600;
    color: #2093E3;
    margin-bottom: calc(40 / 390 * 100vw);
  }

  .recruit-sp__center .btn--blue {
    width: calc(203 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1;
  }

  /* ----- ABOUT US ----- */
  .about {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .about__img {
    position: static;
    order: -1;
    width: 100%;
    height: calc(260 / 390 * 100vw);
  }

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

  .about__inner {
    width: 100%;
    height: auto;
    padding: calc(72 / 390 * 100vw) calc(20 / 390 * 100vw) calc(70 / 390 * 100vw);
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 auto;
  }

  .about__title {
    font-size: calc(46 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
    margin: 0 0 calc(30 / 390 * 100vw) 0;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }

  .about__text p {
    width: 100%;
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 600;
    margin: 0 0 calc(40 / 390 * 100vw) 0;
  }

  .about__text .btn {
    display: flex;
    margin: 0 auto;
    width: calc(203 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    line-height: 1;
  }

  /* ----- GREETING ----- */
  .greeting {
    padding: calc(48 / 390 * 100vw) calc(15 / 390 * 100vw);
  }

  .greeting__inner {
    width: 100%;
  }

  .greeting__title {
    font-size: calc(40 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
  }

  .greeting__border {
    height: 2px;
    margin-top: calc(12 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }

  .greeting__text {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 600;
  }

  /* ----- OUTLINE ----- */
  .outline {
    padding: 0 calc(15 / 390 * 100vw) calc(100 / 390 * 100vw);
  }

  .outline__inner {
    width: 100%;
  }

  .outline__title {
    font-size: calc(40 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
  }

  .outline__border {
    height: 2px;
    margin-top: calc(12 / 390 * 100vw);
    margin-bottom: calc(32 / 390 * 100vw);
  }

  .outline__content {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: calc(80 / 390 * 100vw);
  }

  .outline__label {
    width: calc(110 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }

  .outline__value {
    font-size: calc(13 / 390 * 100vw);
  }

  .outline__note {
    font-size: calc(11 / 390 * 100vw);
  }

  .outline__row {
    padding: calc(12 / 390 * 100vw) 0;
  }

  .outline__map {
    width: calc(360 / 390 * 100vw);
    height: calc(171 / 390 * 100vw);
  }

  /* ----- CONTACT ----- */
  .contact {
    padding: 0;
  }

  .contact__inner {
    flex-direction: column;
  }

  .contact__img {
    order: -1;
    width: 100%;
    height: calc(146 / 390 * 100vw);
  }

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

  .contact__text {
    width: 100%;
    margin: 0;
    align-items: center;
    padding: calc(60 / 390 * 100vw) calc(20 / 390 * 100vw) calc(60 / 390 * 100vw);
  }

  .contact__title {
    font-size: calc(38 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
  }

  .contact__subtitle {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: calc(30 / 390 * 100vw);
  }

  .contact__body {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0;
  }

  .contact__tel {
    width: 100%;
    align-items: center;
    margin-bottom: calc(20 / 390 * 100vw);
  }

  .contact__tel-icon {
    width: calc(20 / 390 * 100vw);
    height: calc(24 / 390 * 100vw);
  }

  .contact__tel-item {
    gap: calc(8 / 390 * 100vw);
  }

  .contact__tel a {
    font-size: calc(25 / 390 * 100vw);
    letter-spacing: 0.04em;
    line-height: 110%;
  }

  .contact__tel-hours {
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 150%;
    font-weight: 600;
    text-align: center;
  }

  .contact__tel-hours-label {
    font-size: calc(15 / 390 * 100vw);
  }

  .contact__btn {
    width: calc(203 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1;
    gap: calc(25 / 390 * 100vw);
  }

  .contact__btn svg {
    width: calc(20 / 390 * 100vw);
    height: calc(24 / 390 * 100vw);
  }

  .contact__line {
    width: calc(50 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    margin-left: calc(20 / 390 * 100vw);
  }

  /* ----- CONTACT FORM ----- */
  .form-section {
    padding: calc(40 / 390 * 100vw) calc(20 / 390 * 100vw) calc(60 / 390 * 100vw);
  }

  .form-section__inner {
    width: 100%;
    padding: calc(32 / 390 * 100vw) calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
  }

  .form-section__icon {
    width: calc(70 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    margin-bottom: calc(16 / 390 * 100vw);
  }

  .form-section__title {
    font-size: calc(20 / 390 * 100vw);
  }

  .form-section__header {
    margin-bottom: calc(32 / 390 * 100vw);
  }

  .form-section__label {
    font-size: calc(13 / 390 * 100vw);
  }

  .form-section__required {
    width: calc(40 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    font-size: calc(11 / 390 * 100vw);
  }

  .form-section__input {
    width: 100%;
    height: calc(40 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }

  .form-section__checkboxes {
    grid-template-columns: 1fr;
  }

  .form-section__checkboxes .wpcf7-checkbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    width: 100%;
  }

  .form-section__checkboxes .wpcf7-list-item {
    font-size: calc(13 / 390 * 100vw);
  }

  .form-section__checkboxes .wpcf7-list-item input[type="checkbox"] {
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
  }

  .form-section__checkbox {
    font-size: calc(13 / 390 * 100vw);
  }

  .form-section__checkbox input[type="checkbox"] {
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
  }

  .form-section__textarea {
    width: 100%;
    height: calc(120 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }

  .form-section__privacy {
    width: 100%;
    height: calc(120 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }

  .form-section__btn {
    width: calc(180 / 390 * 100vw);
    height: calc(44 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }

  /* ----- FOOTER ----- */
  .footer {
    background-image: url(../images/footer-bg-sp.png);
    background-size: cover;
    background-position: center;
    padding: calc(39 / 390 * 100vw) calc(15 / 390 * 100vw) calc(7 / 390 * 100vw);
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
  }

  .footer__left {
    text-align: center;
  }

  .footer__logo {
    font-size: calc(21 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 500;
    margin-bottom: calc(11 / 390 * 100vw);
  }

  .footer__address {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 500;
    margin-bottom: calc(11 / 390 * 100vw);
  }

  .footer__tel {
    font-size: calc(19 / 390 * 100vw);
    letter-spacing: 0.08em;
    line-height: 200%;
    font-weight: 500;
  }

  .footer__note {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: calc(11 / 390 * 100vw);
  }

  .footer__nav {
    width: calc(250 / 390 * 100vw);
    margin-bottom: calc(31 / 390 * 100vw);
  }

  .footer__nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .footer__nav li {
    border-bottom: 1px solid rgba(255, 255, 255);
  }
  .footer__nav li:last-child {
    border-bottom: none;
  }

  .footer__nav a {
    display: block;
    font-size: calc(17 / 390 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: calc(12 / 390 * 100vw) 0;
    text-align: center;
    opacity: 1;
  }

  .footer__copy {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0.05em;
    font-weight: 600;
    border-top: none;
  }
}
