@charset "UTF-8";
/*--------------- ▽ 以下共通スタイル ▽ ---------------*/
.sp-none {
  display: none !important;
}

.inbox {
  width: 90%;
  margin: 0 auto;
  max-width: 550px;
}

.outbox {
  width: 90%;
  margin: 0 auto;
}

.maxbox {
  width: 100%;
  margin: 0 auto;
}

/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
/*フォント*/
/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
  font-size: 62.5%;
}

body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3a3a3a;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  /*禁則処理*/
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#contents {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.over-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.over-text3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.over-text2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.over-text3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*--------------- ▽ flex ▽ ---------------*/
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
}

.flx-base {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}

/*折り返し*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順*/
.flx-rr {
  flex-direction: row-reverse;
}

/*
水平方向の揃え
-------------------------------*/
/*初期値*/
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）*/
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）*/
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え*/
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え*/
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*
垂直方向の揃え
-------------------------------*/
/*水平揃え　上揃え*/
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え*/
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え*/
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え*/
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え*/
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方-
-------------------------------*/
/*初期値*/
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え*/
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え*/
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え*/
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、
残りの要素は均等に間隔をあけて配置*/
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置*/
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/*--------------- △ flex △ ---------------*/
/*--------------- ▽ 更新画像 ▽ ---------------*/
/*更新イメージの調整*/
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/*--------------- △ 更新画像 △ ---------------*/
/*--------------- ▽ 調整パーツ ▽ ---------------*/
/*
テキスト配置
--------------------------*/
.text-center {
  text-align: center;
  margin: 0 auto;
}

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

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

/*
フォントウェイト
--------------------------*/
.font-weight300 {
  font-weight: 300;
}

.font-weight400 {
  font-weight: 400;
}

.font-weight500 {
  font-weight: 500;
}

.font-weight600 {
  font-weight: 600;
}

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

.font-weight800 {
  font-weight: 800;
}

.font-weight900 {
  font-weight: 900;
}

/*
google map 
--------------------------*/
.googlemap {
  width: 90%;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 0 auto;
}

.googlemap iframe {
  width:100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
}

/*

--------------------------*/
/*--------------- △ 調整パーツ △ ---------------*/
/*--------------- ▽ 共通テキスト/タイトル ▽ ---------------*/
.com-text {
  line-height: 1.9;
}
.com-text p {
  margin-bottom: 5%;
}
.com-text p:last-child {
  margin-bottom: 0;
}

/*------------------------------
タイトルベース
-------------------------------*/
.ttl-base {
  position: relative;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", serif;
}

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
  text-align: center;
  color: #3a3a3a;
  margin: 0 auto 10%;
  font-size: 2.7rem;
}
.ttl-style01 .ttl-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.ttl-style01 .ttl-deco::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 20px;
  height: 20px;
  bottom: 0;
  margin: auto;
  left: -50px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.ttl-style01 .ttl-deco::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 20px;
  height: 20px;
  bottom: 0;
  margin: auto;
  right: -50px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: scale(-1, 1);
}

.ttl-style02 {
  text-align: left;
  border-left: 4px solid #2bbadf;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  font-size: 1.9rem;
  line-height: 1.5;
}

.ttl-style03 {
  font-size: 2rem;
  border-bottom: 1px solid #ffb1b7;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.ttl-style04 {
  text-align: center;
  margin: 0 auto 10%;
}
.ttl-style04 .ttl-wrap {
  position: relative;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.ttl-style04 .ttl-deco::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 20px;
  height: 25px;
  bottom: 0;
  left: -30px;
  margin: auto;
  top: 0;
  background-size: contain;
}
.ttl-style04 .ttl-deco::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 20px;
  height: 25px;
  bottom: 0;
  right: -30px;
  margin: auto;
  top: 0;
  background-size: contain;
  transform: scale(-1, 1);
}
.ttl-style04 .text-ja {
  color: #00a2cc;
  display: block;
  font-size: 2.7rem;
  margin: 0 auto 5%;
}
.ttl-style04 .text-en {
  color: #00a2cc;
  display: block;
  font-size: 1.2rem;
  background: #f6f284;
  width: fit-content;
  padding: 0 10px 3px;
  margin: 0 auto;
  border-radius: 25px;
  box-sizing: border-box;
  font-weight: 600;
}

.ttl-style05 {
  font-size: 2.2rem;
  padding-bottom: 4%;
  border-width: 1px;
  border-bottom-style: solid;
  margin-bottom: 20px;
}

.ttl-style06 {
  font-size: 2rem;
  display: block;
  padding: 10px 25px;
  border-radius: 30px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/*--------------------------
テキストスタイル
--------------------------*/
.fastletter-col01::first-letter {
  color: #2bbadf;
}

.text-style01 {
  background: linear-gradient(transparent 0, #f6f284 0%);
  display: inline;
}

/*
リボンみぎ
-------------*/
.text-style02 {
  position: relative;
  display: block;
  padding: 5px 15px;
  box-sizing: border-box;
}
.text-style02::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 100%;
  bottom: 0;
  margin: auto;
  right: -19px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(100% 0, 74% 50%, 100% 100%, 0 100%, 0 0);
}

.text-style02.style-col01::before {
  background: #ffb1b7;
}

.text-style02.style-col02::before {
  background: #ffb974;
}

.text-style03 {
  background: linear-gradient(transparent 60%, #f6f284 0%);
  display: inline;
  line-height: 1.2;
}

.text-style04 {
  position: relative;
  background: #2bbadf;
  padding: 5px 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
.text-style04::before {
  position: absolute;
  content: "";
  background: #2bbadf;
  width: 11px;
  height: 10px;
  bottom: -9px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.text-style05 {
  background: linear-gradient(transparent 70%, #eafbff 0%);
  display: inline;
}

/*-------------------------
テキストカラー
--------------------------*/
.color-wh {
  color: #fff;
}

.color-main01 {
  color: #2bbadf;
}

.color-main01-dark {
  color: #00a2cc;
}

.color-main01-light {
  color: #eafbff;
}

.color-sub01 {
  color: #f6f284;
}

.color-sub02 {
  color: #ffb1b7;
}

.color-sub03 {
  color: #ffb974;
}

/*--------------- △ 共通テキスト/タイトル △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
/*共通背景 単色・パターン
------------------*/
.bg-col-main01 {
  background: #2bbadf;
}

.bg-col-main01-dark {
  background: #00a2cc;
}

.bg-col-main01-light {
  background: #eafbff;
}

.bg-col-sub01 {
  background: #f6f284;
}

.bg-col-sub02 {
  background: #ffb1b7;
}

.bg-col-sub03 {
  background: #ffb974;
}

.bg-col-others01 {
  background: #ffb1b7;
}

.bg-col-wh {
  background: #fff;
}

.bg-pat01 {
  background: url(../img/common/pat-blue-stripe.png) repeat;
}

.bg-pat02 {
  background: url(../img/common/pat-yellow-stripe.png) repeat;
}

.bg-pat03 {
  background: url(../img/common/pat-water-bg.png) repeat;
}

/*-------------
背景疑似要素　装飾
----------------*/
.bg-deco-flag-l {
  position: relative;
}
.bg-deco-flag-l::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco-flag-tl.png) no-repeat top left;
  width: 120px;
  height: 50px;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.bg-deco-flag-r {
  position: relative;
}
.bg-deco-flag-r::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco-flag-tr.png) no-repeat top right;
  width: 120px;
  height: 50px;
  right: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▲ bg ▲ ---------------*/
/*--------------- ▼ リンク ▼ ---------------*/
/*--------------------
リンクスタイル
----------------------*/
.link-style01 {
  color: #2bbadf !important;
  border-bottom: 1px solid;
}

/*--------------------
ボタンスタイル
----------------------*/
.btn-style01 {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 350px;
  width: 70%;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.btn-style01 .icon-arw {
  position: relative;
  display: block;
}
.btn-style01 .icon-arw::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 1px;
  border-left: inherit;
  border-bottom: inherit;
  bottom: 0;
  margin: auto;
  right: 8px;
  top: 0;
  background-size: contain;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

/*--------------------
バナーホバータイル
----------------------*/
.bnr-style01 {
  position: relative;
  width: min(80vw, 300px);
  padding: 5%;
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto 7%;
  bottom: 0;
}
.bnr-style01:last-child {
  margin: 0 auto;
}
.bnr-style01 .wrap {
  display: block;
  width: 100%;
}
.bnr-style01 .more-btn {
  max-width: 140px;
  padding: 2% 3%;
  box-sizing: border-box;
  margin: 0 auto;
}
.bnr-style01 .illust {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 70px;
}
.bnr-style01 .ttl {
  text-align: center;
  margin: 0 auto;
}
.bnr-style01 .ttl .text-en {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: 600;
}
.bnr-style01 .ttl .text-en::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: #fff;
  transform: rotate(30deg);
  margin: auto;
  right: 0;
  bottom: 8px;
  background-size: contain;
  transition: all 0.3s ease;
}
.bnr-style01 .ttl .text-en::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: #fff;
  transform: rotate(-30deg);
  margin: auto;
  left: 0;
  bottom: 8px;
  background-size: contain;
  transition: all 0.3s ease;
}
.bnr-style01 .ttl .text-ja {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 12px;
}

.bnr-style01.style-col01 {
  background: url(../img/common/deco04.png) no-repeat center center/contain;
}

.bnr-style01.style-col02 {
  background: url(../img/common/deco05.png) no-repeat center center/contain;
}

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
  .hover-op:hover,
  .link-style01:hover {
    opacity: 0.7;
  }
  .btn-style01:hover {
    opacity: 0.7;
  }
  .btn-style01:hover .icon-arw::before {
    right: 0;
  }
  .bnr-style01:hover {
    bottom: 8px;
  }
}
/*--------------- ▲ リンク　▲ ---------------*/
/*--------------- ▼ info ▼ ---------------*/
/*--------------------
TEL
----------------------*/
.tel-style01 {
  position: relative;
  display: block;
  font-size: 2rem;
  color: #3a3a3a;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.tel-style01 .tel-wrap {
  display: block;
  margin-top: -8px;
  width: fit-content;
}
.tel-style01 .num {
  position: relative;
  display: block;
  width: fit-content;
  padding-left: 30px;
  margin: 0 auto 1%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 2.8rem;
}
.tel-style01 .num::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.png) no-repeat;
  width: 24px;
  height: 24px;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
}

/*リプレイス*/
.tel-text-bk{
  position: relative;
  display: block;
  padding-bottom: 14px;
}
.tel-text-bk::before {
  position: absolute;
  content: "";
  background: url(../img/common/tel-text-bk.svg) no-repeat;
  width: 224px;
  height: 13px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
}

.tel-text-wh::before {
  position: absolute;
  content: "";
  background: url(../img/common/tel-text-wh.svg) no-repeat;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
}

.com-info-tel {
  display: block;
  width: fit-content;
}
.com-info-tel .info-time {
  color: #fff;
  width: fit-content;
  display: block;
  font-size: 1.8rem;
  margin: 0 auto 15px;
}
.com-info-tel .tel .num {
  font-size: 3.6rem;
}

/*-----------------
営業時間
-------------------*/
.com-info-time {
  font-size: 1.2rem;
  width: fit-content;
}
.com-info-time p {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.com-info-time .ttl {
  position: relative;
  padding: 5px 10px;
  box-sizing: border-box;
  line-height: 1;
  margin-right: 10px;
  width: fit-content;
  border-radius: 5px;
  font-weight: 500;
  min-width: 80px;
}

/*--------------------
SNS
----------------------*/
.com-sns-icon {
  gap: 25px;
}
.com-sns-icon .link:hover {
  opacity: 0.7;
}

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list ▼ ---------------*/
.list-style01 .item {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  border-bottom: 1px dashed #ffb974;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.list-style01 .item:last-child {
  margin: 0;
}
.list-style01 .item .icon-check {
  position: relative;
  display: block;
  padding-left: 40px;
}
.list-style01 .item .icon-check::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-check.png) no-repeat;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▲ list ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
/*
ストライプbox
-----------------*/
.box-style01 {
  position: relative;
  display: block;
  border-radius: 20px;
  background: url(../img/common/pat-yellow-stripe.png) repeat;
  border: 4px solid #fff;
  box-shadow: 0 0 0 6px #fff7d3;
}

/*--------------- ▲ box-style ▲ ---------------*/
/*--------------- ▼ img ▼ ---------------*/
/*
装飾ありの画像共通スタイル
*/
/*
2重ボーダー
----------------*/
.img-style01 {
  position: relative;
  display: block;
  width: fit-content;
  border-width: 3px;
  border-style: solid;
  border-radius: 15px;
  z-index: 1;
}
.img-style01 .img {
  border-radius: 15px;
}

.img-style01.style-col01 {
  border-color: #fff;
  box-shadow: 0 0 0 5px #ffb1b7;
}

.img-style01.style-col02 {
  border-color: #fff;
  box-shadow: 0 0 0 5px #ffb974;
}

/*
正円
--------------*/
.img-style-round {
  border-radius: 100%;
  aspect-ratio: 1/1;
}

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
  position: relative;
  width: 100%;
}
.table-style01 tr, .table-style01 tbody {
  width: 100%;
}
.table-style01 tr:first-child th {
  border-top: 1px solid rgba(43, 187, 223, 0.4);
}
.table-style01 tr:first-child td {
  border-bottom: 1px solid rgba(43, 187, 223, 0.4);
}

.table-style01 th {
  display: block;
  padding: 5% 0 0;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 1.6rem;
  color: #00a2cc;
  font-weight: 600;
}
.table-style01 td {
  background: #fff;
  display: block;
  padding: 5% 0;
  border-bottom: 1px solid rgba(43, 187, 223, 0.4);
  box-sizing: border-box;
  font-size: 1.3rem;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item {
  margin-bottom: 6%;
}
.com-news .news-item:last-child {
  margin-bottom: 0;
}
.com-news .news-item a {
  padding: 15px;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  background: #eafbff;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 4px solid #dbf8ff;
  padding: 10px;
  box-sizing: border-box;
}
.com-news .news-post-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.com-news .news-post-time {
  box-sizing: border-box;
  color: #00a2cc;
  margin-bottom: 3%;
  display: block;
}

.com-news .news-text{
  display: block;
}

.news-tag {
  color: #00a2cc;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 10px;
}
.news-tag .tag {
  padding: 5px 10px;
  box-sizing: border-box;
  background: #f6f284;
  border-radius: 5px;
}

/*--------------- △ com-news △ ---------------*/
/*--------------- ▽ com-contact ▽ ---------------*/
.com-contact {
  background: url(../img/common/contact-bg.jpg) no-repeat center center/cover;
}
.com-contact .inbox {
  position: relative;
}
.com-contact .inbox::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust08.png) no-repeat;
  width: 80px;
  height: 110px;
  bottom: -140px;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-contact .main-text {
  text-align: center;
  margin: 0 auto 30px;
}
.com-contact .main-text .em01 {
  font-size: 1.8rem;
}
.com-contact .com-info-tel {
  margin: 0 auto;
}

/*--------------- △ com-contact △ ---------------*/
/*--------------- ▽ ページネーション ▽ ---------------*/
ul.pagenation,
ul.pagenation li,
ul.pagenation li a {
  line-height: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

ul.pagenation {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}
ul.pagenation li a {
  width: 45px;
  height: 45px;
  font-size: 17px;
  color: #38322d;
}
ul.pagenation li.current {
  width: 45px;
  height: 45px;
  font-size: 20px;
  line-height: 1;
  box-sizing: border-box;
  color: #fff;
  background: #2bbadf;
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.page-btn {
  position: relative;
  margin-top: 30px;
  font-size: 14px;
}
.page-btn a {
  position: relative;
  font-weight: bold;
  font-size: 14px;
}
.page-btn .right,
.page-btn .left {
  position: absolute;
}
.page-btn .right a,
.page-btn .left a {
  font-size: 14px;
}
.page-btn .right a:before,
.page-btn .left a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -5px;
  box-sizing: border-box;
}
.page-btn .left {
  left: 0;
}
.page-btn .left a {
  position: relative;
  padding-left: 20px;
}
.page-btn .left a:before {
  left: 0;
  border: solid 5px transparent;
  border-right: solid #2bbadf 5px;
}
.page-btn .right {
  right: 0;
}
.page-btn .right a {
  position: relative;
  padding-right: 20px;
}
.page-btn .right a:before {
  right: 0;
  border: solid 5px transparent;
  border-left: solid #2bbadf 5px;
}

/*--------------- △ ページボタン △ ---------------*/
/*--------------- ▽ プライバシーポリシー ▽ ---------------*/
.privacy .privacy-box {
  margin-bottom: 50px;
}
.privacy .privacy-box:last-child {
  margin-bottom: 0;
}

/*--------------- △ プライバシーポリシー △ ---------------*/
/*--------------- ▽ サイトマップ ▽ ---------------*/
.site-map-list {
  max-width: 600px;
  margin: 0 auto;
}

.site-map-item {
  border-bottom: 1px solid #c0c0c0;
}

.site-map-link {
  box-sizing: border-box;
  display: block;
  padding: 15px 0 15px 35px;
  position: relative;
  font-weight: bold;
  transition: 0.3s;
  color: #3a3a3a;
}
.site-map-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -8px;
  border: solid 8px transparent;
  transition: 0.3s;
  border-left: 8px solid #2bbadf;
}
.site-map-link:hover {
  color: #2bbadf;
}
.site-map-link:hover:before {
  left: 10px;
}

/*--------------- △ サイトマップ △ ---------------*/
/*--------------- ▽ お問い合わせ ▽ ---------------*/
/*--------------------
table
---------------------*/
.contact-form-table {
  margin: 0 0 50px;
  width: 100%;
}

.contact-form-table th {
  padding: 10px;
  box-sizing: border-box;
  background: #2bbadf;
  color: #fff;
  border-bottom: 1px solid #faf8f6;
}

.contact-form-table td {
  padding: 10px;
  box-sizing: border-box;
  background: #faf8f6;
  border-bottom: 1px solid #2bbadf;
}

.contact-form-table,
.contact-form-table tbody,
.contact-form-table tr,
.contact-form-table th,
.contact-form-table td {
  width: auto;
  display: block;
}

/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
/*--------------- △ 404エラー △ ---------------*/