@charset "UTF-8";
body {
  font-family: "M PLUS 1p", serif;
  color: #333;
  font-weight: 400;
  font-size: 16px;
}
body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
.button {
  display: inline-block;
  padding: 10px 40px 10px 30px;
  background: #83c9c6;
  border-radius: 36px;
  font-weight: 700;
  color: #fafafa;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 15px 60px 15px 50px;
    font-size: 18px;
  }
}
.button::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-46%);
          transform: translateY(-46%);
}
@media screen and (min-width: 768px) {
  .button::after {
    right: 35px;
  }
}
.button:hover {
  background: #2a5772;
}

.fade-in-down__open {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px); /* 初期状態で少し上にオフセット */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* 透明度と位置をアニメーション */
}

/* クラスが追加されたときのスタイル */
.fade-in-down__open.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

.fade-in-up__scroll {
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateY(40px);
          transform: translateY(40px); /* 初期状態で少し下にオフセット */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* アニメーション設定 */
}

/* 表示時のスタイル */
.fade-in-up__scroll.is-visible {
  opacity: 1; /* 不透明にする */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

.header {
  background: rgba(176, 215, 213, 0.2);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 999;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
.header.is-checked {
  background: rgb(176, 215, 213);
}

.header__inner {
  padding: 15px;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-inline: 36px;
  }
}
.header__inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__title {
  font-weight: 700;
  font-size: 24px;
  color: #2a5772;
  text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
}

.header__icon {
  position: absolute;
  top: 15px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 32px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 12px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 32px;
  height: 4px;
  left: 0;
  background: #2a5772;
  -webkit-box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
          box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav {
  background: #b0d7d5;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  right: 0;
  top: 65px;
  text-align: center;
  border-top: 1px solid #2a5772;
  padding-top: 50px;
  opacity: 0;
  pointer-events: none;
  z-index: -10;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.header__nav.is-checked {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    border: none;
    position: static;
    margin-top: 0;
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 1;
    pointer-events: auto;
    z-index: 0;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-item {
  position: relative;
}
.header__nav-item + .header__nav-item {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .header__nav-item + .header__nav-item {
    margin-top: 0;
    margin-left: 20px;
  }
}
.header__nav-item::after {
  position: absolute;
  left: calc(50% - 15px + 5px);
  bottom: -8px;
  content: "";
  width: 30px;
  height: 2px;
  background: #2a5772;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
@media screen and (min-width: 768px) {
  .header__nav-item::after {
    left: 0;
    width: 100%;
  }
}
.header__nav-item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__nav-link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__nav-link {
    width: auto;
  }
}

.header__nav-text {
  margin-left: 10px;
  color: #2a5772;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .header__nav-text {
    margin-left: 0;
    text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
  }
}

/*-----------------------------------------------
// Main
-----------------------------------------------*/
/*-----------------------------------------------
// Main Visual
-----------------------------------------------*/
.mv {
  position: relative;
}

.mv__img img {
  width: 100%;
}

.mv__contents {
  position: absolute;
  top: 32px;
  left: 32px;
  height: 209px;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .mv__contents {
    background-size: 100% auto;
    top: 60px;
    left: 70px;
  }
}

.mv__heading {
  color: #fafafa;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mv__heading span {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.1rem;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.mv__heading-main {
  display: block;
  font-size: calc(40px + 24 * (100vw - 375px) / 392);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .mv__heading-main {
    font-size: 64px;
  }
}
@media screen and (min-width: 900px) {
  .mv__heading-main {
    font-size: calc(64px + 36 * (100vw - 900px) / 380);
  }
}
@media screen and (min-width: 1280px) {
  .mv__heading-main {
    font-size: 100px;
  }
}

.mv__heading-sub {
  display: inline-block;
  font-size: calc(29px + 17 * (100vw - 375px) / 392);
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__heading-sub {
    font-size: 46px;
  }
}
@media screen and (min-width: 900px) {
  .mv__heading-sub {
    font-size: calc(46px + 26 * (100vw - 900px) / 380);
  }
}
@media screen and (min-width: 1280px) {
  .mv__heading-sub {
    font-size: 72px;
  }
}

.mv__heading-sub-text {
  position: relative;
  z-index: 1;
}

.mv-under-line {
  display: block;
  width: 0; /* 初期状態で幅を0に */
  height: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #b0d7d5));
  background: linear-gradient(transparent, #b0d7d5 0%);
  position: absolute;
  bottom: 5px;
  left: 0;
  -webkit-animation: expand-line 2.3s ease-out forwards;
          animation: expand-line 2.3s ease-out forwards; /* アニメーションを適用 */
}
@media screen and (min-width: 768px) {
  .mv-under-line {
    height: 15px;
    bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .mv-under-line {
    height: 18px;
    bottom: 15px;
  }
}

/* アニメーションの定義 */
@-webkit-keyframes expand-line {
  from {
    width: 0; /* 初期状態 */
  }
  to {
    width: 100%; /* 最終状態で全幅 */
  }
}
@keyframes expand-line {
  from {
    width: 0; /* 初期状態 */
  }
  to {
    width: 100%; /* 最終状態で全幅 */
  }
}
/*-----------------------------------------------
// Section
-----------------------------------------------*/
.section {
  padding-block: 48px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 80px;
  }
}

.section__inner {
  padding: 0 32px;
}
@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
}

.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;
}
@media screen and (min-width: 768px) {
  .section__head {
    margin-bottom: 24px;
  }
}

.section__head-main {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__head-main {
    font-size: 54px;
  }
}
@media screen and (min-width: 768px) {
  .section__head-main--top {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .section__head-main--top--contact {
    text-align: center;
  }
}
.section__head-main--top::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px; /*下線の上下位置調整*/
  display: inline-block;
  width: 75px; /*下線の幅*/
  height: 1px; /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #2a5772; /*下線の色*/
}
@media screen and (min-width: 768px) {
  .section__head-main--top::before {
    width: 125px;
    left: 70px;
    bottom: -2px;
    height: 2px;
  }
}
@media screen and (min-width: 768px) {
  .section__head-main--top--contact:before {
    width: 125px;
    left: 50%;
    bottom: -2px;
    height: 2px;
  }
}

.section__lead-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

/*-----------------------------------------------
// Profile
-----------------------------------------------*/
.profile {
  background-color: #f3fafb;
}

@media screen and (min-width: 768px) {
  .profile__container {
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .profile_contents {
    margin-top: 40px;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}

.profile__img {
  margin-inline: auto;
  margin-bottom: 32px;
  text-align: center;
}
.profile__img img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .profile__img img {
    width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .profile__img {
    margin: 0;
  }
}
.profile__img img {
  border-radius: 50%;
  -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);
}

.profile__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .profile__text {
    font-size: 16px;
  }
}
.profile__text + .profile__text {
  margin-top: 1em;
}

/*-----------------------------------------------
// Service
-----------------------------------------------*/
.service__contents {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item-img img {
  width: calc(200px + 50 * (100vw - 375px) / 393);
  border-radius: 50%;
  border: 2px solid #2a5772;
}
@media screen and (min-width: 768px) {
  .service__item-img img {
    width: 250px;
  }
}

.service__item-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.service__item-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.service__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__button {
    margin-top: 60px;
  }
}

/*-----------------------------------------------
// Works
-----------------------------------------------*/
.works {
  background-color: #f3fafb;
  overflow: hidden;
}

.works__contents {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works__contents {
    padding-block: 20px;
  }
}

.works-box__title {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-box__title {
    font-size: 14px;
  }
}

.works__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__button {
    margin-top: 60px;
  }
}

.swiper {
  padding-block: 20px;
  overflow: visible;
}

.swiper-slide .works__box {
  padding-block: 20px;
  height: auto;
  width: 100%;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.5s linear;
  transition: opacity 0.3s linear, -webkit-transform 0.5s linear;
  transition: transform 0.5s linear, opacity 0.3s linear;
  transition: transform 0.5s linear, opacity 0.3s linear, -webkit-transform 0.5s linear;
}

.swiper-slide-active .works__box {
  -webkit-transform: scale(1.3);
          transform: scale(1.3); /* 中央のスライドは小さくしない */
  opacity: 1;
  z-index: 1; /* 中央のスライドを一番上にする */
}

/*-----------------------------------------------
// contact
-----------------------------------------------*/
.contact {
  background-color: rgb(229, 236, 237);
}

.contact__text {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 16px;
  }
}
.contact__text + .contact__text {
  margin-top: 1em;
}

.contact-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .contact-me {
    gap: 50px;
  }
}

.contact__email {
  display: block;
  padding: 5px;
}
.contact__email:hover {
  background: #000;
}
.contact__email:hover::before {
  color: #fff;
}
.contact__email::before {
  content: "\f0e0";
  font-family: FontAwesome;
  color: #2a5772;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact__email::before {
    font-size: 46px;
  }
}

.contact__twitter {
  display: block;
  padding: 5px;
}
.contact__twitter:hover {
  background: #000;
}
.contact__twitter:hover::before {
  color: #fff;
}
.contact__twitter::before {
  content: "\e61b";
  font-family: FontAwesome;
  color: #2a5772;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact__twitter::before {
    font-size: 46px;
  }
}

.contact__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 60px;
  }
}

.footer {
  text-align: center;
  padding: 10px;
  background: #83c9c6;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 30px;
  }
}

.footer__copy {
  color: #fafafa;
  font-size: 11px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 16px;
  }
}

.first-view {
  position: relative;
  height: 32vw;
  overflow: hidden;
  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;
}
@media screen and (min-width: 768px) {
  .first-view {
    height: 25vw;
  }
}

.first-view__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.first-view__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img_page/dot.png);
  background-size: 2px;
  opacity: 0.7;
}
.first-view__heading {
  text-align: center;
  color: #fafafa;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.first-view__heading span {
  display: inline-block;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.first-view__heading-title-en {
  font-size: 32px;
  font-weight: 700;
  padding-left: 7px;
}
@media screen and (min-width: 768px) {
  .first-view__heading-title-en {
    font-size: 72px;
    padding-left: 14px;
  }
}

.first-view__heading-title-jp {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  padding-left: 2px;
}
@media screen and (min-width: 768px) {
  .first-view__heading-title-jp {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.page-works {
  background: rgb(229, 236, 237);
  padding-block: 50px;
  border-bottom: 1px solid #2a5772;
}

@media screen and (min-width: 768px) {
  .page-works__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.works-card {
  display: inline-block;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
          box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
}
.works-card + .works-card {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works-card + .works-card {
    margin-top: 0;
  }
  .works-card + .works-card:nth-child(2n) {
    margin-left: 30px;
  }
  .works-card + .works-card:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .works-card {
    width: calc(50% - 15px);
    height: 500px;
    position: relative;
  }
}
.works-card:hover .works-card__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works-card__image {
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.works-card__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-card__title {
    font-size: 21px;
  }
}

.works-card__tags {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.works-card__tag {
  padding: 5px 10px;
  border: 1.5px solid #2a5772;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-card__tag {
    font-size: 14px;
  }
}

.is-fictitious {
  background: #f3fafb;
  color: #2a5772;
}

.works-card__text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-card__text {
    margin-top: 30px;
    font-size: 16px;
  }
}

.works-card__id {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-card__id {
    margin-top: 16px;
    font-size: 18px;
  }
}

.works-card__button {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .works-card__button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.works-card__button .button {
  display: inline-block;
  padding: 5px 25px 5px 15px;
  background: #83c9c6;
  border-radius: 36px;
  font-weight: 700;
  color: #fafafa;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .works-card__button .button {
    padding: 8px 40px 8px 30px;
    font-size: 16px;
  }
}
.works-card__button .button::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-46%);
          transform: translateY(-46%);
}
@media screen and (min-width: 768px) {
  .works-card__button .button::after {
    right: 20px;
  }
}
.works-card__button .button:hover {
  background: #2a5772;
}

.page-works-post {
  background: #f3fafb;
}

.page-works-post__inner {
  padding-block: 50px;
}

.page-works-post__title {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid #2a5772;
}
@media screen and (min-width: 768px) {
  .page-works-post__title {
    font-size: 36px;
  }
}

.page-works-post__tags {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .page-works-post__tags {
    margin-top: 20px;
  }
}

.page-works-post__tag {
  padding: 5px 10px;
  border: 1.5px solid #2a5772;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-works-post__tag {
    font-size: 14px;
  }
}

.is-fictitious2 {
  background: #fafafa;
}

.is-id-pass {
  display: none;
}

.is-fictitious3 {
  display: block;
}

.page-works-post__wrapper {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .page-works-post__wrapper {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .page-works-post__image {
    margin-top: 50px;
    max-width: 550px;
  }
}

.page-works-post__items {
  margin-top: 30px;
}

.page-works-post__item:not(:first-child) {
  margin-top: 20px;
}

.page-works-post__item-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #b0d7d5));
  background: linear-gradient(transparent 75%, #b0d7d5 0%);
}
@media screen and (min-width: 768px) {
  .page-works-post__item-title {
    font-size: 18px;
  }
}

.page-works-post__item-text {
  margin-top: 3px;
  font-size: 14px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .page-works-post__item-text {
    font-size: 16px;
  }
}

.page-works-post__website {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-works-post__website {
    margin-top: 80px;
  }
}

.page-works-post-website__title {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #2a5772;
}
@media screen and (min-width: 768px) {
  .page-works-post-website__title {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .page-works-post-website__wrapper {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.page-works-post-website__contents {
  padding: 20px;
}
.page-works-post-website__contents + .page-works-post-website__contents {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-works-post-website__contents + .page-works-post-website__contents {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-works-post-website__contents {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    max-width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.website__text {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .website__text {
    font-size: 18px;
  }
}

.website__images {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.website__image {
  -webkit-box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
          box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
}
.page-works-post__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-works-post__button {
    margin-top: 100px;
  }
}

.page-service__inner {
  padding-block: 50px;
}

.page-service__text {
  margin-inline: auto;
  max-width: 550px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .page-service__text {
    max-width: 750px;
    margin-top: 20px;
    font-size: 20px;
  }
}

.page-service__list {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-service__list {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .page-service-list__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.page-service-list__item + .page-service-list__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-service-list__item + .page-service-list__item {
    margin-top: 0;
  }
}

.page-service-list__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.page-service-list__item-img img {
  width: calc(200px + 50 * (100vw - 375px) / 393);
  border-radius: 50%;
  border: 2px solid #2a5772;
}
@media screen and (min-width: 768px) {
  .page-service-list__item-img img {
    width: 250px;
  }
}

.page-service-list__item-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.page-service-list__item-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.page-service__menu {
  margin-top: 80px;
  margin-inline: auto;
  font-size: 12px;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .page-service__menu {
    font-size: 18px;
    max-width: 600px;
  }
}

.page-service-menu__title {
  text-align: center;
  border-bottom: 2px solid #2a5772;
  padding-bottom: 10px;
}

.page-service-menu__title-jp {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-service-menu__title-jp {
    font-size: 24px;
  }
}

.page-service-menu__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #b0d7d5;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .page-service-menu__table dl {
    padding-block: 30px;
  }
}

.page-service-menu__text {
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page-service-menu__text {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
  }
}

.page-contact {
  padding-block: 50px;
}

.page-contact__heading {
  text-align: center;
}

.page-contact-heading__text {
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .page-contact-heading__text {
    font-size: 18px;
  }
}

.contact__form {
  margin-top: 50px;
}

.contact__fields {
  max-width: 400px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    max-width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
  .form-field--selection {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .form-field--message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
  }
}
.form-field__head--selection {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 768px) {
  .form-field__head--selection {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form-field__head--email {
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .form-field__head--message {
    margin-top: 13px;
  }
}

.form-field__label {
  font-size: 16px;
  font-weight: 700;
}

.form-field__tag {
  display: inline-block;
  border-radius: 2px;
  background: #83c9c6;
  height: 19px;
  padding: 1px 6px 2px;
  color: #fafafa;
  font-size: 11px;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-field__item--selection {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  height: 48px;
  color: #333;
  padding-inline: 15px;
  padding-bottom: 2px;
  border-radius: 6px;
  border: 1px solid #83c9c6;
  background: #fafafa;
  font-size: 16px;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-text::-moz-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-text::placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-text.is-error {
  border: 1px solid #83c9c6;
  background: #fafafa;
}

.form-textarea {
  width: 100%;
  height: 200px;
  color: #333;
  padding-top: 11px;
  padding-inline: 15px;
  border: 1px solid #83c9c6;
  border-radius: 6px;
  background: #fafafa;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    height: 240px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-textarea::placeholder {
  color: #cccccc;
  font-size: 16px;
}
.form-textarea.is-error {
  border: 1px solid #83c9c6;
  background: #fafafa;
}

.page-contact__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-contact__button {
    margin-top: 80px;
  }
}
.page-contact__button .button {
  padding: 0;
  width: 130px;
  height: 45px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .page-contact__button .button {
    border-radius: 20px;
    width: 176px;
    height: 59px;
  }
}
.page-contact__button .button::after {
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

.button-submit {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.wpcf7-list-item {
  margin: 0;
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item-label {
  padding-left: 34px;
  font-size: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  background: #fafafa;
  left: 0;
  border: 1px solid #2a5772;
}
.wpcf7-list-item-label::after {
  width: 12px;
  height: 12px;
  background: #83c9c6;
  left: 6px;
  opacity: 0;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid {
  border: 1px solid #2a5772;
}

.wpcf7-not-valid-tip {
  color: #83c9c6;
  font-size: 16px;
  font-weight: 700;
}

.wpcf7-response-output {
  text-align: center;
  color: #83c9c6;
  font-size: 16px;
  font-weight: 700;
  border: none !important;
}