<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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.08em;
  font-weight: 500;
  color: #232323;
  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;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/*----- textクラス -----*/
/*
概要:
テキストの色、配置の変更
*/
.text-center {
  text-align: center;
}

.text-main {
  color: #0ac8ff;
}

.text-sub {
  color: #736253;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #232323;
}

.text-orange {
  color: #ffa800;
}

.text-green {
  color: #00b900;
}

.bg-main {
  background-color: #0ac8ff;
}

.bg-white {
  background-color: #fff;
}

.bg-orange {
  background-color: #fece4e;
}

.bg-parttern01 {
  background: url(../img/pattern_bg.jpg) repeat center/auto;
}

.text-marker {
  position: relative;
  z-index: 1;
}
.text-marker::after {
  height: 0.4em;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  background-color: rgba(99, 34, 150, 0.1);
  z-index: -1;
}

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

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

/*----- telクラス -----*/
/*
概要:
基本的なtelのスタイル,iconやcolor,sizeなど
詳細な余白等は別指定
*/
.tel {
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.tel-main {
  padding-left: 1.6em;
  position: relative;
  display: inline-block;
}
.tel-main::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icon_tel_main.png") no-repeat center/contain;
}

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

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

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

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

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

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

.title01 {
  display: flex;
  flex-direction: column;
}
.title01.left {
  align-items: flex-start;
}
.title01.right {
  align-items: flex-end;
}
.title01.center {
  align-items: center;
  text-align: center;
}
.title01__sub {
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  margin-top: 10px;
}
.title01__sub.deco {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title01__sub.deco::before, .title01__sub.deco::after {
  content: "";
  width: 1.35em;
  height: 0.45em;
  background: url(../img/sub_ttl_deco.png) no-repeat center/contain;
}
.title01__sub.deco::before {
  margin-right: 8px;
}
.title01__sub.deco::after {
  margin-left: 8px;
}
.title01__main {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-block;
}
.title01__main.deco::after {
  content: "";
  width: 57px;
  height: 9px;
  background: url(../img/main_ttl_deco.png) no-repeat center/contain;
  margin: 10px auto 0;
  display: block;
}

.title-deco {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 23px;
}
.title-deco span {
  padding: 0 1em;
  position: relative;
}
.title-deco span::after, .title-deco span::before {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
}
.title-deco span::before {
  top: 0;
  left: 0;
  background: url(../img/ttl_deco_left.png) no-repeat top left/0.6em auto;
}
.title-deco span::after {
  bottom: 0;
  right: 0;
  background: url(../img/ttl_deco_right.png) no-repeat bottom right/0.6em auto;
}

.title-deco02 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.title-deco02 span {
  padding-left: 25px;
  position: relative;
  display: block;
}
.title-deco02 span::after, .title-deco02 span::before {
  content: "";
  width: 5px;
  height: 0.5em;
  position: absolute;
}
.title-deco02 span::before {
  top: 50%;
  transform: translateY(-100%);
  left: 0;
  background-color: #fece4e;
}
.title-deco02 span::after {
  bottom: 50%;
  left: 0;
  transform: translateY(100%);
  background-color: #5edbff;
}

.common-content {
  line-height: 1.875;
  letter-spacing: 0.08em;
}
.common-content p::before, .common-content p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.common-content p::before {
  margin-top: calc((1 - 1.875) * 0.5em);
}
.common-content p::after {
  margin-bottom: calc((1 - 1.875) * 0.5em);
}
.common-content p:not(:last-child) {
  margin-bottom: 2.375em;
}

.mb-mini {
  margin-bottom: 10px;
}

.mb-small {
  margin-bottom: 20px;
}

.mb-normal {
  margin-bottom: 30px;
}

.mb-regular {
  margin-bottom: 40px;
}

.mb-medium {
  margin-bottom: 50px;
}

.mb-large {
  margin-bottom: 60px;
}

.mb-larger {
  margin-bottom: 70px;
}

.mb-big {
  margin-bottom: 80px;
}

/*----- 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 {
  background-color: #fff;
  width: 100%;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
  min-width: 1280px;
  height: 100px;
  padding-left: 40px;
}
.header-logo {
  width: 341px;
}
.header-logo img {
  width: 100%;
}
.header-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 465px;
}
.header-right {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.header__tel {
  margin-right: 16px;
  font-size: 25px;
}
.header__address {
  margin-bottom: 11px;
}
.header__time {
  letter-spacing: 0.1em;
}
.header__time span {
  line-height: 1.875;
  padding: 0 10px 0;
  display: inline-block;
  border-radius: 3em;
  margin-right: 11px;
  font-weight: 700;
}
.header .btn-contact {
  letter-spacing: 0.1em;
  width: 120px;
  height: 100px;
  box-sizing: border-box;
  background-color: #ffc322;
  border: 2px solid #ffa800;
  position: relative;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
}
.header .btn-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 16px 16px;
  display: block;
  z-index: -1;
  border-color: transparent transparent #ffa800 transparent;
}
.header .btn-contact::before {
  display: none;
}
.header .btn-contact span {
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
  display: block;
}
.header .btn-contact img {
  width: 50px;
}

.sns-icon {
  width: 29px;
}

/*----------- headerここまで -----------*/
/*----------- ▽ nav-menu ▽ -----------*/
.nav-menu {
  width: 100%;
  border-top: 5px solid #5edbff;
  background-size: auto auto;
  background-color: rgb(37, 206, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 12px, rgb(10, 200, 255) 12px, rgb(10, 200, 255) 24px);
}
.nav-menu__list {
  display: flex;
  justify-content: flex-start;
}
.nav-menu__item {
  width: 20%;
  text-align: center;
  position: relative;
}
.nav-menu__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.nav-menu__link {
  line-height: 1;
  text-align: center;
  padding: 19px 1em;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
}
.nav-menu__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0.65em;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: all 0.3s;
  z-index: 1;
}
.nav-menu__link:hover {
  opacity: 1;
}
.nav-menu__link:hover::after {
  width: 1.5em;
}
.nav-menu__link.current::after {
  width: 1.5em;
}

/*----------- △ nav-menu △ -----------*/
/*----------- ▽ footer ▽ -----------*/
.footer-bg02 {
  position: relative;
  padding-bottom: 175px;
}
.footer-bg02::after {
  content: "";
  width: 100%;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/footer_bg_top02.png) no-repeat bottom center/100% 100%;
}

.footer-bg01 {
  position: relative;
}
.footer-bg01::after {
  content: "";
  width: 100%;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/footer_bg_top01.png) no-repeat bottom center/100% 100%;
}

.footer {
  background-color: #0ac8ff;
  color: #fff;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  padding: 24px 0;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  width: 341px;
  margin: 0 auto 30px;
}
.footer-logo img {
  width: 100%;
}
.footer-left {
  line-height: 1.875;
}
.footer__tel {
  line-height: 1.875;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__address br {
  display: none;
}
.footer-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer .btn {
  width: 270px;
  padding: 0.8em;
  margin-top: 13px;
}
.footer-nav {
  width: 520px;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 1em;
}
.footer-nav__link {
  padding-left: 1.1em;
  position: relative;
  line-height: 1;
  letter-spacing: 0.08em;
}
.footer-nav__link:hover::after {
  transform: translate(10%, -50%);
}
.footer-nav__link::after {
  content: "&gt;";
  width: 1em;
  height: 1em;
  font-size: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer .copy-right {
  font-size: 14px;
  display: block;
  text-align: right;
  line-height: 1.2;
  margin-top: 45px;
}

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

/*----------- ▽ btn class ▽ -----------*/
/*
概要:
ボタンのスタイル
色やアイコン、サイズでクラス分けしてあり、組み合わせて使う
マークアップ例:
矢印付き、角丸、Mサイズのボタン
&lt;a class="btn btn-primary btn-round btn-arrow btn-medium"&gt;
*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.btn-main {
  background-color: #0ac8ff;
  color: #fff;
  border: 3px solid #0ac8ff;
  box-sizing: border-box;
}
.btn-main:hover {
  background-color: #0ac8ff;
  opacity: 1;
}
.btn-primary {
  background-color: #ffc322;
  color: #fff;
  border: 3px solid #ffa800;
  box-sizing: border-box;
}
.btn-primary:hover {
  opacity: 1;
  background-color: #ffa800;
}
.btn-green {
  background-color: #52d829;
  color: #fff;
  border: 3px solid #00b900;
  box-sizing: border-box;
}
.btn-green:hover {
  opacity: 1;
  background-color: #00b900;
}
.btn-white {
  background-color: #fff;
  color: #232323;
}
.btn-center {
  margin: 0 auto;
}
.btn-medium {
  max-width: 240px;
  width: 100%;
  padding: 0.6em;
}
.btn-round {
  border-radius: 5em;
}
.btn-arrow {
  position: relative;
}
.btn-arrow::after {
  content: "";
  width: 9px;
  height: 14px;
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/btn_arrow.png) no-repeat center/contain;
  transition: all 0.3s;
}
.btn-arrow:hover {
  opacity: 1;
}
.btn-arrow:hover::after {
  right: 15px;
}
.btn-arrow-orange {
  position: relative;
}
.btn-arrow-orange::after {
  content: "";
  width: 9px;
  height: 14px;
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/btn_arrow_orange.png) no-repeat center/contain;
  transition: all 0.3s;
}
.btn-arrow-orange:hover {
  opacity: 1;
}
.btn-arrow-orange:hover::after {
  right: 15px;
}
.btn-contact {
  position: relative;
}
.btn-contact::before {
  content: "";
  width: 1.25em;
  height: 1em;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_mail_orange.png) no-repeat center/contain;
  z-index: 1;
}

/*----------- △ btn class △ -----------*/
/*------------ pagenationここから --------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.pagenation li {
  width: 3em;
  border-radius: 5px;
  height: 3em;
  padding: 0 0 0.1em 0.1em;
  display: block;
  font-size: 20px;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  color: #ffa800;
  border: 1px solid #ffa800;
}
.pagenation .current {
  background-color: #ffa800;
  color: #fff;
  font-weight: 600;
}

/*------------ pagenationここまで --------------*/
/*---------- 以下breadclumb ----------*/
.bread-clumb {
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 13px;
  line-height: 1.2;
  padding: 14px 0 12px;
  overflow: hidden;
}
.bread-clumb li {
  display: flex;
  align-items: center;
}
.bread-clumb li:not(:last-child)::after {
  content: "&gt;";
  margin: 0 0.5em;
}
.bread-clumb li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li a:hover {
  color: #0ac8ff;
  opacity: 1;
}

/*------------ 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 #0ac8ff;
  border-left: 2px solid #0ac8ff;
  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 #0ac8ff;
  border-right: 2px solid #0ac8ff;
  transform: rotate(45deg);
}
.prev-next__link.back {
  padding: 0 12px;
  border-left: 1px solid #0ac8ff;
  border-right: 1px solid #0ac8ff;
  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: #e1934e;
}
.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: #e1934e;
}

/*------------ prevnextここまで --------------*//*# sourceMappingURL=common.css.map */</pre></body></html>