@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
  --col-main: #46c8fc;
  --col-main-rgb: 70,200,252;
  --col-main-dark: #49b7e4;
  --col-main-dark-rbg: 73,183,228;
  --col-main-light: #86dafd;
  --col-main-light-rbg: 134,218,253;
  --col-main-hilight:#e9f6fe;
  --col-sub: #0ae965;
  --col-sub-rgb: 10,233,101;
  --col-sub02: #fad900;
  --col-sub03: #ffa0c5;
  --col-sub04: #a6df38;
  --col-text: #222222;
  --col-text-rgb: 34,34,34;
  --col-wh: #fff;
  --col-wh-rgb: 255,255,255;
  --col-base: #fff;
  --col-base-rgb: 255,255,255;
}

/*フォント*/
:root {
  --font-text: "Noto Sans JP",sans-serif;
  --font-ttl-ja: "M PLUS 1", sans-serif;
  --font-ttl-en: "Rammetto One", sans-serif;
}

:root {
  --font-size-base: 1.7rem;
  --font-size-base-sp: 1.5rem;
}

/*
  --font-notosans: "Noto Sans JP",sans-serif;
  --font-serif: "Noto Serif JP",serif;
  --font-meirio: "メイリオ",Meiryo,sans-serif;
  --font-yu_go: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic","Noto Sans JP",sans-serif;
*/
:root {
  --round-base: 20px;
  --round-small: 10px;
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ 以下共通スタイル ▽ ---------------*/
.sp-none {
  display: none !important;
}

.inbox {
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
  z-index: 1;
  position: relative;
}

.outbox {
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

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

/*--------------- ▽ 変数設定 ▽ ---------------*/
/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}
html:has(body.chart-body) {
	scroll-padding-top: 500px;
}
body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-size: var(--font-size-base-sp);
  line-height: 1.5;
  color: var(--col-text);
  letter-spacing: 0.05em;
  font-family: var(--font-text);
  /*禁則処理*/
  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%;
  display: block;

}

.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-all-center {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

/*折り返し*/
.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;
  background: url(../img/common/noimg.jpg) no-repeat center center/cover;
}
.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  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%);
}

.com-img-contain {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.com-img-contain img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}

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

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

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

/*
order配置
--------------------------*/
.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

/*
フォントウェイト
--------------------------*/
.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: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  border: none;
}

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

/*

--------------------------*/
/*

--------------------------*/
/*

--------------------------*/
/*--------------- △ 調整パーツ △ ---------------*/
/*--------------- ▽ 共通テキスト ▽ ---------------*/
.com-text {
  line-height: 2;
}
.com-text .mb {
  margin-bottom: 25px;
}

.com-text02 {
  line-height: 1.6;
}
.com-text02 .mb {
  margin-bottom: 25px;
}

.pc-only-center br,
.sp-none-br br {
  display: none;
}

.sb-text {
  line-height: 1.4;
}

/*------------------------------
タイトルベース
-------------------------------*/
.ttl-base {
  position: relative;
  letter-spacing: 0.08em;
  font-family: var(--font-ttl-ja);
}

.ttl-ja {
  font-family: var(--font-ttl-ja);
}

.ttl-en {
  font-family: var(--font-ttl-en);
}

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 800;
}

.ttl-style02 {
  text-align: left;
  border-left: 4px solid var(--col-main);
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  font-size: 1.9rem;
  line-height: 1.5;
}

.ttl-style03 {
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.ttl-style03::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 14px;
  height: 21px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.ttl-style03::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 14px;
  height: 21px;
  bottom: 0;
  right: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: scale(-1, 1);
}

.ttl-style04 {
  margin: 0 auto 20px;
}
.ttl-style04 .ttl-sub {
  position: relative;
  display: block;
  background: var(--col-text);
  clip-path: polygon(4% 14%, 100% 0%, 96% 96%, 0% 100%);
  width: fit-content;
  box-sizing: border-box;
  padding: 6% 8%;
  color: var(--col-wh);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.ttl-style04 .ttl-sub .text {
  position: relative;
  display: block;
  transform: rotate(-1deg);
}
.ttl-style04 .ttl-main {
  font-size: 3rem;
  font-weight: 800;
}

.ttl-style05 {
  font-size: 2rem;
  border-bottom: 3px dotted var(--col-text);
  box-sizing: border-box;
  padding: 0 0 15px;
  margin-bottom: 15px;
  font-weight: 800;
}

.ttl-style05.large {
  font-size: 2.4rem;
}

.ttl-style06 {
  border: 5px solid var(--col-text);
  box-sizing: border-box;
  padding: 13px 25px;
  width: fit-content;
}
.ttl-style06 img {
  height: 30px;
}

/*--------------------------
テキストスタイル
--------------------------*/
/*改行OKテキストmarker風*/
.mark-style01 {
  background: linear-gradient(transparent 60%, var(--col-sub02) 0%);
}

/*-------------------------
テキストカラー
--------------------------*/
.color-wh {
  color: var(--col-wh);
}

.color-main {
  color: var(--col-main);
}

.color-sub {
  color: var(--col-sub);
}
.color-sub03{
  color: var(--col-sub03);
}
.first-letter-col01::first-letter {
  color: var(--col-main);
}

/*--------------- △ 共通テキスト △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
/*共通背景 単色・パターン
------------------*/
.bg-col-main {
  background: var(--col-main);
}

.bg-col-sub {
  background: var(--col-sub);
}

.bg-col-sub02 {
  background: var(--col-sub02);
}

.bg-col-sub03 {
  background: var(--col-sub03);
}

.bg-col-wh {
  background: var(--col-wh);
}

.bg-col-base {
  background: var(--col-base);
}

.bg-pat01 {
  background: url(../img/common/pat01.jpg) repeat;
}

.bg-pat02 {
  background: url(../img/common/pat02.jpg) repeat;
}

/*共通疑似要素　装飾
---------------------*/
.bg-wave-after-top01 {
  position: relative;
  z-index: 1;
}
.bg-wave-after-top01::after {
  position: absolute;
  content: "";
  background: url(../img/common/bg-deco-wave01.png) no-repeat center top/100%;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

/*--------------- ▲ bg ▲ ---------------*/
/*--------------- ▼ リンク ▼ ---------------*/
/*--------------------
リンクスタイル
----------------------*/
.link-style01 {
  border-bottom: 1px solid;
  font-weight: 700;
}

.link-style02 {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--col-text);
  box-sizing: border-box;
  padding: 0 20px 0;
  width: fit-content;
}
.link-style02::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-link.png) no-repeat;
  width: 14px;
  height: 14px;
  bottom: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.link-style02:hover {
  opacity: 0.7;
}

.link-style03 {
  border-bottom: 3px solid var(--col-text);
  box-sizing: border-box;
  padding: 0 30px 5px 0;
  position: relative;
  display: block;
  width: fit-content;
  font-weight: 800;
}
.link-style03::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-back.png) no-repeat;
  width: 20px;
  height: 16px;
  bottom: 10px;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------------
ボタンスタイル
----------------------*/
.btn-base {
  position: relative;
  box-sizing: border-box;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.btn-style01 {
  background: url(../img/common/btn-deco.png) no-repeat right center, var(--col-main-light);
  font-weight: 700;
  box-sizing: border-box;
  padding: 10px 20px;
  border: 4px solid;
  border-radius: 6px;
  box-shadow: 5px 5px 0 rgba(var(--col-text-rgb), 0.3);
  font-size: 1.5rem;
  font-weight: 700;
  top: 0;
  left: 0;
  width: 80%;
}
.btn-style01::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  right: 10px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.btn-style01-wrap .catch {
  display: block;
  margin: 0 auto 5px;
}
.btn-style01 .text {
  position: relative;
  display: block;
}
.btn-style01 .text::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  right: -30px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.btn-style02 {
  background: url(../img/common/btn-deco02.png) no-repeat right center, var(--col-sub02);
  font-weight: 700;
  box-sizing: border-box;
  padding: 10px 20px;
  border: 4px solid;
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgba(var(--col-text-rgb), 0.3);
  font-size: 1.5rem;
  font-weight: 700;
  top: 0;
  left: 0;
}
.btn-style02::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  right: 15px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.btn-style02-wrap .catch {
  display: block;
  margin: 0 auto 5px;
}
.btn-style02 .text {
  position: relative;
  display: block;
}
.btn-style02 .text::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 12px;
  height: 15px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  right: -30px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*zoom img
-----------------*/
.hover-zoom .img {
  display: block;
  overflow: hidden;
}
.hover-zoom .zoom {
  display: block;
  width: 100%;
  height: auto;
  transition: all, 0.5s;
}

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
  .hover-op:hover,
  .link-style01:hover {
    opacity: 0.7;
  }
  .com-line-btn:hover,
  .btn-style01:hover,
  .com-mail-btn:hover {
    box-shadow: none;
    top: 8px;
    left: 8px;
  }
  .hover-zoom:hover .zoom {
    transform: scale(1.2, 1.2);
  }
  .hover-overlay:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    background-size: contain;
    transition: all 0.3s ease;
    opacity: 0.3;
  }
}
/*--------------- ▲ リンク　▲ ---------------*/
/*--------------- ▼ info ▼ ---------------*/
/*--------------------
TEL
----------------------*/
.tel-style01 {
  position: relative;
  display: block;
  color: var(--col-text);
  letter-spacing: 0;
  width: fit-content;
}
.tel-style01 .tel-wrap {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.tel-style01 .tel-text01 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: block;
}
.tel-style01 .tel-text02 {
  display: block;
  font-size: 1.2rem;
}
.tel-style01 .tel-text03 {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(var(--col-text-rgb), 0.6);
}
.tel-style01 .tel-text03 .text {
  display: block;
}
.tel-style01 .num {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 2.3rem;
  font-family: var(--font-ttl-en);
  width: fit-content;
}
.tel-style01 .num::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.png) no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
}

.com-line-btn {
  top: 0;
  left: 0;
  background: url(../img/common/line-btn-deco.png) no-repeat right center, var(--col-sub);
  font-weight: 700;
  box-sizing: border-box;
  padding: 10px 20px;
  border: 4px solid;
  border-radius: 6px;
  box-shadow: 5px 5px 0 rgba(var(--col-text-rgb), 0.3);
  font-size: 1.3rem;
}
.com-line-btn-wrap .catch {
  display: block;
  margin: 0 auto 5px;
  font-size: 1.4rem;
}
.com-line-btn .text {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0 0 0 30px;
}
.com-line-btn .text::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-line.svg) no-repeat;
  width: 18px;
  height: 18px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.com-mail-btn {
  top: 0;
  left: 0;
  background: url(../img/common/btn-deco02.png) no-repeat right center, var(--col-sub02);
  font-weight: 700;
  box-sizing: border-box;
  padding: 10px 20px;
  border: 4px solid;
  border-radius: 6px;
  box-shadow: 5px 5px 0 rgba(var(--col-text-rgb), 0.3);
  font-size: 1.5rem;
}
.com-mail-btn-wrap .catch {
  display: block;
  margin: 0 auto 5px;
}
.com-mail-btn .text {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0 0 0 40px;
}
.com-mail-btn .text::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-mail.png) no-repeat;
  width: 20px;
  height: 18px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.com-info .com-info-address {
  margin-bottom: 20px;
}
.com-info .com-info-tel .num {
  font-size: 2.2rem;
  width: 300px;
}
.com-info .com-info-tel .tel-wrap {
  gap: 5px;
}
.com-info .com-info-tel .tel-text02 {
  font-size: 1.4rem;
}
.com-info .com-info .tel-text03 .text {
  display: block;
}

.com-info .com-contact-list .item-contact-tel{
  margin:0 auto 6%;
}
/*--------------------
SNS
----------------------*/
.com-sns-icon-list {
  gap: 25px;
}
.com-sns-icon-list .link:hover {
  opacity: 0.7;
}

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ tag-style01 ▼ ---------------*/
.tag-style01 {
  position: relative;
  gap: 6px;
}
.tag-style01 .tag {
  background: var(--col-sub03);
  box-sizing: border-box;
  padding: 3px 6px;
  font-size: 1.2rem;
  font-weight: 700;
}

/*--------------- ▲ tag-style01 ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
  background: var(--col-sub04);
  border-radius: 30px;
  box-sizing: border-box;
  padding: 8% 6%;
  border: 4px solid var(--col-text);
  box-shadow: 6px 6px 0 var(--col-text);
  position: relative;
  margin-bottom: 100px;
}
.box-style01::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco04.png) no-repeat;
  width: 40px;
  height: 40px;
  bottom: -39px;
  margin: auto;
  right: 100px;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▲ box-style ▲ ---------------*/
/*--------------- ▼ img ▼ ---------------*/
/*装飾ありの画像共通スタイル
---------------------------*/
/*
正円
--------------*/
.img-style-round {
  border-radius: 100%;
  aspect-ratio: 1/1;
}

.img-style01 {
  border: 5px solid var(--col-text);
}

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
  width: 100%;
}
.table-style01 tr, .table-style01 tbody {
  width: 100%;
}
.table-style01 tr:last-child th {
  border: none;
}
.table-style01 th {
  background: var(--col-sub02);
  width: 100%;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid var(--col-wh);
  box-sizing: border-box;
  font-weight: 600;
}
.table-style01 td {
  background: var(--col-wh);
  width: 100%;
  display: block;
  padding: 15px;
  border-bottom: 1px solid var(--col-sub02);
  box-sizing: border-box;
  font-weight: 400;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-contact ▽ ---------------*/
#com-contact {
  position: relative;
}
#com-contact::before {
  position: absolute;
  content: "";
  background: url(../img/common/contact-deco-br.png) no-repeat bottom;
  width: 120px;
  height: 150px;
  bottom: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
#com-contact::after {
  position: absolute;
  content: "";
  background: url(../img/common/cut06.png) no-repeat center bottom;
  width: 100%;
  height: 75px;
  top: -1px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 0;
}

.com-contact {
  padding: 17% 0 !important;
}
.com-contact::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg04.png) no-repeat left top, var(--col-sub02);
  width: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: 1920px;
  z-index: 0;
  transition: all 0.3s ease;
}
.com-contact-ttl {
  text-align: center;
  margin: 33px auto 0;
}
.com-contact-container {
  background: var(--col-main-light);
  box-sizing: border-box;
  padding: 10% 5%;
  position: relative;
  z-index: 5;
  border: 5px solid var(--col-text);
}
.com-contact-container::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust05.png) no-repeat;
  width: 100px;
  height: 100px;
  left: 0;
  margin: auto;
  top: -90px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}

.com-contact-container:after{
  position: absolute;
  content: "";
  background: url(../img/common/contact-en.png)no-repeat;
  background-size: contain;
  right: 0;
  top: -205px;
  margin: auto;
  width: 130px;
  height: 50px;
}
.com-contact-list {
  display: block;
}
.com-contact-item.item-btn {
  margin: 0 auto 6%;
}
.com-contact-text {
  position: relative;
  margin: 0 0 7% auto;
  width: 70%;
}

/*--------------- △ com-contact △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item {
  border-bottom: 3px dotted rgba(var(--col-text-rgb), 0.3);
}
.com-news .news-item:last-child {
  margin-bottom: 0;
}
.com-news .news-item a {
  padding: 16px;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  color: var(--col-text);
  transition: all 0.3s ease;
}
.com-news .news-item a:hover {
  opacity: 0.7;
}
.com-news .news-post-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 800;
}
.com-news .news-post-time {
  display: block;
  margin-bottom: 6px;
  box-sizing: border-box;
  color: rgba(var(--col-text-rgb), 0.6);
  font-size: 1.4rem;
  font-family: var(--font-ttl-en);
}
.com-news .news-text {
  margin-bottom: 10px;
  display: block;
}

.news-tag {
  font-size: 1.4rem;
  font-weight: 800;
  gap: 10px;
}
.news-tag .tag {
  padding: 4px 10px;
  box-sizing: border-box;
  background: var(--col-main-light);
  border-radius: 30px;
}

.com-news .news-post-img {
  aspect-ratio: 3/2;
  width: clamp(55px, 20vw, 150px);
}

.com-news .news-text-wrap {
  width: 100%;
}

.com-news .news-text-wrap.text-width {
  width: 60vw;
}

.com-news .news-post-on {
  gap: 20px;
}

/*--------------- △ com-news △ ---------------*/
/*--------------- ▽ ページネーション ▽ ---------------*/
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: var(--col-main);
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.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 var(--col-main) 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 var(--col-main) 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: var(--col-text);
}
.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 var(--col-main);
}
.site-map-link:hover {
  color: var(--col-main);
}
.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: var(--col-main);
  color: #fff;
  border-bottom: 1px solid #faf8f6;
}

.contact-form-table td {
  padding: 10px;
  box-sizing: border-box;
  background: #faf8f6;
  border-bottom: 1px solid var(--col-main);
}

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

/*-------------------
ボタン
--------------------*/
#contact button[type=button],
input[type=submit] {
  background: var(--col-main);
  color: var(--col-base);
}

/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
/*--------------- △ 404エラー △ ---------------*//*# sourceMappingURL=common_sp.css.map */