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

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

.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;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button__text {
  color: #000;
}
.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: #4a4a4a;
}
.button__text {
  margin-left: 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (min-width:900px) {
  .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: #4a4a4a;
  }
  .button:hover .button__text {
    color: #4a4a4a;
  }
  .button--bg {
    color: #4a4a4a;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
}
main {
  height: 300vh;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

.header {
  display: block;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 2px;
  background: #983;
}
@media screen and (min-width:1200px) {
  .header {
    padding-inline: 40px;
  }
}

.header__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: inline-block;
  padding: 14px 12px;
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width:900px) {
  .header__logo {
    font-size: 28px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}

.header__nav1 {
  display: none;
}
@media screen and (min-width:900px) {
  .header__nav1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.header__list li a {
  color: #fff;
  font-size: 20px;
}

.header__btn {
  padding: 8px 26px;
  background: #fff;
  border: 1px solid #fff;
  color: #001A75;
  font-size: 20px;
  border-radius: 100vmax;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: transparent;
    color: #fff;
  }
}

.drawer-icon {
  position: fixed;
  top: 26px;
  right: 24px;
  width: 36px;
  height: 27px;
  background: none;
  border: none;
}
.drawer-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: 64px;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width:900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  width: 100%;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  width: 100%;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  left: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #4A3636;
}
.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}

.drawer-content {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 20;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  color: #fff;
  background: #983;
}
@media screen and (min-width:900px) {
  .drawer-content {
    display: none !important;
  }
}
.drawer-content.is-open {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.drawer-list li a {
  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;
  padding-bottom: 10px;
  gap: 18px;
}

.drawer-link {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 1.572;
}
.drawer-link a {
  color: inherit;
  text-decoration: none;
}

.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 100%;
  height: 280px;
  background: url(../img/sp/bg_fv1.jpg) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
@media screen and (min-width:600px) {
  .fv__contents {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media screen and (min-width:900px) {
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    left: 0;
    height: 174px;
    padding-top: 24px;
    padding-left: 35px;
  }
}

.fv__heading-main {
  display: block;
  font-size: 40px;
  letter-spacing: 0.1em;
}

.fv__heading-sub {
  margin-top: 12px;
  display: block;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width:600px) {
  .fv__heading-sub {
    font-size: 20px;
  }
}

.section {
  padding: 70px 0;
}

.section__inner {
  padding: 0 28px;
}
@media screen and (min-width:900px) {
  .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;
}
.section__head--center {
  text-align: center;
}
@media screen and (min-width:900px) {
  .section__head {
    margin-bottom: 24px;
  }
}

.section__head-main {
  display: block;
  font-size: 48px;
  letter-spacing: 0.1em;
}
@media screen and (min-width:900px) {
  .section__head-main {
    font-size: 60px;
  }
}

.section__head-sub {
  display: block;
  font-size: 11px;
}

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

.section__contents {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.service__item + .service__item {
  margin-top: 40px;
}

.service__item-img {
  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;
}

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

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

.works {
  background-color: #fafafa;
}

.works__item + .works__item {
  margin-top: 40px;
}

.works__item-img {
  margin-bottom: 12px;
  max-width: 480px;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px rgba(51, 51, 51, 0.15);
          box-shadow: 0 4px 15px rgba(51, 51, 51, 0.15);
}

.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

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

@media screen and (min-width:900px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

@media screen and (min-width:900px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
  margin-bottom: 32px;
}
.about__img img {
  max-width: 200px;
  width: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

.flow {
  background-color: #fafafa;
}

.flow__list {
  margin-top: 64px;
}
@media screen and (min-width:600px) {
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}
@media screen and (min-width:900px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.flow__list2 {
  margin-top: 20px;
}

.flow__item {
  position: relative;
  border: 1px solid #808080;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}

.flow__item2 {
  list-style-type: none;
  position: relative;
  border: 1px solid #808080;
  padding: 10px 16px 24px;
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #808080;
  color: #fff;
  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-img {
  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;
}

.flow__item-name2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.flow__item-text2 {
  font-size: 21px;
  font-weight: normal;
  text-align: center;
}

@media screen and (min-width:900px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}
.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;
}

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

.page-bottom {
  color: #696969;
}
@media screen and (min-width:900px) {
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-bottom__item {
  padding: 40px;
}
@media screen and (min-width:900px) {
  .page-bottom__item {
    padding: 54px 10px;
  }
}

.page-bottom__item--contact {
  background-color: #6AC1B7;
}
.page-bottom__item--contact .section__head--center {
  text-align: center;
}

.page-bottom__item--twitter {
  background-color: #808000;
}

.page-bottom__input {
  width: 100%;
  padding: 10px;
}

.page-bottom__item .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
  border-radius: 8px;
}
.page-bottom__item .contact-form .form-group {
  margin-bottom: 1em;
}
.page-bottom__item .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.page-bottom__item .contact-form .form-group input.page-bottom__item--contact .section__head--center {
  text-align: center;
}
.page-bottom__item .contact-form .form-group .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
  border-radius: 8px;
}
.page-bottom__item .contact-form .form-group .contact-form .form-group {
  margin-bottom: 1em;
}
.page-bottom__item .contact-form .form-group .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.page-bottom__item .contact-form .form-group .contact-form .form-group input,
.page-bottom__item .contact-form .form-group .contact-form .form-group textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-bottom__item .contact-form .form-group .contact-form .form-group textarea {
  height: 150px;
}
.page-bottom__item .contact-form .form-group .contact-form .btn-submit {
  padding: 0.7em 1.5em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.page-bottom__item .contact-form .form-group .contact-form .btn-submit:hover {
  background-color: #0056b3;
}
.page-bottom__item textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-bottom__item textarea {
  height: 150px;
}

.btn-submit {
  padding: 0.7em 1.5em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #0056b3;
}

.contact1 {
  padding-block: 94px 130px;
}

.contact__inner {
  width: min(729px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.contact__title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 72px;
  text-transform: uppercase;
  text-align: center;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
.contact__row {
  grid-template-columns: 212px 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__row.--aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:600px) {
  .contact__row {
    display: grid;
  }
}

.contact__head {
  font-size: 20px;
  line-height: normal;
}
.contact__head span.--must {
  position: relative;
  display: inline-block;
}
.contact__head span.--must::after {
  content: "必須";
  position: absolute;
  -webkit-transform: 0 -50%;
          transform: 0 -50%;
  left: calc(100% + 14px);
  line-height: normal;
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  background: #AEEFF8;
  white-space: nowrap;
}

.contact__data {
  padding-top: 14px;
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  width: 100%;
  border: none;
  padding: 12px 24px;
  background: #F0F0F0;
  font-size: 16px;
  line-height: normal;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #5A5A5A;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #5A5A5A;
}

textarea {
  height: 243px;
  resize: vertical;
}

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.contact__select-wrap {
  position: relative;
}
.contact__select-wrap svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 10.69px;
  width: 17.313px;
  height: 8.795px;
  pointer-events: none;
}
@media (any-hover: hover) {
  .contact__select-wrap:hover {
    cursor: pointer;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox span {
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  padding-left: 30px;
  position: relative;
}
.contact__data-checkbox span::before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 3px;
}
.contact__data-checkbox span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 12px;
  rotate: 45deg;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio]:checked + span {
  background: #000;
  color: #fff;
}

.contact__data-radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact__data-radio span {
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid #000;
}
.contact__underline {
  text-decoration: underline;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  padding: 11px 63px;
}

.contact__error-message {
  color: red;
  font-weight: 700;
  font-size: 16px;
  margin-top: 6px;
}

.footer {
  text-align: center;
  padding: 10px;
}

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