@charset "UTF-8";
/*
Breakpoints
*/
/*
変数
*/
/*
スムーススクロール
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #2e2e2e;
}
body.is-fixed {
  overflow: hidden;
}

/* ====================
共通button
==================== */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 10px;
  width: 160px;
  margin: 0 auto;
}
.button--bg {
  background-color: #f7f8fa;
}
.button--bg .button__text {
  color: #2e2e2e;
}
.button--border {
  border: 1px solid #f7f8fa;
}
.button--border .button__text {
  color: #f7f8fa;
}
.button--contact {
  background: #516c8d;
}
@media screen and (min-width: 1024px) {
  .button {
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .button:hover {
    background-color: #f7f8fa;
  }
  .button:hover .button__icon-path {
    fill: #2e2e2e;
  }
  .button:hover .button__text {
    color: #2e2e2e;
  }
  .button--bg {
    color: #2e2e2e;
  }
  .button--bg:hover {
    background-color: #4F9BE4;
  }
  .button--bg:hover .button__icon-path {
    fill: #f7f8fa;
  }
  .button--bg:hover .button__text {
    color: #f7f8fa;
  }
}

.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: #f7f8fa;
}
.button__icon-path--contact {
  fill: #2e2e2e;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #f7f8fa;
}

/* ====================
共通section
==================== */
.section {
  padding: 56px 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 160px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding: 100px 0;
  }
}

.section__inner {
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .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;
  text-align: center;
  margin-bottom: 32px;
  color: #28385e;
}
.section__head--white {
  color: #f7f8fa;
}
@media screen and (min-width: 1024px) {
  .section__head {
    margin-bottom: 40px;
  }
}

.section__head-main {
  font-size: 32px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .section__head-main {
    font-size: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section__head-main {
    font-size: 54px;
  }
}

.section__head-sub {
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .section__head-sub {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section__head-sub {
    font-size: 16px;
  }
}

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

.section__contents {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .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;
  }
}

/* ==================================================
Header
================================================== */
.header {
  background-color: #28385e;
  position: sticky;
  height: 60px;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  .header {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20.8%;
    height: 100vh;
    padding: 50px 20px;
  }
}

.header__container {
  padding-left: 10px;
  padding-right: 10px;
  height: inherit;
  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;
}
@media screen and (min-width: 1024px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 160px;
    margin: 0 auto;
    position: static;
    top: 50px;
  }
}

.header__logo {
  display: inline-block;
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 40px;
  height: 20px;
  border: none;
  position: relative;
  background: #2e2e2e;
}
.drawer-icon.is-checked .dower-icon__bar:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .dower-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .dower-icon__bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.dower-icon__bar {
  position: absolute;
  width: 40px;
  height: 3px;
  background: #f7f8fa;
  left: 0;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.dower-icon__bar:nth-child(1) {
  top: 0;
}
.dower-icon__bar:nth-child(2) {
  top: 9px;
}
.dower-icon__bar:nth-child(3) {
  top: 18px;
}

.header__contents {
  background: #28385e;
  height: calc(100% - 60px);
  width: 270px;
  top: 60px;
  right: 0;
  position: fixed;
  padding-top: 60px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__contents.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .header__contents {
    display: block;
    border: none;
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

@media screen and (min-width: 1024px) {
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
    margin-right: 20.8%;
  }
}

/* ==================================================
Fv
================================================== */
.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 250px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .fv__contents {
    width: 450px;
    padding: 20px 100px 20px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__contents {
    width: 400px;
    padding: 20px 100px 20px 20px;
  }
}

.fv__title-sub {
  margin-top: 16px;
}

/* ==================================================
Message
================================================== */
.message {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(39, 56, 95)), to(#f7f8fa));
  background: linear-gradient(180deg, rgb(39, 56, 95) 0%, #f7f8fa 100%);
  height: 680px;
}

@media screen and (min-width: 1024px) {
  .message__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.message__image {
  margin-top: 32px;
  text-align: center;
}
.message__image img {
  width: 480px;
}

.message__text-contents {
  color: #f7f8fa;
}

.message__text {
  font-size: 16px;
  line-height: 1.6;
}

/* ==================================================
service
================================================== */
.service {
  background-color: #f7f8fa;
}

.service__list {
  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: 1024px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.service__item {
  margin: 0 auto;
}

.service__item-image {
  text-align: center;
  margin-bottom: 14px;
}

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

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

/* ==================================================
Gallery
================================================== */
.gallery {
  background-color: #e3e6ea;
}

.gallery__items {
  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;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .gallery__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.gallery__item {
  margin: 0 auto;
  background: #f7f8fa;
  -webkit-box-shadow: 0 4px 15px 0 rgba(46, 46, 46, 0.15);
          box-shadow: 0 4px 15px 0 rgba(46, 46, 46, 0.15);
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .gallery__item:hover .gallery__item-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.gallery__item-image img {
  width: 480px;
}
@media screen and (min-width: 1024px) {
  .gallery__item-image {
    overflow: hidden;
  }
  .gallery__item-image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.gallery__item-title p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}

/* ==================================================
Works flow
================================================== */
.flow__list {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}

.flow__item {
  position: relative;
  border: 1px solid #28385e;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width: 1024px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #28385e;
  color: #f7f8fa;
  width: 48px;
  height: 48px;
  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-image {
  margin-bottom: 24px;
  text-align: center;
}

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

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

/* ==================================================
About
================================================== */
.about {
  background-color: #e3e6ea;
}

@media screen and (min-width: 1024px) {
  .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;
  }
}

.about__image {
  margin-bottom: 32px;
  text-align: center;
}
.about__image img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(46, 46, 46, 0.15);
          box-shadow: 0 4px 15px 0 rgba(46, 46, 46, 0.15);
}

.about__image-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
}

.about__text-contents {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.about__text-2 {
  margin-top: 20px;
  background: #28385e;
  padding: 10px;
  color: #f7f8fa;
}

/* ==================================================
Contact
================================================== */
.contact {
  background-color: #516c8d;
}
@media screen and (min-width: 1024px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .contact__inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 590px;
  }
}

.contact__head {
  color: #f7f8fa;
  margin-bottom: 24px;
}

.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #f7f8fa;
}
.contact__text .is-required {
  color: #e36666;
}

.contact__items {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 1024px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #28385e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 1024px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding: 5px 4px 4px;
    clip-path: polygon(0% 0%, 97% 2%, 100% 50%, 97% 98%, 0% 100%);
  }
}

.form-label__required {
  color: #e36666;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .form-label__required {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  outline: #e36666 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
}

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

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #4F9BE4;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #e36666 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
}

.form-radio__text {
  width: 80px;
  height: 40px;
  font-size: 16px;
  letter-spacing: 0.026px;
  color: #28385e;
  border: 1px solid #fff;
  background: #fff;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  resize: vertical;
  font-size: 16px;
}
.form-textarea:focus {
  outline: #e36666 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.form-checkbox {
  position: relative;
}

.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 + .form-checkbox__text::before {
  outline: #e36666 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(227, 102, 102, 0.16);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
  color: #f7f8fa;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #e36666;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #e36666;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.9px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
}

.contact__submit {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 1024px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.button-contact {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 180px;
  padding: 10px 16px;
  font-weight: 700;
  color: #28385e;
  border: 3px solid #28385e;
  border-radius: 3px;
  background: #e3e6ea;
  -webkit-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
  transition: color 0.5s, background-color 0.5s, border-color 0.5s;
}
@media screen and (min-width: 1024px) {
  .button-contact:hover {
    color: #f7f8fa;
    background: #4F9BE4;
    border-color: #f7f8fa;
  }
}

/* ==================================================
Footer
================================================== */
.footer {
  background: #28385e;
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  color: #f7f8fa;
}