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

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

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 16);
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: vw(strip-unit(1080px), 16);
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/*横スクロール防止*/
html,
body {
  overflow-x: hidden;
}

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

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
address {
  font-style: normal;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::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;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
  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;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

.inner {
  width: 100%;
  max-width: 30rem;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

/* ヘッダー */
.header {
  height: 5.625rem;
  position: fixed;
  /*header固定*/
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 0.45);
}

.header__inner,
.header__nav,
.header__nav-item,
.header__nav-items,
.header__nav-link {
  height: inherit;
  /*親要素を継承する*/
}

.header__inner {
  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;
  /*縦に対して真ん中*/
}

.header__logo {
  z-index: 9999;
}

@media screen and (min-width: 780px) {
  .header__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-link {
  display: -ms-grid;
  display: grid;
  /*gridレイアウト*/
  place-content: center;
  /*縦横に真ん中*/
  padding-inline: 1.27rem;
  /*横の余白*/
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  text-transform: uppercase;
  /*全ての文字を大文字にする*/
}

.header__nav-item span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 350;
  line-height: 1.6;
}

.header__nav-item {
  position: relative;
  /*基準値*/
}

.header__nav-item::before {
  /*疑似要素をつける*/
  content: "";
  /*空の要素*/
  position: absolute;
  /*動かしたいものに*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  /*透明*/
  z-index: -1;
  /*重なり順を１下げる*/
}

.header__nav-item:hover::before {
  opacity: 1;
}

.header__nav-link:hover {
  color: #EAEAEA;
}

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

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 9999;
  width: 2.3125rem;
  padding: 0;
}

.hamburger span {
  background-color: #333333;
  display: block;
  height: 0.1875rem;
  position: relative;
  -webkit-transition: rotate 0.3s 0s ease;
  transition: rotate 0.3s 0s ease;
  width: 2.3125rem;
}

.hamburger span:nth-child(2) {
  margin-block: 0.5625rem;
}

.hamburger.is-openSP span:nth-child(1) {
  background-color: #FFF;
  top: 0.75rem;
  right: 0.4375rem;
  width: 3.125rem;
  -webkit-transform: rotate(39deg);
          transform: rotate(39deg);
}

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

.hamburger.is-openSP span:nth-child(3) {
  background-color: #FFF;
  width: 3.125rem;
  top: -0.75rem;
  right: 0.4375rem;
  -webkit-transform: rotate(-39deg);
          transform: rotate(-39deg);
}

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

.sp-nav {
  background-color: #4A6A88;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}
@media screen and (min-width: 780px) {
  .sp-nav {
    display: none;
  }
}

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

.sp-nav__items {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  padding-block: 8.625rem 17.25rem;
}

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

.sp-nav__item a {
  color: #EAEAEA;
  width: 100%;
  height: inherit;
  display: block;
}

.sp-nav__item span {
  font-size: 0.875rem;
  display: block;
}

.header__nav-link.current {
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  color: #EAEAEA;
}

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

.fv__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .fv__inner {
    padding-left: 25px;
    max-width: 70.625rem;
    max-height: 42.375rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__slider {
    margin-inline: auto calc(50% - 50vi);
  }
}

.fv__image.is-active img {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInAnime {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}

@keyframes fadeInAnime {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}
.fv__image {
  aspect-ratio: 375/722;
  height: 100%;
}
@media screen and (min-width: 780px) {
  .fv__image {
    aspect-ratio: 1260/678;
  }
}

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

.fv__catch {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.425;
  color: #EAEAEA;
  position: absolute;
  top: 35.1800554017%;
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .fv__catch {
    top: 29.4985250737%;
    left: 6.5rem;
    font-size: 3.25rem;
    line-height: 1.4615384615;
    text-align: left;
    -webkit-transform: initial;
            transform: initial;
  }
}

/* スクロールダウンの位置 */
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 4.375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /*横向き配置*/
  color: #FFF;
  z-index: 1;
  /*前面にもってくる*/
}
@media screen and (min-width: 780px) {
  .scrolldown {
    color: #4A6A88;
    bottom: 9.1875rem;
    left: 6.2%;
  }
}

/* 線のアニメーション部分 */
.scrolldown::after {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  /*アニメーション名scrollを2秒かけてむげんに繰り返す*/
  background-color: #FFF;
  TOP: 0;
  content: "";
  height: 100px;
  left: -1.5625rem;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media screen and (min-width: 780px) {
  .scrolldown::after {
    background-color: #4A6A88;
    height: 180px;
  }
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.scrolldown span {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.about__text {
  color: #EAEAEA;
  width: 59.7014925373%;
}
@media screen and (min-width: 780px) {
  .about__text {
    max-width: 100%;
    width: 33.75rem;
  }
}

.about__btn {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about__btn {
    margin-top: 5rem;
  }
}

.about__container {
  margin-top: 3rem;
}
@media screen and (min-width: 780px) {
  .about__container {
    margin-top: 4.6875rem;
  }
}

.section-title {
  position: relative;
  font-family: "EB Garamond", serif;
  color: #EAEAEA;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 780px) {
  .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.section-title::first-letter {
  text-transform: uppercase;
}

.section-title::before {
  content: attr(data-en);
  font-size: 5rem;
  font-family: "EB Garamond", serif;
  color: rgba(186, 186, 186, 0.15);
  position: absolute;
  top: -2rem;
  left: -1.1875rem;
  line-height: 1.3;
}
@media screen and (min-width: 780px) {
  .section-title::before {
    font-size: 11.25rem;
    line-height: 1.1111111111;
    left: -11.25rem;
    top: -6.25rem;
  }
}

.section-title--blue {
  color: #4A6A88;
}

.section-title--blue::before {
  color: #BABABA;
  opacity: 0.15;
}

.common-text {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.common-text__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #EAEAEA;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding-block: 0.5rem;
  padding-left: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.btn.btn--white {
  background-color: #FBFBFB;
  padding-right: 1.5rem;
  min-width: 12rem;
  border-radius: 10px;
  color: #000000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
}

.btn__arrow {
  display: inline-block;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  width: 48px;
  height: 48px;
  border-radius: 100px;
  position: relative;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  margin-left: 1rem;
}

.btn__arrow::before,
.btn__arrow::after {
  position: absolute;
  content: "";
}

.btn__arrow::before {
  background-image: url(../images/common/arrowsWHITE.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 16px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.btn__arrow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

@media (any-hover: hover) {
  .btn__arrow::after {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .btn:hover .btn__arrow::after {
    opacity: 1;
  }
  .btn:hover .btn__arrow::before {
    background-image: url(../images/common/arrowsBLUE.svg);
  }
  .btn:hover {
    opacity: 1;
  }
  .btn.btn--white:hover {
    opacity: 1;
    background-color: #4A6A88;
    color: #FFF;
  }
}
.service__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .service__container {
    margin-top: 4.75rem;
  }
}

.works__slider {
  margin-top: 2.375rem;
  margin-inline: auto calc(50% - 50vi);
}
@media screen and (min-width: 780px) {
  .works__slider {
    margin-top: 4.75rem;
  }
}

.works__btn {
  margin-top: 5rem;
  margin-inline: auto;
}

.price__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .price__container {
    margin-top: 4.75rem;
  }
}

.price__table {
  border-collapse: collapse;
  width: 67.5rem;
}
@media screen and (min-width: 780px) {
  .price__table {
    min-width: 67.5rem;
  }
}

.price-table__heads {
  text-align: center;
}

.price__table-head {
  border: solid 1px #bababa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding-block: 1.75rem;
}

.price__table-head:first-child {
  width: 17.5rem;
  background-color: #C0CFDE;
}

.price__table-head:nth-child(2) {
  width: 31.25rem;
  background-color: #99B9D9;
}

.price__table-head:last-child {
  width: 18.75rem;
  background-color: #6091C1;
}

.price__table-bodys {
  background-color: #f7f7f7;
}

.price__table-bodys th {
  font-weight: 500;
}

.price__table-bodys tr:nth-child(2) {
  background-color: #F3F3F3;
}

.price__table-body {
  border: solid 1px #bababa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  padding: 1.65rem 2.4375rem 1.625rem 2.5rem;
}

.price__table-body:nth-child(2) {
  text-align: left;
}

.price__table-body:last-child {
  text-align: right;
}

.price__notice {
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .price__notice {
    margin-top: 1.3125rem;
  }
}

.location__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .location__container {
    margin-top: 4.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.location__image {
  aspect-ratio: 335/251;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.25));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
}
@media screen and (min-width: 780px) {
  .location__image {
    aspect-ratio: 540/405;
    max-width: 33.75rem;
  }
}

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

.location__items {
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .location__items {
    width: 50%;
    margin-top: 0;
    gap: 1.375rem;
  }
}

.location__item {
  -webkit-transition: backgound-color 0.3 ease;
  transition: backgound-color 0.3 ease;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
  display: block;
  margin-inline: auto;
  max-width: 100%;
  padding: 0.875rem 1rem;
  color: #333333;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .location__item {
    width: 25rem;
    padding: 0.8125rem 1rem;
  }
}

@media (any-hover: hover) {
  .location__item:hover {
    background-color: #E4EDF4;
  }
}
.location__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  display: inline-block;
}
@media screen and (min-width: 780px) {
  .location__name {
    font-size: 1.5rem;
  }
}

.location__info {
  margin-top: 0.5rem;
}

.icon {
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
}

.icon__item {
  position: relative;
  padding-left: 2rem;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.icon__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon__item a {
  color: #333333;
}

.icon__item.icon__item--address::before {
  background-image: url(../images/common/Map.svg);
}

.icon__item.icon__item--tel::before {
  background-image: url(../images/common/tel.svg);
}

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

@media (max-width: 767px) {
  .icon__item {
    padding-left: 2rem;
  }
}
.icon__item--mail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4375;
  text-align: left;
  letter-spacing: 0.02rem;
}

.access__gray-area {
  background-color: #D9D9D9;
  height: 12.5rem;
  /*画面いっぱいにする*/
  margin-inline: calc(50% - 50vi);
  /*半分ずらして半分戻す*/
}
@media screen and (min-width: 780px) {
  .access__gray-area {
    margin-top: 4.75rem;
    height: 18.75rem;
  }
}

.access__items {
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 2.5rem;
  max-width: 100%;
  width: 100%;
  margin-top: -2.875rem;
}
@media screen and (min-width: 780px) {
  .access__items {
    width: 23.75rem;
    margin-top: -13.8125rem;
  }
}

.access__info {
  margin-top: 0.875rem;
}
@media screen and (min-width: 780px) {
  .access__info {
    margin-top: 0.5rem;
  }
}

.access__container {
  margin-top: 2.5rem;
}

.access__name {
  font-size: 1.1875rem;
  line-height: 1.4583333333;
  font-weight: 500;
  letter-spacing: 0rem;
}
@media screen and (min-width: 780px) {
  .access__name {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.4583333333;
    font-weight: 400;
  }
}

.access__btn {
  margin-top: 5rem;
  margin-inline: auto;
}

.footer {
  background-color: #4A6A88;
  padding-block: 2.5rem 2.375rem;
}

@media screen and (min-width: 780px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /*上に揃える*/
  }
}

.footer__logo {
  width: 6.25rem;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 780px) {
  .footer__nav {
    display: contents;
  }
}

.footer__nav-items {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5rem;
  }
}

.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  color: #FFF;
}

.footer__copy {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #FFF;
  margin-top: 4.9375rem;
}
@media screen and (min-width: 780px) {
  .footer__copy {
    margin-top: 8rem;
    padding-left: 14.0625rem;
  }
}

.footer__copy small {
  font-size: 1rem;
}

.footer__image {
  max-width: 33.75rem;
  aspect-ratio: 540/304;
  margin-left: 8.3125rem;
}

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

.pankuzu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pankuzu__item span {
  list-style: none;
  font-family: "EB Garamond", serif;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 400;
  position: relative;
}
@media screen and (min-width: 780px) {
  .pankuzu__item span {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.pankuzu__item:not(:last-child) {
  margin-right: 1.3125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .pankuzu__item:not(:last-child) {
    margin-right: 0.8125rem;
  }
}

.pankuzu__item:not(:last-child) span::after {
  content: "";
  display: inline-block;
  background-image: url(../images/under/pankuzu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -0.8125rem;
  width: 0.25rem;
  height: 0.5rem;
}
@media screen and (min-width: 780px) {
  .pankuzu__item:not(:last-child) span::after {
    right: -0.625rem;
    width: 0.375rem;
    height: 0.75rem;
  }
}

.pankuzu__item:last-child:after {
  content: "";
}

.pankuzu__item a {
  text-decoration: none;
  color: #363636;
  /*色*/
}

.pankuzu__item a:hover {
  text-decoration: none;
}

/*paginationスタイル*/
.pagination {
  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;
}

.pagination__item:not(:last-child) {
  margin-right: 0.75rem;
}

.pagination__item.pagination__item--prev {
  margin-right: 0.4375rem;
}

.pagination:has(.pagination__item--next) .pagination__item:nth-last-child(-n+2) {
  margin-right: 0;
}

.pagination__item.pagination__item--next {
  margin-left: 0.4375rem;
}

.pagination__item-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .pagination__item-link {
    font-size: 1.875rem;
  }
}

.pagination__item-image {
  width: 0.5rem;
  height: 0.875rem;
}

.pagination__item-link {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
}

.pagination__item-link.active-item {
  pointer-events: none;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  color: #FFF;
}

.company {
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .company {
    max-width: 37.75rem;
  }
}

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

.company__info dt,
.company__info dd {
  font-size: 1rem;
  line-height: 1.3125;
  padding-block: 1rem;
  border-bottom: solid 1px #A5A5A5;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 780px) {
  .company__info dt,
  .company__info dd {
    padding-block: 2.0875rem;
  }
}

.company__info dt {
  font-weight: 500;
  margin-right: 2.125rem;
  width: 24%;
}
@media screen and (min-width: 780px) {
  .company__info dt {
    width: 28%;
    max-width: 10.625rem;
    margin-right: 2.5rem;
  }
}

.company__info:first-child dt,
.company__info:first-child dd {
  border-top: solid 1px #A5A5A5;
}

.company__info dd {
  font-weight: 400;
  width: 65%;
  padding-left: 0.125rem;
}
@media screen and (min-width: 780px) {
  .company__info dd {
    width: 65%;
    max-width: 24.625rem;
  }
}

.company__info a {
  color: #333333;
}

.services {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 780px) {
  .services {
    gap: 5rem;
  }
}

.services__items {
  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: 2.5rem;
}
@media screen and (min-width: 780px) {
  .services__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /*ひだりから右に配置*/
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

.services__content {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .services__content {
    max-width: 38.75rem;
  }
}

.services__tittle {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  color: #000;
}

.services__tittle::after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 7.5rem;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  position: absolute;
  top: 50%;
  right: -8rem;
  translate: 0 -50%;
}

.services__items:nth-child(2) .services__tittle::after {
  width: 5.4375rem;
  right: -5.9375rem;
}
@media screen and (min-width: 780px) {
  .services__items:nth-child(2) .services__tittle::after {
    width: 7.5rem;
    right: -8rem;
  }
}

.services__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2.5rem;
  color: rgb(0, 0, 0);
}

.services__image {
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.25));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  aspect-ratio: 355/265;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .services__image {
    aspect-ratio: 420/315;
    width: calc(50% - 7.5rem);
  }
}

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

@media screen and (min-width: 780px) {
  .services__items:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    /*逆並び*/
  }
}

.works-item {
  color: #EAEAEA;
  position: relative;
}
@media screen and (min-width: 780px) {
  .works-item {
    max-width: 30rem;
  }
}

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

.works-item__image {
  margin: auto;
  aspect-ratio: 210/118;
}
@media screen and (min-width: 780px) {
  .works-item__image {
    aspect-ratio: 480/270;
  }
}

.works-item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.works-item__body {
  padding-block: 1rem;
}
@media screen and (min-width: 780px) {
  .works-item__body {
    padding-block: 1.5rem 2.5rem;
  }
}

.works-item__body.works-item__body--black {
  color: #333333;
}

.works-item__tittle {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .works-item__tittle {
    font-size: 1.5rem;
  }
}

.works-item__text {
  margin-top: 1.4375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .works-item__text {
    margin-top: 2.4375rem;
  }
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.notice {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .notice {
    gap: 0.5rem;
  }
}

.section-about {
  background-image: url(../images/top/aboutSP@2x.jpg);
  background-size: cover;
  /*比率を保ったまま全面配置*/
  background-position: center;
  min-height: 48rem;
  padding-block: 4.5rem 8rem;
}
@media screen and (min-width: 768px) {
  .section-about {
    background-image: url(../images/top/about@2x.jpg);
    padding-block: 13.5rem 7.25rem;
  }
}

.section-service {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .section-service {
    margin-top: 13.75rem;
  }
}

.section-works {
  margin-top: 5rem;
  background: #4A6A88;
  padding-block: 7rem 5rem;
}
@media screen and (min-width: 780px) {
  .section-works {
    margin-top: 7.5rem;
    padding-block: 13.75rem 7.5rem;
  }
}

.section-price {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .section-price {
    margin-top: 13.75rem;
  }
}

.section-location {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .section-location {
    margin-top: 13.75rem;
  }
}

.section-access {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .section-access {
    margin-top: 13.75rem;
  }
}

.section-footer {
  margin-top: 6.25rem;
}
@media screen and (min-width: 780px) {
  .section-footer {
    margin-top: 19rem;
  }
}

.logo {
  width: 3.75rem;
}

.logo__header {
  position: relative;
  display: block;
}

.logo__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/logoWHITE.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body.js-fixed .logo__header:before {
  z-index: 1;
}

.is-openSP {
  translate: 0;
}

.about-page__about {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .about-page__about {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 780px) {
  .about-page__about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.about-page__about-text {
  margin-top: 2.5rem;
  color: #202020;
}
@media screen and (min-width: 780px) {
  .about-page__about-text {
    margin-block: 4.75rem 0.8125rem;
    max-width: 33.75rem;
  }
}

.about-page__about-image {
  aspect-ratio: 375/281;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .about-page__about-image {
    aspect-ratio: 540/405;
    max-width: 33.75rem;
  }
}

@media screen and (max-width: 750px) {
  .about-page__about-image {
    margin: 2.5rem calc(50% - 50vw);
    width: 100vw;
  }
}
.about-page__about-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.about-page__service {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .about-page__service {
    margin-top: 13.75rem;
  }
}

.about-page__service-container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about-page__service-container {
    margin-top: 4.8125rem;
  }
}

.about-page__price {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .about-page__price {
    margin-top: 13.75rem;
  }
}

.about-page__price-container {
  margin-top: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .about-page__price-container {
    margin-top: 4.75rem;
  }
}

.about-page__price-notice {
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .about-page__price-notice {
    margin-top: 1.3125rem;
  }
}

.about-page__company {
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .about-page__company {
    margin-top: 7.3125rem;
  }
}

.works-page__body {
  color: #202020;
}

.works-page__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 62.6865671642%;
  grid-template-columns: 62.6865671642%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 2.3125rem;
  width: 100%;
  margin-top: 2.4rem;
}
@media screen and (min-width: 780px) {
  .works-page__container {
    -ms-grid-columns: 1fr 7.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5.0625rem;
    -webkit-column-gap: 7.5rem;
       -moz-column-gap: 7.5rem;
            column-gap: 7.5rem;
    margin-top: 4.75rem;
  }
}

.works-page__works {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .works-page__works {
    margin-top: 13.6875rem;
  }
}

.works-page__pagination {
  margin-top: 2.375rem;
}
@media screen and (min-width: 780px) {
  .works-page__pagination {
    margin-top: 7.375rem;
  }
}

.under-page__fv {
  aspect-ratio: 375/390;
  padding-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .under-page__fv {
    aspect-ratio: 1440/390;
  }
}

.under-page__fv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.under-page__pankuzu {
  margin-top: 0.1875rem;
}
@media screen and (min-width: 780px) {
  .under-page__pankuzu {
    margin-top: 0.8125rem;
  }
}

.under-page__footer {
  margin-top: 6.5rem;
}
@media screen and (min-width: 780px) {
  .under-page__footer {
    margin-top: 11.25rem;
  }
}