@charset "UTF-8";
/* ---------------------------------
  全体設定
---------------------------------- */
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

/* ---------------------------------
  ボタン
---------------------------------- */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
  border-radius: 10px;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button__text {
  color: #82cddd;
}
.button--border {
  border: 1px solid #fff;
}
.button--border .button__text {
  color: #fff;
}
.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #82cddd;
}
.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  section {
    scroll-margin-top: 80px; /* header高さに合わせる */
  }
}
/* ---------------------------------
  header
---------------------------------- */
.header {
  background-color: #82cddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  position: relative;
  width: 100%;
}
.header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  font-family: "Damion", cursive;
  color: #fff;
}
.header__menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}
.header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}
.header__contents {
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 30px;
  display: none;
}
.header__nav-item + .header__nav-item {
  margin-top: 15px;
}

/* ---------------------------------
  section
---------------------------------- */
.section {
  padding: 48px 0;
}
.section__inner {
  padding: 0 32px;
}
.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.section__head.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.section__head-sub {
  font-size: 11px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section__contents {
  margin-top: 40px;
}

/* ---------------------------------
  fv
---------------------------------- */
.fv {
  position: relative;
}
.fv__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fv__heading-main {
  display: block;
  font-family: "Damion", cursive;
  font-size: 70px;
  color: #fff;
  letter-spacing: 0.1em;
}
.fv__heading-sub {
  display: block;
  font-family: "Damion", cursive;
  font-size: 30px;
  color: #fff;
  text-align: right;
}

/* ---------------------------------
  service
---------------------------------- */
.service__item + .service__item {
  margin-top: 40px;
}
.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item-name {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------------------------------
  works
---------------------------------- */
.works {
  background-color: #f7f6fb;
}
.works__item + .works__item {
  margin-top: 40px;
}
.works__item-img {
  margin-bottom: 12px;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.works__item-name {
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.works__item-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.works__item-category-item {
  border: 1px solid #82cddd;
  background-color: #82cddd;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

/* ---------------------------------
  About
---------------------------------- */
.about__img {
  margin-bottom: 32px;
}
.about__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

/* ---------------------------------
  flow
---------------------------------- */
.flow {
  background-color: #f7f6fb;
}
.flow__list {
  margin-top: 64px;
}
.flow__item {
  position: relative;
  border: 1px solid #808080;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #82cddd;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}
.flow__item-name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------------------------------
  message
---------------------------------- */
.message {
  padding-bottom: 70px;
  background: url(../img/img_bg-message.png) center center no-repeat;
}
.message__img {
  margin-bottom: 32px;
}
.message__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
}

/* ---------------------------------
  form
---------------------------------- */
.contact {
  background-color: #f7f6fb;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact__form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__form-head {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact__form-text {
  margin-bottom: 20px;
}
.contact__form-text input,
.contact__form-text textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.contact__form-text input::-webkit-input-placeholder, .contact__form-text textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact__form-text input::-moz-placeholder, .contact__form-text textarea::-moz-placeholder {
  color: #aaa;
}
.contact__form-text input:-ms-input-placeholder, .contact__form-text textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact__form-text input::-ms-input-placeholder, .contact__form-text textarea::-ms-input-placeholder {
  color: #aaa;
}
.contact__form-text input::placeholder,
.contact__form-text textarea::placeholder {
  color: #aaa;
}
.contact__form-text input:focus,
.contact__form-text textarea:focus {
  outline: none;
  border-color: #333;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.contact__form-text textarea {
  min-height: 160px;
  resize: vertical;
}

.form__submit {
  margin-top: 32px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background-color: #82cddd;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
.form__submit:hover {
  background-color: #6f6f6f;
  opacity: 0.9;
}

/* ---------------------------------
  page-bottom
---------------------------------- */
.page-bottom {
  color: #fff;
}
.page-bottom__item {
  padding: 40px;
}
.page-bottom__item--contact {
  background-color: #6f6f6f;
}
.page-bottom__item--twitter {
  background-color: #82cddd;
}

/* ---------------------------------
  footer
---------------------------------- */
.footer {
  padding: 10px;
  text-align: center;
}
.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}

/* ---------------------------------
  ページトップボタン
---------------------------------- */
.pagetop {
  height: 50px; /* ボタンの高さ */
  width: 50px; /* ボタンの幅 */
  position: fixed; /* 位置を固定する*/
  right: 10px; /* 画面の右端から30pxの距離 */
  bottom: 15px; /* 画面の下端から30pxの距離 */
  border: solid 2px #808080; /* 枠線 */
  border-radius: 50%; /* ボタンを丸くする */
  display: none; /* 通常は非表示にする */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; /* ボタン内のテキストが水平中央方向に配置*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; /* ボタン内のテキストが垂直中央方向に配置*/
  z-index: 2; /* 要素の重なり順で上に来るように*/
  cursor: pointer;
  background-color: #6f6f6f;
  color: #fff;
}

.pagetop > span {
  font-size: 12px;
  font-weight: bold;
}

/* ---------------------------------
  pc
---------------------------------- */
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
  /* ---------------------------------
  header pc
  ---------------------------------- */
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    display: block;
    border: none;
  }
  .button {
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__icon-path {
    fill: #82cddd;
  }
  .button:hover .button__text {
    color: #82cddd;
  }
  .button--bg {
    color: #82cddd;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
  /* ---------------------------------
  section pc
  ---------------------------------- */
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head-main {
    font-size: 60px;
  }
  /* ---------------------------------
  fv pc
  ---------------------------------- */
  .fv__heading-main {
    font-size: 100px;
  }
  .fv__heading-sub {
    font-size: 50px;
  }
  /* ---------------------------------
    service pc
  ---------------------------------- */
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service__item + .service__item {
    margin-top: 0;
  }
  /* ---------------------------------
  works pc
  ---------------------------------- */
  .works__list {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works__item + .works__item {
    margin-top: 0;
  }
  /* ---------------------------------
  About pc
  ---------------------------------- */
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__img {
    width: 40%;
    margin-bottom: 0;
  }
  .about__text-contents {
    width: 60%;
  }
  /* ---------------------------------
  flow pc
  ---------------------------------- */
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow__item + .flow__item {
    margin-top: 0;
  }
  /* ---------------------------------
  message pc
  ---------------------------------- */
  .message {
    background-size: 100% auto;
  }
  .message__img {
    margin-bottom: 0;
  }
  /* ---------------------------------
  page-bottom pc
  ---------------------------------- */
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bottom__item {
    padding: 54px 10px;
  }
  /* ---------------------------------
  ページトップボタン pc
  ---------------------------------- */
  .pagetop {
    height: 50px; /* ボタンの高さ */
    width: 50px; /* ボタンの幅 */
    position: fixed; /* 位置を固定する*/
    right: 30px; /* 画面の右端から30pxの距離 */
    bottom: 30px; /* 画面の下端から30pxの距離 */
    border: solid 2px #808080; /* 枠線 */
    border-radius: 50%; /* ボタンを丸くする */
    display: none; /* 通常は非表示にする */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; /* ボタン内のテキストが水平中央方向に配置*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; /* ボタン内のテキストが垂直中央方向に配置*/
    z-index: 2; /* 要素の重なり順で上に来るように*/
    cursor: pointer;
    background-color: #6f6f6f;
    color: #fff;
  }
}
/* ---------------------------------
  tb
---------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* ---------------------------------
  section tb
  ---------------------------------- */
  .section__head-main {
    font-size: 54px;
  }
  /* ---------------------------------
  fv tb
  ---------------------------------- */
  .fv__heading-main {
    font-size: 80px;
  }
  .fv__heading-sub {
    font-size: 40px;
  }
  /* ---------------------------------
  flow
  ---------------------------------- */
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}