/* ==============================
   共通
============================== */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

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

section {
  box-sizing: border-box;
}

.u-wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.u-sectionWrapper {
  padding: 90px 0;
}

.u-sectionTitle {
  margin: 0 0 50px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.15em;
}


/* ==============================
   セクション見出し共通
============================== */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 100px;
  margin: 0 auto 22px;
}

.section-heading__icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

/* SERVICEのカーソル画像 */
.section-heading__icon--service {
  width: 190px;
  height: 100px;
}

/* ABOUTの青い画像 */
.section-heading__icon--about {
  width: 190px;
  height: 100px;
}


/* ==============================
   HEADER
============================== */

.header {
  width: 100%;
  margin: 0;
  padding: 40px 0 25px;
  background: #e6e6e6;
  text-align: center;
}

.header__title {
  display: block;
  width: fit-content;
  margin: 0 auto 35px;
  font-size: 32px;
  font-weight: 700;
}

.header__nav {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav a {
  color: #111;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}


/* ==============================
   MV
============================== */

.mv {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
  background: #e6e6e6;
}

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


/* ==============================
   WORKS
============================== */

.works {
  padding: 90px 0 70px;
  background: #fff;
  text-align: center;
}

/* WORKS上部のFrame 70.svg */
.works__deco {
  margin-bottom: 22px;
  text-align: center;
}

.works__deco img {
  display: block;
  width: 190px;
  max-width: none;
  height: auto;
  margin: 0 auto;
}

.works__container {
  display: grid;
  grid-template-columns: repeat(2, 240px);
  justify-content: center;
  gap: 50px 70px;
  width: 560px;
  margin: 0 auto 50px;
  padding: 0;
  list-style: none;
}

.works__item {
  list-style: none;
}

.works__img {
  display: block;
  width: 240px;
  height: 150px;
  object-fit: cover;
}

.works__itemText {
  margin: 14px 0 0;
  font-size: 14px;
  text-align: center;
}

.works__btn {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}


/* ==============================
   BUTTON
============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: #d7eb45;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}


/* ==============================
   SERVICE
============================== */

.service {
  padding: 80px 0 100px;
  background: #fff;
}

.service__inner {
  width: 90%;
  max-width: 520px;
  margin: 0 auto;
}

.service__title {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
}

.service__lead {
  margin: 0 0 58px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.service__subTitle {
  display: none;
}

.service__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 56px;
}

.service__textBox {
  width: 330px;
}

.service__itemTitle {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service__itemTitle span {
  margin-right: 6px;
  font-size: 18px;
}

.service__text,
.service__note {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
}

.service__icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
}


/* ==============================
   FLOW
============================== */

.flow {
  padding: 70px 20px 100px;
  background: #fff;
}

.flow__inner {
  width: 100%;
}

.flow__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}

.flow__list {
  max-width: 760px;
  margin: 0 auto;
}

.flow__item {
  display: grid;
  grid-template-columns: 50px 180px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
  padding: 18px 36px;
  border-radius: 999px;
  background: #e8e8e8;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
}

.flow__number {
  margin: 0;
  color: #48cbd2;
  font-weight: 700;
}

.flow__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.flow__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}


/* ==============================
   ABOUT
============================== */

.about {
  padding: 80px 0;
  background: #fff;
}

.about__inner {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}

.about__title {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
}

.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about__content {
  width: 430px;
  flex: none;
}

.about__contentTitle,
.about__skillTitle {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.about__contentName,
.about__contentText,
.about__skillHeading {
  font-size: 13px;
  line-height: 1.7;
}

.about__contentName {
  margin: 0 0 24px;
}

.about__contentText {
  margin: 0 0 32px;
}

.about__skillHeading {
  margin: 0 0 16px;
  font-weight: 700;
}

.about__image {
  width: 250px;
  flex: 0 0 250px;
  transform: translateY(-35px);
}

.about__image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}


/* ==============================
   CONTACT
============================== */

.contact {
  padding: 80px 0;
  background: #fff;
}

.contact__inner {
  width: 90%;
  max-width: 560px;
  margin: 0 auto;
}

.section-heading--contact {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading__icon--contact {
  width: 130px;
  height: auto;
  margin: 0 auto 22px;
}

.section-heading__icon--contact img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact__title {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

.contact__text,
.contact__note,
.contact__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.contact__text {
  margin: 0 0 24px;
}

.contact__note {
  margin: 0 0 28px;
}

.contact__form {
  width: 100%;
}

.contact__formItem {
  margin-bottom: 24px;
}

.contact__label {
  display: block;
  margin-bottom: 8px;
}

.contact__required {
  color: #48cbd2;
}

.contact__input,
.contact__textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: #d8d8d8;
  font-family: inherit;
}

.contact__input {
  height: 34px;
}

.contact__textarea {
  height: 180px;
  resize: vertical;
}

.contact__btnWrap {
  margin-top: 32px;
  text-align: center;
}

.contact__btn {
  width: 160px;
  height: 56px;
  border: none;
  border-radius: 28px;
  background: #d7eb45;
  font-weight: 700;
  cursor: pointer;
}


/* ==============================
   FOOTER
============================== */

footer {
  padding: 40px 0;
  background: #e5e5e5;
  text-align: center;
}

.footer__copyright {
  margin: 0;
}


/* ==============================
   WORKS PAGE
============================== */

.works-page {
  padding: 100px 0;
  background: #fff;
}

.works-page__inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.works-page__title {
  margin: 0 0 80px;
  font-size: 48px;
  font-weight: 400;
}

.works-page__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 70px;
  margin: 0 auto 80px;
  padding: 0;
  list-style: none;
}

.works-page__item {
  list-style: none;
}

.works-page__item a {
  color: #000;
  text-decoration: none;
}

.works-page__item img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 180px;
  margin: 0 auto 15px;
  object-fit: cover;
}

.works-page__item p {
  margin: 0;
  font-size: 18px;
}


/* ==============================
   WORK DETAIL
============================== */

.work-detail {
  padding: 80px 0;
  background: #fff;
}

.work-detail__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.work-detail__breadcrumb {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 700;
}

.work-detail__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.work-detail__info {
  width: 40%;
}

.work-detail__item {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}

.work-detail__heading {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
}

.work-detail__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.work-detail__image {
  width: 50%;
  margin-top: 100px;
}

.work-detail__image img {
  display: block;
  width: 100%;
}


/* ==============================
   タブレット・スマートフォン
============================== */

@media screen and (max-width: 767px) {

  .u-sectionWrapper {
    padding: 60px 0;
  }

  .u-sectionTitle {
    margin-bottom: 36px;
    font-size: 30px;
  }

  /* セクション見出し共通 */

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading__icon,
  .section-heading__icon--service,
  .section-heading__icon--about {
    width: 190px;
    height: 100px;
  }

  /* HEADER */

  .header {
    padding: 30px 0 22px;
  }

  .header__title {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .header__nav {
    flex-wrap: wrap;
    gap: 15px 28px;
  }

  .header__nav a {
    font-size: 13px;
  }

  /* MV */

  .mv {
    padding-bottom: 40px;
  }

  /* WORKS */

  .works {
    padding: 65px 0 60px;
  }

  .works__deco img {
    width: 190px;
  }

  .works__container {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 90%;
    max-width: 300px;
  }

  .works__img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
  }

  /* SERVICE */

  .service {
    padding: 65px 0 75px;
  }

  .service__title {
    font-size: 30px;
  }

  .service__lead {
    margin-bottom: 44px;
    font-size: 13px;
  }

  .service__item {
    gap: 20px;
    margin-bottom: 44px;
  }

  .service__textBox {
    width: calc(100% - 85px);
  }

  .service__icon {
    width: 65px;
    height: 65px;
  }

  /* FLOW */

  .flow {
    padding: 60px 20px 75px;
  }

  .flow__title {
    font-size: 25px;
  }

  .flow__item {
    display: block;
    padding: 24px;
    border-radius: 25px;
  }

  .flow__number,
  .flow__heading {
    margin-bottom: 10px;
  }

  .flow__text {
    font-size: 14px;
  }

  /* ABOUT */

  .about {
    padding: 65px 0;
  }

  .about__inner {
    max-width: 520px;
  }

  .about__title {
    font-size: 30px;
  }

  .about__wrapper {
    flex-direction: column-reverse;
    gap: 35px;
  }

  .about__content {
    width: 100%;
  }

  .about__image {
    width: 250px;
    flex: 0 0 250px;
    transform: none;
  }

  /* CONTACT */

  .contact {
    padding: 65px 0;
  }

  .section-heading__icon--contact {
    width: 130px;
    height: auto;
  }

  .contact__title {
    font-size: 30px;
  }

  /* WORKS PAGE */

  .works-page {
    padding: 70px 0;
  }

  .works-page__title {
    margin-bottom: 55px;
    font-size: 38px;
  }

  .works-page__list {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  /* WORK DETAIL */

  .work-detail {
    padding: 60px 0;
  }

  .work-detail__content {
    flex-direction: column;
    gap: 40px;
  }

  .work-detail__info,
  .work-detail__image {
    width: 100%;
  }

  .work-detail__image {
    margin-top: 0;
  }

  .work-detail__heading {
    font-size: 28px;
  }
}
/* ==============================
   HEADER LINK
============================== */

.header__title a,
.header__title a:visited,
.header__title a:hover,
.header__title a:focus {
  color: #111;
  text-decoration: none;
}

/* ==============================
   WORKS PAGE TOP BUTTON
============================== */

.works-page__top {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.works-page__top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: #d7eb45;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.works-page__top a:hover,
.works-page__top a:visited,
.works-page__top a:focus {
  color: #111;
  text-decoration: none;
  opacity: .8;
}