@charset "UTF-8";
/* ===========================================
共通設定
=========================================== */
body {
  font-size: 16px;
  line-height: 1.6;
  color: #002B5B;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 20px;
    max-width: 920px;
    margin-inline: auto;
  }
}

.button {
  display: inline-block;
  padding: 12px 36px;
  color: #ffffff;
  background: #006BB6;
  border-radius: 28px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #002B5B;
}

.heading {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .heading {
    font-size: 36px;
  }
}

.common__title {
  display: block grid;
  gap: 20px;
  grid-template-columns: 64px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .common__title {
    grid-template-columns: 24px 1fr;
  }
}

.common__title-logo-image {
  width: 100%;
}

.common__title-text {
  font-size: 36px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .common__title-text {
    font-size: 20px;
  }
}

.common__menu {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(4, -webkit-min-content);
  grid-template-columns: repeat(4, min-content);
}
.common__menu .menu-item a {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 20px;
  padding-left: 20px;
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .common__menu .menu-item a {
    padding-right: clamp(10px, 18.182vw - 48.182px, 20px);
    padding-left: clamp(10px, 18.182vw - 48.182px, 20px);
  }
}
.common__menu .menu-item:nth-of-type(n + 2) {
  position: relative;
}
.common__menu .menu-item:nth-of-type(n + 2)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 36px;
  background: currentColor;
}
@media not screen and (min-width: 768px) {
  .common__menu .menu-item:nth-of-type(n + 2)::before {
    height: 16px;
  }
}

/*
frontpageのmv
*/
.mv {
  background: url(../image/mv.webp) no-repeat center center;
  background-size: cover;
  height: 660px;
}
@media not screen and (min-width: 768px) {
  .mv {
    height: 400px;
  }
}

/*
下層ページのmv
*/
.page-mv {
  height: 450px;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .page-mv {
    height: 288px;
  }
}

.page-mv__heading {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .page-mv__heading {
    font-size: 32px;
  }
}

/* ===========================================
/共通設定
=========================================== */
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
}
@media not screen and (min-width: 768px) {
  .header {
    height: 88px;
  }
}
.header.is-scrolled {
  background: rgb(255, 255, 255);
}

.header__inner {
  height: 100%;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
}

.header__title-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__title-link:hover {
  opacity: 0.7;
}

.header__menu .menu-item a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}
.header__menu .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #006BB6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__menu .menu-item a:hover {
  color: #006BB6;
}
.header__menu .menu-item a:hover::after {
  width: calc(100% - 40px);
}

.main {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  overflow-x: hidden;
}

.footer {
  padding-top: 40px;
  padding-bottom: 16px;
  background: #006BB6;
  color: #ffffff;
}

.footer__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.footer__title-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__title-link:hover {
  opacity: 0.7;
}

.footer__menu .menu-item a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__menu .menu-item a:hover {
  opacity: 0.7;
}

.footer__sns-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__copyright {
  text-align: center;
}

/*
frontpage-work
*/
.frontpage-work__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.frontpage-work__cards {
  display: grid;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media not screen and (min-width: 768px) {
  .frontpage-work__cards {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.work-card {
  background: #FFE0E8;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.work-card__link {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
}
@media not screen and (min-width: 768px) {
  .work-card__link {
    padding: 16px;
  }
}
.work-card__link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.work-card__image-wrapper {
  overflow: hidden;
}

.work-card__image {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.work-card__title {
  font-size: 24px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .work-card__title {
    font-size: 20px;
  }
}

.work-card__tag-area {
  display: grid;
  gap: 0;
  grid-template-columns: 100px 1fr;
}

.work-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.work-card__tag {
  overflow-wrap: break-word;
}

.frontpage-work__buttons {
  text-align: center;
}

/*
frontpage-about
*/
.frontpage-about__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.frontpage-about__box {
  display: grid;
  gap: 40px;
  grid-template-columns: 38.6363636364% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .frontpage-about__box {
    grid-template-columns: 1fr;
  }
}

.frontpage-about__image {
  border-radius: 50%;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .frontpage-about__image {
    width: 59.7014925373%;
    margin-inline: auto;
  }
}

.frontpage-about__list {
  display: grid;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  row-gap: 16px;
  grid-template-columns: 100px 1fr;
}
@media not screen and (min-width: 768px) {
  .frontpage-about__list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.frontpage-about__list-title {
  font-size: 20px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .frontpage-about__list-title {
    font-size: 16px;
  }
  .frontpage-about__list-title:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}

.frontpage-about__list-item-discription {
  font-size: 20px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .frontpage-about__list-item-discription {
    font-size: 16px;
  }
}

/*
frontpage-service
*/
.frontpage-service__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.frontpage-service__cards {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media not screen and (min-width: 768px) {
  .frontpage-service__cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 16px;
  background: #FFE0E8;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.service-card__title {
  font-size: 24px;
  font-weight: 700;
}

.frontpage-service__buttons {
  text-align: center;
}

/*
archive-work, single-work共通
*/
.work-mv {
  background: url(../image/work-single-mv.webp) no-repeat center center;
  background-size: cover;
}

/*
archive-work
*/
.archive-work__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.archive-work__cards {
  display: grid;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media not screen and (min-width: 768px) {
  .archive-work__cards {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.archive-work__buttons {
  text-align: center;
}

/*
single-work
*/
.single-work__content {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.single-work__heading {
  font-size: 36px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .single-work__heading {
    font-size: 24px;
  }
}

.single-work__list {
  display: grid;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 16px;
  grid-template-columns: 120px 1fr;
}
@media not screen and (min-width: 768px) {
  .single-work__list {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.single-work__list-title {
  text-decoration: underline;
}

.single-work__list-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-work__image-wrapper {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
}

.single-work__image-area {
  height: 560px;
  overflow-y: scroll;
  scrollbar-width: none;
  border: 1px solid #006BB6;
}
.single-work__image-area img {
  width: 100%;
}

.single-work__image-scroll {
  position: absolute;
  top: calc(10% + 16px + 24px);
  right: -30px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media not screen and (min-width: 768px) {
  .single-work__image-scroll {
    right: -24px;
  }
}

.single-work__image-scroll-text {
  position: relative;
}
@media not screen and (min-width: 768px) {
  .single-work__image-scroll-text {
    font-size: 12px;
  }
}
.single-work__image-scroll-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 4px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background: #002B5B;
}
.single-work__image-scroll-text::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(100% + 4px + 83px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 1px;
  background: #002B5B;
}
@media not screen and (min-width: 768px) {
  .single-work__image-scroll-text::after {
    top: calc(50% - 4px);
    left: calc(100% + 4px + 90px);
    width: 12px;
  }
}

.single-work__buttons {
  text-align: center;
}

/*
page-contact, page-contact-thanks共通
*/
.contact-mv {
  background: url(../image/page-contact-mv.webp) no-repeat center bottom/cover;
  position: relative;
}
.contact-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

/*
page-contact
*/
.page-contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .page-contact__inner {
    padding-inline: 20px;
    max-width: 720px;
    margin-inline: auto;
  }
}

.page-contact__content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}
@media not screen and (min-width: 768px) {
  .page-contact__content {
    gap: 40px;
  }
}

.form-fields {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 0;
  grid-template-columns: 200px 1fr;
}
@media not screen and (min-width: 768px) {
  .form-field {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__label {
  cursor: pointer;
}

.form-field__tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #FF596B;
  color: #ffffff;
}

.form-text {
  width: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #eee;
  padding: 15px;
}
.form-text::-webkit-input-placeholder {
  color: #999;
}
.form-text::-moz-placeholder {
  color: #999;
}
.form-text:-ms-input-placeholder {
  color: #999;
}
.form-text::-ms-input-placeholder {
  color: #999;
}
.form-text::placeholder {
  color: #999;
}
.form-text:focus, .form-text:active {
  outline: none;
  border-color: #006BB6;
}

.form-textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #eee;
  padding: 15px;
  height: 200px;
  resize: none;
}
.form-textarea::-webkit-input-placeholder {
  color: #999;
}
.form-textarea::-moz-placeholder {
  color: #999;
}
.form-textarea:-ms-input-placeholder {
  color: #999;
}
.form-textarea::-ms-input-placeholder {
  color: #999;
}
.form-textarea::placeholder {
  color: #999;
}
.form-textarea:focus, .form-textarea:active {
  outline: none;
  border-color: #006BB6;
}

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

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus-visible + .form-checkbox__text::before {
  border-color: #006BB6;
}
.form-checkbox__text {
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  background: #eee;
  border: 1px solid transparent;
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  border-left: 2px solid #006BB6;
  border-bottom: 2px solid #006BB6;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 2px;
  top: 6px;
  opacity: 0;
}

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

.page-contact__button {
  border: none;
  cursor: pointer;
}

/*
page-contact-thanks
*/
.page-contact-thanks__content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}
@media not screen and (min-width: 768px) {
  .page-contact-thanks__content {
    gap: 40px;
  }
}

.page-contact-thanks__buttons {
  text-align: center;
}

.error-page__content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}
@media not screen and (min-width: 768px) {
  .error-page__content {
    gap: 40px;
  }
}

.error-page__buttons {
  text-align: center;
}