@charset "UTF-8";
@import "variables.css";
/**************************************************************

base

***************************************************************/
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

* {
  min-height: 0vw; /* Safari clamp関数対策 */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: var(--body-font-family);
  font-style: normal;
  font-optical-sizing: auto;
  color: var(--body-font-color);
  background: var(--body-background);
  letter-spacing: var(--body-letter-spacing);
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

#wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #wrapper {
    min-width: 1280px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--body-font-color);
}

a::before,
a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

a,
a::before,
a::after {
  box-sizing: border-box;
  transition: all 0.3s;
}

a:hover {
  filter: alpha(opacity=60);
  opacity: 0.85;
}

a[href^="mailto:"] {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--body-line-height);
  letter-spacing: 0.1em;
}

/*
# com-content
------------------------*/
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

/*
# GoogleMap
------------------------*/
#g-map .map {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
@media screen and (min-width: 768px) {
  .inbox {
    width: 1080px;
    margin: 0 auto;
  }
  .com-pd {
    padding: 135px 0;
  }
  .com-pt {
    padding-top: 135px;
  }
  .com-pb {
    padding-bottom: 135px;
  }
  .com-mt {
    margin-top: 135px;
  }
  .com-mb {
    margin-bottom: 135px;
  }
}
@media screen and (max-width: 767px) {
  .inbox {
    padding: 0 8%;
    margin: 0 auto;
  }
  .com-pd {
    padding: 18% 0;
  }
  .com-pt {
    padding-top: 18%;
  }
  .com-mt {
    margin-top: 18%;
  }
  .com-pb {
    padding-bottom: 18%;
  }
  .com-mb {
    margin-bottom: 18%;
  }
}
/**************************************************************

modules

***************************************************************/
/*==========================================
テーブルレイアウト
===========================================*/
table {
  width: 100%;
}

.com-table tr {
  width: 100%;
  border-bottom: 1px dotted var(--form-border-color);
}
.com-table tr:last-child {
  border-bottom: none;
}
.com-table th,
.com-table td {
  overflow-wrap: anywhere;
  font-weight: var(--body-font-weight);
  letter-spacing: var(--body-letter-spacing);
}
.com-table th {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}
.com-table td span.tel__text {
  display: block;
  line-height: 1;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*==========================================
iOS版Chrome対策
===========================================*/
a[href^=fax] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/*==========================================
非表示項目設定
===========================================*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/*==========================================
スマホ用ドロワー無効
===========================================*/
@media screen and (min-width: 768px) {
  .drawer_menu {
    display: none;
  }
  #nav-toggle,
  #global-nav {
    display: none;
  }
}
/*==========================================
SNSアイコン
===========================================*/
.sns-icon {
  width: 30px;
  height: 30px;
  transition: all 0.3s;
  display: block;
}
.sns-icon:hover {
  transform: scale(0.9);
}

/*==========================================
Bootstrapアイコン付き
===========================================*/
.bs-icon {
  position: relative;
}
.bs-icon::before {
  position: absolute;
  color: inherit;
  font-family: var(--bootstrap-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto 0;
  line-height: 1;
  letter-spacing: 0;
  z-index: 1;
}

/*==========================================
画像のスケール
===========================================*/
a:has(.img-eff):hover {
  opacity: 1;
}
a:has(.img-eff):hover .img-eff {
  transform: scale(1.05);
}
a:has(.img-eff) .com-img .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}

/*==========================================
投稿画像の背景にnoimage設定
===========================================*/
.post-thumb {
  background: url(../img/common/no_image.jpg) center/100% no-repeat;
}

/*==========================================
投稿が無い時の準備中テキスト
===========================================*/
.post-blank {
  width: 100%;
  text-align: center;
}

/*==========================================
全ページ共通セレクトボックス
===========================================*/
.global-select {
  overflow: hidden;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 2px;
  border: 2px solid var(--form-border-color);
  transition: all 0.3s;
}
.global-select:hover {
  border-color: var(--primary-color);
}
.global-select::before {
  position: absolute;
  top: 50%;
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-black);
  pointer-events: none;
}
.global-select select {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--body-font-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
}
.global-select select::-ms-expand {
  display: none;
}

/*==========================================
自動ナンバリング
===========================================*/
.has-counter {
  counter-reset: number 0;
}
.has-counter .counter-item {
  position: relative;
}
.has-counter .counter-item::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
}

/*==========================================
投稿画像トリミング
===========================================*/
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
}
.com-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*==========================================
ページネーション
===========================================*/
/* 一覧ページ
----------------------------*/
ul.pagenation {
  display: flex;
  width: 100%;
  justify-content: center;
  color: var(--primary-color);
  position: relative;
  padding-top: 2.5%;
  margin-top: 4%;
}
ul.pagenation li {
  background: var(--color-white);
  color: var(--primary-color);
  box-sizing: border-box;
}
ul.pagenation li a {
  display: block;
  color: var(--primary-color);
  padding: 6px 13px;
  border: 1px solid var(--primary-color);
  position: relative;
}
ul.pagenation li a:hover {
  background: var(--primary-color);
  color: var(--color-white) !important;
  filter: alpha(opacity=100);
  opacity: 1;
}
ul.pagenation .current {
  background: var(--primary-color);
  color: var(--color-white) !important;
  padding: 7px 14px;
}

@media screen and (min-width: 768px) {
  .pagenation {
    font-size: 1.4rem;
  }
  ul.pagenation {
    gap: 0 15px;
    padding-top: 40px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .pagenation {
    font-size: 1rem;
  }
  ul.pagenation {
    gap: 0 5%;
    padding-top: 10%;
    margin-top: 12%;
  }
}
/* 詳細ページ
----------------------------*/
div.pagenation {
  color: var(--primary-color);
  position: relative;
  margin-top: 15%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 60px;
}
div.pagenation a {
  position: relative;
  display: block;
  background: var(--color-white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px 0;
  font-size: 1.6rem;
  text-align: center;
}
div.pagenation a:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
div.pagenation .right,
div.pagenation .left {
  width: 15%;
}
div.pagenation .right a,
div.pagenation .left a {
  position: relative;
}
div.pagenation .right a:hover span::before,
div.pagenation .left a:hover span::before {
  border-color: var(--color-white);
}
div.pagenation .right {
  margin-left: auto;
}
div.pagenation .right a {
  padding-right: 5%;
  /*==========================================
  矢印 >
  ===========================================*/
}
div.pagenation .right a span {
  position: relative;
}
div.pagenation .right a span:before {
  position: absolute;
  inset: 0 -20px 0 auto;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
}
div.pagenation .center {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: bold;
  top: 0;
  width: 30%;
  margin: 0 auto;
}
div.pagenation .left a {
  padding-left: 5%;
  /*==========================================
  矢印 >
  ===========================================*/
}
div.pagenation .left a span {
  position: relative;
}
div.pagenation .left a span:before {
  position: absolute;
  inset: 0 auto 0 -20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transform: rotate(225deg);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  div.pagenation {
    margin-top: 17%;
    min-height: 11vw;
  }
  div.pagenation a {
    font-size: 3.45vw;
    padding: 2vw 0;
  }
  div.pagenation .right,
  div.pagenation .left {
    width: 18%;
  }
  div.pagenation .right a {
    padding-right: 20%;
  }
  div.pagenation .right a span::before {
    right: -3vw;
  }
  div.pagenation .left a {
    padding-left: 20%;
  }
  div.pagenation .left a span::before {
    left: -3vw;
  }
}
/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}

/**************************************************************
pages
***************************************************************/
/*==========================================
news
===========================================*/
/* 一覧ページ
-----------------------------*/
.column__wrap .column__list .column__post {
  border-bottom: 1px solid var(--color-gray);
}
.column__wrap .column__list .column__post:last-child {
  border-bottom: none;
}
.column__wrap .column__list .column__post a {
  display: block;
}
.column__wrap .column__list .column__post a:hover {
  opacity: 0.9;
  transform: translateX(10px);
}
.column__wrap .column__list .column__post a:hover .more-btn {
  background: var(--color-white);
  color: var(--primary-color);
}
.column__wrap .column__list .column__post-meta time {
  color: var(--primary-color);
}
.column__wrap .column__list .column__post-meta .category-label li {
  border: 1px solid var(--primary-color);
  color: var(--color-white);
  background: var(--primary-color);
}
.column__wrap .column__list .column__post-title, .column__wrap .column__list .column__post-body {
  width: 100%;
}
.column__wrap .column__list .column__post-title {
  font-weight: var(--font-weight-bold);
}

/* 詳細ページ
-----------------------------*/
/* タグ表示
-------------*/
.single__post-meta .category-label li a {
  border: 1px solid var(--primary-color);
  color: var(--color-white);
  background: var(--primary-color);
  display: block;
}

/*==========================================
contact
===========================================*/
#contact {
  /*==================================================
     日付選択フォーム
    ================================================== */
}
#contact .contact__form-item {
  display: block;
}
#contact .contact__form-item .contact__form-label,
#contact .contact__form-item .contact__form-input {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
}
#contact .contact__form-item .upload-notice {
  display: block;
  font-size: var(--font-size-13);
}
#contact .contact__form-item.contact__form-privacy .contact__form-input {
  text-align: center;
}
#contact .contact__form-item.contact__form-privacy .privacy__agree {
  text-decoration: underline;
  color: var(--body-font-color);
}
#contact .contact__form-item:has(.error-text) input,
#contact .contact__form-item:has(.error-text) textarea,
#contact .contact__form-item:has(.error-text) input[type=radio] + label::before,
#contact .contact__form-item:has(.error-text) input[type=checkbox] + label::before {
  background: #ffcfcf;
}
#contact .contact__form-item:has(.error-text) input:not(:-moz-placeholder-shown), #contact .contact__form-item:has(.error-text) textarea:not(:-moz-placeholder-shown), #contact .contact__form-item:has(.error-text) select:not(:-moz-placeholder-shown) {
  background: rgb(232, 240, 254);
}
#contact .contact__form-item:has(.error-text) input:not(:placeholder-shown),
#contact .contact__form-item:has(.error-text) textarea:not(:placeholder-shown),
#contact .contact__form-item:has(.error-text) select:not(:placeholder-shown) {
  background: rgb(232, 240, 254);
}
#contact .contact__form-item:has(.error-text) select:has(option:checked[value=未選択]) {
  background: #ffcfcf;
}
#contact .contact__form-item:has(.error-text) input[type=radio]:checked + label::before,
#contact .contact__form-item:has(.error-text) input[type=checkbox]:checked + label::before {
  background: rgb(232, 240, 254);
}
#contact .contact__form-list li {
  list-style: none;
}
#contact .contact__form .required {
  color: var(--color-red);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
  vertical-align: baseline;
  padding: 3px;
}
#contact .contact__form .error-text {
  color: var(--color-red);
  margin-bottom: 3%;
}
#contact .contact__form-value {
  width: 100%;
  border: 2px solid var(--form-border-color);
  background: var(--input-clear-color);
  font-family: var(--main-font-family);
  font-size: var(--body-font-size);
  border-radius: 0;
  line-height: 2;
}
#contact .contact__form-value:-moz-placeholder-shown {
  background: var(--color-white);
}
#contact .contact__form-value:placeholder-shown {
  background: var(--color-white);
}
#contact .contact__form-select {
  margin: 0 auto 0 0;
}
#contact .contact__form-value, #contact .contact__form-select {
  transition: all 0.3s;
  font-size: var(--body-font-size);
  margin: 0 auto 0 0;
}
#contact .contact__form-value:hover, #contact .contact__form-select:hover {
  cursor: pointer;
  border-color: var(--primary-color);
}
#contact .contact__form-value:hover, #contact .contact__form-value:focus-visible, #contact .contact__form-value:active, #contact .contact__form-select:hover, #contact .contact__form-select:focus-visible, #contact .contact__form-select:active {
  outline-color: var(--primary-color);
}
#contact .contact__form .upload-item-wrap {
  display: flex;
}
#contact .contact__form .upload-item-wrap #file01 {
  margin-bottom: 4%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  color: var(--color-white);
  display: block;
  border-radius: 5px;
  padding: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  margin-top: 9%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn.select-file {
  background: var(--primary-color);
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 3%;
  background: var(--primary-color);
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap p {
  background: var(--color-red);
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap #file01 {
  width: 100%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: var(--color-red);
}
#contact .contact__form .upload-item-wrap #file_opt {
  display: none;
}
#contact .g-recaptcha div {
  margin: 0 auto 6% auto;
}
#contact .contact__submits-wrap input[type=button],
#contact .contact__submits-wrap input[type=submit],
#contact .contact__submits-wrap button {
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--body-letter-spacing);
  color: var(--color-white);
  background: var(--primary-color);
  font-family: var(--main-font-family);
  font-size: var(--body-font-size);
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  border-radius: 0;
}
#contact .contact__submits-wrap input[type=button]:hover,
#contact .contact__submits-wrap input[type=submit]:hover,
#contact .contact__submits-wrap button:hover {
  transform: scale(0.95);
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
#contact .contact__submits-wrap input[type=button][disabled],
#contact .contact__submits-wrap input[type=submit][disabled] {
  opacity: 0.3;
  pointer-events: none;
  background: none;
  color: var(--primary-color);
}
#contact .contact__submits-wrap input[type=button][disabled]:hover,
#contact .contact__submits-wrap input[type=submit][disabled]:hover {
  cursor: no-drop;
}
#contact .contact__submits-wrap .contact__submits-back {
  color: var(--primary-color);
  background: none;
}
#contact .contact__submits-wrap .contact__submits-back:hover {
  background: var(--primary-color);
  color: var(--color-white);
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: none;
  margin: 0;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}
#contact input[type=radio] + label::before,
#contact input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: var(--color-white);
}
#contact input[type=radio] + label::before {
  border: 2px solid var(--form-border-color);
  border-radius: 30px;
}
#contact input[type=checkbox] + label::before {
  border: 2px solid var(--form-border-color);
}
#contact input[type=radio]:checked + label::after,
#contact input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}
#contact input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: var(--color-red);
  border-radius: 8px;
}
#contact input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid var(--color-red);
  border-bottom: 3px solid var(--color-red);
  transform: rotate(-45deg);
}
#contact .date-list {
  padding-left: inherit;
}
#contact .date-list li {
  list-style: none;
  margin-bottom: 15px;
}
#contact .date-list li p {
  margin-bottom: 5px;
}
#contact .sec-error-link {
  margin: 5% 0;
}
#contact .sec-error-link a {
  text-decoration: underline;
}

/*==========================================
complete
===========================================*/
.complete__box p a {
  text-decoration: underline;
}

/*==========================================
site
===========================================*/
#site-map .sitemap__item {
  border-bottom: 1px solid var(--primary-color);
  font-weight: var(--font-weight-medium);
}
#site-map .sitemap__item-link {
  display: block;
  position: relative;
}
#site-map .sitemap__item-link:before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  font-family: var(--bootstrap-icon);
  content: "\f134";
  display: flex;
  align-items: center;
  justify-content: center;
}
#site-map .sitemap__item-link:hover {
  color: var(--primary-color);
  letter-spacing: 2px;
}

/*==========================================
404
===========================================*/
#err-cont .err-cont__inner a {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
カラーボックス
===========================================*/