@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #202020;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
  /* タブレット 376px~inner */
  /* PC inner以上 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.about {
  padding-top: 4.5rem;
  padding-bottom: 8.5rem;
  background-image: url(../images/about.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.abut__text {
  max-width: 12.5rem;
  margin-top: 3rem;
  color: #eaeaea;
  font-size: 1rem;
  line-height: 1.5;
}

.access {
  margin-top: 6.875rem;
}

.access__heading {
  margin-bottom: 2.5rem;
}

.address__cont {
  height: 41.5625rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 9.875rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#D9D9D9), color-stop(30%, #D9D9D9), color-stop(30%, #fff), to(#fff));
  background: linear-gradient(180deg, #D9D9D9 0%, #D9D9D9 30%, #fff 30%, #fff 100%);
}

.access__address {
  width: 100%;
  max-width: 20.9375rem;
  margin-inline: auto;
  padding: 2.5rem;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
  font-style: normal;
}

.access__address h3 {
  margin-bottom: 0.875rem;
  color: #000;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.45;
}

.access__address p {
  margin-bottom: 0.5625rem;
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4375;
}

.access__address p:last-child {
  margin-bottom: 0;
}

.access__add,
.access__tel,
.access__mail {
  position: relative;
  padding-left: 2rem;
}

.access__address p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.access__add::before {
  background-image: url(/images/mappin.svg);
}

.access__tel::before {
  background-image: url(/images/phone.svg);
}

.access__mail::before {
  background-image: url(/images/mail.svg);
}

/*aboutボタン*/
.about__btn {
  margin-top: 2.5rem;
}

/*共通ボタン*/
.btn {
  display: inline-block;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 12rem;
  height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.btn span {
  position: relative;
  padding-right: 4rem;
  color: #eaeaea;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/arrow-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

/*worksボタン*/
.works__btn {
  margin-top: 4.1875rem;
  margin-inline: auto;
  border-radius: 10px;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

.works__btn span {
  color: #202020;
}

/* accessボタン*/
.access__btn {
  margin-top: 5rem;
  margin-inline: auto;
  border-radius: 10px;
  background: #FBFBFB;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}

.access__btn span {
  color: #000;
}

/*共通パーツ*/
/*アンカーリンク*/
.anker-link {
  scroll-margin-top: 5.625rem;
}

/*セクションタイトル、共通*/
.section__heading {
  position: relative;
  color: #eaeaea;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
  font-family: "EB Garamond", serif;
}

.section__heading::first-letter {
  text-transform: capitalize;
}

.section__heading::after {
  position: absolute;
  top: -65%;
  left: -6%;
  content: attr(title);
  color: rgba(186, 186, 186, 0.15);
  font-weight: 500;
  font-size: 5rem;
  line-height: 1.3;
  font-family: "EB Garamond", serif;
}

/*セクションタイトル、service,price,location.access*/
.service__heading,
.price__heading,
.location__heading,
.access__heading,
.aboutus__heading,
.page-works__heading {
  color: #4A6A88;
}

.footer {
  background-color: #4A6A88;
}

.footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__image {
  grid-row: 1/3;
  grid-column: 2/3;
}

.logo__link {
  width: 100%;
  max-width: 6.25rem;
}

.footer__nav {
  margin-top: 1.5rem;
}

.footer__nav-link {
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
  text-transform: uppercase;
}

.footer__nav-item:not(:last-child) {
  margin-bottom: 2rem;
}

.footer__copy {
  display: block;
  margin-top: -1.375rem;
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3125;
  font-family: "EB Garamond", serif;
  text-align: right;
}

.fv {
  margin-top: 5.625rem;
  overflow: hidden;
}

.fv__slide {
  position: relative;
  width: 100%;
  min-width: 23.4375rem;
}

.slide__image {
  aspect-ratio: 375/722;
  max-height: 45.125rem;
}

.slide__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 8s ease-out;
  transition: 8s ease-out;
}

.slide__image.is-active img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fv__title {
  z-index: 1;
  position: absolute;
  top: 35%;
  left: 13%;
  width: 100%; /*これを入れる事で、文章の折り返ししなくなるkeep-allの必要なし*/
  color: #eaeaea;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.425;
  font-family: "Noto Serif JP", serif;
}

.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
  background: #FFF;
}

.header__inner {
  height: inherit;
  padding-right: 0.625rem;
}

.header__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.header__logo,
.sp-nav__logo {
  width: 100%;
  max-width: 3.75rem;
}

.header__logo a,
.sp-nav__logo a {
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
}

.header__logo img,
.sp-nav__logo img {
  display: block;
  width: 100%;
  max-width: 3.75rem;
}

.header__nav {
  display: none;
  height: inherit;
}

.nav__item {
  position: relative;
  height: inherit;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  background: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 1s 0s ease;
  transition: all 1s 0s ease;
}

.nav__item:hover {
  background-image: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
}

.nav-item__link:hover {
  color: #FFF;
}

.nav__items > .nav__item.current > a {
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  color: #FFF;
}

/* span、ハンバーガーメニュー
***************************************************************/

.header__drawer {
  z-index: 9999;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 2.3125rem;
  padding: 0;
}

.header__drawer span {
  display: block;
  position: relative;
  width: 2.3125rem;
  height: 0.1875rem;
  background-color: #202020;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.header__drawer span:nth-child(2) {
  margin-top: 0.625rem;
  margin-bottom: 0.75rem;
}

.header__drawer.is-openSP span:first-child {
  top: 1.25rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #FFF;
}

.header__drawer.is-openSP span:nth-child(2) {
  opacity: 0;
}

.header__drawer.is-openSP span:nth-child(3) {
  top: -0.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #FFF;
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* スマホメニュー
***************************************************************/
.sp-nav {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 1.125rem 1.5625rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #4A6A88;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.is-openSP {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.sp-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 7.5rem;
  gap: 1.5rem;
}

.sp-nav__item {
  text-align: center;
}

.sp-nav__upper {
  font-size: 1.5rem;
  line-height: 1.2916666667;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
}

.sp-nav__item a {
  color: #FFF;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-family: "Noto Sans JP", sans-serif;
}

.inner {
  width: 100%;
  max-width: 30rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.location {
  padding-top: 6.8125rem;
}

.location__body {
  margin-top: 2.3125rem;
}

.location-tab__items {
  margin-top: 1.5rem;
}

.location-tab__item.active {
  background-color: #E4EDF4;
}

.location-tab__item {
  width: 100%;
  min-width: 20.9375rem;
}

.location-tab__item:nth-child(2) {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}

.panel__item.active {
  display: block;
}

.panel__item {
  display: none;
  aspect-ratio: 335/251;
  width: 100%;
  min-width: 20.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}

.location__address {
  padding-top: 1.0625rem;
  padding-bottom: 0.875rem;
  padding-left: 1rem;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.location__address p {
  color: #000;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.4375;
  font-family: "Noto Sans JP", sans-serif;
}

.location__address p:not(:first-child) {
  margin-top: 0.625rem;
  padding-left: 2rem;
}

.location__address p:first-child {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2083333333;
}

.address__add,
.address__tel {
  position: relative;
}

.address__add::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/images/mappin.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.address__tel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/images/tel.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.price {
  padding-top: 7rem;
}

.price__contaner {
  overflow-x: scroll;
}

.price__item {
  width: 22.1875rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  border-collapse: collapse;
  white-space: nowrap;
}

th, td {
  border: solid 1px #bababa;
}

.price__tag01,
.price__tag02,
.price__tag03 {
  color: #000;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}

.price__tag01 {
  min-width: 16.875rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #C0CFDE;
}

.price__tag02 {
  min-width: 31.25rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #99B9D9;
}

.price__tag03 {
  min-width: 17.5rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #6091C1;
}

.price-plan {
  padding-left: 2.5rem;
  color: #000;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: left;
}

.price-plan__text {
  padding-top: 1.75rem;
  padding-bottom: 1.5625rem;
  padding-left: 2.5rem;
}

.price__td {
  padding-right: 2.1875rem;
  text-align: end;
}

td {
  color: #000;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
}

.price__note {
  margin-top: 1rem;
}

.price__text:nth-child(2) {
  margin-top: 0.5rem;
}

/*スクロールダウン*/
.fv {
  position: relative;
  overflow: hidden;
}

.scrolldown {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 100px;
}

.scrolldown span {
  color: #eaeaea;
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.scrolldown::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background-color: #eaeaea;
  content: "";
  -webkit-animation: pathmove 1.8s ease-in-out infinite;
          animation: pathmove 1.8s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    top: 0;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 0;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    top: 0;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 0;
    opacity: 0;
  }
}
.service {
  padding-top: 7.1875rem;
  padding-bottom: 4.8125rem;
}

.service__items {
  margin-top: 2.5rem;
}

.service__item:not(:first-child) {
  margin-top: 2.5rem;
}

.service__title {
  display: inline-block;
  position: relative;
  padding-right: 8rem;
  color: #000;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4583333333;
}

.service__title::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 120px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: linear-gradient(79deg, #145DA0 5.78%, #83BFD2 94.88%);
  content: "";
}

.service__title-grf {
  padding-right: 5.9375rem;
}

.service__title-grf::after {
  position: absolute;
  top: 50%;
  width: 87px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: linear-gradient(79deg, #145DA0 5.78%, #83BFD2 94.88%);
  content: "";
}

.service__text {
  margin-top: 2.5rem;
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.service__img {
  aspect-ratio: 335/251;
  width: 100%;
  min-width: 20.9375rem;
  margin-top: 2.5rem;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.25);
}

.service__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  overflow: clip;
}

.works {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #4A6A88;
}

.works__slider {
  margin-top: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}

.works__img {
  aspect-ratio: 210/118;
  min-width: 13.125rem;
}

.works__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.works__body {
  position: relative;
  width: 100%;
  min-width: 13.125rem;
  margin-top: 0.9375rem;
  padding-bottom: 1rem;
}

.works__body::after {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(79deg, #145DA0 5.78%, #83BFD2 94.88%);
  content: "";
}

.works__title {
  color: #eaeaea;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
}

.works__text {
  margin-top: 1.5625rem;
  margin-bottom: 0.625rem;
  color: #eaeaea;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
}

/*aboutusのファーストビュー*/
.aboutus__fv img {
  aspect-ratio: 375/300;
  min-width: 23.4375rem;
  margin-top: 5.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/*サービスセクション ヘッドライン*/
.aboutus-service {
  padding-top: 7rem;
}

.aboutus__inner {
  margin-top: 7.125rem;
}

.abutus__text {
  margin-top: 2.3125rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.aboutus-about__img-wrap {
  margin: 0 calc(50% - 50vw);
  margin-top: 2.5rem;
}

.aboutus-about__image {
  aspect-ratio: 375/281;
  width: 100%;
  min-width: 23.4375rem;
  height: 100%;
  min-height: 18rem;
  margin-top: 2.5rem;
}

.aboutus-about__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*serviceセクション*/
.aboutus-service {
  padding-top: 7.875rem;
  padding-bottom: 5rem;
}

/*priceセクション*/
.aboutus-price {
  padding-top: 1.875rem;
}

.aboutus-price__item {
  margin-top: 2.5rem;
}

/*会社概要*/
.aboutus__co {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 5rem 6.25rem;
}

.aboutus-company__container dl {
  padding-top: 4.6875rem;
  padding-bottom: 6.25rem;
}

.aboutus-company__container dt {
  width: 5rem;
  padding-top: 1rem;
  padding-bottom: 0.875rem;
  float: left;
  clear: left;
  border-top: 1px solid #a5a5a5;
}

.aboutus-company__container dd:last-child {
  border-bottom: 1px solid #a5a5a5;
}

.aboutus-company__item {
  border-bottom: 1px solid #a5a5a5;
}

.aboutus-company__container dd {
  width: 13.125rem;
  margin-left: 1.875rem;
  padding-top: 1rem;
  padding-bottom: 0.875rem;
  float: left;
  border-top: 1px solid #a5a5a5;
}

.aboutus-company__container dt, dd {
  font-size: 1rem;
  line-height: 1.5;
}

/*ぱんくずリスト*/
.breadcrumbs-inner {
  margin-top: 0.5rem;
}

.breadcrumbs__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs__list {
  color: #363636;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
}

.breadcrumbs__list span {
  position: relative;
  padding-right: 1.25rem;
  color: #363636;
}

.breadcrumbs__list span::after {
  position: absolute;
  top: 50%;
  left: 3.1875rem;
  width: 4px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/arrow_bread.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/*下層・お問い合わせページ
***************************************************************/
.page-contact {
  margin-top: 7rem;
  margin-bottom: 5rem;
}

.page-contact__heading span {
  color: #4A6A88;
}

/* フォーム全体
***************************************************************/
.contact__form {
  margin-top: 2.5rem;
}

.contact__form-body {
  max-width: 720px;
  margin: 0 auto;
}

/* フォームリスト
***************************************************************/
.contact__form-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.contact__form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

/* ラベル
***************************************************************/
.contact__form-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #202020;
  font-weight: 700;
  font-size: 0.875rem;
}

.contact__form-required {
  display: inline-block;
  margin-left: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 2px;
  background-color: #4A6A88;
  color: #FFF;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1;
}

/* 入力フィールド
***************************************************************/
.contact__form-field {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__form-input,
.contact__form-textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  outline: none;
  background-color: #FFF;
  color: #202020;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact__form-input::-webkit-input-placeholder, .contact__form-textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: #aaa;
}
.contact__form-input:-ms-input-placeholder, .contact__form-textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact__form-input::-ms-input-placeholder, .contact__form-textarea::-ms-input-placeholder {
  color: #aaa;
}
.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: #aaa;
}
.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: #4A6A88;
  -webkit-box-shadow: 0 0 0 3px rgba(74, 106, 136, 0.15);
          box-shadow: 0 0 0 3px rgba(74, 106, 136, 0.15);
}

.contact__form-textarea {
  height: 11.25rem;
  resize: vertical;
}

/* 送信ボタン
***************************************************************/
.contact__form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.contact__form-btn {
  display: inline-block;
  padding: 1rem 4rem;
  border: none;
  border-radius: 4px;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  color: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__form-btn:hover {
  opacity: 0.8;
}

/*下層ページ　お知らせ
***************************************************************/
.page-news {
  margin-top: 7rem;
}

.page-news__heading span {
  color: #4A6A88;
}

.page-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 56.25rem;
  margin-top: 2rem;
  margin-inline: auto;
}

.page-news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 1.25rem;
  gap: 0.9375rem;
}

.page-news__item::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  content: "";
}

.page-news__time {
  font-size: 1rem;
}

.page-news__title {
  font-size: 1.125rem;
}

.page-news__text {
  font-size: 1rem;
}

.page-works__inner {
  margin-top: 5.625rem;
}

.page-works__fv {
  aspect-ratio: 375/300;
  width: 100%;
  height: 18.75rem;
}

.page-works__fv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*worksセクション*/
.page-works-works__inner {
  margin-bottom: 6.25rem;
}

.page-works__heading {
  margin-top: 7rem;
}

.page-works-item__image {
  aspect-ratio: 210/118;
  width: 100%;
  max-width: 13.125rem;
}

.page-works-item__image img {
  max-width: 13.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works__items {
  display: grid;
  grid-template-columns: 13.125rem;
  row-gap: 2.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.5rem;
}

.page-works-item__body {
  position: relative;
  padding: 1rem 0 0.875rem;
}

.page-works-item__body::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  content: "";
}

.page-works-item__body h3 {
  color: #202020;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
}

.page-works-item__body p {
  margin-top: 1.5rem;
  color: #202020;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

/*ページネーション*/
.page-works-nation__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.0625rem 0 2rem;
}

.page-works-nation__arrow {
  padding: 0.75rem;
}

.page-works-nation__arrow:first-child {
  margin-right: 0.75rem;
}

.page-works-nation__arrow > a > img {
  width: 0.5rem;
  height: 0.875rem;
}

.page-works-nation__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
}

.page-works-nation__item:not(:last-child) {
  margin-right: 0.75rem;
}

.page-works-nation__item.this {
  background-image: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
}

.page-works-nation__item a {
  color: #202020;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
}

/*footerセクション*/
.works-footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.works-footer__logo {
  width: 6.25rem;
}

.works-footer__items {
  margin-top: 1.5rem;
}

.works-footer__logo img {
  max-width: 6.25rem;
}

.works-footer__item:not(:first-child) {
  margin-top: 2rem;
}

.works-footer__item a {
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4375;
  text-transform: uppercase;
}

.works-footer__item.last {
  margin-top: 1.5625rem;
}

.works-footer__copy {
  display: block;
  margin-top: -1.0625rem;
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3125;
  font-family: "EB Garamond", serif;
  text-align: right;
}

.works-footer__image img {
  width: 100%;
  max-width: 33.75rem;
}

@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.4814814815vw;
  }
  .about {
    padding-top: 13.125rem;
    padding-bottom: 7.25rem;
  }
  .abut__text {
    max-width: 33.75rem;
    margin-top: 5.0625rem;
  }
  .access {
    margin-top: 13.75rem;
  }
  .address__cont {
    height: 49.5625rem;
    margin-top: 4.75rem;
    padding-top: 5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#D9D9D9), color-stop(38%, #D9D9D9), color-stop(38%, #fff), to(#fff));
    background: linear-gradient(180deg, #D9D9D9 0%, #D9D9D9 38%, #fff 38%, #fff 100%);
  }
  .access__address {
    max-width: 23.75rem;
    margin-left: 12.5%;
  }
  .access__address h3 {
    margin-bottom: 0.625rem;
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .about__btn {
    margin-top: 5rem;
  }
  .section__heading {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .section__heading::after {
    top: -200%;
    left: -16%;
    font-size: clamp(5rem, 2.7993rem + 9.3897vw, 11.25rem);
    line-height: 1.1111111111;
  }
  .footer__inner {
    display: grid;
    grid-template-rows: 5.625rem 12.0625rem 1.3125rem;
    grid-template-columns: 1fr 1fr;
  }
  .footer__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5rem;
    gap: 2rem;
  }
  .footer__copy {
    margin-top: 0rem;
    text-align: center;
  }
  .fv__slide {
    max-width: 78.75rem;
    margin-left: auto;
  }
  .slide__image {
    aspect-ratio: 1260/678;
  }
  .fv__title {
    top: 50%;
    left: 5rem;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    font-size: 3.25rem;
    line-height: 1.4423076923;
  }
  .header {
    height: 5.625rem;
    background: rgba(255, 255, 255, 0.4);
  }
  .header__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: inherit;
  }
  .header__nav {
    display: block;
  }
  .nav__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
  }
  .nav-item__link {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit;
    padding: 0 1rem;
    color: #202020;
    font-size: 1rem;
    line-height: 1.3125;
    font-family: "EB Garamond", serif;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.8s 0s ease;
    transition: all 0.8s 0s ease;
  }
  .nav-item__link > span {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    font-family: "Noto Sans JP", sans-serif;
  }
  .humburger {
    display: none;
  }
  .sp-nav {
    display: none;
  }
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .location {
    padding-top: 13.5625rem;
  }
  .location__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4.625rem;
  }
  .location-tab__items {
    margin-top: 0;
  }
  .location-tab__item {
    max-width: 25rem;
  }
  .panel__item {
    aspect-ratio: 540/405;
    max-width: 33.75rem;
  }
  .location__address p:first-child {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .location-tab__item {
    width: 100%;
    max-width: 25rem;
    margin-left: 4.375rem;
  }
  .address__tel {
    pointer-events: none; /*PCタブレット時の電話発信なし*/
  }
  .price {
    padding-top: 13.75rem;
  }
  .price__item {
    max-width: 66.875rem;
  }
  .price__note {
    margin-top: 1.5rem;
  }
  .scrolldown {
    left: 6%;
    height: 180px;
  }
  .scrolldown span {
    color: #4A6A88;
  }
  .scrolldown::after {
    height: 180px;
    background-color: #4A6A88;
  }
  .service {
    padding-top: 13.75rem;
    padding-bottom: 7.25rem;
  }
  .service__items {
    margin-top: 4.75rem;
  }
  .service__item:not(:first-child) {
    margin-top: 5rem;
  }
  .service__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .service__title-grf {
    padding-right: 7.5rem;
  }
  .service__title-grf::after {
    width: 120px;
  }
  .service__img {
    aspect-ratio: 420/315;
    max-width: 26.25rem;
    margin-top: 0;
    margin-left: 2.5rem;
  }
  .service__img-pc {
    margin-right: 2.5rem;
    margin-left: 0;
  }
  .works {
    padding-top: 13.875rem;
    padding-bottom: 7.5rem;
  }
  .works__slider {
    margin-top: 4.75rem;
  }
  .works__img {
    aspect-ratio: 480/270;
    max-width: 30rem;
  }
  .works__body {
    max-width: 30rem;
    margin-top: 1.5625rem;
    padding-bottom: 2.5rem;
  }
  .works__title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .works__text {
    margin-top: 2.5625rem;
    margin-bottom: 1rem;
  }
  .aboutus__fv img {
    aspect-ratio: 1440/300;
    height: 18.75rem;
  }
  .aboutus-service {
    padding-top: 13.75rem;
  }
  .aboutus__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .abutus__text {
    margin-top: 4.75rem;
  }
  .aboutus-about__img-wrap {
    margin: 0;
  }
  .aboutus-about__image {
    aspect-ratio: 540/405;
    max-width: 33.75rem;
    max-height: 25.3125rem;
    margin: 0;
  }
  .aboutus-service {
    padding-top: 13.75rem;
    padding-bottom: 7.25rem;
  }
  .aboutus-price {
    padding-top: 13.75rem;
  }
  .aboutus-price__item {
    width: 67.5rem;
  }
  .aboutus__co {
    padding-block: 7.5rem 11.25rem;
  }
  .aboutus-company__container dl {
    padding-bottom: 11.25rem;
  }
  .aboutus-company__container dt {
    width: 10.625rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .aboutus-company__container dd {
    width: 24.625rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .breadcrumbs-inner {
    margin-top: 1rem;
  }
  .breadcrumbs__list {
    font-size: 1rem;
    line-height: 1.3125;
  }
  .breadcrumbs__list span {
    padding-right: 0.75rem;
  }
  .breadcrumbs__list span::after {
    left: 3.375rem;
  }
  .page-contact {
    margin-top: 13.75rem;
    margin-bottom: 7.5rem;
  }
  .contact__form {
    margin-top: 3.75rem;
  }
  .contact__form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .contact__form-label {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 200px;
    padding-top: 0.75rem;
  }
  .contact__form-textarea {
    height: 15rem;
  }
  .contact__form-btn {
    padding: 1.125rem 5rem;
    font-size: 1rem;
  }
  .page-news {
    margin-top: 13.75rem;
  }
  .page-news__list {
    margin-top: 4.75rem;
  }
  .page-news__item {
    padding-block: 1.875rem;
  }
  .page-news__title {
    font-size: 1.5rem;
  }
  .page-works__fv {
    aspect-ratio: 1440/300;
  }
  .page-works__heading {
    margin-top: 13.75rem;
  }
  .page-works-item__image {
    aspect-ratio: 480/270;
    max-width: 30rem;
  }
  .page-works-item__image img {
    max-width: 30rem;
  }
  .page-works__items {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
    row-gap: 5.0625rem;
    padding-top: 4.75rem;
  }
  .page-works-item__body {
    padding: 1.5rem 0 2.5rem;
  }
  .page-works-item__body h3 {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .page-works-item__body p {
    margin-top: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .page-works-nation__items {
    margin: 7.5rem 0 11.25rem;
  }
  .page-works-nation__item.this {
    font-size: 1.875rem;
    line-height: 1.4333333333;
  }
  .page-works-nation__item a {
    font-size: 1.875rem;
    line-height: 1.4333333333;
  }
  .works-footer__cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works-footer__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5rem;
  }
  .works-footer__item:not(:first-child) {
    margin-top: 0;
    margin-left: 2rem;
  }
  .works-footer__item.last {
    margin-top: 0;
  }
  .works-footer__copy {
    margin-top: 8.125rem;
    padding-right: 5.375rem;
  }
  .works-footer__image {
    aspect-ratio: 540/304;
  }
}

@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/*# sourceMappingURL=map/styles.css.map */