@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap");

/* ========================================
  Base
======================================== */

:root {
  --color-fv-bg: #f8e6dd;
  --color-section-bg: #f8dfb5;
  --color-footer-bg: #f7f7f7;
  --color-main: #2f8df5;
  --color-accent: #f39800;
  --color-text: #333;
  --color-white: #fff;
  --color-border: #333;

  --inner-width: 920px;
  --header-height: 86px;

  --font-base: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  background: #fff;
}

body.is-drawer-open {
  overflow: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

/* ========================================
  Common
======================================== */

.container {
  width: min(100% - 48px, var(--inner-width));
  margin-inline: auto;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

.section-title {
  width: fit-content;
  margin: 0 auto 44px;
  padding: 9px 62px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: var(--color-main);
  border: 2px solid var(--color-border);
  border-radius: 999px;
}

/* ========================================
  Header
======================================== */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  background: var(--color-fv-bg);
}

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 62px;
  flex-shrink: 0;
}

.header__logo-link {
  display: block;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header__item {
  font-size: 12px;
  font-weight: 700;
}

.header__item a:hover {
  color: var(--color-main);
}

.header__item--contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}

.header__item--contact img {
  width: 28px;
}

/* ========================================
  Drawer
======================================== */

.drawer {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

.drawer__line {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: #1e88d8;
  transition: var(--transition);
}

.drawer__line + .drawer__line {
  margin-top: 6px;
}

.drawer.is-active .drawer__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.drawer.is-active .drawer__line:nth-child(2) {
  opacity: 0;
}

.drawer.is-active .drawer__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 110px 56px;
  background: var(--color-fv-bg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: var(--transition);
}

.drawer-nav.is-active {
  transform: translateX(0);
}

.drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.drawer-nav__item {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.drawer-nav__item:first-child {
  color: #d66f61;
}

.drawer-nav__item a {
  display: inline-block;
}

.drawer-nav__item--contact {
  margin-top: 22px;
}

.drawer-overlay {
  display: none;
}

body.is-drawer-open {
  overflow: hidden;
}

/* ========================================
  FV
======================================== */

.fv {
  padding: 106px 0 66px;
  background: var(--color-fv-bg);
}

.fv__title {
  width: min(100%, 720px);
  margin: 0 auto 36px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.fv__image {
  width: min(100%, 720px);
  margin-inline: auto;
}

.fv__image img {
  width: 100%;
  border: 2px solid var(--color-border);
}

.fv__text {
  width: min(100%, 720px);
  margin: 30px auto 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.fv__text p {
  margin: 0;
}

.fv__text p + p {
  margin-top: 14px;
}

/* ========================================
  Vision
======================================== */

.vision {
  padding: 44px 0 66px;
  background: var(--color-section-bg);
}

.vision__content {
  width: min(100%, 780px);
  margin-inline: auto;
}

.vision__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 2.1;
}

.vision__text p {
  margin: 0;
}

.vision__text p + p {
  margin-top: 26px;
}

/* ========================================
  Feature
======================================== */

.feature {
  padding: 44px 0 82px;
  background: var(--color-section-bg);
}

.feature__list {
  width: min(100%, 820px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 66px;
}

.feature-card {
  position: relative;
  padding: 42px 64px 46px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 38px;
}

.feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -68px;
  width: 2px;
  height: 66px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.feature-card__image {
  width: min(100%, 590px);
  margin: 0 auto 34px;
}

.feature-card__image img {
  width: 100%;
  border: 2px solid var(--color-border);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.feature-card__title {
  flex: 1;
  margin: 0;
  color: var(--color-main);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
}

.feature-card__number {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 96px;
  font-weight: 800;
  line-height: 0.9;
}

.feature-card__text {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.95;
}

/* ========================================
  Footer
======================================== */

.footer {
  padding: 78px 0 28px;
  background: var(--color-footer-bg);
}

.footer__inner {
  width: min(100%, 820px);
  margin-inline: auto;
  padding-top: 48px;
  border-top: none;
}

.footer__top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 52px;
}

.footer__logo {
  width: 96px;
  flex-shrink: 0;
}

.footer__company {
  flex: 0 1 auto;
}

.footer__title {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 800;
}

.footer__address {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.footer__corporate-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-main);
  font-size: 12px;
  font-weight: 700;
}

.footer__corporate-link::after {
  content: " ▶";
}

.footer__bottom {
  margin-top: 46px;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.footer__item {
  font-size: 12px;
  font-weight: 700;
}

.footer__copyright {
  display: none;
}

/* ========================================
  SP
======================================== */

@media (max-width: 768px) {
  :root {
    --inner-width: 100%;
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, 375px);
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .section-title {
    margin-bottom: 36px;
    padding: 8px 42px;
    font-size: 18px;
  }

  .header__inner {
    height: var(--header-height);
  }

  .header__logo {
    width: 50px;
  }

  .header__nav {
    display: none;
  }

  .drawer {
    display: block;
  }

  .fv {
    padding: 90px 0 48px;
  }

  .fv__title {
    width: 100%;
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.45;
    text-align: left;
  }

  .fv__image {
    width: 100%;
  }

  .fv__text {
    width: 100%;
    margin-top: 22px;
    font-size: 12px;
    line-height: 2;
  }

  .vision {
    padding: 36px 0 58px;
  }

  .vision__content {
    width: 100%;
  }

  .vision__text {
    font-size: 11px;
    line-height: 2.05;
  }

  .vision__text p + p {
    margin-top: 22px;
  }

  .feature {
    padding: 34px 0 66px;
  }

  .feature__list {
    width: 100%;
    gap: 48px;
  }

  .feature-card {
    padding: 28px 22px 34px;
    border-radius: 28px;
  }

  .feature-card:not(:last-child)::after {
    bottom: -48px;
    height: 48px;
  }

  .feature-card__image {
    width: 100%;
    margin-bottom: 22px;
  }

  .feature-card__top {
    display: block;
    margin-bottom: 20px;
  }

  .feature-card__title {
    font-size: 17px;
    line-height: 1.55;
  }

  .feature-card__number {
    display: block;
    margin-top: 10px;
    font-size: 64px;
    line-height: 1;
    text-align: left;
  }

  .feature-card__text {
    font-size: 11px;
    line-height: 2;
  }

  .footer {
    padding: 58px 0 34px;
  }

  .footer__inner {
    width: 100%;
    padding-top: 34px;
  }

  .footer__top {
    display: block;
    text-align: center;
  }

  .footer__logo {
    width: 108px;
    margin: 0 auto 18px;
  }

  .footer__title {
    font-size: 22px;
  }

  .footer__address {
    font-size: 12px;
  }

  .footer__corporate-link {
    font-size: 12px;
  }

  .footer__bottom {
    margin-top: 34px;
  }

  .footer__list {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer__item {
    font-size: 11px;
  }
}

@media (max-width: 374px) {
  .container {
    width: min(100% - 24px, 335px);
  }

  .fv__title {
    font-size: 25px;
  }

  .feature-card__title {
    font-size: 16px;
  }

  .feature-card__number {
    font-size: 58px;
  }
}
@media (max-width: 768px) {
  .fv__title {
    text-align: center;
  }

  .feature-card__top {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6px;
  }

  .feature-card__number {
    margin-top: 0;
    font-size: 68px;
  }

  .footer {
    padding-top: 48px;
  }
}


/* ========================================
  Lower Page Common
======================================== */

.page-fv {
  padding: 140px 0 90px;
  background: var(--color-fv-bg);
}

.page-fv__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 36px;
  width: min(100%, 860px);
  margin-inline: auto;
}

.page-fv__title {
  justify-self: center;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.page-fv__image img {
  width: 100%;
  border: 2px solid var(--color-border);
}

.page-fv__lead {
  width: min(100%, 690px);
  margin: 56px auto 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.lower-section {
  padding: 76px 0 110px;
  background: var(--color-footer-bg);
}

.lower-section__container {
  width: min(100% - 48px, 760px);
}

.lower-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.lower-heading__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--color-main);
  border: 2px solid var(--color-border);
  border-radius: 50%;
}

.lower-heading__icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--color-footer-bg);
  border-radius: 50%;
}

.lower-heading__title {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
  Service Page
======================================== */

.service-table-wrap {
  width: 100%;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
  font-weight: 500;
}

.service-table th,
.service-table td {
  padding: 26px 28px;
  border: 2px solid #777;
  line-height: 1.5;
  vertical-align: middle;
}

.service-table th {
  width: 56%;
  text-align: left;
  background: var(--color-fv-bg);
  font-weight: 500;
}

.service-table td {
  background: #fff;
  letter-spacing: 0.12em;
}

.service-area {
  margin-top: 86px;
}

.service-area__text {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.service-table th,
.service-table td {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ========================================
  Lower Page SP
======================================== */

@media (max-width: 768px) {
  .page-fv {
    padding: 92px 0 50px;
  }

  .page-fv__inner {
    display: block;
    width: 100%;
  }

  .page-fv__title {
    margin-bottom: 28px;
    font-size: 30px;
    text-align: center;
  }

  .page-fv__lead {
    width: 100%;
    margin-top: 28px;
    font-size: 14px;
    line-height: 2;
  }

  .lower-section {
    padding: 52px 0 70px;
  }

  .lower-section__container {
    width: min(100% - 32px, 375px);
  }

  .lower-heading {
    gap: 10px;
    margin-bottom: 24px;
  }

  .lower-heading__icon {
    width: 22px;
    height: 22px;
  }

  .lower-heading__icon::after {
    inset: 5px;
  }

  .lower-heading__title {
    font-size: 24px;
  }

  .service-table {
    font-size: 12px;
  }

  .service-table th,
  .service-table td {
    padding: 16px 12px;
  }

  .service-table th {
    width: 54%;
  }

  .service-table td {
    letter-spacing: 0.04em;
  }

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

  .service-area__text {
    font-size: 22px;
    line-height: 1.6;
  }
}
/* ========================================
  Service Page Adjust
======================================== */

.page-fv {
  padding-top: 150px;
  padding-bottom: 86px;
}

.page-fv__inner {
  width: min(100%, 820px);
  gap: 64px;
}

.page-fv__title {
  font-size: 40px;
}

.page-fv__lead {
  width: min(100%, 720px);
  margin-top: 54px;
  font-size: 19px;
  line-height: 1.95;
}

.lower-section {
  padding-top: 74px;
  padding-bottom: 120px;
}

.lower-section__container {
  width: min(100% - 48px, 720px);
}

.service-table {
  font-size: 14px;
}

.service-area {
  margin-top: 82px;
}

.service-area__text {
  font-size: 30px;
}

/* SP調整 */
@media (max-width: 768px) {
  .page-fv {
    padding-top: 92px;
    padding-bottom: 50px;
  }

  .page-fv__title {
    margin-bottom: 28px;
    font-size: 30px;
    text-align: center;
  }

  .page-fv__image {
    width: 100%;
  }

  .page-fv__lead {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2;
  }

  .lower-section {
    padding-top: 50px;
    padding-bottom: 78px;
  }

  .lower-heading {
    justify-content: center;
  }

  .lower-heading__title {
    font-size: 24px;
  }

  .service-table {
    font-size: 10px;
  }

  .service-table th,
  .service-table td {
    padding: 13px 10px;
  }

  .service-table td {
    letter-spacing: 0.02em;
  }

  .service-area {
    margin-top: 54px;
  }

  .service-area__text {
    font-size: 20px;
    line-height: 1.75;
  }
}

/* ========================================
  Company Page
======================================== */

.company-profile {
  width: min(100%, 620px);
  margin: 78px auto 0;
}

.company-profile__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.company-profile__item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}

.company-profile__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--color-main);
  border: 2px solid var(--color-border);
  border-radius: 50%;
}

.company-access__map {
  width: min(100%, 620px);
  margin: 0 auto;
}

.company-access__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 8px;
}

/* ========================================
  Company Page SP
======================================== */

@media (max-width: 768px) {
  .company-profile {
    width: 100%;
    margin-top: 42px;
  }

  .company-profile__list {
    gap: 20px;
  }

  .company-profile__item {
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.8;
  }

  .company-profile__icon {
    width: 16px;
    height: 16px;
    margin-top: 5px;
  }

  .company-access__map {
    width: 100%;
  }

  .company-access__map iframe {
    height: 300px;
    border-radius: 0;
  }
}

/* ========================================
  Recruit Page
======================================== */

.recruit-content {
  background: var(--color-footer-bg);
}

.recruit-requirements {
  width: 100%;
}

.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0 0 0 34px;
}

.recruit-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.recruit-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 7px;
  background: var(--color-main);
  border: 2px solid var(--color-border);
  border-radius: 50%;
}

.recruit-list__content {
  flex: 1;
}

.recruit-list__text,
.recruit-list__note {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.recruit-list__note {
  margin-top: 2px;
}

.recruit-list__detail {
  margin-top: 4px;
  padding-left: 1.2em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.recruit-list__detail li {
  list-style: "・";
  padding-left: 0.2em;
}

/* ========================================

  Recruit Salary

======================================== */

.recruit-salary {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;

  margin-top: 16px;

}

.recruit-salary__box {

  padding: 24px 26px;

  background: #fff;

  border: 1px solid var(--color-border);

  border-radius: 16px;

}

.recruit-salary__title {

  margin: 0 0 12px;

  font-size: 20px;

  font-weight: 700;

  line-height: 1.5;

  color: var(--color-main);

}

.recruit-salary__main {

  margin: 0 0 12px;

  font-size: 22px;

  font-weight: 700;

  line-height: 1.6;

}

.recruit-salary__detail {

  margin: 0;

  padding-left: 1.2em;

  font-size: 16px;

  font-weight: 500;

  line-height: 1.8;

}

.recruit-salary__detail li {

  list-style: "・";

  padding-left: 0.2em;

}

.recruit-salary__note {

  font-size: 0.9em;

}

/* ========================================
  Recruit Flow
======================================== */

.recruit-flow {
  margin-top: 64px;
}

.recruit-flow__list {
  margin: 0;
  padding-left: 62px;
}

.recruit-flow__item {
  padding-left: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.recruit-flow__item + .recruit-flow__item {
  margin-top: 28px;
}

.recruit-flow__note {
  display: block;
}

/* ========================================
  Recruit Page SP
======================================== */

@media (max-width: 768px) {
  .recruit-list {
    gap: 22px;
    padding-left: 8px;
  }

  .recruit-list__item {
    gap: 10px;
  }

  .recruit-list__icon {
    width: 16px;
    height: 16px;
    margin-top: 5px;
  }

  .recruit-list__text,
  .recruit-list__note,
  .recruit-list__detail {
    font-size: 13px;
    line-height: 1.85;
  }

  .recruit-list__detail {
    padding-left: 1em;
  }

  .recruit-flow {
    margin-top: 48px;
  }

  .recruit-flow__list {
    padding-left: 28px;
  }

  .recruit-flow__item {
    padding-left: 2px;
    font-size: 13px;
    line-height: 1.8;
  }

  .recruit-flow__item + .recruit-flow__item {
    margin-top: 22px;
  }
}

  .recruit-salary {

    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 12px;

  }

  .recruit-salary__box {

    padding: 18px 16px;

    border-radius: 12px;

  }

  .recruit-salary__title {

    margin-bottom: 8px;

    font-size: 15px;

  }

  .recruit-salary__main {

    margin-bottom: 8px;

    font-size: 16px;

  }

  .recruit-salary__detail {

    padding-left: 1em;

    font-size: 13px;

    line-height: 1.8;

  }

/* ========================================
  Contact Page
======================================== */

.contact {
  background: var(--color-footer-bg);
}

.contact__intro {
  width: min(100%, 720px);
  margin-inline: auto;
}

.contact__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.contact__lead p {
  margin: 0;
}

.contact__lead p + p {
  margin-top: 12px;
}

.contact__note {
  color: #666;
  font-size: 14px;
}

/* ========================================
  Contact Information
======================================== */

.contact-info {
  width: min(100%, 720px);
  margin: 64px auto 0;
}

.contact-info__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-info__item {
  padding: 34px 28px;
  text-align: center;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 28px;
}

.contact-info__label {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 5px 24px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--color-main);
  border: 2px solid var(--color-border);
  border-radius: 999px;
}

.contact-info__value {
  display: inline-block;
  color: var(--color-main);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-info__value--mail {
  font-size: 17px;
  overflow-wrap: anywhere;
}

.contact-info__description {
  margin: 14px 0 0;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

/* ========================================
  Contact Form
======================================== */

.contact-form {
  width: min(100%, 760px);
  margin: 88px auto 0;
}

.contact-form__description {
  margin: -10px 0 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

.contact-form__embed {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 28px;
}

.contact-form__embed iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.contact-form__placeholder {
  position: absolute;
  inset: 50% auto auto 50%;
  width: calc(100% - 48px);
  margin: 0;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  transform: translate(-50%, -50%);
}

/*
  Googleフォームを埋め込んだ後は、
  contact-form__placeholder をHTMLから削除してください。
*/

/* ========================================
  Contact Page Hover
======================================== */

@media (hover: hover) {
  .contact-info__item {
    transition:
      transform var(--transition),
      box-shadow var(--transition);
  }

  .contact-info__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(51, 51, 51, 0.1);
  }

  .contact-info__value:hover {
    opacity: 0.7;
  }
}

/* ========================================
  Contact Page SP
======================================== */

@media (max-width: 768px) {
  .contact__intro {
    width: 100%;
  }

  .contact__intro .lower-heading {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .contact__intro .lower-heading__icon {
    margin-top: 5px;
  }

  .contact__intro .lower-heading__title {
    font-size: 21px;
  }

  .contact__lead {
    font-size: 13px;
    line-height: 1.95;
  }

  .contact__note {
    font-size: 12px;
  }

  .contact-info {
    width: 100%;
    margin-top: 44px;
  }

  .contact-info__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info__item {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .contact-info__label {
    margin-bottom: 12px;
    padding: 4px 20px;
    font-size: 12px;
  }

  .contact-info__value {
    font-size: 24px;
  }

  .contact-info__value--mail {
    font-size: 14px;
  }

  .contact-info__description {
    margin-top: 10px;
    font-size: 11px;
  }

  .contact-form {
    width: 100%;
    margin-top: 58px;
  }

  .contact-form .lower-heading {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .contact-form .lower-heading__icon {
    margin-top: 5px;
  }

  .contact-form .lower-heading__title {
    font-size: 21px;
  }

  .contact-form__description {
    margin: -4px 0 20px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  .contact-form__embed {
    min-height: 900px;
    border-radius: 20px;
  }

  .contact-form__embed iframe {
    min-height: 900px;
  }

  .contact-form__placeholder {
    width: calc(100% - 32px);
    font-size: 13px;
  }
}

/* ========================================

  Scroll Animation

======================================== */

.js-reveal {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* FVだけ少し早め・控えめ */
.page-fv__title.js-reveal,
.page-fv__image.js-reveal,
.fv__title.js-reveal,
.fv__image.js-reveal {
  transform: translateY(12px);
}

.page-fv__title.js-reveal.is-show,
.page-fv__image.js-reveal.is-show,
.fv__title.js-reveal.is-show,
.fv__image.js-reveal.is-show {
  transform: translateY(0);
}

/* 動きを減らす設定を使用している人にはアニメーションさせない */
@media (prefers-reduced-motion: reduce) {

  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}