@charset "UTF-8";
body {
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  background: #696969;
}

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

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

.header {
  padding: 22px 0;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0;
    max-width: 352px;
  }
}

.header__inner {
  padding: 0 15px;
  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;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    width: clamp(100px, 12.0103092784vw, 233px);
    position: fixed;
    top: 13%;
    right: 11%;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header__inner.hidden {
    opacity: 0;
    visibility: hidden;
  }
}

.header__logo a img {
  width: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 233px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 1;
  }
}

.header__nav-link,
.drawer-content__nav-link {
  color: #FFF;
  font-family: "Murecho", serif;
  font-size: 24px;
  font-weight: 300;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__nav-link:hover,
.drawer-content__nav-link:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .header__nav-link,
  .drawer-content__nav-link {
    font-size: clamp(12px, 1.2371134021vw, 24px);
    white-space: nowrap;
  }
}

.header__btn {
  width: 30px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.header__btn.is-checked .drawer-icon-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__btn.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.header__btn.is-checked .drawer-icon-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.drawer-icon-bar {
  width: 30px;
  height: 1px;
  position: absolute;
  top: 0;
  background: #222;
  z-index: 51;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon-bar:nth-child(2) {
  top: 9px;
}
.drawer-icon-bar:nth-child(3) {
  top: 18px;
}

.drawer-content {
  padding-top: 72px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #EEE;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 50;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__nav {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EEE;
}

.drawer-content__nav-link {
  color: #222;
}

.fv {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    padding: 40px 0 10%;
    max-width: 64.2268041237%;
  }
}

@media screen and (min-width: 768px) {
  .fv__inner {
    padding-left: 20%;
  }
}

.fv__img--main {
  position: relative;
}
.fv__img--sub {
  position: absolute;
  top: 72px;
}
@media screen and (min-width: 768px) {
  .fv__img--sub {
    top: 40px;
  }
}
.fv__img img {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    width: 50vw;
  }
}
.fv__img img.active {
  opacity: 1;
}

.fv__texts {
  padding-bottom: 60px;
  margin-top: 39px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__texts {
    padding-bottom: 0;
  }
}

.fv__text {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: clamp(20px, 2.4742268041vw, 48px);
    font-weight: 700;
  }
}

.news {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 100px 0;
  }
}

.news__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .news__inner {
    margin: 0 auto;
    max-width: 1030px;
  }
}

.head__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.head__decoration {
  display: block;
  width: 10px;
  height: 10px;
  background: #6994C5;
}

.head__text {
  display: block;
  font-family: "Murecho", serif;
}
@media screen and (min-width: 768px) {
  .head__text {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
  }
}

.head__title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .head__title {
    font-size: 36px;
  }
}

.news__table {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .news__table {
    margin-top: 129px;
  }
}

.news__table-item {
  margin-top: 44px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__table-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 109px;
  }
}
.news__table-item:first-of-type {
  margin-top: 0;
}
.news__table-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: -22px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .news__table-item::before {
    top: -29px;
  }
}
.news__table-item:last-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -22px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .news__table-item:last-of-type::after {
    bottom: -29px;
  }
}

.news__table-item-title {
  font-family: "Murecho", serif;
  font-size: 20px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .news__table-item-title {
    width: 98px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.news__table-item-text {
  margin-top: 6px;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .news__table-item-text {
    margin-top: 0;
    font-size: 24px;
  }
}

.news__button {
  margin-top: 64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 97px;
    text-align: end;
  }
}

.button {
  display: inline-block;
  text-align: start;
  padding: 0 9px 11px 8px;
  border-bottom: 1px solid #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.button:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.button__text {
  display: inline-block;
  text-align: start;
  font-family: "Murecho", serif;
  font-size: 20px;
  font-weight: 400;
}

.button__decoration {
  margin-left: 52px;
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-bottom: 8px;
  background: #fff;
  position: relative;
}
.button__decoration::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.about {
  padding: 60px 0;
  position: relative;
  background-image: url(../img/about.png);
  background-repeat: no-repeat;
  background-position: 75% 0%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 100px 0;
    background-position: right;
  }
}

.about__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 1030px;
    margin: 0 auto;
  }
}

.about__title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: clamp(40px, 4.9484536082vw, 96px);
    font-weight: 700;
  }
}
.about__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .about__title::after {
    bottom: -15px;
  }
}

.about__list {
  margin-top: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 62px;
}
@media screen and (min-width: 768px) {
  .about__list {
    margin-top: 93px;
    gap: 79px;
  }
}

.about__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__item-title {
    min-width: 747px;
    font-size: clamp(30px, 2.0618556701vw, 40px);
  }
}

.about__item-text {
  margin-top: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .about__item-text {
    margin-top: 15px;
    width: 746px;
    font-size: clamp(20px, 1.2371134021vw, 24px);
  }
}

.service {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .service {
    padding: 100px 0;
  }
}

.service__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .service__inner {
    max-width: 1030px;
    margin: 0 auto;
  }
}

.head__text--service {
  color: #222;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
}

.service__list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__list {
    margin-top: 101px;
    grid-template-columns: repeat(2, 1fr);
    gap: 106px 100px;
  }
}

.service__item {
  text-align: center;
}
.service__item:nth-of-type(1) {
  background-image: url(../img/service1.png);
  background-repeat: no-repeat;
  min-width: 345px;
  min-height: 345px;
  background-size: cover;
  padding-top: 102px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1) {
    max-width: 450px;
    max-height: 450px;
  }
}
.service__item:nth-of-type(2) {
  background-image: url(../img/service2.png);
  background-repeat: no-repeat;
  min-width: 345px;
  min-height: 345px;
  background-size: cover;
  padding-top: 102px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2) {
    max-width: 450px;
    max-height: 450px;
  }
}
.service__item:nth-of-type(3) {
  background-image: url(../img/service3.png);
  background-repeat: no-repeat;
  min-width: 345px;
  min-height: 345px;
  background-size: cover;
  padding-top: 114px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3) {
    max-width: 450px;
    max-height: 450px;
  }
}
.service__item:nth-of-type(4) {
  background-image: url(../img/service4.png);
  background-repeat: no-repeat;
  min-width: 345px;
  min-height: 345px;
  background-size: cover;
  padding-top: 155px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(4) {
    max-width: 450px;
    max-height: 450px;
  }
}

.service__item-title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.service__item-text {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.service__text {
  margin-top: 22px;
  color: #222;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .service__text {
    margin-top: 70px;
    font-size: 24px;
  }
}

.works {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .works {
    padding: 100px 0;
  }
}

.works__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .works__inner {
    max-width: 1030px;
    margin: 0 auto;
  }
}

.works__contents {
  margin-top: 42px;
}

.works__contents-item {
  position: relative;
}
.works__contents-item:nth-of-type(1)::before {
  content: "美しい外観";
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works__contents-item:nth-of-type(1)::before {
    font-size: 24px;
    top: 26px;
    left: 47.7%;
  }
}
.works__contents-item:nth-of-type(1)::after {
  content: "";
  display: block;
  position: absolute;
  top: 43px;
  right: 0;
  width: 280px;
  height: 1px;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .works__contents-item:nth-of-type(1)::after {
    width: 416px;
    top: 60px;
    left: 36.6%;
  }
}
.works__contents-item:nth-of-type(2) {
  margin-top: 58px;
  text-align: end;
}
.works__contents-item:nth-of-type(2)::before {
  content: "見た目だけでなく防犯も";
  display: block;
  position: absolute;
  bottom: 11px;
  left: 0;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works__contents-item:nth-of-type(2)::before {
    font-size: 24px;
    bottom: 61px;
    left: 238px;
  }
}
.works__contents-item:nth-of-type(2)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .works__contents-item:nth-of-type(2)::after {
    width: 416px;
    bottom: 60px;
    left: 221px;
  }
}

.works__img img {
  width: 58.6%;
}
@media screen and (min-width: 768px) {
  .works__img img {
    width: 42.2%;
  }
}

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

.sns {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sns {
    padding: 100px 0;
  }
}

.sns__inner {
  padding: 0 15px;
  overflow: hidden;
}
.head--sns {
  max-width: 1030px;
  margin: 0 auto;
}

.head__text--sns {
  color: #6994C5;
  font-family: "Noto Sans JP", serif;
}

.head__title--sns {
  color: #222;
}

.sns__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  overflow: hidden;
}

.sns__list {
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-animation: slide1 20s linear infinite;
          animation: slide1 20s linear infinite;
}

.sns__link {
  margin-top: 42px;
  width: 345px;
  display: block;
}
@media screen and (min-width: 768px) {
  .sns__link {
    width: 412px;
  }
}
.sns__link img {
  width: 100%;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.sns__button {
  margin-top: 39px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sns__button {
    margin-top: 87px;
  }
}

.button-sns {
  display: inline-block;
  text-align: start;
  padding: 0 24px 12px 29px;
  border-bottom: 1px solid #222;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.button-sns:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.button__icon {
  display: inline-block;
  margin-bottom: 2px;
}
.button__icon img {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.button-sns__text {
  display: inline-block;
  margin-left: 9px;
  color: #222;
  font-family: "Murecho", serif;
  font-size: 20px;
  font-weight: 400;
}

.button-sns__decoration {
  margin-left: 25px;
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-bottom: 8px;
  background: #222;
  position: relative;
}
.button-sns__decoration::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.recruit {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .recruit {
    margin-top: 100px;
  }
}

.recruit__inner {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .recruit__inner {
    max-width: 1030px;
    margin: 0 auto;
  }
}

.recruit__img {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__img img {
    min-width: 100%;
  }
}

.recruit__contents {
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .recruit__contents {
    margin-top: 70px;
  }
}

.recruit__lead-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recruit__lead-title {
    font-size: 32px;
  }
}

.recruit__lead-text {
  margin-top: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .recruit__lead-text {
    font-size: 24px;
  }
}

.recruit__main {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .recruit__main {
    margin-top: 27px;
  }
}

.recruit__main-title {
  border-bottom: 1px solid #fff;
  max-width: 242px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recruit__main-title {
    font-size: 32px;
  }
}

.recruit__main-text {
  margin-top: 12px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .recruit__main-text {
    margin-top: 33px;
    font-size: 32px;
  }
}

.recruit__main-tag {
  margin-top: 12px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .recruit__main-tag {
    font-size: 20px;
  }
}

.recruit__main-tag2 {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .recruit__main-tag2 {
    margin-left: 19px;
  }
}

@media screen and (min-width: 768px) {
  .recruit__main-tag3 {
    margin-left: 19px;
  }
}

.recruit__main-tag4 {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .recruit__main-tag4 {
    margin-left: 19px;
  }
}

.recruit__text {
  margin: 42px auto 0;
  width: 92%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .recruit__text {
    margin-top: 53px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    font-size: 24px;
  }
}

.recruit__button {
  margin-top: 69px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__button {
    margin-top: 50px;
  }
}

.button2 {
  padding: 15px 96px;
  border: 1px solid #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.button2:hover {
  opacity: 0.6;
}

.button2__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.flow {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 100px 0;
  }
}

.flow__inner {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    max-width: 1030px;
    margin: 0 auto;
    position: relative;
  }
}

.head__text--flow {
  color: #6994C5;
}

.head__title--flow {
  color: #222;
}

.flow__card {
  margin-top: 42px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .flow__card {
    margin-top: 100px;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 84px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__card {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flow__item {
  position: relative;
  width: 281px;
}
.flow__item:nth-of-type(1)::before {
  content: "1";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(2)::before {
  content: "2";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(3)::before {
  content: "3";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(4)::before {
  content: "4";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(5)::before {
  content: "5";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(6)::before {
  content: "6";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
.flow__item:nth-of-type(7)::before {
  content: "7";
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .flow__item {
    width: 100%;
    max-width: 281px;
  }
}

.flow__img img {
  width: 281px;
}
@media screen and (min-width: 768px) {
  .flow__img img {
    width: 100%;
    max-width: 281px;
    height: auto;
  }
}

.flow__item-title {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.flow__button {
  background: #696969;
  padding: 34px 0;
}

.flow__text {
  margin-top: 22px;
  color: #222;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .flow__text {
    position: absolute;
    bottom: 12.7%;
    left: 37.5%;
    max-width: 603px;
    font-size: 24px;
    font-weight: 300;
  }
}

.flow__button2 {
  margin-top: 37px;
  text-align: center;
}
.flow__button2.button2 {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.flow__button2.button2:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
@media screen and (min-width: 768px) {
  .flow__button2 {
    margin-top: 83px;
    position: absolute;
    bottom: 54px;
    left: 52.5%;
  }
}

.button2--flow {
  padding: 15px 64px;
  border: 1px solid #6994C5;
}

.button2__text--flow {
  color: #6994C5;
}

.question {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .question {
    padding: 100px 0;
    background: #fff;
  }
}

.question__inner {
  padding: 0 15px;
  background: #696969;
}
@media screen and (min-width: 768px) {
  .question__inner {
    padding: 70px 85px 70px 50px;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.question__list {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .question__list {
    margin-top: 74px;
  }
}

.question__item:first-child .question__title {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .question__item:first-child .question__answer {
    margin-top: 17px;
  }
}

.question__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .question__title {
    gap: 11px;
    margin-top: 44px;
  }
}

.question__title-icon {
  display: block;
  font-family: "Murecho", serif;
  font-size: 24px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .question__title-icon {
    font-size: 36px;
  }
}

.question__title-text {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .question__title-text {
    margin-top: 10px;
    font-size: 24px;
  }
}

.question__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .question__answer {
    gap: 14px;
    margin-top: 25px;
  }
}

.question__answer-icon {
  display: block;
  font-family: "Murecho", serif;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .question__answer-icon {
    font-size: 24px;
  }
}

.question__answer-text {
  display: block;
  font-weight: 350;
}
@media screen and (min-width: 768px) {
  .question__answer-text {
    margin-top: 5px;
    font-size: 20px;
  }
}

.contact {
  padding: 60px 0;
  background-image: url(../img/contact.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 100px 0;
  }
}

.contact__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 1030px;
    margin: 0 auto;
  }
}

.contact__contents {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .contact__contents {
    margin-top: 70px;
  }
}

.contact__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
}

.contact__text {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 12px;
    font-size: 20px;
  }
}

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

.button2--contact {
  padding: 15px 64px;
}

.footer {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 100px 0 53px;
  }
}

.footer__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1801px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__about {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__about {
    text-align: start;
  }
}

.footer__logo img {
  width: 71px;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 240px;
  }
}

.address {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .address {
    margin-top: 34px;
  }
}

.address__address {
  color: #222;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .address__address {
    font-size: 20px;
  }
}

.address__tell {
  color: #222;
  font-family: "Murecho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .address__tell {
    margin-top: 12px;
    font-size: 20px;
  }
}

.address__mail {
  display: block;
  color: #222;
  font-family: "Murecho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .address__mail {
    margin-top: 9px;
    font-size: 20px;
  }
}

.address__license {
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .address__license {
    margin-top: 12px;
    font-size: 20px;
  }
}

.footer__contents {
  margin-top: 42px;
}

.footer__nav {
  text-align: center;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px 20px;
  max-width: 274px;
  color: #222;
  font-family: "Murecho", serif;
  font-size: 14px;
  font-weight: 300;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 26px 45px;
    max-width: 565px;
    font-size: 24px;
  }
}

.footer__nav-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.6;
}

.footer__nav-instagram {
  margin-right: 6px;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .footer__nav-instagram {
    margin-right: 9px;
    width: 16px;
    height: 16px;
  }
}

.copy {
  margin-top: 42px;
  text-align: center;
  color: #222;
  font-size: 12px;
  font-weight: 350;
}
@media screen and (min-width: 768px) {
  .copy {
    text-align: end;
    font-size: 14px;
  }
}