@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
  --col-main: #ffd442;
  --col-sub: #cd1717;
  --col-text: #000000;
  --col-wh: #fff;
  --col-wh-rgb: 255,255,255;
  --col-base: #fff;
  --col-base-rgb: 255,255,255;
}

/*フォント*/
:root {
  --font-text: "DotGothic16", sans-serif;
  --font-ttl-ja: "DotGothic16", sans-serif;
  --font-ttl-en: "DotGothic16", sans-serif;
}

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

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

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

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: 500px;
  position: relative;
  overflow: hidden;
  border: none;
  border: 10px solid var(--col-text);
}

.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.7;
}
.com-text02 .mb {
  margin-bottom: 25px;
}

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

.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: 50px;
  font-size: 4.8rem;
  color: var(--col-wh);
  background: var(--col-text);
  box-sizing: border-box;
  padding: 40px 30px;
}
.ttl-style01::before {
  position: absolute;
  content: "";
  border: 6px solid var(--col-wh);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 9px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.ttl-style01 .ttl-main {
  position: relative;
  display: block;
}
.ttl-style01 .ttl-sub {
  position: relative;
  display: block;
  font-size: 3.2rem;
}

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

/*--------------------------
テキストスタイル
--------------------------*/
/*改行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-sub {
  color: var(--col-sub);
}

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

/*--------------- △ 共通テキスト △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
.bg-pat01 {
  background: url(../img/common/pat01.png) repeat center center/14%, var(--col-main);
}

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

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

/*共通背景 単色・パターン
------------------*/
.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-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-sub) !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 {
  background: var(--col-sub);
  color: var(--col-wh);
  min-height: 70px;
  box-sizing: border-box;
  padding: 12px 30px;
  border-radius: 50px;
  border: 4px solid var(--col-text);
  min-height: 90px;
  width: fit-content;
  font-size: 2.4rem;
}
.btn-style01 .btn-wrap {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 40px;
}
.btn-style01 .btn-wrap::after {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 15px;
  height: 20px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.com-mail-btn {
  background: var(--col-sub);
  color: var(--col-wh);
  min-height: 70px;
  box-sizing: border-box;
  padding: 12px 30px;
  border-radius: 50px;
  border: 4px solid var(--col-text);
}
.com-mail-btn .btn-wrap {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 40px;
}
.com-mail-btn .btn-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-mail.png) no-repeat;
  width: 27px;
  height: 21px;
  bottom: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-mail-btn .btn-wrap::after {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 15px;
  height: 20px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  left: 0;
  margin: auto;
  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: 100%;
  transition: all, 0.5s;
  object-fit: cover;
}

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
  .hover-op:hover,
  .link-style01:hover {
    opacity: 0.7;
  }

  .btn-style01:hover{
    background: var(--col-main);
  }
  .btn-style01:hover .btn-wrap::after{
    left: 5px;
  }

  .com-mail-btn:hover{
    background: var(--col-main);
  }
   .com-mail-btn:hover .btn-wrap::after{
    left: 5px;
   }

  .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;
  background: var(--col-main);
  box-sizing: border-box;
  padding: 6px 30px 6px 60px;
  border-radius: 50px;
  border: 4px solid var(--col-text);
}
.tel-style01::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.png) no-repeat;
  width: 32px;
  height: 30px;
  bottom: 0;
  left: 15px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.tel-style01 .tel-wrap {
  width: fit-content;
  line-height: 1;
}
.tel-style01 .ttl {
  position: relative;
  bottom: -6px;
}
.tel-style01 .num {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.2rem;
}
.tel-style01 .num::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.png) no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
}

.com-btn-list {
  gap: 20px;
}

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

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 50px;
  z-index: 2;
}
.box-style01::before {
  position: absolute;
  content: "";
  border: 6px solid var(--col-wh);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 9px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.box-style01::after{
  background: var(--col-text);
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

.box-style02 {
  background: url(../img/common/deco01.png) no-repeat top 20px right 20px, url(../img/common/deco01.png) no-repeat top 20px left 20px, url(../img/common/deco01.png) no-repeat bottom 20px right 20px, url(../img/common/deco01.png) no-repeat bottom 20px left 20px, var(--col-wh);
  border-radius: 30px;
  border: 8px solid var(--col-text);
  box-sizing: border-box;
  padding: 50px;
}

.box-style03 {
  box-shadow: 0 0 0 2px var(--col-text);
  border: 12px solid var(--col-sub);
  outline: 2px solid var(--col-text);
  outline-offset: -12px;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
}

/*--------------- ▲ box-style ▲ ---------------*/
/*--------------- ▼ img ▼ ---------------*/
/*装飾ありの画像共通スタイル
---------------------------*/
.img-style01 {
  width: 100%;
  position: relative;
  display: block;
}
.img-style01 .img {
  aspect-ratio: 520/372;
  width: 520px;
  height: 372px;
  box-shadow: 0 0 0 2px var(--col-text);
  border: 12px solid var(--col-sub);
  outline: 2px solid var(--col-text);
  outline-offset: -12px;
}


/*アニメ*/
/* .shake-img {
  animation: shake 6s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { 
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% { 
    transform: translateX(-20px);
  }
  20%, 40%, 60%, 80% { 
    transform: translateX(20px);
  }
}

.blink-img {
  animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { 
    opacity: 1;
  }
  50% { 
    opacity: 0.2;
  }
} */
/*--------------- ▲ 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 tr,
.table-style02 tbody {
  width: 100%;
}
.table-style02 th {
  width: 25%;
  padding: 16px 20px 16px 45px;
  border-bottom: 1px solid var(--col-text);
  box-sizing: border-box;
  color: var(--col-sub);
  position: relative;
}
.table-style02 th::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 12px;
  height: 22px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  left: 16px;
  margin: auto;
  top: 15px;
  background-size: contain;
  transition: all 0.3s ease;
}
.table-style02 td {
  width: 75%;
  vertical-align: middle;
  padding: 16px 20px;
  border-bottom: 1px solid var(--col-text);
  box-sizing: border-box;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item {
  padding: 0;
  margin: 0 auto 20px;
  z-index: 5;
}
.com-news .news-item:last-child {
  margin: 0 auto;
}
.com-news .news-item a {
  padding: 40px;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
  color: var(--col-wh);
}
.com-news .news-item a:hover {
  opacity: 0.7;
}
.com-news .news-post-ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.com-news .news-post-time {
  margin-right: 10px;
  box-sizing: border-box;
}
.com-news .news-text {
  margin-bottom: 12px;
}

.news-tag {
  font-weight: 500;
  gap: 10px;
}
.news-tag .tag {
  padding: 0 10px;
  box-sizing: border-box;
}

.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 .news-item-link-wrap{
  position: relative;
  z-index: 5;
}

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

/*--------------- △ 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 a:hover {
  opacity: 0.7;
}
ul.pagenation li.current {
  width: 45px;
  height: 45px;
  font-size: 20px;
  line-height: 1;
  box-sizing: border-box;
  color: var(--col-wh);
  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);
}
.privacy-container{
  padding: 70px;
}
/*--------------- △ プライバシーポリシー △ ---------------*/
/*--------------- ▽ サイトマップ ▽ ---------------*/
.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-wh);
}
.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-text);
  color: var(--col-wh);
  border-bottom: 1px solid var(--col-wh);
}

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

/*-------------------
  ボタン
  --------------------*/
.top-entry button[type=button],
input[type=submit] {
  background: var(--col-main);
  color: var(--col-wh);
}

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

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

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