@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
  --col-main: #dbc3e1;
  --col-main-rgb: 219,195,225;
  --col-main-dark02: #b99fbf;
  --col-main-dark02-rbg: 185,159,191;
  --col-main-dark: #8c55a4;
  --col-main-dark-rbg: 140,85,164;
  --col-main-light: #ecebef;
  --col-main-light-rbg: 236,235,239;
  --col-main-light02:#f3f3f4;
  --col-main-light02-rgb:236,235,239;
  --col-sub: #feb66c;
  --col-text: #353334;
  --col-text-rgb: 53,51,52;
  --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: "Shippori Mincho", serif;
  --font-ttl-en: "Mrs Saint Delafield", cursive;
}

:root {
  --font-size-base: 1.6rem;
}

/*
  --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;

  --box-shadow01:0 0 10px 10px rgba(var(--col-main-rgb),0.1);
  --box-shadow02:0 0 10px 10px rgba(var(--col-main-rgb),0.3);

  --gradient01:linear-gradient(to right, rgba(219,195,225,1) 0%,rgba(219,195,225,1) 82%,rgba(219,195,225,0.7) 92%,rgba(219,195,225,0) 100%);
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ 以下共通スタイル ▽ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  min-width: 1280px;
  letter-spacing: 0.05em;
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  line-height: 1.4;
  color: var(--col-text);
}

#contents {
  overflow: hidden;
}

.pc-none {
  display: none !important;
}

.inbox {
  max-width: 1080px;
  margin: 0 auto;
}

.outbox {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

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

a[href^="tel:"] {
  pointer-events: none;
}

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-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%);
}

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

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

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

.margin-center {
  margin: 0 auto;
}

.no-post{
  position: relative;
  z-index: 1;
}
/*
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;
}

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

/*

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

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

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

.pc-only-center {
  text-align: center;
  margin: 0 auto;
}

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

.ttl-ja {
  letter-spacing: 0.01em;
}

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

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
  text-align: center;
  margin: 0 auto 50px;
  z-index: 1;
}
.ttl-style01 .ttl-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  min-width: 430px;
}
.ttl-style01 .ttl-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat center left;
  width: 430px;
  height: 284px;
  top: 0;
  bottom: 0;
  right: -100px;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.ttl-style01 .ttl-ja {
  display: block;
  position: relative;
  font-size: 3rem;
  z-index: 1;
  text-align: center;
  line-height: 1.7;
}
.ttl-style01 .ttl-en {
  display: block;
  position: absolute;
  font-size: 8rem;
  width: fit-content;
  right: 50px;
  top: 0;
  transform: rotate(-10deg);
  color: var(--col-wh);
  text-align: center;
  white-space: nowrap;
  margin: auto;
}
.ttl-style01 .deco-col-sub {
  padding-bottom: 30px;
}
.ttl-style01 .deco-col-sub::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco07.png) no-repeat;
  width: 142px;
  height: 4px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.ttl-style01 .deco-col-main {
  padding-bottom: 30px;
}
.ttl-style01 .deco-col-main::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco08.png) no-repeat;
  width: 142px;
  height: 4px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

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

.ttl-style03 {
  margin-bottom: 40px;
}
.ttl-style03 .ttl-ja {
  display: block;
  position: relative;
  font-size: 3rem;
  z-index: 1;
}
.ttl-style03 .ttl-en {
  display: block;
  position: absolute;
  font-size: 8rem;
  width: fit-content;
  right: 20px;
  top: 0;
  transform: rotate(-10deg);
  color: var(--col-wh);
}
.ttl-style03 .ttl-en::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat center left;
  width: 430px;
  height: 284px;
  bottom: -50px;
  left: -160px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}

.ttl-style03.deco {
  padding-bottom: 30px;
}
.ttl-style03.deco::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco06.png) no-repeat;
  width: 142px;
  height: 4px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style04 {
  text-align: center;
  margin: 0 auto 50px;
}
.ttl-style04 .ttl-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.ttl-style04 .ttl-ja {
  display: block;
  position: relative;
  font-size: 3rem;
  z-index: 1;
}
.ttl-style04 .ttl-en {
  display: block;
  position: absolute;
  font-size: 8rem;
  width: fit-content;
  right: -40px;
  top: 0;
  transform: rotate(-10deg);
  color: var(--col-wh);
}
.ttl-style04 .ttl-en::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat center left;
  width: 430px;
  height: 284px;
  bottom: -50px;
  left: -160px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}

.ttl-style05 {
  padding: 20px;
  color: var(--col-wh);
  text-align: center;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
  min-height: 120px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, rgba(219, 195, 225, 0) 0%, rgba(219, 195, 225, 0.13) 2%, rgb(219, 195, 225) 15%, rgb(219, 195, 225) 85%, rgba(219, 195, 225, 0) 97%, rgba(219, 195, 225, 0) 99%);
}
.ttl-style05 .small {
  font-size: 2.5rem;
}

.ttl-style05.deco {
  margin-bottom: 60px;
}
.ttl-style05.deco::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco02.png) no-repeat;
  width: 211px;
  height: 17px;
  bottom: -40px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style06 {
  text-align: center;
  margin: 0 auto 50px;
}
.ttl-style06 .ttl-ja {
  font-size: 3rem;
  display: block;
  position: relative;
}
.ttl-style06 .ttl-en {
  position: absolute;
  display: block;
  font-size: 8rem;
  color: rgba(var(--col-main-rgb), 0.3);
  transform: rotate(-10deg);
  left: 0;
  right: -200px;
  top: -20px;
}

.ttl-style07 {
  background: var(--col-main);
  color: var(--col-wh);
  padding: 12px 20px;
  box-sizing: border-box;
  font-size: 2.5rem;
  margin-bottom: 15px;
  border-radius: 5px;
}

.ttl-style08 {
  background: var(--gradient01);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--col-wh);
  text-shadow: 0 0 20px var(--col-main-dark);
  margin-bottom: 20px;
}

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

.text-shadow-main {
  text-shadow: 0 0 20px var(--col-main-dark);
}

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

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

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

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

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

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

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

/*--------------- △ 共通テキスト △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
.bg-style01 {
  background: url(../img/common/bg-deco-tl.png) no-repeat top left, var(--col-main-light02);
}

.bg-style02 {
  background: url(../img/common/bg-deco-top01.png) no-repeat center top;
}

.bg-style03 {
  background: url(../img/common/bg-deco02.png) no-repeat, rgba(var(--col-main-rgb), 0.1);
}

.bg-style04 {
  background: url(../img/common/bg-deco-top02.png) no-repeat center top, var(--col-main-light02);
}

/*共通背景 単色・パターン
------------------*/
.bg-col-main {
  background: var(--col-main);
}

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

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

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

.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 {
  color: var(--col-main) !important;
  border-bottom: 1px solid;
}

/*--------------------
ボタンスタイル
----------------------*/
.btn-base {
  position: relative;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--font-ttl-ja);
  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 {
  border-radius: 0 30px 0 30px;
  background: var(--col-wh);
  border: 1px solid var(--col-main);
  color: var(--col-main-dark02) !important;
  padding: 15px;
  min-width: 300px;
  width: fit-content;
  box-sizing: border-box;
}

.btn-style01.icon-arw-rb::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--col-main);
  bottom: 3px;
  margin: auto;
  right: 3px;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.btn-style02 {
  background: var(--col-main);
  color: var(--col-wh) !important;
  padding: 15px;
  border-radius: 5px;
  min-width: 230px;
  width: fit-content;
  box-sizing: border-box;
  gap: 12px;
}

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

/*bnr
-----------------*/
.bnr-style01 {
  width: 500px;
  background: rgba(var(--col-main-rgb), 0.2);
  outline: 1px solid var(--col-main);
  outline-offset: 5px;
  padding: 20px;
  min-height: 150px;
  box-sizing: border-box;
  position: relative;
  bottom: 0;
}
.bnr-style01::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw.png) no-repeat;
  width: 60px;
  height: 12px;
  bottom: 0;
  margin: auto;
  right: 30px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}
.bnr-style01 .en {
  position: absolute;
  top: -40px;
  left: -30px;
  font-size: 6rem;
  transform: rotate(-10deg);
  color: var(--col-main);
  font-family: var(--font-ttl-en);
}
.bnr-style01 .main-text {
  position: relative;
  font-size: 3rem;
  gap: 30px;
  margin-left: -80px;
}

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
  .hover-op:hover,
  .btn-style02:hover,
  .link-style01:hover {
    opacity: 0.7;
  }
  .btn-style01:hover {
    background: var(--col-main);
  }
  .icon-arw-rb:hover {
    color: var(--col-wh) !important;
  }
  .icon-arw-rb:hover::before {
    bottom: 0;
    right: 0;
    background: var(--col-wh);
  }

  .bnr-style01:hover{
    bottom: 10px;
    opacity: 0.7;
  }

  .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.06em;
  font-family: var(--font-ttl-ja);
  width: fit-content;
}
.tel-style01 .tel-wrap {
  width: fit-content;
}
.tel-style01 .tel-text {
  position: relative;
  top: -5px;
}
.tel-style01 .num {
  position: relative;
  display: block;
  width: fit-content;
  padding-left: 26px;
  margin: 0 auto;
  font-size: 3rem;
}
.tel-style01 .num::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.png) no-repeat;
  width: 20px;
  height: 30px;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 4px;
}

.com-info-links {
  gap: 30px;
}

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

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
  position: relative;
  border-radius: 10px;
  background: var(--col-wh);
  padding: 50px;
  box-sizing: border-box;
  box-shadow: var(--box-shadow01);
  border-radius: 10px;
}

.box-num-style01-r::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco04.png) no-repeat;
  width: 168px;
  height: 168px;
  margin: auto;
  right: -30px;
  top: -30px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 5;
  transform: scale(-1, 1);
}
.box-num-style01-r .num {
  position: absolute;
  font-size: 10rem;
  font-family: var(--font-ttl-en);
  font-weight: 400;
  color: var(--col-main);
  top: -40px;
  right: -10px;
  z-index: 10;
}
.box-num-style01-r .num em {
  font-size: 12rem;
}

.box-num-style01-l::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco04.png) no-repeat;
  width: 168px;
  height: 168px;
  margin: auto;
  left: -30px;
  top: -30px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 5;
}
.box-num-style01-l .num {
  position: absolute;
  font-size: 10rem;
  font-family: var(--font-ttl-en);
  font-weight: 400;
  color: var(--col-main);
  top: -30px;
  left: -30px;
  z-index: 10;
}
.box-num-style01-l .num em {
  font-size: 12rem;
}

.box-style02 {
  background: rgba(var(--col-main-rgb), 0.2);
  padding: 35px;
  border-top: 4px double var(--col-main);
  border-bottom: 4px double var(--col-main);
  box-sizing: border-box;
}

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

.img-style01 .img {
  aspect-ratio: 480/600;
  width: 480px;
  border-radius: 240px 240px 0 0;
  box-shadow: 10px 10px 0 rgba(var(--col-main-rgb), 0.3);
}

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--col-main);

}
.table-style01 tr, .table-style01 tbody {
  width: 100%;
}
.table-style01 tr:last-child th {
  border: none;
}
.table-style01 th {
  background: var(--col-main);
  width: 25%;
  text-align: center;
  vertical-align: middle;
  padding: 16px 20px;
  border-bottom: 1px solid var(--col-base);
  box-sizing: border-box;
  color: var(--col-base);
  font-weight: 600;
}
.table-style01 td {
  background: var(--col-base);
  width: 75%;
  vertical-align: middle;
  padding: 16px 20px;
  border-bottom: 1px solid var(--col-main);
  box-sizing: border-box;
  font-weight: 400;
}

.table-style02 {
  width: 100%;
}
.table-style02 tr, .table-style02 tbody {
  width: 100%;
}
.table-style02 th {
  width: 25%;
  vertical-align: middle;
  padding: 25px 20px;
  border-bottom: 1px solid var(--col-main);
  box-sizing: border-box;
  color: var(--col-main-dark02);
  font-weight: 500;
}
.table-style02 td {
  width: 75%;
  vertical-align: middle;
  padding: 25px 20px;
  border-bottom: 1px solid var(--col-main);
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.7;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item {
  border-bottom: 1px solid var(--col-main-light);
}
.com-news .news-item a {
  padding: 25px 0 15px;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  color: var(--col-text);
  transition: all 0.3s ease;
}
.com-news .news-item a:hover {
  color: var(--col-main-dark02);
}
.com-news .news-post-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.com-news .news-post-time {
  box-sizing: border-box;
  color: var(--col-main-dark);
  display: block;
}
.com-news .news-text {
  gap: 10px;
  margin-bottom: 12px;
}

.news-tag {
  color: var(--col-sun);
  font-size: 1.3rem;
  font-weight: 500;
  gap: 10px;
}
.news-tag .tag {
  padding: 2px 6px;
  box-sizing: border-box;
  border: 1px solid var(--col-sub);
  color: var(--col-sub);
}

.com-news .news-post-img {
  aspect-ratio: 3/2;
  width: 200px;
}

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

.com-news .text-width {
  width: 830px;
}

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

/*--------------- △ 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: var(--col-text);
}
ul.pagenation li.current {
  width: 45px;
  height: 45px;
  font-size: 20px;
  line-height: 1;
  box-sizing: border-box;
  color: var(--col-base);
  background: var(--col-main);
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.page-btn {
  position: relative;
  margin-top: 30px;
}
.page-btn a {
  position: relative;
  font-weight: bold;
}
.page-btn .right,
.page-btn .left {
  position: absolute;
}
.page-btn .right a,
.page-btn .left a {
  font-size: 16px;
}
.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;
}

.privacy .privacy-link {
  color: var(--col-main);
  border-bottom: 2px solid var(--col-main);
}

/*--------------- △ プライバシーポリシー △ ---------------*/
/*--------------- ▽ サイトマップ ▽ ---------------*/
.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%;
  position: relative;
  z-index: 1;
}

.contact-form-table th {
  padding: 10px;
  box-sizing: border-box;
  background: var(--col-main);
  color: var(--col-base);
  border-bottom: 1px solid var(--col-base);
  width: 370px;
}

.contact-form-table td {
  padding: 10px;
  box-sizing: border-box;
  background: var(--col-base);
  border-bottom: 1px solid var(--col-main);
  width: calc(100% - 370px);
}

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

/*---------------------
お問い合わせ完了
----------------------*/
#complete .complete-box {
  text-align: center;
  position: relative;
  z-index: 5;
}

/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
.not-found-txt {
  text-align: center;
  position: relative;
  z-index: 1;
}

/*--------------- △ 404エラー △ ---------------*/