@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #333333;
  background-color: #FFF;
}

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

ul {
  list-style: none;
}

img {
  width: 100%;
}

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

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

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

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

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    cursor: pointer;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@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;
}

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

small {
  font-size: initial;
}

/*------------------------------------------------
   共通
------------------------------------------------*/
/*共通で指定する見出しの設定*/
.section-title {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 4.5rem;
    line-height: 1.2;
  }
}

/*共通で指定するセクション間*/
@media screen and (min-width: 780px) {
  .section-padding {
    padding-block: 7.5rem;
  }
}

/* ボタン */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.btn:hover {
  background: #4A6A88;
  color: #FBFBFB;
}

/* 矢印の丸 */
.arrow {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(45deg, #145DA0 0%, #83BFD2 100%);
  border-radius: 1.5rem;
  position: relative;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.btn:hover .arrow {
  background: #FBFBFB;
}

/* 矢印 */
.arrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  left: 46%;
  translate: -50% -50%;
  /*矢印の形状*/
  width: 13px;
  height: 13px;
  border-top: 2px solid #EAEAEA;
  border-right: 2px solid #EAEAEA;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
}
.btn:hover .arrow::after {
  border-color: #4A6A88;
}

/*アイコン(map/tel/mail)*/
.icon-area {
  position: relative;
  padding-left: 2rem;
}

.icon-pin::before {
  content: "";
  background-image: url(../images/top_images/MapPin.svg);
}

.icon-tel::before {
  content: "";
  background-image: url(../images/top_images/Phone.svg);
}

.icon-mail::before {
  content: "";
  background-image: url(/images/top_images/Envelope.svg);
}

.icon-area::before {
  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;
}

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

/*------------------------------------------------
   ヘッダー 
------------------------------------------------*/
/*常に画面上部に固定で追従する状態*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 5.625rem;
  z-index: 9999; /*絶対一番手前に*/
  background-color: rgb(255, 255, 255);
}
/*ヘッダーの高さを中身に引き継ぐ（中身の高さを揃える）*/
/*headerの中に入ってる要素のセレクタを一括で↓*/
.header__inner,
.header__inner nav,
.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 {
  width: 3.75rem;
  max-width: 3.75rem; /*SP*/
  width: 100%; /*max-widthの時セットで記述*/
}

/*ホバー時のロゴの変化の仕方*/
.header__logo {
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
  position: relative; /*ロゴの色を変える時の擬似要素用*/
  z-index: 9999;
}

/*ハンバーガーメニュー開けた時のロゴの変化の仕方*/
.header__logo::after {
  content: "";
  position: absolute;
  max-width: 3.75rem;
  width: 100%;
  height: 100%;
  background-image: url(../../images/common_images/header_logo_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0; /* 最初は非表示 */
  z-index: -1; /* 後ろに隠す */
  top: 0px;
  left: 0px;
}

/* メニューが開いてるときだけ白ロゴ表示＋前面に */
.header__logo.is-show-logo::after {
  opacity: 1;
  z-index: 10000;
}

/*メニューの並び方(PC-only)*/
.header__nav {
  display: none;
}
@media screen and (min-width: 780px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

/*メニューaタグをブロック要素にして中央に寄せる(PC-only)*/
.header__nav-link {
  padding-inline: 1.25rem;
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  place-items: center;
  margin-block: auto;
  color: #333333;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease; /*ホバーの時の変化*/
}

.header__nav-item span {
  display: block;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-top: 0.1875rem;
}

/*HOMEのタブをグラデーション背景にする*/
.select {
  background: linear-gradient(79.47deg, #145DA0 5.78%, #83BFD2 94.88%);
}

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

/*ホバーしたタブにグラデーション背景と文字light-grayをつける*/
.header__nav-item {
  position: relative; /*擬似要素用*/
}

.header__nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(79.47deg, #145DA0 5.78%, #83BFD2 94.88%);
  opacity: 0;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* ホバー時にグラデーション背景と文字色を変化させる */
@media (any-hover: hover) {
  .header__nav-item:hover::before {
    opacity: 1;
  }
  .header__nav-item:hover .header__nav-link {
    color: #EAEAEA;
    position: relative;
    z-index: 1;
  }
}
/*----------------　ヘッダースクロール時の変化　----------------*/
/*jQueryで「画面をスクロールした時にfvのエリアを超えたらヘッダー背景色が変わるcssのクラスが付く」という指定を書いている。
/*背景色の変化*/
.change-color { /*このクラス名はscript.jsにあり。jQueryでつけ外しをしている*/
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease; /*背景の色をふわっと変える transitionが使える*/
}

/*----------------　スマホメニュー　----------------*/
.sp-nav {
  background-color: #4A6A88;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0; /* positionの記述とセット */
  left: 0; /* positionの記述とセット */
  z-index: 9998; /* 重なり順が上になるように。ハンバーガーメニュー9999の一つ下くらいでOK */
  -webkit-transform: translateX(100%);
          transform: translateX(100%); /* クリックしたら現れるので、普段はSP-navごと寄せて画面から出しておく。Xは横位置の指定 */
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease; /* ふわっと */
  overflow-y: auto; /*もし画面の高さが短い時にスクロールできるようになる*/
}
@media screen and (min-width: 780px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__items {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.sp-nav__items span {
  display: block;
  font-size: 0.875rem;
  margin-top: -0.3125rem;
}

.sp-nav__item a {
  font-size: 1.5rem;
  text-align: center;
  font-family: "EB Garamond", serif;
  color: #FFF;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

/*ハンバーガーボタンをクリックしたら右に隠したsp-navが出てくる*/
.is-openSP { /*jsの為に作ったクラス。jQueryで指定あり*/
  -webkit-transform: translateX(0); /*transformはブラウザによって対応していない場合もあるので必ずベンダープレフィクスをつけるようにする #5参照*/
  transform: translateX(0); /*画面から出していたのを画面内に戻す*/
}

@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; /*spanはインラインなので、高さの指定をするためにブロック要素に変える*/
  height: 0.20125rem; /*線の太さ*/
  position: relative; /*線の開閉など、動きが出てくるのでrelativeにして動かせるようにしておく*/
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease; /* 動きのアニメーションの指定 */
  width: 100%; /*線の横幅*/
  border-radius: 0.3125rem;
}

.hamburger span:nth-child(2) { /*そのままだと3本重なっているので、真ん中のspanタグに余白をつけて3本線にする*/
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* ×の時の動かし方（CSSで作ったクラスをjQueryでつけ外しする) */
.hamburger.is-openSP span:nth-child(1) { /* .is-openSP(js用に作ったクラス)がついた時の1番目のspan*/
  top: 0.9375rem; /*交差した時×になるように調整。検証ツール見ながら微調整*/
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  background-color: #EAEAEA;
}

.hamburger.is-openSP span:nth-child(2) { /*2つ目は見えなくする*/
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.9375rem; /*交差した時×になるように調整。検証ツール見ながら微調整*/
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg); /*マイナスにすることで、反対方向に傾く*/
  background-color: #EAEAEA;
}

/*ハンバーガーメニューの背景固定。
ハンバーガーメニューの裏側でスクロールしなくなる。bodyに「js-fixed」クラスが付いたら背景が固定できるというスタイルを指定する。*/
body.js-fixed { /*js-fixedはjsにあり*/
  width: 100%;
  height: 100%;
  position: fixed;
}

/*------------------------------------------------
   fv　（splideスライダー使用）
------------------------------------------------*/
.fv {
  margin-top: 5.625rem;
  overflow: hidden; /*fv__catchの持つ幅がはみ出ないようにする*/
  position: relative; /*スクロールダウン用*/
}

.fv__inner {
  max-width: 1130px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  /*キャッチコピーの配置用*/
}
@media screen and (min-width: 780px) {
  .fv__inner {
    padding-left: 1.5625rem;
    max-height: 42.375rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__slider {
    margin-inline: auto calc(50% - 50vi);
    /*質問部屋参照*/
  }
}

/*spとpcでは画像の見え方が変わるので縦横比を指定しておく。
  splideのクラスに直接指定するのではなく、新しくfv__imageというクラスをつけて指定する*/
.fv__image {
  aspect-ratio: 375/722;
  /*カンプのspの幅と高さ*/
}
@media screen and (min-width: 780px) {
  .fv__image {
    aspect-ratio: 1260/678;
  }
}

.fv .splide__list {
  overflow: hidden;
  /* 画像がはみ出ないようにする */
}

/* ズーム */
.fv .splide__slide img {
  -webkit-transition: 8s ease-out;
  transition: 8s ease-out;
}

.fv .splide__slide.is-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* スライドのサイズ調整 */
.fv .splide__slide img {
  height: auto;
  width: 100%;
}

/*----------------　キャッチコピー　----------------*/
.fv__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.5rem;
  text-align: center;
  color: #EAEAEA;
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  line-height: 1.425;
}
@media screen and (min-width: 780px) {
  .fv__catch {
    text-align: left;
    font-size: 3.25rem;
    top: 41%;
    left: 59%;
    -webkit-transform: translate(-50%, -52%);
            transform: translate(-50%, -52%);
  }
}

/*----------------　スクロールダウン　----------------*/
/*全体の位置*/
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 100px;
  z-index: 1;
}
@media screen and (min-width: 780px) {
  .scrolldown {
    height: 180px;
    left: 6.25%;
  }
}

/*Scrollテキストの描写*/
.scrolldown span {
  position: absolute;
  left: 0;
  top: 0;
  color: #EAEAEA;
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 780px) {
  .scrolldown span {
    color: #4A6A88;
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100px;
  background: #EAEAEA;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite; /*線の動き1.4秒かけて動く。永遠にループ*/
  opacity: 0;
}
@media screen and (min-width: 780px) {
  .scrolldown::after {
    background: #4A6A88;
    height: 180px;
  }
}

/*------------------------------------------------
   about us
------------------------------------------------*/
.about {
  background-image: url(../images/top_images/about_us_sp@2x.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 780px) {
  .about {
    background-image: url(../images/top_images/about_us_pc@2x.jpg);
  }
}

.about__inner {
  padding-block: 4.8125rem 8.625rem;
}
@media screen and (min-width: 780px) {
  .about__inner {
    padding-block: 13.5625rem 7.3125rem;
  }
}

.about {
  color: #EAEAEA;
}

.about__title {
  position: relative;
  margin-bottom: 3.3125rem;
}
@media screen and (min-width: 780px) {
  .about__title {
    margin-bottom: 4.625rem;
  }
}

.about__title::before {
  content: "About us";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .about__title::before {
    font-size: 11.25rem;
    left: -11.25rem;
    margin-top: -6.875rem;
  }
}

.about__content {
  width: 53.3333333333%;
  min-width: 12.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.5rem;
}
@media screen and (min-width: 780px) {
  .about__content {
    max-width: 33.75rem;
  }
}

/* ボタン */
.about__btn {
  background: none;
  color: #EAEAEA;
  text-decoration: none;
  margin-top: 2.625rem;
}
.about__btn:hover {
  background: none;
}
@media screen and (min-width: 780px) {
  .about__btn {
    margin-top: 5rem;
  }
}

/*------------------------------------------------
   service
------------------------------------------------*/
.service__inner {
  padding-block: 7.3125rem 5rem;
}
@media screen and (min-width: 780px) {
  .service__inner {
    padding-block: 13.75rem 7.5625rem;
  }
}

.service__title {
  position: relative;
  color: #4A6A88;
}
@media screen and (min-width: 780px) {
  .service__title {
    margin-bottom: 4.875rem;
  }
}

.service__title::before {
  content: "Service";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .service__title::before {
    font-size: 11.25rem;
    left: -11.25rem;
    margin-top: -6.875rem;
  }
}

.service__content {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  max-width: 38.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .service__content {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1080px;
    gap: 2.5rem;
  }
}

.service__content:first-child {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .service__content:first-child {
    margin-top: -3px;
  }
}

.service__h3 {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.service__h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 52%;
  right: -8.0625rem;
  width: 7.5rem;
  height: 0.0625rem;
  background: linear-gradient(79.47deg, #145DA0 5.78%, #83BFD2 94.88%);
}

.service__content:nth-child(2) .service__h3::after {
  width: 5.4375rem;
  right: -6rem;
}

.service__text {
  margin-top: 2.6875rem;
}
@media screen and (min-width: 780px) {
  .service__text {
    margin-top: 2.4375rem;
  }
}

.service__image {
  width: 100%;
  aspect-ratio: 335/251;
  height: auto;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 780px) {
  .service__image {
    max-width: 26.25rem;
    max-height: 19.6875rem;
  }
}

@media screen and (min-width: 780px) {
  .service__content:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/*------------------------------------------------
   works
------------------------------------------------*/
.works {
  background-color: #4A6A88;
  color: #EAEAEA;
}

.works__inner {
  padding-block: 7.3125rem 5rem;
}
@media screen and (min-width: 780px) {
  .works__inner {
    padding-block: 13.75rem 7.5625rem;
  }
}

.works__title {
  position: relative;
  margin-bottom: 2.9375rem;
}

.works__title::before {
  content: "Works";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .works__title::before {
    font-size: 11.25rem;
    left: -10.9375rem;
    margin-top: -6.875rem;
  }
}

/*個々のアイテム*/
.works-item {
  color: #EAEAEA;
  position: relative;
  max-width: 13.125rem;
  width: 100%;
  margin-right: 1.5rem;
}
@media screen and (min-width: 780px) {
  .works-item {
    max-width: 30rem;
  }
}

/*下のグラデの線*/
.works-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(79.47deg, #145DA0 5.78%, #83BFD2 94.88%);
  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 0.875rem;
}
@media screen and (min-width: 780px) {
  .works-item__body {
    padding-block: 1.5rem 2.5rem;
  }
}

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

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

/*スライダーの設定*/
.works__slider {
  margin-inline: auto calc(50% - 50vi);
}
@media screen and (min-width: 780px) {
  .works__slider {
    margin-top: 4.75rem;
  }
}

/*Worksセクションのボタン*/
.works__btn {
  background: #FBFBFB;
  color: #333333;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  margin-top: 4.9375rem;
  margin-inline: auto;
}

/*------------------------------------------------
   Price
------------------------------------------------*/
.price__inner {
  padding-block: 7.3125rem 5rem;
}
@media screen and (min-width: 780px) {
  .price__inner {
    padding-block: 6.25rem 0rem;
  }
}

.price__title {
  position: relative;
  color: #4A6A88;
  margin-bottom: 2.9375rem;
}
@media screen and (min-width: 780px) {
  .price__title {
    margin-bottom: 4.75rem;
  }
}

.price__title::before {
  content: "Price";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .price__title::before {
    font-size: 11.25rem;
    left: -11.25rem;
    margin-top: -6.875rem;
  }
}

/* テーブルを囲むコンテナ */
.price__table-container {
  overflow-x: auto;
  width: 100%;
  margin-inline: 0 calc(50% - 50vi);
}

/*　表の幅　*/
.price__table {
  border-collapse: collapse;
  width: 67.5rem;
}

/* 表の枠線 */
.price__table, .price__table-heading, .price__table-body tr, .price__table-body td {
  border: 1px solid #BABABA;
}

/* 見出し */
.price__table-heading {
  padding-block: 1.75rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

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

.price__table-heading:nth-child(3) {
  width: 18.75rem;
  background-color: #6091C1;
}

/* 中身 */
.price__table-body {
  background-color: #F7F7F7;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 1.65rem 2.4375rem 1.625rem 2.5rem;
}

.price__table-body td {
  padding: 1.5625rem 2.5rem 1.75rem 2.4375rem;
}

/* プラン名 */
.price__table-body--plan-name {
  width: 12.5rem;
}

.price__table-body--content {
  width: 26.25rem;
}

.price__table-body--price {
  width: 13.75rem;
  text-align: right;
}

.attention {
  margin-top: 0.8125rem;
  display: -ms-grid;
  display: grid;
  gap: 7px;
}
@media screen and (min-width: 780px) {
  .attention {
    margin-top: 1.3125rem;
  }
}

/*------------------------------------------------
   Location
------------------------------------------------*/
.location__inner {
  padding-block: 2.375rem 0rem;
}

.location__title {
  position: relative;
  color: #4A6A88;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 780px) {
  .location__title {
    margin-top: -3.625rem;
    margin-bottom: 4.75rem;
  }
}

.location__title::before {
  content: "Location";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .location__title::before {
    font-size: 11.25rem;
    left: -11.25rem;
    margin-top: -6.9375rem;
  }
}

/*画像とカードの並び*/
@media screen and (min-width: 780px) {
  .location__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/*画像の設定*/
#location__Image {
  aspect-ratio: 335/251;
}
@media screen and (min-width: 780px) {
  #location__Image {
    aspect-ratio: 540/405;
    max-width: 33.75rem;
    width: 100%;
  }
}

/*地域カードの縦並び*/
.location__cards {
  display: -ms-grid;
  display: grid;
  gap: 1.5625rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .location__cards {
    margin-top: 0;
    width: 33.75rem;
    padding-inline: 4.375rem;
    gap: 1.4375rem;
  }
}

/*個々の地域カード*/
.location__card {
  display: block;
  text-align: left;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 0.75rem 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .location__card {
    padding: 0.4375rem 1rem;
  }
}

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

.location__city-name {
  font-size: 1.25rem;
}
@media screen and (min-width: 780px) {
  .location__city-name {
    font-size: 1.5rem;
  }
}

.location__tel a {
  color: #333333;
  pointer-events: none; /*番号がリンクにならないように*/
}

/*選択されているカードには背景色がつく*/
.location__card.is-active {
  background-color: #E4EDF4;
}

.location__card.is-hover {
  background-color: #E4EDF4;
}

/*------------------------------------------------
   Access
------------------------------------------------*/
.access__inner {
  padding-block: 7.5rem 6.25rem;
}
@media screen and (min-width: 780px) {
  .access__inner {
    padding-block: 0rem 11.375rem;
  }
}

.access__title {
  position: relative;
  color: #4A6A88;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 780px) {
  .access__title {
    margin-top: -1.25rem;
    margin-bottom: 4.8125rem;
  }
}

.access__title::before {
  content: "Access";
  position: absolute;
  color: rgba(186, 186, 186, 0.15);
  font-size: 5rem;
  top: 0;
  left: -1.25rem;
  margin-top: -2.9375rem;
}
@media screen and (min-width: 780px) {
  .access__title::before {
    font-size: 11.25rem;
    left: -11.25rem;
    margin-top: -6.875rem;
  }
}

.access__bg-area {
  background-color: #D9D9D9;
  width: 100vw;
  margin: auto calc(50% - 50vi); /*innerのpaddingを超えて広がる*/
  height: 12.5rem;
  padding-top: 9.75rem;
}
@media screen and (min-width: 780px) {
  .access__bg-area {
    height: 18.75rem;
  }
}

.access__box {
  padding: 2.5rem;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  background: #FFF;
  width: 100%;
  margin-top: -2.75rem;
}
@media screen and (min-width: 780px) {
  .access__box {
    width: 23.75rem;
    margin-top: -13.75rem;
  }
}

.access__city-name {
  font-size: 1.25rem;
  display: inline-block;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .access__city-name {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.access__address {
  margin-top: 2px;
}

.access__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5625rem;
}

.access__tel a {
  color: #333333;
  pointer-events: none; /*番号がリンクにならないように*/
}

.access__access {
  margin-top: -3px;
}

/*Accessセクションのボタン*/
.access__btn {
  background: #FBFBFB;
  color: #333333;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  margin-inline: auto;
  margin-top: 5rem;
}

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

.footer__inner {
  padding-block: 2.5rem 2.5rem;
}
@media screen and (min-width: 780px) {
  .footer__inner {
    padding-block: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__image {
  width: 50%;
}

.footer__logo {
  width: 6.25rem;
}

.footer__sp-wrap {
  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__sp-wrap {
    display: block;
  }
}

@media screen and (min-width: 780px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

.footer__nav-item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-item {
    margin-top: 0;
  }
}

.footer__nav-item:first-child {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-item:first-child {
    margin-top: 0;
  }
}

.footer__nav-item a {
  color: #FFF;
}

.footer__copy {
  font-family: "EB Garamond", serif;
  margin-bottom: -7px;
  margin-right: 2px;
}
@media screen and (min-width: 780px) {
  .footer__copy {
    margin: 8.0625rem 0 0 13.875rem;
  }
}
/*# sourceMappingURL=styles.css.map */