@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
  --col-main: #ed8023;
  --col-main-rgb: 234,122,20;
  --col-main-dark: #ed6a36;
  --col-main-light: #f5b53a;
  --col-main-light-rbg: 245,181,58;
  --col-main-light02: #f1d87e;
  --col-main-light02-rbg: 241,216,126;
  --col-sub: #ffea00;
  --col-sub-rgb: 25,234,0;
  --col-sub-light:#fff47f;
  --col-sub-light-rgb:255,244,127;
  --col-gry: #e1dfd7;
  --col-text: #191718;
  --col-text-rgb: 25,23,24;
  --col-wh: #fff;
  --col-wh-rgb: 255,255,255;
  --col-base: #fff;
  --col-base02: #f8f6ed;
  --col-base03: #fffbd1;
  --col-line:#06c755;
}

/*フォント*/
:root {
  --font-text: "Noto Sans JP",sans-serif;
  --font-ttl-ja: "Noto Serif JP",serif;
  --font-ttl-en: "Noto Serif JP",serif;
  --font-serif: "Noto Serif JP",serif;
  --font-text-ja: "Yuji Syuku", serif;
  --font-text-en: "Jost", sans-serif;
}

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

:root {
  --gradation01: linear-gradient(to right, rgba(174,143,78,1) 1%,rgba(187,156,91,1) 25%,rgba(197,176,111,1) 49%,rgba(187,156,91,1) 75%,rgba(174,143,78,1) 100%);
}

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

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

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);
  /*禁則処理*/
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#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;
}

.original-inner {
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 clamp(60px, 6.25vw, 120px);
  z-index: 1;
}

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

/*
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.3;
}
.com-text .mb {
  margin-bottom: 25px;
}

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

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

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

.margin-center {
  margin: 0 auto;
}

/*------------------------------
タイトルベース
-------------------------------*/
.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 {
  margin-bottom: 50px;
  width: fit-content;
}
.ttl-style01 .ttl-ja {
  font-size: 4.5rem;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 60px;
}
.ttl-style01 .ttl-ja::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco02.png) no-repeat;
  width: 37px;
  height: 51px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.ttl-style01 .ttl-ja::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco02.png) no-repeat;
  width: 37px;
  height: 51px;
  bottom: 0;
  right: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: scale(-1,-1);
}
.ttl-style01 .ttl-en {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  font-weight: 700;
}

.ttl-style01.style-col-wh {
  margin-bottom: 70px;
}
.ttl-style01.style-col-wh .ttl-ja::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 2px;
  height: 51px;
  bottom: 0;
  margin: auto;
  top: 0;
  left: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: rotate(30deg);
}
.ttl-style01.style-col-wh .ttl-ja::after {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 2px;
  height: 51px;
  bottom: 0;
  margin: auto;
  top: 0;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: rotate(30deg);
}

.ttl-style02 {
  text-align: left;
  border-left: 5px solid var(--col-main);
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.ttl-style03 {
  position: relative;
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
  box-sizing: border-box;
  padding: 0 0 8px;
}
.ttl-style03::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 60px;
  height: 1px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.ttl-style03::after {
  position: absolute;
  content: "";
  background: var(--col-main-dark);
  width: 30px;
  height: 1px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}

.ttl-style03-large {
  position: relative;
  display: block;
  font-weight: 500;
  margin-bottom: 50px;
  box-sizing: border-box;
  font-size: 3.5rem;
  padding-bottom: 30px;
}
.ttl-style03-large::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.ttl-style03-large::after {
  position: absolute;
  content: "";
  background: var(--col-main-dark);
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}

.ttl-style04 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.ttl-style04 .line {
  background: linear-gradient(transparent 97%, var(--col-wh) 0%);
  line-height: 2;
  box-sizing: border-box;
  padding: 10px 0;
}
.ttl-style04 .deco::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco01.png) no-repeat;
  width: 93px;
  height: 93px;
  left: -40px;
  margin: auto;
  top: -50px;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style05 {
  font-size: 3.5rem;
  box-sizing: border-box;
  padding: 0 0 20px 0;
  border-bottom: 2px solid var(--col-main-light);
  margin-bottom: 50px;
}
.ttl-style05::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 50px;
  height: 2px;
  bottom: -2px;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}

.ttl-style06 {
  background: var(--col-main);
  font-size: 3rem;
  box-sizing: border-box;
  padding: 25px;
  text-align: center;
  color: var(--col-wh);
  border-left: 5px solid var(--col-sub);
  border-right: 5px solid var(--col-sub);
  margin-bottom: 30px;
}

.ttl-style07 {
  font-size: 3rem;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--col-main-light);
  box-sizing: border-box;
  padding: 0 0 15px;
  font-weight: 600;
}

.ttl-style08 {
  font-size: 3rem;
  box-sizing: border-box;
  padding: 0 0 30px;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.7;
}
.ttl-style08::first-letter {
  color: var(--col-main);
}
.ttl-style08::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco03.png) no-repeat;
  width: 93px;
  height: 93px;
  margin: auto;
  top: -50px;
  left: -50px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}

.ttl-style08.style-col-main::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style08.style-col-main-light::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style08.style-col-sub::before {
  position: absolute;
  content: "";
  background: var(--col-sub);
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}

.ttl-style09{
  width: fit-content;
  padding: 0 80px;
  font-size: 3rem;
  margin: 0 auto 80px;
  font-weight: 600;
}
.ttl-style09 .ttl-wrap{
  gap: 50px;
}
.ttl-style09::before{
  position: absolute;
  content: "";
  background: url(../img/common/deco04.png);
  width: 38px;
  height: 90px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ttl-style09::after{
  position: absolute;
  content: "";
  background: url(../img/common/deco04.png);
  width: 38px;
  height: 90px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(-1,1);
}
.ttl-style09 .item{
  position: relative;
}
.ttl-style09 .item::before{
  position: absolute;
  content: "×";
  color: var(--col-main-light);
  right: -40px;
}
.ttl-style09 .item:last-child::before{
  content: none;
}

.ttl-style10{
  font-size: 3rem;
  padding: 15px 0;
  border-bottom: 1px solid var(--col-main-light);
  border-top: 1px solid var(--col-main-light);
  margin: 0 auto 70px;
}


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

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

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

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

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

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

.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-wh {
  background: var(--col-wh);
}

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

.bg-pat01 {
  background: url(../img/common/pat01.png) 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;
  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 {
  padding: 14px 30px;
  line-height: 1.2;
  min-width: 300px;
  min-height: 60px;
  width: fit-content;
  background: var(--col-wh);
  border-radius: 5px;
  border: 2px solid var(--col-main);
  box-shadow: 5px 5px 0 rgb(var(--col-main-rgb), 0.2);
}
.btn-style01::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-main.png) no-repeat;
  width: 25px;
  height: 8px;
  bottom: 0;
  margin: auto;
  right: 20px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.btn-style03 {
  padding: 14px 30px;
  line-height: 1.2;
  min-height: 60px;
  background: var(--col-wh);
  border-radius: 5px;
  border: 2px solid var(--col-main);
  width: 400px;
}
.btn-style03::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 15px;
  height: 10px;
  bottom: 0;
  margin: auto;
  right: 20px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.btn-style03:hover {
  opacity: 0.7;
}
.btn-style03:hover::before {
  bottom: -10px;
}

.com-line-btn {
  box-sizing: border-box;
  padding: 20px 15px;
  width: 300px;
  height: 60px;
  text-align: center;
  border: 1px solid var(--col-line);
}
.com-line-btn::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-line.svg) no-repeat;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 20px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-line-btn::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-line.png) no-repeat;
  width: 25px;
  height: 6px;
  bottom: 0;
  margin: auto;
  right: 20px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.com-line-btn02 {
  box-sizing: border-box;
  padding: 20px 15px 20px 30px;
  width: 100%;
  height: 60px;
  border: 1px solid var(--col-line);
  background: var(--col-wh);
  text-align: left;
  font-size: 1.5rem;
}
.com-line-btn02::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-line.svg) no-repeat;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 20px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-line-btn02::after {
  position: absolute;
  content: "";
  background: var(--col-line);
  width: 15px;
  height: 15px;
  bottom: 3px;
  margin: auto;
  right: 3px;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.com-mail-btn {
  box-sizing: border-box;
  padding: 20px 15px;
  width: 300px;
  height: 60px;
  background: var(--col-main);
  color: var(--col-wh);
  text-align: left;
}
.com-mail-btn::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-mail-wh.png) no-repeat;
  width: 20px;
  height: 14px;
  bottom: 0;
  left: 20px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-mail-btn::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-wh.png) no-repeat;
  width: 25px;
  height: 6px;
  bottom: 0;
  margin: auto;
  right: 20px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.com-mail-btn02 {
  box-sizing: border-box;
  padding: 20px 15px 20px 30px;
  width: 100%;
  height: 60px;
  background: var(--col-main);
  color: var(--col-wh);
  text-align: left;
  font-size: 1.5rem;
}
.com-mail-btn02::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-mail-wh.png) no-repeat;
  width: 20px;
  height: 14px;
  bottom: 0;
  left: 20px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-mail-btn02::after {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 15px;
  height: 15px;
  bottom: 3px;
  margin: auto;
  right: 3px;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

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

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
  .hover-op:hover,
  .link-style01:hover {
    opacity: 0.7;
  }
  .btn-style01:hover {
    opacity: 0.7;
  }
  .btn-style01:hover::before {
    right: 10px;
  }
  .com-line-btn:hover,
  .com-line-btn02:hover
  {
    opacity: 0.7;
  }
  .com-line-btn:hover::after{
    right: 8px;
  }
  .com-mail-btn:hover,
  .com-mail-btn02:hover{
    opacity: 0.7;
  }
  .com-mail-btn:hover::after{
    right: 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;
  color: var(--col-text);
  letter-spacing: 0.06em;
}
.tel-style01 .tel-wrap {
  width: fit-content;
}
.tel-style01 .tel-time {
  background: var(--col-base03);
  box-sizing: border-box;
  padding: 3px 10px;
  font-size: 1.3rem;
  display: block;
  text-align: center;
  font-weight: 500;
}
.tel-style01 .num {
  position: relative;
  display: block;
  width: fit-content;
  padding-left: 25px;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
}
.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-info-btn-list {
  gap: 10px;
}

.com-info-tel {
  margin: 0 0 40px;
  gap: 4px;
}

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

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
.list-style01 {
  position: relative;
  gap: 20px 5%;
}
.list-style01 .item {
  line-height: 1.4;
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0 0 0 30px;
  font-size: 2rem;
}
.list-style01 .item::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--col-main);
  border-radius: 50%;
  left: 0;
  margin: auto;
  top: 5px;
  background-size: contain;
  transition: all 0.3s ease;
}

.list-style01.style-row3 .item {
  width: 30%;
}

.list-style01.style-row2 .item {
  width: 45%;
}

.list-style02 .item {
  position: relative;
  box-sizing: border-box;
  padding: 0 0 0 30px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.list-style02 .item:last-child {
  margin-bottom: 0;
}
.list-style02 .item::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 0;
  margin: auto;
  top: 5px;
  background-size: contain;
  transition: all 0.3s ease;
}

.list-style03{
  counter-reset: number 0;  
}
.list-style03 .item{
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.list-style03 .item:last-child{
  margin-bottom: 0;
}
.list-style03 .item::before{
  counter-increment: number 1;  
  content: "" counter(number) ".";
  position: absolute;
  left: 0;
  top: 0px;
  margin: auto;
  color: var(--col-main);
  font-weight: 600;
}

.list-style04{
  counter-reset: number 0;  
}
.list-style04 .item{
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.list-style04 .item:last-child{
  margin-bottom: 0;
}
.list-style04 .item::before{
  content: "※";
  position: absolute;
  left: 0;
  top: 0px;
  margin: auto;
  color: var(--col-main-light);
  font-weight: 600;
}
/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
  background: url(../img/common/bg01-deco-r.png) no-repeat top left, url(../img/common/bg01-deco-l.png) no-repeat bottom right, var(--gradation01);
  box-sizing: border-box;
  padding: 60px;
  position: relative;
}
.box-style01::before {
  position: absolute;
  content: "";
  border: 2px solid var(--col-wh);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

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

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
  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-wh);
  box-sizing: border-box;
  color: var(--col-wh);
  font-weight: 600;
}
.table-style01 td {
  background: var(--col-wh);
  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 .small {
  font-size: 1.3rem;
}
.table-style02 th {
  width: 22%;
  padding: 10px 6px 10px 0;
  box-sizing: border-box;
  font-weight: 500;
  border-right: 1px solid var(--col-main);
  color: var(--col-main);
}
.table-style02 td {
  width: 78%;
  padding: 10px 30px;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.6;
}

.table-style03 {
  width: 100%;
}
.table-style03 .small {
  font-size: 1.3rem;
}
.table-style03 th {
  width: 10%;
  padding: 10px 6px 10px 0;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--col-main);
}
.table-style03 th .deco {
  position: relative;
  display: block;
  line-height: 1.3;
  padding-left: 15px;
  box-sizing: border-box;
}
.table-style03 th .deco::before{
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 5px;
  height: 25px;
  top: -2px;
  left: 0;
  margin: auto;
}
.table-style03 td {
  width: 90%;
  padding: 10px 30px;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.6;
}

.table-style04 {
  width: 100%;
  border-spacing: 0 5px;
  border-collapse: separate;
}
.table-style04 .small {
  font-size: 1.3rem;
}
.table-style04 th {
  width: 20%;
  padding: 15px 15px 15px 30px;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--col-main);
  background: var(--col-base02);
  vertical-align: middle;
}
.table-style04 td {
  width: 80%;
  padding: 15px;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 1.6;
  background: var(--col-base02);
    vertical-align: middle;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-list {
  gap: 30px;
}
.com-news .news-item {
  width: 340px;
}
.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;
  color: var(--col-text);
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  background: var(--col-wh);
  padding: 0;
}
.com-news .news-item a:hover {
  opacity: 0.7;
}
.com-news .news-post-text {
  line-height: 1.7;
  font-size: 1.3rem;
}
.com-news .news-text-wrap {
  box-sizing: border-box;
  padding: 20px;
}
.com-news .news-post-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
  font-weight: 600;
}
.com-news .news-post-time {
  position: relative;
  color: var(--col-main);
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  box-sizing: border-box;
  padding: 0 0 12px;
  margin-bottom: 20px;
  font-family: var(--font-text-en) !important;
}
.com-news .news-post-time::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 110px;
  height: 1px;
  left: -20px;
  bottom: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}

.news-tag {
  font-size: 1.5rem;
  font-weight: 500;
  gap: 10px 0;
  background: var(--col-main-light);
  box-sizing: border-box;
  padding: 5px;
  min-height: 25px;
}
.news-tag .tag {
  padding: 0 14px;
  box-sizing: border-box;
  color: var(--col-wh);
  position: relative;
  display: block;
}
.news-tag .tag::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: var(--col-wh);
  transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
  right: -10px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.news-tag .tag:last-of-type::before {
  content: none;
}

.com-news .news-post-img {
  aspect-ratio: 340/220;
  width: 100%;
}

.com-news .news-text-wrap {
  width: 100%;
  min-height: 163px;
}

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

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

/*-----------------------
一覧ページ
------------------------*/
.news-post .news-post-ttl {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
}

/*--------------- △ com-news △ ---------------*/
/*--------------- ▽ com-event ▽ ---------------*/
.com-event-list {
  gap: 80px 20px;
}
.com-event-item {
  position: relative;
  width: 255px;
}
.com-event-post-link {
  position: relative;
  display: block;
}
.com-event-post-link:hover {
  opacity: 0.7;
}
.com-event-post-img {
  aspect-ratio: 255/180;
  width: 100%;
  height: fit-content;
}
.com-event-text-wrap{
  margin-top: 10px;
}
.com-event-post-time {
  font-family: var(--font-text-en);
  font-size: 1.5rem;
  color: var(--col-main);
  display: block;
  text-align: right;
  font-weight: 500;
}
.com-event-post-img-wrap {
  position: relative;
}
.com-event-post-tag {
  position: relative;
  gap: 10px;
  margin: -35px 0 20px -5px;
  z-index: 2;
}
.com-event-post-tag .tag {
  background: var(--col-main);
  color: var(--col-wh);
  box-sizing: border-box;
  padding: 4px 6px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}
.com-event-post-text {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.8;
}
.event-tag-selectbox{
  top: -60px;
}

/*tag*/
.s-post .tag-style01{
  margin-bottom: 20px;
  gap: 10px;
}
.tag-style01 .tag {
  font-size: 1.3rem;
  font-weight: 600;
  gap: 15px;
  margin-bottom: 5px;
  color: var(--col-main);
}
.tag-style01 .tag {
  box-sizing: border-box;
  padding: 0 0 0 10px;
  position: relative;
}
.tag-style01 .tag::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
/*--------------- △ com-event △ ---------------*/
/*--------------- ▽ ページネーション ▽ ---------------*/
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: 90px;
  text-align: center;
  margin-bottom: 30px;
  gap: 7px;
  font-weight: 700;
}
ul.pagenation li a {
  width: 35px;
  height: 35px;
  font-size: 17px;
  color: var(--col-text);
  background: var(--col-gry);
}
ul.pagenation li a:hover {
  opacity: 0.7;
}
ul.pagenation li.current {
  width: 35px;
  height: 35px;
  font-size: 20px;
  line-height: 1;
  box-sizing: border-box;
  color: var(--col-wh);
  background: var(--col-main-light);
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.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;
}

/*--------------- △ サイトマップ △ ---------------*/
/*--------------- ▽ お問い合わせ ▽ ---------------*/
.contact-note{
  padding-top: 80px;
  box-sizing: border-box;
  border-top: 1px solid var(--col-gry);
  margin-top: 80px;
}
.contact-lead-text{
  margin-bottom: 50px;
}

.radio-sub-wrap{
  margin-top: 15px;
  font-size: 1.2rem;
}

.contact-note-text{
  margin-bottom: 50px;
}
.contact-note-container{
  padding: 40px 100px;
  border: 2px solid var(--col-main-light);
  margin-bottom: 50px;
}

/*--------------------
table
---------------------*/
.contact-form-table {
  margin: 0 0 50px;
  width: 100%;
}

.contact-form-table th {
  padding: 15px;
  box-sizing: border-box;
  background: var(--col-main);
  color: var(--col-wh);
  border-bottom: 1px solid var(--col-wh);
  width: 30%;
}

.contact-form-table td {
  padding: 15px;
  box-sizing: border-box;
  background: var(--col-base02);
  border-bottom: 1px solid var(--col-main);
  width: 70%;
}

/*-------------------
ボタン
--------------------*/
#contact button[type=button],
input[type=submit] {
  background: var(--col-wh);
  border: 2px solid var(--col-main);
  border-radius: 5px;
  color: var(--col-text);
  box-shadow: 5px 5px 0 rgb(var(--col-main-rgb), 0.2);
}

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

/*---------------------
ラジオボタン
----------------------*/
#contact input[type=radio] {
display: none; /* ラジオボタンを非表示にする */
}

#contact input[type=radio] + label{
  background: var(--col-wh);
  padding: 3px 10px;
  box-sizing: border-box;
  width: fit-content;
  border: 2px solid var(--col-main-light);
  font-weight: 600;
  color: var(--col-main);
}

#contact input[type=radio]:checked + label {
  background: var(--col-main-light);
  color: var(--col-wh);
}
/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
.not-found-txt {
  text-align: center;
}

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