@charset "UTF-8";
a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*---------- 以下共通スタイル ----------*/
html {
  /* スムーズスクロール */
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #151515;
  min-width: 1280px;
  margin: 0 auto;
  /*   背景固定*/
}

a,
img,
button {
  display: block;
}

button {
  cursor: pointer;
}

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

/*----- brクラス -----*/
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/*----- textクラス -----*/
/*
概要:
テキストの色、配置の変更
*/
.text-main {
  color: #006eba;
}

.text-blue {
  color: #0085e1;
}

.text-green {
  color: #099a3e;
}

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

.font-bold {
  font-weight: 700;
}

.font-notserif {
  font-family: "Noto Serif JP", sans-serif;
}

/*----- displayクラス -----*/
/*
概要:
block,inline,inline-blockに変更
*/
.inline {
  display: inline;
}

/*----- telクラス -----*/
/*
概要:
基本的なtelのスタイル,iconやcolor,sizeなど
詳細な余白等は別指定
*/
.tel {
  line-height: 1;
  display: inline-block;
  pointer-events: none;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.tel span {
  font-size: 0.73913em;
  letter-spacing: 0.08em;
  margin-right: 0.25em;
}

.time {
  letter-spacing: 0.08em;
}
.time span {
  background-color: #006eba;
  line-height: 1;
  padding: 0.26666667em 0.3333333em;
  border-radius: 0.3333333em;
  text-align: center;
  display: inline-block;
  margin-right: 0.666em;
  font-size: 1em;
  color: #fff;
}

.address {
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.address br {
  display: none;
}

/*----- object-fitクラス -----*/
/*
imgにobjectfit:contain or objectfit:coverを与える

概要:
imgにobjectfitおよびobjectpositonを与える

マークアップ例:
<div class="contain-img contain-img-center">
<img src="">
</div>
*/
.contain-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.contain-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.contain-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.contain-img-fit {
  position: relative;
  overflow: hidden;
}
.contain-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

.cover-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.cover-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.cover-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.cover-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.cover-img-fit {
  position: relative;
  overflow: hidden;
}
.cover-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

/*----- innerクラス -----*/
.inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/*----- secクラス -----*/
/*
概要:
sectionごとに共通化できる、タイトル、余白などを指定
*/
.sec {
  padding: 100px 0;
}
.sec-title {
  font-size: 30px;
  letter-spacing: 0.01em;
  display: flex;
  line-height: 1;
}
.sec-title.center {
  justify-content: center;
}
.sec-title.left {
  justify-content: flex-start;
}
.sec-title.right {
  justify-content: flex-end;
}
.sec-title span {
  display: block;
}
.sec-title__inner {
  display: flex;
  flex-direction: column;
}
.sec-title__inner.center {
  align-items: center;
}
.sec-title__inner.left {
  align-items: flex-start;
}
.sec-title__inner.right {
  align-items: flex-end;
}
.sec-title__inner span {
  display: block;
}
.sec-title__en {
  position: relative;
  height: 1.933333em;
  z-index: 1;
  margin-bottom: 20px;
}
.sec-title__en::after {
  content: "";
  width: 3.8em;
  height: 3.6667em;
  background: url(../img/ttl_deco.png) no-repeat top center/contain;
  position: absolute;
  top: -2px;
  left: -2.4666666666em;
  z-index: -1;
}
.sec-title__ja {
  color: #fff;
  font-size: 1em;
}
.sec-content p {
  line-height: 1.8;
}
.sec-content p:not(:last-child) {
  margin-bottom: 20px;
}

.title-img-center img {
  margin: 0 auto;
}

.title-img-left img {
  margin-right: auto;
}

.title-img-right img {
  margin-left: auto;
}

.title-border-left {
  position: relative;
}
.title-border-left::after {
  content: "";
  width: calc((100vw - 1080px) / 2 - 40px);
  left: -40px;
  transform: translateX(-100%);
  position: absolute;
  top: 8.13953%;
  height: 1px;
  background-color: #151515;
}

/*----- common-tableクラス -----*/
/*　common-tableクラス
並びなどを共通化したスタイル
*/
.common-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
.common-table tr {
  display: flex;
}
.common-table__head {
  display: block;
  box-sizing: border-box;
}
.common-table__data {
  display: block;
  box-sizing: border-box;
}

/*----------- headerここから -----------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}
.header-inner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: 1280px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.header-logo {
  max-width: 211px;
}
.header-logo img {
  width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__contents {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 23px;
}
.header__tel {
  font-size: 23px;
}
.header .sns-icon:not(:last-child) {
  margin-right: 20px;
}

.sns-icon {
  width: 30px;
}
.sns-icon img {
  width: 100%;
}

/*----------- headerここまで -----------*/
/*--------------- ▼ global-nav ▼ ---------------*/
.global-nav-btn {
  z-index: 1001;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: relative;
  /*activeクラスが付与されると線が回転して×に*/
}
.global-nav-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1px;
  background: #151515;
  width: 100%;
  transform-origin: center;
  /*----------- ▽ 調整箇所 ▽ -----------*/
  /*----------- △ 調整箇所 △ -----------*/
}
.global-nav-btn span:nth-of-type(1) {
  top: 0;
}
.global-nav-btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.global-nav-btn span:nth-of-type(3) {
  bottom: 0;
}
.global-nav-btn.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.global-nav-btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.global-nav-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.global-nav {
  position: fixed;
  visibility: hidden;
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
  transition: all 0.6s;
  text-align: center;
  background-color: #fff;
  max-width: 300px;
  padding-bottom: 30px;
  /*----- slideIn 右から -----*/
}
.global-nav.slideInRight {
  top: 97px;
  right: -100%;
  width: 100%;
  max-height: 80vh;
}
.global-nav.slideInRight.active {
  visibility: visible;
  right: 0;
}
.global-nav__list {
  margin-top: 12px;
  margin-bottom: 10px;
}
.global-nav__item {
  border-bottom: 1px solid #151515;
}
.global-nav__item.toggle > a {
  position: relative;
}
.global-nav__item.toggle > a::after {
  border-top: none;
  border-right: none;
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background-color: #006eba;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.global-nav__item.toggle > a::before {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background-color: #006eba;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translate(50%, -50%);
  opacity: 1;
  transition: all 0.3s;
}
.global-nav__item.toggle > a.current::before {
  opacity: 0;
  top: 45%;
  transition: all 0.3s;
}
.global-nav__link {
  width: 100%;
  padding: 1em 40px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.global-nav__link span {
  padding-left: 27px;
  position: relative;
}
.global-nav__link span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.25px 0 2.25px 5.19px;
  border-color: transparent transparent transparent #151515;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  display: block;
}
.global-nav__link:hover {
  color: #006eba;
  color: #006eba;
}
.global-nav__link:hover span::after {
  transform: translate(100%, -50%);
  border-color: transparent transparent transparent #006eba;
}
.global-nav__tel {
  font-size: 23px;
  white-space: nowrap;
  line-height: 1;
}
.global-nav__address {
  font-size: 15px;
  letter-spacing: 0.14em;
  display: flex;
  text-align: left;
  padding: 0 5px;
}
.global-nav__time {
  font-size: 15px;
}
.global-nav__contents {
  display: flex;
  justify-content: space-between;
}
.global-nav__info {
  padding: 0 38px;
}
.global-nav__info-item {
  padding: 20px 0;
}
.global-nav__info-item:not(:last-child) {
  border-bottom: 1px solid #d7d7d7;
}

.dropdown-menu {
  top: 100%;
  width: 100%;
}
.dropdown-menu__item:not(:last-child) > a {
  border-bottom: 1px solid #151515;
}
.dropdown-menu__item > a {
  width: 90%;
  font-size: 14px;
  padding: 1em;
  position: relative;
  margin-left: auto;
  text-align: left;
  transition: all 0.3s;
}
.dropdown-menu__item > a:hover {
  color: #006eba;
}
.dropdown-menu__item > a:hover::after {
  right: 0.5em;
  color: #006eba;
}
.dropdown-menu__item > a::after {
  content: "";
  width: 0.25em;
  height: 0.25em;
  display: block;
  border-top: 2px solid #006eba;
  border-right: 2px solid #006eba;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: all 0.3s;
}

/*--------------- ▲ global-nav ▲ ---------------*/
/*----------- footerここから -----------*/
.page-top {
  width: 70px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 101;
}
.page-top img {
  width: 100%;
}

.footer {
  background-color: #fff;
  padding: 85px 0 25px;
}
.footer-inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-nav {
  margin-bottom: 20px;
}
.footer-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-nav__item {
  line-height: 1;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.footer-nav__item a {
  position: relative;
  padding-left: 15px;
}
.footer-nav__item a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.25px 0 2.25px 5.19px;
  border-color: transparent transparent transparent #151515;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  display: block;
}
.footer-nav__item a:hover {
  color: #006eba;
  color: #006eba;
}
.footer-nav__item a:hover::after {
  transform: translate(100%, -50%);
  border-color: transparent transparent transparent #006eba;
}
.footer-nav__item:not(:last-child) {
  margin-right: 30px;
}
.footer__contents {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.footer .sns-icon:not(:last-child) {
  margin-right: 20px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer__address {
  font-size: 15px;
  margin-bottom: 17px;
}
.footer__time {
  margin-bottom: 20px;
}
.footer__tel {
  font-size: 23px;
}
.footer .btn-entry {
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #44a97f;
  width: 240px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 1.357em 1em;
  margin-bottom: 35px;
}
.footer-logo {
  width: 211px;
  margin-bottom: 50px;
}
.footer-logo img {
  width: 100%;
}
.footer .copy-right {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: right;
  color: #979797;
  line-height: 1;
}

/*----------- footerここまで -----------*/
/*----- mobile-nav 非表示 -----*/
.mobile-nav {
  display: none;
}

/*----------- ▽ btn class ▽ -----------*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background-color: #006eba;
  padding: 1em;
  position: relative;
}
.btn-green {
  background-color: #099a3e;
  color: #fff;
}
.btn-inborder {
  position: relative;
  z-index: 1;
  padding: 1.3125em 1em;
}
.btn-inborder::after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  background: url(../img/btn_triangle01.png) no-repeat top left/auto, url(../img/btn_triangle02.png) no-repeat top right/auto, url(../img/btn_triangle03.png) no-repeat bottom left/auto, url(../img/btn_triangle04.png) no-repeat bottom right/auto;
}
.btn-more {
  letter-spacing: 0.2em;
}
.btn-medium {
  max-width: 240px;
  width: 100%;
}
.btn-reguler {
  max-width: 200px;
  width: 100%;
}
.btn-center {
  margin: 0 auto;
}
.btn-right {
  margin-left: auto;
}

/*----------- △ btn class △ -----------*/
/*------------ pagenationここから --------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.pagenation li {
  width: 3em;
  height: 3em;
  display: block;
  font-size: 1em;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  color: #151515;
  transition: all 0.3s;
}
.pagenation li:hover {
  background-color: #006eba;
  color: #fff;
}
.pagenation .current {
  background-color: #006eba;
  color: #fff;
  font-weight: 600;
}

/*------------ pagenationここまで --------------*/
/*---------- 以下breadclumb ----------*/
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.11em;
  padding: 11px 0;
  font-weight: 400;
  overflow: hidden;
}
.bread-clumb li {
  display: flex;
  align-items: center;
  color: #006eba;
}
.bread-clumb li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
  color: #000;
}
.bread-clumb li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
  color: #000;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li a:hover {
  color: #006eba;
}

/*------------ prevnextここから --------------*/
.prev-next__area {
  display: flex;
  max-width: 796px;
  position: relative;
  font-weight: 700;
  line-height: 1.2;
  margin: 60px auto 0;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
}
.prev-next__link.prev::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #006eba;
  border-left: 2px solid #006eba;
  transform: rotate(-45deg);
}
.prev-next__link.next {
  margin-left: auto;
}
.prev-next__link.next::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #006eba;
  border-right: 2px solid #006eba;
  transform: rotate(45deg);
}
.prev-next__link.back {
  padding: 0 12px;
  border-left: 1px solid #006eba;
  border-right: 1px solid #006eba;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}
.prev-next__link.prev::before, .prev-next__link.prev::after, .prev-next__link.next::before, .prev-next__link.next::after, .prev-next__link.back::before, .prev-next__link.back::after {
  transition: all 0.3s;
}
.prev-next__link.prev:hover, .prev-next__link.next:hover, .prev-next__link.back:hover {
  color: #006eba;
}
.prev-next__link.prev:hover::before, .prev-next__link.prev:hover::after, .prev-next__link.next:hover::before, .prev-next__link.next:hover::after, .prev-next__link.back:hover::before, .prev-next__link.back:hover::after {
  border-color: #006eba;
}

/*------------ prevnextここまで --------------*//*# sourceMappingURL=common.css.map */