@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
===========================================*/
/*==========================================
画面幅3分割レイアウト
===========================================*/
/*==========================================
PC時のフォントに対するclamp()関数
===========================================*/
/*==========================================
SP共通
===========================================*/
body {
  line-height: 1.8;
  font-size: 4vw;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.ttl01 {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 6.4vw;
  line-height: 1.8;
  margin-bottom: 12%;
}

.ttl02 {
  font-size: 5.3333333333vw;
  text-align: left;
  font-weight: 700;
  line-height: 1.7;
  border-left: 1vw solid var(--main-color);
  padding-left: 3%;
  margin-bottom: 3%;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont {
  text-align: left;
}
.com-cont p {
  margin-bottom: 8%;
  line-height: 2.1;
  letter-spacing: var(--base-letter-spacing);
}
.com-cont p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 4.5333333333vw;
  font-weight: 700;
  margin-bottom: 4%;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe,
#g-map .map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-tel {
  line-height: 1.2;
}
.com-tel .tel-num {
  font-weight: 700;
  font-size: 8vw;
  letter-spacing: 0.04em;
}
.com-tel .tel-num small {
  color: var(--main-color);
  font-size: 4.2666666667vw;
}
.com-tel .tel-txt {
  display: block;
}

.com-mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2666666667vw;
  font-weight: 700;
  width: 78%;
  height: 16vw;
  margin: 8% auto 0;
}
.com-mail-btn span {
  padding-left: 8vw;
}
.com-mail-btn:hover {
  opacity: 1;
  transform: scale(0.95);
}
.com-mail-btn.clr-01 {
  background: var(--main-color);
  color: var(--color-white);
}
.com-mail-btn.clr-01 span {
  background: url(../img/common/mail-white_ic.png) left center/5vw no-repeat;
}
.com-mail-btn.clr-02 {
  background: var(--color-white);
  color: var(--main-color);
}
.com-mail-btn.clr-02 span {
  background: url(../img/common/mail-blue_ic.png) left center/5vw no-repeat;
}

.polygon {
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  position: absolute;
  z-index: -1;
  height: 100%;
}
.polygon.blue {
  background: var(--main-color);
}
.polygon.accent {
  background: var(--accent-color);
}

.overlabel {
  background: var(--accent-color);
  color: var(--main-color);
  display: block;
  position: relative;
  font-weight: 700;
  padding: 3%;
}
.overlabel::before {
  position: absolute;
  content: "";
  background: var(--accent-color);
  height: 100%;
  width: 420px;
  top: 0;
  bottom: 0;
}
.overlabel.r-label::before {
  right: -420px;
}
.overlabel.l-label::before {
  left: -420px;
}

.has-counter {
  counter-reset: number 0;
}
.has-counter li,
.has-counter article {
  position: relative;
}
.has-counter li::before,
.has-counter article::before {
  position: absolute;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
}

.com-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18vw;
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 700;
  position: relative;
}
.com-btn:hover {
  opacity: 1;
  transform: scale(0.95);
}
.com-btn::after {
  position: absolute;
  content: "";
  inset: 0 3% 0 auto;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.25vw 0 2.25vw 3vw;
  z-index: 1;
}
.com-btn.clr-01 {
  background: var(--main-color);
  color: var(--color-white);
}
.com-btn.clr-01::after {
  border-color: transparent transparent transparent var(--color-white);
}
.com-btn.clr-02 {
  background: var(--color-white);
  color: var(--main-color);
}
.com-btn.clr-02::after {
  border-color: transparent transparent transparent var(--main-color);
}

.com-adr .locate {
  margin-bottom: 5%;
}
.com-adr .worktime div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.com-adr .worktime dt {
  padding-right: 2.5vw;
  margin-right: 2.5vw;
  position: relative;
}
.com-adr .worktime dt::after {
  width: 1px;
  height: 3.5vw;
  position: absolute;
  content: "";
  background: var(--color-white);
  inset: 0 0 0 auto;
  margin: auto 0;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-tbl {
  text-align: left;
}
.com-tbl tr {
  display: block;
  padding: 6% 0;
}
.com-tbl tr th,
.com-tbl tr td {
  display: block;
}
.com-tbl tr th {
  margin-bottom: 4%;
}
.com-tbl tr td a[href^="tel:"],
.com-tbl tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 2vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: var(--main-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--main-color);
  top: -2vw;
  font-size: 2.4vw;
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 11% 6% 15%;
  background: var(--color-white);
}
#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav nav {
  margin-bottom: 10%;
}
#drawer-nav nav .drawer-link {
  padding: 8% 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: 4.8vw;
  text-align: center;
}
#drawer-nav nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav nav .drawer-dropdown span {
  display: block;
}
#drawer-nav nav .drawer-dropdown span:before, #drawer-nav nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav nav .current {
  position: relative;
  font-weight: 700;
  color: var(--main-color);
  z-index: 1;
}
#drawer-nav nav .current span {
  position: relative;
  z-index: 1;
  padding: 0 4vw;
}
#drawer-nav nav .current span::before {
  position: absolute;
  inset: auto 0 0;
  content: "";
  background: var(--accent-color);
  width: 100%;
  height: 2.5vw;
  z-index: -1;
}
#drawer-nav nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .sns-lists {
  margin: 10% auto;
  gap: 3vw 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#drawer-nav .drawer-address {
  margin: 10% auto;
}
#drawer-nav .drawer-address li {
  margin-bottom: 6%;
}
#drawer-nav .drawer-address li:last-child {
  margin-bottom: 0;
}
#drawer-nav .mail-btn {
  text-align: center;
  width: 60%;
  display: block;
  background: var(--color-black);
  font-weight: 700;
  margin: 10% auto;
  letter-spacing: 0.2rem;
  padding: 4% 0;
}
#drawer-nav .mail-btn span {
  font-size: 4vw;
  color: var(--color-white);
  position: relative;
}
#drawer-nav .drawer-subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: 3.2vw;
  gap: 4vw;
}
#drawer-nav .drawer-subpage-item a {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  padding: 4% 4% 0;
  z-index: 1001;
}
#header .hd-logo {
  width: 47%;
  line-height: 1;
}
#header .hd-right {
  display: none;
}

/*==========================================
nav
===========================================*/
#nav {
  margin-top: 15px;
}
#nav .nav-list {
  gap: 15px 25px;
}
#nav .nav-list-item {
  font-weight: 700;
  font-size: 3.7333333333vw;
}
#nav .nav-list a {
  position: relative;
  z-index: 1;
}
#nav .nav-list a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  opacity: 0;
  inset: auto 0 0;
  z-index: -1;
}
#nav .nav-list a:hover {
  opacity: 1;
  color: var(--main-color);
}
#nav .nav-list a:hover::before {
  opacity: 1;
}
#nav .nav-list.current a {
  color: var(--main-color);
}
#nav .nav-list.current a::before {
  opacity: 1;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 100vh;
  height: 100svh;
  position: relative;
  background: url(../img/top/mv/mv-img01.png) left 5% top 17%/65% no-repeat, url(../img/top/mv/mv-img02.png) right 2% bottom 45%/86% no-repeat, url(../img/top/mv/mv_bg.png) center bottom/cover no-repeat;
}
#top-mv .mv-catch {
  position: absolute;
  inset: auto auto 3% 0;
  width: 90%;
}

/*==========================================
index.php
===========================================*/
/* top-intro
-----------------------*/
#top-intro {
  position: relative;
  padding: 18% 0;
  z-index: 1;
}
#top-intro .intro-content .intro-ttl {
  margin-bottom: 10%;
}
#top-intro .intro-content .intro-ttl .overlabel {
  font-size: 5.6vw;
  margin-bottom: 3%;
}
#top-intro .intro-content .intro-ttl .m-ttl {
  font-weight: 700;
  font-size: 6.9333333333vw;
  display: block;
}
#top-intro .intro-content .intro-txt span {
  color: var(--main-color);
}
#top-intro .polygon {
  right: -39%;
  top: 0;
  width: 50%;
}

/* top-merit
-----------------------*/
#top-merit {
  padding: 18% 0;
}
#top-merit .merit-list-item {
  width: 85%;
  margin: 0 auto 10%;
  position: relative;
  border: 1px solid var(--main-color);
  padding: 13% 3% 7%;
}
#top-merit .merit-list-item:last-child {
  margin-bottom: 0;
}
#top-merit .merit-list-item::before {
  color: var(--main-color);
  font-size: 7.4666666667vw;
  font-weight: 700;
  width: 15vw;
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 auto auto 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
#top-merit .merit-list-item .item-ill {
  width: 38%;
  margin: 0 auto 5%;
}
#top-merit .merit-list-item .item-txt {
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
#top-merit .merit-btn {
  margin-top: 15%;
}

/* p-links
-----------------------*/
#p-links .p-link-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#p-links .p-link-item a::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
}
#p-links .p-link-item a:hover {
  opacity: 1;
}
#p-links .p-link-item a:hover::before {
  transform: scale(1.02);
}
#p-links .p-link-item a:hover .p-ttl {
  background: var(--accent-color);
}
#p-links .p-link-item.p-guide a::before {
  background: url(../img/top/guide_img.jpg) center/cover no-repeat;
}
#p-links .p-link-item.p-join a::before {
  background: url(../img/top/join_img.jpg) center/cover no-repeat;
}
#p-links .p-link-item .p-ttl {
  width: 65%;
  margin: 0 auto;
  background: var(--color-white);
  font-size: 6.6666666667vw;
  color: var(--main-color);
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  padding: 2%;
}
#p-links .p-link-item .p-ttl::after {
  position: absolute;
  content: "";
  inset: 0 3% 0 auto;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5vw 0 2.5vw 3vw;
  border-color: transparent transparent transparent var(--main-color);
  z-index: 1;
}

/* top-fc
-----------------------*/
#top-fc {
  padding: 18% 0;
  background: url(../img/top/fc_bg.jpg) center/cover no-repeat;
}
#top-fc .fc-ttl {
  color: var(--color-white);
  line-height: 1.5;
}
#top-fc .fc-wrp {
  background: var(--color-white);
  padding: 12% 5%;
}
#top-fc .fc-wrp .fc-txt {
  line-height: 2.3;
  text-align: left;
}
#top-fc .fc-btn {
  width: 100%;
  margin: 13% auto 0;
}

/* top-info
-----------------------*/
#top-info .info-bg {
  padding: 18% 0;
  background: url(../img/top/info-rt_deco.png) right top/40% no-repeat, url(../img/top/info-lb_deco.png) left bottom/40% no-repeat, var(--third-color);
}

/* top-news
-----------------------*/
#top-news {
  padding: 18% 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#top-news .inbox {
  position: relative;
}
#top-news .news-post-list .news-post {
  text-align: left;
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news-post-list .news-post a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 5% 0;
}
#top-news .news-post-list .news-post a:hover {
  background: var(--accent-color);
  opacity: 1;
}
#top-news .news-post-list .news-post time {
  color: var(--main-color);
  font-size: 3.7333333333vw;
  width: 28%;
}
#top-news .news-post-list .news-post .category-label {
  gap: 1.5vw;
  width: 72%;
  display: flex;
  flex-wrap: wrap;
}
#top-news .news-post-list .news-post .category-label li {
  background: var(--main-color);
  color: var(--color-white);
  font-size: 3.7333333333vw;
  padding: 0 1vw;
  line-height: 1.4;
}
#top-news .news-post-list .news-post .post-ttl {
  width: 100%;
  font-size: 4.2666666667vw;
  margin-top: 5px;
}
#top-news .news-btn {
  margin-top: 15%;
}
#top-news .polygon {
  width: 34.6875%;
  top: 0;
}
#top-news .polygon.blue {
  right: -30%;
  top: 12%;
}
#top-news .polygon.accent {
  right: 2.0833%;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 15% 0 10%;
  background: var(--main-color);
}
#footer .ft-left {
  margin-bottom: 15%;
}
#footer .ft-left .ft-logo {
  width: 70%;
  display: inline-block;
  margin-bottom: 8%;
}
#footer .ft-left .ft-adr {
  color: var(--color-white);
}
#footer .ft-left .ft-nav {
  width: 80%;
  margin-top: 10%;
  text-align: left;
}
#footer .ft-left .ft-nav .nav-list-item {
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin-bottom: 8%;
}
#footer .ft-left .ft-nav .nav-list-item:last-child {
  margin-bottom: 0;
}
#footer .ft-left .ft-nav .nav-list-item a {
  color: var(--color-white);
}
#footer .ft-left .ft-nav .nav-list-item a:hover {
  text-decoration: underline;
}
#footer .ft-right .ft-contact {
  position: relative;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding: 9% 0;
}
#footer .ft-right .ft-contact .ft-c-ttl {
  position: absolute;
  inset: -4vw 0 auto;
}
#footer .ft-right .ft-contact .ft-c-ttl span {
  font-size: 4.2666666667vw;
  background: var(--main-color);
  color: var(--color-white);
  padding: 0 5vw;
}
#footer .ft-right .ft-contact .ft-tel .tel-num {
  color: var(--color-white);
}
#footer .ft-right .ft-contact .ft-tel .tel-num small {
  color: var(--color-white);
}

#copyright {
  word-break: normal;
  margin-top: 15%;
  color: var(--color-white);
}
#copyright small {
  font-size: 2.9333333333vw;
}
#copyright a {
  color: var(--color-white);
  text-decoration: underline;
}

/*==========================================
下層共通
===========================================*/
/* 背景アクセントカラー
-----------------*/
.bg-clr-ac {
  background: var(--third-color);
}

/* 番号付投稿
-----------------*/
.com-num-post {
  border: 1px solid var(--main-color);
  padding: 22% 6% 12%;
  margin-bottom: 13%;
  background: var(--color-white);
}
.com-num-post:last-child {
  margin-bottom: 0;
}
.com-num-post::before {
  width: 15vw;
  height: 15vw;
  border-right: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 auto auto 0;
  font-size: 6.6666666667vw;
  font-weight: 700;
}
.com-num-post .post-ttl {
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 7%;
  text-align: left;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  height: 75vw;
  z-index: 1;
}
.lower-sv .sv-ttl {
  position: absolute;
  inset: auto auto 10% 0;
  width: 80%;
  font-size: 6.1333333333vw;
  background: var(--accent-color);
  font-weight: 700;
  z-index: 1;
  padding: 1vw 2vw;
}
.lower-sv .sv-frame {
  width: 85%;
  height: 70%;
  position: absolute;
  inset: auto 0 0 auto;
}
.lower-sv .polygon {
  width: 44.1666%;
  top: 0;
  left: -20%;
}

#merit-sv .sv-frame {
  background: url(../img/sv/merit-sv_bg.jpg) center/cover no-repeat;
}

#guide-sv .sv-frame {
  background: url(../img/sv/guide-sv_bg.jpg) center/cover no-repeat;
}

#join-sv .sv-frame {
  background: url(../img/sv/join-sv_bg.jpg) center/cover no-repeat;
}

#fc-sv .sv-frame {
  background: url(../img/sv/fc-sv_bg.jpg) center/cover no-repeat;
}

#news-sv .sv-frame {
  background: url(../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv .sv-frame {
  background: url(../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv .sv-frame {
  background: url(../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv .sv-frame {
  background: url(../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv .sv-frame {
  background: url(../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv .sv-frame {
  background: url(../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
guide
===========================================*/
/* guide-intro
--------------------*/
#guide-intro .intro-post {
  position: relative;
  margin-bottom: 13%;
  text-align: left;
}
#guide-intro .intro-post:last-child {
  margin-bottom: 0;
}
#guide-intro .intro-post .post-ttl {
  font-size: 6.1333333333vw;
  margin-bottom: 7%;
  padding-left: 29%;
}
#guide-intro .intro-post .post-ttl::after {
  position: absolute;
  content: "step" counter(number, decimal-leading-zero) ".";
  z-index: 10;
  inset: 0 auto 0 15px;
  margin: auto 0;
  font-size: 4.8vw;
  display: flex;
  align-items: center;
}
#guide-intro .intro-post .post-thumb {
  width: 100%;
  height: 72vw;
  margin-bottom: 7%;
}
#guide-intro .intro-post:nth-of-type(odd) .post-ttl::before {
  left: -420px;
}
#guide-intro .intro-post:nth-of-type(even) .post-ttl::before {
  right: -420px;
}

/* guide-manual
--------------------*/
#guide-manual:has(.has-counter) .manual-movie {
  margin-top: 15%;
}
#guide-manual .manual-movie .movie-ttl {
  margin-bottom: 10%;
}
#guide-manual .manual-movie .movie-ttl span {
  font-size: 5.8666666667vw;
  font-weight: 700;
  color: var(--main-color);
  border-bottom: 2px solid;
  display: inline-block;
  position: relative;
  padding: 0 3vw 2vw;
}
#guide-manual .manual-movie .movie-ttl span::after {
  position: absolute;
  content: "";
  inset: auto 0 -2.5vw;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5vw 1.85vw 0px 1.85vw;
  border-color: var(--main-color) transparent transparent transparent;
}
#guide-manual .manual-movie .movie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#guide-manual .manual-movie .movie-frame iframe,
#guide-manual .manual-movie .movie-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*==========================================
join
===========================================*/
.com-contact-box {
  background: var(--main-color);
  padding: 10% 5%;
  margin-top: 15%;
}
.com-contact-box .com-c-ttl {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 7%;
}
.com-contact-box .c-tel .tel-num {
  color: var(--color-white);
}
.com-contact-box .c-tel .tel-num small {
  color: var(--color-white);
}

/* join-terms
--------------------*/
#join-terms .com-contact-box .com-c-ttl {
  font-size: 6.4vw;
}
#join-terms .com-contact-box .com-c-ttl span {
  font-size: 4.5333333333vw;
}
#join-terms .join-regist {
  margin-top: 15%;
  background: var(--accent-color);
  padding: 12% 6%;
}
#join-terms .join-regist .regist-ttl {
  font-weight: 700;
  font-size: 5.6vw;
  line-height: 1.7;
  margin-bottom: 8%;
}
#join-terms .join-regist .regist-ttl span {
  color: var(--main-color);
}

/* join-reject
--------------------*/
#join-reject .com-contact-box .com-c-ttl {
  font-size: 4.5333333333vw;
  text-align: left;
}

/*==========================================
fc
===========================================*/
#fc-archive .fc-tag {
  margin-bottom: 10%;
}
#fc-archive .fc-tag:last-child {
  margin-bottom: 0;
}
#fc-archive .fc-tag .tag-name {
  font-size: 5.6vw;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3%;
}
#fc-archive .fc-tag .page-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
#fc-archive .fc-tag .page-list .page-item {
  width: 48%;
}
#fc-archive .fc-tag .page-list .page-item a {
  height: 13vw;
}
#fc-archive .fc-tag .page-list .page-item a::after {
  border-width: 1.5vw 0 1.5vw 2vw;
}

#fc-single .fc-single-ttl {
  text-align: left;
  margin-bottom: 12%;
}
#fc-single .fc-single-ttl span {
  display: inline-block;
  padding: 2vw 7vw;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 4.5333333333vw;
  font-weight: 700;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  width: 64%;
  margin: 0 0 23% auto;
  font-size: 4vw;
}
.category-select select {
  font-size: 4vw;
  padding: 6% 10% 6% 6%;
}

/*==========================================
news
===========================================*/
.column-wrap .column-post-list .column-post a {
  padding: 14% 0;
}
.column-wrap .column-post-list .column-post:first-child a {
  padding-top: 0;
}
.column-wrap .column-post-list .post-meta-area {
  margin-bottom: 4%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
}
.column-wrap .column-post-list .post-meta-area time {
  width: 20vw;
  font-size: 3.4666666667vw;
}
.column-wrap .column-post-list .post-meta-area .category-label {
  width: calc(100% - 22vw);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1vw 1.5vw;
}
.column-wrap .column-post-list .post-meta-area .category-label li {
  padding: 0 0.75vw;
  font-size: 3.4666666667vw;
}
.column-wrap .column-post-list .post-meta-area .post-ttl {
  font-size: 4.8vw;
  margin: 3% 0;
}
.column-wrap .column-post-list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.column-wrap .column-post-list .column-post:has(.thumb) a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column-wrap .column-post-list .column-post:has(.thumb) .thumb {
  width: 40%;
  height: 33vw;
}
.column-wrap .column-post-list .column-post:has(.thumb) .post-meta-area {
  width: 55%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single-meta time {
  font-size: 3.4666666667vw;
  width: 27%;
  font-weight: normal;
  display: block;
  padding: 0.5vw 0;
}
.single-meta .category-label {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single-meta .category-label li {
  font-size: 3.4666666667vw;
}
.single-meta .category-label li a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 0 1vw;
  display: inline-block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: var(--color-white);
  background: var(--main-color);
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 2.55vw;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ":";
  padding: 0 5px;
}
.single-category dd {
  max-width: 135px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: "#";
}
.single-category ul li a:hover {
  background: var(--color-gray);
}

/*==========================================
contact
===========================================*/
#contact .contact-form {
  margin-bottom: 15%;
}
#contact .contact-form tr th .required {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
  background: var(--color-white);
  padding: 3px;
  font-size: 3vw;
}
#contact .contact-form tr td {
  padding: 3% 0;
}
#contact .contact-form tr td .label-list li {
  margin-bottom: 5%;
}
#contact .contact-form tr td .label-list li:last-child {
  margin-bottom: 0;
}
#contact .contact-form tr td textarea {
  height: 37vw;
}
#contact .contact-form tr.privacy-check th {
  text-align: left;
}
#contact .contact-form .form-field {
  padding: 3%;
  font-size: 4vw;
}
#contact .contact-form .contact-select {
  width: 50%;
  position: relative;
}
#contact .contact-form .contact-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact-form .contact-select select {
  padding: 6% 7% 6% 4%;
  font-size: 4vw;
}
#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 95px;
}
#contact .contact-form #date1,
#contact .contact-form #date2,
#contact .contact-form #date3 {
  width: 73%;
}
#contact .contact-form #address {
  margin-top: 15px;
}
#contact .contact-form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: 3.7333333333vw;
}
#contact .contact-submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact-submits-wrap .check-btn {
  width: 75%;
}
#contact .contact-submits-wrap .back-btn {
  width: 52%;
}
#contact .contact-submits-wrap .send-btn {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  font-size: 4vw;
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy-box {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 8%;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 8%;
}

/*==========================================
site
===========================================*/
#site-map .nav-list-item a {
  padding: 4% 0 4% 8%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/