@charset "UTF-8";
/*==========================================================================
# リセットCSS
========================================================================== */
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

/*==========================================================================
# 基本設定
========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 400;
}
body.is-fixed {
  overflow: hidden;
}

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==========================================================================
# リセットCSS（フォーム）
========================================================================== */
input[type=text],
input[type=email],
input[type=tel],
input[type=password] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
  resize: vertical;
}
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}
input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

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

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
input[type=radio] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
input[type=radio] + span::after {
  -webkit-transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 8px;
}
input[type=radio] + span input[type=radio]:checked + span::after {
  opacity: 1;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(https://haniwaman.com/cms/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 8px/16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}
select::-ms-expand {
  display: none;
}
select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input[type=submit] {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
}
input[type=submit]::-moz-focus-inner {
  border: none;
  padding: 0;
}

.l-header {
  background-color: #4a4a4a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 1025px) {
  .l-header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
}

/* footer
----------------------------------------------------------------*/
.l-footer {
  text-align: center;
  padding: 10px 0;
}

.p-footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
}

/* main
----------------------------------------------------------------*/
.l-main {
  -ms-flex-preferred-size: 79.2%;
      flex-basis: 79.2%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-main {
    margin-top: 86px;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 86px;
  }
}

/* fv
----------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-fv {
    margin-top: 86px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv {
    margin-top: 86px;
  }
}

.p-fv__img {
  width: 100%; /* 画面いっぱいの表示の記述 */
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 要素をflexboxに対応させる */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向の中央揃え */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向の中央揃え */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 子要素の並びを上から下にする（要素の改行に対応） */
}
.p-fv__img-bg {
  background-image: url(/img/img_fv.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* message
----------------------------------------------------------------*/
.p-message__img {
  margin-bottom: 32px;
}
.p-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);
}
.p-message__text {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .p-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;
  }
}

/* service
----------------------------------------------------------------*/
.l-service {
  background-color: #fafafa;
}

@media screen and (min-width: 1025px) {
  .p-service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}
.p-service__item + .p-service__item {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .p-service__item + .p-service__item {
    margin-top: 0;
  }
}
.p-service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.p-service__item-name {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.p-service__item-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* gallery
----------------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .p-gallery__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}
.p-gallery__item + .p-gallery__item {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .p-gallery__item + .p-gallery__item {
    margin-top: 0;
  }
}
.p-gallery__item-img {
  margin-bottom: 12px;
}
.p-gallery__item-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);
}
.p-gallery__item-name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.p-gallery__item-link {
  text-decoration: underline;
  font-size: 0.875rem;
}

/* l-gallery-page
----------------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .p-gallery-page__img {
    width: 80%;
    margin: 0 auto;
  }
}
.p-gallery-page__body {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .p-gallery-page__body {
    width: 60%;
    margin: 20px auto;
  }
}
.p-gallery-page__body-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.p-gallery-page__body-title:nth-child(n+2) {
  margin-top: 20px;
}
.p-gallery-page__body-text {
  font-size: 1rem;
  margin-top: 6px;
}
.p-gallery-page__body-link {
  display: inline-block;
  font-size: 1rem;
  text-decoration: underline;
}

/* about
----------------------------------------------------------------*/
.l-about {
  background-color: #fafafa;
}

@media screen and (min-width: 1025px) {
  .p-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;
  }
}
.p-about__img {
  margin-bottom: 32px;
}
.p-about__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);
}
.p-about__text {
  font-size: 1rem;
  line-height: 1.6;
}
.p-about__text + .p-about__text {
  margin-top: 1em;
}

/* flow
----------------------------------------------------------------*/
.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-flow__item {
  display: inline-grid;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #CCC;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow__item + .p-flow__item {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-flow__item {
    width: 150px;
    height: 150px;
  }
  .p-flow__item + .p-flow__item {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .p-flow__item + .p-flow__item {
    margin-left: 20px;
  }
}
/* contact
----------------------------------------------------------------*/
.l-contact {
  background-color: #fafafa;
}

.p-contact-form {
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-contact-form {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .p-contact-form {
    padding: 60px 100px;
  }
}
.p-contact-form__header-text {
  font-size: 1rem;
  text-align: center;
}
.p-contact-form__list {
  margin-top: 40px;
}
.p-contact-form__item {
  display: block;
}
@media screen and (min-width: 1025px) {
  .p-contact-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-contact-form__item + .p-contact-form__item {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .p-contact-form__item + .p-contact-form__item {
    margin-top: 20px;
  }
}
.p-contact-form__item-title {
  font-size: 1rem;
  width: 200px;
}
.p-contact-form__item-input {
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .p-contact-form__item-input {
    margin-left: 20px;
    margin-top: 0;
  }
}
.p-contact-form__item-required {
  font-size: 0.625rem;
  color: red;
  vertical-align: top;
}

.p-contact-form__button {
  margin-top: 20px;
}

.c-button__submit {
  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: 6px 10px;
  width: 160px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #333;
}

input[type=text],
input[type=email] {
  font-size: 1rem;
}

input[type=chekbox] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

input[type=checkbox] + span {
  font-size: 1rem;
}

textarea {
  min-height: 200px;
  font-size: 1rem;
}

.c-section {
  padding: 48px 0;
}
.c-section__inner {
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-section__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1025px) {
  .c-section__inner {
    max-width: 914px;
    padding: 0 30px;
  }
}
.c-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: 1025px) {
  .c-section__head {
    margin-bottom: 24px;
  }
}
.c-section__head-main {
  font-size: clamp(2.5rem, 0.286rem + 4.62vw, 3.75rem);
  letter-spacing: 0.1em;
}
.c-section__head-sub {
  font-size: 0.6875rem;
}
.c-section__lead-text {
  font-size: 1rem;
  line-height: 1.6;
}
.c-section__contents {
  margin-top: 40px;
}

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

.c-totop {
  position: fixed;
  right: 18px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-totop.is-show {
  opacity: 1;
  visibility: visible;
}
.c-totop a {
  text-decoration: none;
}
.c-totop a img {
  width: 52px;
}

.p-header__container {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
}

.p-header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: clamp(1.25rem, 0.143rem + 2.31vw, 1.875rem);
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .p-header__logo {
    letter-spacing: 0.12em;
    line-height: 1;
  }
}

.p-header__menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 1025px) {
  .p-header__menu-button {
    display: none;
  }
}
.p-header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) no-repeat center center;
  background-size: 100% auto;
}

.p-header__contents {
  display: none;
  border: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 60px;
}
@media screen and (min-width: 1025px) {
  .p-header__contents {
    border: none;
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .p-header__nav-link {
    position: relative;
  }
  .p-header__nav-link::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 1.5px; /*下線の太さ*/
    background: #fff; /*下線の色*/
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; /*アニメーション速度*/
    -webkit-transform-origin: right top;
            transform-origin: right top; /*アニメーションの起点*/
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1); /*幅は0*/
  }
  .p-header__nav-link:hover::after {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); /*幅を1に*/
  }
}

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

.c-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;
}

.p-button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-button__text {
  margin-left: 10px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
}

/*==========================================================================
# 表示・非表示設定
========================================================================== */
@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hidden-overTab {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-hidden-overTab {
    display: block;
  }
}