@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

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

a {
  text-decoration: none;
}

:root {
  --purple-light: #EEEDFE;
  --purple-mid: #7F77DD;
  --purple-dark: #3C3489;
  --teal-light: #E1F5EE;
  --teal-mid: #1D9E75;
  --amber-mid: #EF9F27;
  --coral-mid: #D85A30;
  --green-mid: #639922;
  --bg: #0e0e12;
  --fg: #f0eefc;
  --muted: #6e6c88;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  width: 100%;
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  background-color: #fcfcfc;
  position: relative;
}

/* ────── STICKY WRAPPER ────── */
#scroll-wrapper {
  position: relative;
  height: 500vh;
}

#sticky-canvas {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ────── BACKGROUND GRAIN ────── */
#grain {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page #grain {
  position: fixed;
  top: 0;
  left: 0;
}

#grain .circle {
  position: absolute;
  aspect-ratio: 1/1;
  width: 400px;
  background-color: #BFDFF0;
  border-radius: 50%;
  filter: blur(80px);
  transition: all 1.8s ease-in-out;
  opacity: 0.5;
}
#grain .circle:nth-child(1) {
  top: -40px;
  right: 160px;
}
#grain .circle:nth-child(2) {
  bottom: -80px;
  left: 80px;
}

.scene-1 #grain .circle {
  background-color: #FFD1B3;
  opacity: 0.3;
}
.scene-1 #grain .circle:nth-child(1) {
  transform: translate(-42vw, -20vh) scale(1.2);
}
.scene-1 #grain .circle:nth-child(2) {
  transform: translateX(60vw) scale(1.2);
}

.scene-2 #grain .circle {
  background-color: #FFDB99;
  opacity: 0.2;
}
.scene-2 #grain .circle:nth-child(1) {
  transform: translate(-62vw, 80vh) scale(1.4);
}
.scene-2 #grain .circle:nth-child(2) {
  transform: translate(60vw, -60vh) scale(1.8);
}

.scene-3 #grain .circle {
  background-color: #CDE7D8;
  opacity: 0.4;
}
.scene-3 #grain .circle:nth-child(1) {
  transform: translate(-62vw, 80vh) scale(1.8);
}
.scene-3 #grain .circle:nth-child(2) {
  transform: translate(60vw, -60vh) scale(2.4);
}

/* ────── PROGRESS BAR ────── */
#progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 50;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-mid), var(--teal-mid));
  transition: width 0.1s linear;
}

/* ────── STEP INDICATOR ────── */
#step-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
  transition: all 0.8s;
}
@media screen and (max-width: 600px) {
  #step-indicator {
    display: none;
  }
}

.scene-3 #step-indicator {
  opacity: 0;
}

.step-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.4s, transform 0.4s;
}

.step-pip.active {
  background: #444;
  transform: scale(1.6);
}

/* ────── SCENES ────── */
.scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .scene {
    padding: 20px 20px 90px;
  }
}

.scene.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ────── VISUAL ELEMENTS ────── */
/* Scene 0 – orbiting circles */
.orbit-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 3rem;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-mid);
  opacity: 0;
  transition: opacity 0.8s 0.3s;
}

.scene.active .orbit-core {
  opacity: 1;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(127, 119, 221, 0.3);
  transform: translate(-50%, -50%);
}

.orbit-ring:nth-child(2) {
  width: 80px;
  height: 80px;
  animation: spin 4s linear infinite;
}

.orbit-ring:nth-child(3) {
  width: 130px;
  height: 130px;
  animation: spin 7s linear infinite reverse;
}

.orbit-ring:nth-child(4) {
  width: 180px;
  height: 180px;
  animation: spin 11s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.orbit-ring:nth-child(2) .orbit-dot {
  background: var(--purple-mid);
}

.orbit-ring:nth-child(3) .orbit-dot {
  background: var(--teal-mid);
}

.orbit-ring:nth-child(4) .orbit-dot {
  background: var(--amber-mid);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Scene 1 – bar chart */
.bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-bottom: 3rem;
}

.bar-item {
  width: 22px;
  border-radius: 3px 3px 0 0;
  transition: height 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 4px;
}

.scene.active .bar-item:nth-child(1) {
  height: 60px;
  background: var(--purple-mid);
  transition-delay: 0.05s;
}

.scene.active .bar-item:nth-child(2) {
  height: 100px;
  background: var(--teal-mid);
  transition-delay: 0.12s;
}

.scene.active .bar-item:nth-child(3) {
  height: 45px;
  background: var(--amber-mid);
  transition-delay: 0.19s;
}

.scene.active .bar-item:nth-child(4) {
  height: 120px;
  background: var(--purple-mid);
  transition-delay: 0.26s;
}

.scene.active .bar-item:nth-child(5) {
  height: 80px;
  background: var(--teal-mid);
  transition-delay: 0.33s;
}

.scene.active .bar-item:nth-child(6) {
  height: 55px;
  background: var(--coral-mid);
  transition-delay: 0.4s;
}

/* Scene 2 – rotating polygon */
.poly-wrap {
  width: 160px;
  height: 160px;
  margin-bottom: 3rem;
  position: relative;
}

.poly-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scene.active .poly-wrap svg {
  transform: rotate(180deg);
}

.poly-path {
  stroke: var(--teal-mid);
  stroke-width: 1.5;
  fill: rgba(29, 158, 117, 0.1);
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.4s ease 0.2s;
}

.scene.active .poly-path {
  stroke-dashoffset: 0;
}

/* Scene 3 – checkmark */
.check-outer {
  width: 100px;
  height: 100px;
  margin-bottom: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.6);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.scene.active .check-outer {
  transform: scale(1);
}

.check-svg {
  width: 44px;
  height: 44px;
}

.check-mark {
  stroke: #97C459;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.6s ease 0.4s;
}

.scene.active .check-mark {
  stroke-dashoffset: 0;
}

/* Scene 4 – end */
.end-glow {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-mid) 0%, transparent 70%);
  margin-bottom: 3rem;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.8s 0.2s, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.scene.active .end-glow {
  opacity: 0.7;
  transform: scale(1);
}

/* ────── SCROLL HINT ────── */
#scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity 0.5s;
  z-index: 50;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  #scroll-hint {
    bottom: 8px;
  }
}

#scroll-hint.hidden {
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: lineDown 1.4s ease-in-out infinite;
}
@media screen and (max-width: 600px) {
  .scroll-line {
    height: 20px;
  }
}

@keyframes lineDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.btn {
  display: block;
  gap: 24px;
  padding: 16px 58px 16px 24px;
  border: 1px solid #444;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
}

.btn:hover .btn_arrow {
  right: -24px;
  width: 40px;
}

.btn_arrow {
  display: block;
  width: 22px;
  height: 1px;
  background-color: #444;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: all 0.6s;
}
.btn_arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 1px;
  background-color: #444;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right bottom;
}
.btn_arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 1px;
  background-color: #444;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right top;
}

.cta_btn {
  background-color: #5987AC;
  color: #fff;
  padding: 24px 100px 24px 80px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 600px) {
  .cta_btn {
    padding: 20px 60px 20px 40px;
    font-size: 18px;
  }
}
.cta_btn .btn_arrow {
  background-color: #fff;
  height: 1.5px;
  right: 40px;
}
@media screen and (max-width: 600px) {
  .cta_btn .btn_arrow {
    right: 24px;
    width: 16px;
  }
}
.cta_btn .btn_arrow::before, .cta_btn .btn_arrow::after {
  background-color: #fff;
  height: 1.5px;
  width: 9px;
}
@media screen and (max-width: 600px) {
  .cta_btn .btn_arrow::before, .cta_btn .btn_arrow::after {
    width: 7px;
  }
}

.cta_btn:hover .btn_arrow {
  right: 24px;
}

/*------------- header -------------*/
.header {
  position: fixed;
  top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 80;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .header {
    height: 78px;
  }
}

.header-bg {
  background-color: #fafafa;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
}

.header_wrap {
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header_logo {
  width: 180px;
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 110px;
  }
}

.header_right {
  padding-bottom: 8px;
}

.header_menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .header_menu {
    display: none;
  }
}

.header_menu_link {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.header_menu_link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #6FA4C3;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  opacity: 0;
}

.header_menu_link.active::after {
  opacity: 1;
}

.header_menu_link span:nth-child(1) {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.header_menu_link span:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.header_hamburger_menu {
  display: none;
  position: fixed;
  z-index: 110;
  top: 24px;
  right: 40px;
}
@media screen and (max-width: 1000px) {
  .header_hamburger_menu {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .header_hamburger_menu {
    top: 12px;
    right: 16px;
  }
}

.mask {
  display: none;
  padding: 140px 0;
}
@media screen and (max-width: 1000px) {
  .mask {
    display: block;
    position: fixed;
    opacity: 0;
    top: 0;
    right: -1000px;
    min-height: 100vh;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 600px;
    background: #6E98BA;
    z-index: 100;
    transition: all 0.5s;
  }
}

.mask .header_link {
  margin: 0 auto 36px;
  width: -moz-fit-content;
  width: fit-content;
}

.mask li {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.mask li:not(:last-child) {
  margin: 0 auto 40px;
}

.mask li a {
  padding: 0 40px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  transition: all 0.6s;
}
.mask li a:hover {
  opacity: 0.7;
}

.mask .header_link a span {
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.mask .header_link a span:nth-child(1) {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 auto 6px;
}
.mask .header_link a span:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.open.mask {
  opacity: 1;
  right: 0;
}

.toggle_btn {
  width: 54px;
  height: 54px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  background-color: #4882A7;
  border-radius: 50%;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 1.5px;
  background-color: #fff;
  border-radius: 1000px;
  transition: all 0.5s;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.toggle_btn span:nth-child(1) {
  top: 16px;
}
.toggle_btn span:nth-child(2) {
  top: 26px;
}
.toggle_btn span:nth-child(3) {
  bottom: 16px;
}

.open .toggle_btn {
  background-color: #fff;
}
.open .toggle_btn span {
  background-color: #4882A7;
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

/*------------- fv -------------*/
.fv_wrap {
  width: 72vw;
}

.fv_heading {
  text-align: left;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  font-size: 32px;
  transform: translateY(-32vh);
  font-weight: 700;
}

.fv_slider {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  margin-top: -100vh;
  padding-top: calc((100vh - (100% - 40px) / 2.2 / 1200 * 800) / 2 + 20px);
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 1000px) {
  .fv_slider {
    padding-top: calc((100vh - (100% - 40px) / 1.6 / 1200 * 800) / 2 + 20px);
  }
}
@media screen and (max-width: 600px) {
  .fv_slider {
    padding-top: calc((100vh - (100% - 40px) / 1.1 / 2 * 3) / 2 - 48px);
  }
}

.fv_slide {
  display: block;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  border-radius: 32px;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 600px) {
  .fv_slide {
    border-radius: 12px;
    aspect-ratio: 2/2.6;
  }
}
.fv_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_slide:hover {
  transform: translateY(-20px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/*------------- top-about -------------*/
.top-about_wrap {
  max-width: 1000px;
  margin: 0 auto;
  width: 92%;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: flex-end;
  gap: 100px;
  padding-top: 40px;
}
@media screen and (max-width: 1200px) {
  .top-about_wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .top-about_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .top-about_wrap {
    width: 100%;
    gap: 24px;
    padding-top: 0;
    position: relative;
  }
}

.top-about_img {
  width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s 0.5s;
}
@media screen and (max-width: 1000px) {
  .top-about_img {
    max-width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .top-about_img {
    max-width: 120px;
    position: absolute;
    bottom: -36px;
    left: 24px;
  }
}

.active .top-about_img {
  opacity: 1;
  transform: translateX(0);
}

.top-about_content {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s 0.8s;
}
.top-about_content .btn {
  margin-left: auto;
}

.active .top-about_content {
  opacity: 1;
  transform: translateY(0);
}

.top-about_bubble {
  margin-bottom: 54px;
}
@media screen and (max-width: 600px) {
  .top-about_bubble {
    margin-bottom: 40px;
  }
}

.top-about_heading {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.top-about_txt {
  line-height: 2.4;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 1000px) {
  .top-about_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .top-about_txt .sp_LL_hidden {
    display: none;
  }
}

.top-service .btn {
  margin: 0 auto;
  background-color: #fff;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s 0.8s;
}

.active.top-service .btn {
  opacity: 1;
  transform: translateX(0);
}

.top-service_heading {
  font-size: 28px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.18em;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.5s;
}
@media screen and (max-width: 600px) {
  .top-service_heading {
    font-size: 24px;
    margin: 0 auto 16px;
  }
}

.top-service_list {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.5s;
}
@media screen and (max-width: 1200px) {
  .top-service_list {
    gap: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .top-service_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .top-service_list {
    gap: 12px;
    margin: 0 auto 16px;
  }
}

.active .top-service_heading,
.active .top-service_list {
  opacity: 1;
  transform: translateY(0);
}

.top-service_item {
  background-color: #fff;
  border-radius: 80px;
  padding: 40px 48px 48px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top-service_item {
    padding: 24px 32px 32px;
  }
}
@media screen and (max-width: 1000px) {
  .top-service_item {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 60px;
    padding: 24px 60px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 800px) {
  .top-service_item {
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .top-service_item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px 16px 12px;
    border-radius: 8px;
  }
}
.top-service_item img {
  max-width: 150px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .top-service_item img {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .top-service_item img {
    max-width: 60px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 350px) {
  .top-service_item img {
    max-width: 60px;
    margin-left: 0;
  }
}
.top-service_item h3 {
  font-size: 18px;
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding-bottom: 16px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .top-service_item h3 {
    margin: 0 auto 12px;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 600px) {
  .top-service_item h3 {
    font-size: 16px;
    position: absolute;
    top: 22px;
    left: 98px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 350px) {
  .top-service_item h3 {
    top: 20px;
    line-height: 1.5;
  }
}
.top-service_item h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  border-bottom: 2px dashed #444;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .top-service_item h3::after {
    left: 0;
    transform: none;
  }
}
.top-service_item p {
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .top-service_item p {
    line-height: 1.8;
  }
}

@media screen and (max-width: 350px) {
  .top-service_item:not(:first-child) h3 {
    top: 36px;
  }
}

.top-contact .cta_btn {
  margin: 0 auto;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s 0.8s;
}

.active.top-contact .cta_btn {
  opacity: 1;
  transform: translateX(0);
}

.top-contact_img {
  max-width: 360px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 600px) {
  .top-contact_img {
    max-width: 240px;
    margin: 0 auto 20px;
  }
}

.top-contact_heading {
  font-weight: 600;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.5s;
  padding-bottom: 24px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .top-contact_heading {
    font-size: 5.8vw;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    margin: 0 auto 20px;
  }
}
.top-contact_heading::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #5987AC;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-contact_txt {
  line-height: 2.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.5s;
}
@media screen and (max-width: 600px) {
  .top-contact_txt {
    line-height: 2.2;
    margin: 0 auto 32px;
    font-size: 14px;
    text-align: justify;
  }
}

.active .top-contact_heading,
.active .top-contact_txt {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background-color: #4f4f4f;
  padding: 40px 0;
  position: relative;
  z-index: 5;
}
.footer small {
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.footer_wrap {
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer_logo {
  width: 180px;
}

.footer_menu {
  color: #fff;
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta {
  padding: 140px 0 160px;
  background-image: url(../images/cta_bg.webp);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 60px 0;
    background-image: url(../images/cta_bg-sp.webp);
  }
}
.cta .btn {
  margin: 0 auto;
}

.cta_img {
  max-width: 360px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 600px) {
  .cta_img {
    width: 240px;
    margin: 0 auto 24px;
  }
}

.cta_heading {
  font-weight: 600;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  letter-spacing: 0.18em;
  padding-bottom: 24px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .cta_heading {
    font-size: 22px;
    letter-spacing: 0.1em;
    padding-bottom: 16px;
    text-shadow: 0 0 20px #fff, 0 2px 20px #fff, 2px 0 20px #fff;
  }
}
@media screen and (max-width: 350px) {
  .cta_heading {
    font-size: 20px;
  }
}
.cta_heading::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #5987AC;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .cta_heading::after {
    width: 60px;
  }
}

.cta_txt {
  line-height: 2.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .cta_txt {
    font-size: 14px;
    text-align: justify;
    width: 92%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 600px) {
  .cta_txt .sp_LL_hidden {
    display: none;
  }
}

/*------------------ 私について ------------------*/
.page-top {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-image: url(../images/page-top.webp);
  background-size: cover;
  background-position: bottom center;
}

.page-top_wrap {
  padding: 180px 0 160px;
  position: relative;
  z-index: 6;
  width: 92%;
  margin: 0 auto;
  max-width: 1320px;
}
@media screen and (max-width: 600px) {
  .page-top_wrap {
    padding: 100px 0 60px;
  }
}

.page-top_heading {
  margin-bottom: 16px;
  padding: 12px 0 14px 60px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-top_heading {
    padding: 8px 0 10px 40px;
  }
}
@media screen and (max-width: 600px) {
  .page-top_heading {
    padding: 4px 0 6px 24px;
    margin-bottom: 48px;
  }
}
.page-top_heading::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #4882A7;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.page-top_heading h2 {
  font-size: 42px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: 0.24em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .page-top_heading h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 600px) {
  .page-top_heading h2 {
    font-size: 26px;
    font-weight: 700;
  }
}
.page-top_heading span {
  letter-spacing: 0.4em;
  display: block;
  font-family: "Poppins", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .page-top_heading span {
    font-size: 14px;
  }
}

.breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .breadcrumb_list {
    font-size: 12px;
    gap: 12px;
  }
}

.breadcrumb_item {
  letter-spacing: 0.1em;
}
.breadcrumb_item:not(:last-child)::after {
  content: "/";
  margin-left: 14px;
}
@media screen and (max-width: 600px) {
  .breadcrumb_item:not(:last-child)::after {
    margin-left: 12px;
  }
}

.concept {
  position: relative;
  z-index: 5;
  padding: 140px 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .concept {
    padding: 60px 0;
  }
}

.concept_wrap {
  width: 92%;
  margin: 0 auto;
}

.concept_heading {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.24em;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .concept_heading {
    font-size: 24px;
    margin: 0 auto 32px;
  }
}

.concept_txt {
  text-align: center;
  line-height: 2.4;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .concept_txt {
    line-height: 2.2;
    font-size: 14px;
  }
}

.intro {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0;
  background-color: rgba(244, 239, 233, 0.6);
}
@media screen and (max-width: 600px) {
  .intro {
    padding: 60px 0;
  }
}

.intro_wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
  width: 92%;
}
@media screen and (max-width: 1200px) {
  .intro_wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .intro_wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .intro_wrap {
    gap: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .intro_img {
    max-width: 240px;
    margin-left: auto;
  }
}
@media screen and (max-width: 600px) {
  .intro_img {
    margin: 0 auto;
    max-width: 160px;
  }
}

.intro_heading {
  font-size: 28px;
  font-family: "Ntoto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .intro_heading {
    font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 32px;
  }
}

.intro_message {
  line-height: 2.4;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .intro_message {
    line-height: 2.2;
    font-size: 14px;
  }
}

.skill {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0 200px;
}
@media screen and (max-width: 600px) {
  .skill {
    padding: 60px 0;
  }
}

.skill_wrap {
  margin: 0 auto;
  width: 92%;
}

.skill_heading {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.24em;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .skill_heading {
    margin: 0 auto 40px;
    font-size: 24px;
  }
}

.skill_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  line-height: 2.4;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .skill_txt {
    line-height: 2.2;
    margin: 0 auto 24px;
    font-size: 14px;
  }
}

.skill_icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .skill_icons {
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .skill_icons {
    display: grid;
    grid-template-columns: repeat(3, 60px);
  }
}
.skill_icons li {
  width: 80px;
}
@media screen and (max-width: 800px) {
  .skill_icons li {
    width: 60px;
  }
}

/*------------------ サービス ------------------*/
.service {
  position: relative;
  z-index: 5;
  padding: 120px 0 180px;
}
@media screen and (max-width: 600px) {
  .service {
    padding: 60px 0;
  }
}

.service_wrap {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.service_top {
  line-height: 2.8;
  margin-bottom: 100px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .service_top {
    line-height: 2.4;
    margin-bottom: 40px;
    font-size: 14px;
  }
}

.service_item {
  padding: 80px 120px;
  border-bottom: 1px solid #444;
}
@media screen and (max-width: 1200px) {
  .service_item {
    padding: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .service_item {
    padding: 48px 0;
  }
}
.service_item:first-child {
  border-top: 1px solid #444;
}
.service_item > p {
  line-height: 2;
  font-size: 14px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .service_item > p {
    margin-bottom: 32px;
  }
}

.service_ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .service_ttl {
    margin-bottom: 24px;
    gap: 16px;
  }
}
.service_ttl span {
  padding: 6px 12px 8px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #444;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .service_ttl span {
    font-size: 18px;
    padding: 4px 8px 6px;
  }
}
.service_ttl h3 {
  font-size: 20px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .service_ttl h3 {
    font-size: 18px;
  }
}

.service_bottom {
  border: 1px dashed #444;
  padding: 24px 60px;
}
@media screen and (max-width: 600px) {
  .service_bottom {
    border: 1px solid #444;
    padding: 20px 24px;
  }
}
.service_bottom h4 {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.service_bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
  row-gap: 12px;
}

.flow {
  padding: 160px 0;
  position: relative;
  z-index: 5;
  background-color: rgba(244, 239, 233, 0.6);
}
@media screen and (max-width: 600px) {
  .flow {
    padding: 60px 0;
  }
}

.flow_wrap {
  width: 100%;
  margin: 0 auto;
}

.flow_heading {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 0 auto 100px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 800px) {
  .flow_heading {
    font-size: 32px;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 600px) {
  .flow_heading {
    font-size: 26px;
    margin: 0 auto 40px;
    font-weight: 700;
  }
}

.flow_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .flow_list {
    flex-direction: column;
    align-items: center;
    max-width: 92%;
  }
}
@media screen and (max-width: 600px) {
  .flow_list {
    gap: 40px;
  }
}

.flow_item {
  background-color: #fcfcfc;
  padding-bottom: 24px;
  max-width: 280px;
}
@media screen and (max-width: 800px) {
  .flow_item {
    max-width: 320px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item {
    padding-bottom: 16px;
  }
}
.flow_item:not(:first-child) {
  position: relative;
}
.flow_item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -38px;
  width: 12px;
  height: 12px;
  display: block;
  border-right: 2px solid #444;
  border-bottom: 2px solid #444;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .flow_item:not(:first-child)::after {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}
@media screen and (max-width: 600px) {
  .flow_item:not(:first-child)::after {
    top: -28px;
  }
}

.flow_step {
  display: block;
  background-color: #444;
  color: #fff;
  padding: 8px 10px 6px 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .flow_step {
    margin-bottom: 0px;
  }
}

.flow_icon {
  max-width: 70px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .flow_icon {
    margin: 0 auto 8px;
  }
}

.flow_ttl {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.flow_ttl::before {
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  left: -28px;
  border-top: 2px dashed #444;
}
.flow_ttl::after {
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  right: -28px;
  border-top: 2px dashed #444;
}

.flow_desc {
  line-height: 2;
  font-size: 14px;
  text-align: justify;
  padding: 0 20px;
}

.price {
  padding: 200px 0 200px;
}
@media screen and (max-width: 600px) {
  .price {
    padding: 60px 0;
  }
}

.price_wrap {
  max-width: 1100px;
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .price_wrap {
    grid-template-columns: 240px 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .price_wrap {
    grid-template-columns: 1fr;
  }
}

.price_heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .price_heading {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
  }
}
.price_heading h3 {
  font-size: 40px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 800px) {
  .price_heading h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .price_heading h3 {
    margin-bottom: 16px;
    font-weight: 700;
  }
}
.price_heading span {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.24em;
  display: block;
  padding-left: 2px;
}
@media screen and (max-width: 800px) {
  .price_heading span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .price_heading span {
    padding-left: 0;
    letter-spacing: 0.2em;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.price_list {
  padding-top: 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .price_list {
    padding-top: 0;
    margin-bottom: 24px;
  }
}

.price_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 8px 20px;
  border-bottom: 1px dashed #444;
}
@media screen and (max-width: 600px) {
  .price_item {
    flex-direction: column;
    gap: 24px;
    padding: 0 4px 24px;
  }
}
.price_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .price_item:not(:last-child) {
    margin-bottom: 32px;
  }
}
.price_item h4 {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .price_item h4 {
    font-size: 16px;
  }
}
.price_item span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 800px) {
  .price_item span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .price_item span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

.price_note {
  line-height: 2.4;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .price_note {
    font-size: 12px;
    line-height: 2.2;
  }
}

.works_wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 0 200px;
  width: 92%;
}
@media screen and (max-width: 600px) {
  .works_wrap {
    padding: 60px 0 80px;
  }
}

.works-single .works_wrap {
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  .works-single .works_wrap {
    max-width: 600px;
  }
}

.works-single .works_img {
  margin-bottom: 0;
}

.works_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  row-gap: 80px;
}
@media screen and (max-width: 1000px) {
  .works_list {
    gap: 24px;
    row-gap: 60px;
  }
}
@media screen and (max-width: 800px) {
  .works_list {
    grid-template-columns: 1fr;
  }
}

.works_link {
  transition: all 0.6s;
  display: block;
}

.works_link:hover .works_img img {
  transform: scale(1.1);
}

.works_img {
  border: 1px solid #ccc;
  aspect-ratio: 3/2;
  margin-bottom: 24px;
  overflow: hidden;
}
.works_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}

.works_txt h3 {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.works_ttl {
  font-size: 26px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .works_ttl {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.works_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .works_content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .works_content {
    gap: 32px;
  }
}

.works_desc {
  line-height: 1.8;
  padding: 0 12px;
}
@media screen and (max-width: 600px) {
  .works_desc {
    padding: 0 8px;
  }
}
.works_desc:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px dashed #444;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .works_desc:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.works_desc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 0px;
}
@media screen and (max-width: 600px) {
  .works_desc ul {
    font-size: 14px;
  }
}

.works_desc span {
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.works_desc a {
  text-decoration: underline;
  color: #4882A7;
}
@media screen and (max-width: 600px) {
  .works_desc a {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .works_desc p {
    font-size: 14px;
  }
}

.contact_wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0 200px;
  width: 92%;
}
@media screen and (max-width: 600px) {
  .contact_wrap {
    padding: 60px 0 80px;
  }
}

.contact_top p {
  line-height: 2.4;
  text-align: justify;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .contact_top p {
    margin-bottom: 40px;
    line-height: 2.2;
    font-size: 14px;
  }
}

.contact_list {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .contact_list {
    margin-bottom: 60px;
  }
}

.contact_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .contact_item:not(:last-child) {
    margin-bottom: 32px;
  }
}

.contact_ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .contact_ttl {
    margin-bottom: 12px;
    gap: 8px;
  }
}
.contact_ttl h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 600px) {
  .contact_ttl h3 {
    font-size: 16px;
  }
}
.contact_ttl span {
  display: block;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #AA0000;
  padding: 2px 7px 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-top: 2px;
}
@media screen and (max-width: 600px) {
  .contact_ttl span {
    font-size: 12px;
  }
}

.contact_input input,
.contact_input textarea {
  border: 1px solid #ccc;
  padding: 16px 20px;
  line-height: 1.4;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .contact_input input,
  .contact_input textarea {
    padding: 12px;
  }
}

.contact_btn {
  background-color: #5987AC;
  color: #fff;
  padding: 24px 120px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    padding: 20px 80px;
    font-size: 18px;
  }
}

.contact_btn:hover {
  opacity: 0.7;
}/*# sourceMappingURL=index.css.map */