@charset "UTF-8";
/* ホバー
--------------------------------- */
/* ラインクランプ
--------------------------------- */
/* Flex均等割
--------------------------------- */
/* =========================
*  CSSリセット＆基本設定
* ========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #F7F6F1;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* スマートなvw一括指定ミックスイン（複数数値対応）
--------------------------------- */
/* PCとSPの適用切り替え
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
/* レイアウト
--------------------------------- */
/* display系
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

.dp-pc-fx {
  display: flex;
}

.dp-sp-fx {
  display: none;
}

.dp-pc-fx-im {
  display: flex !important;
}

.dp-sp-fx-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc-fx {
    display: none;
  }
  .dp-sp-fx {
    display: flex;
  }
  .dp-pc-fx-im {
    display: none !important;
  }
  .dp-sp-fx-im {
    display: flex !important;
  }
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* -------------------------------
 header
--------------------------------- */
.gheader {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1000;
}
.gheader .gheader__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  height: min(6.6666666667 * 1vw, 100px);
  padding: 0 min(2.6666666667 * 1vw, 40px);
}
.gheader .gheader__inner .gheader__logo {
  z-index: 10;
  width: fit-content;
  height: min(2.4 * 1vw, 36px);
  margin: 0 auto 0 0;
}
.gheader .gheader__inner .gheader__logo a {
  display: block;
  height: 100%;
}
.gheader .gheader__inner .gheader__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gheader.is-float {
  z-index: 1000;
  position: fixed;
  top: min(-7.3333333333 * 1vw, -110px);
  right: 0;
  left: 0;
  transition: top 0.5s;
}
.gheader.is-float .gheader__inner {
  border-radius: min(1.0666666667 * 1vw, 16px);
  background: #ffffff;
}
.gheader.is-float.is-show {
  top: 0;
  transition: top 0.5s;
}

@media (max-width: 767px) {
  .gheader {
    top: 0;
  }
  .gheader .gheader__inner {
    width: 100%;
    padding-left: min(4 * 1vw, 24px);
    padding-right: min(4 * 1vw, 24px);
    height: min(17.3333333333 * 1vw, 104px);
  }
  .gheader .gheader__inner .gheader__logo {
    height: min(8 * 1vw, 48px);
  }
  .gheader.is-float.is-show {
    top: 0;
  }
}
/* -------------------------------
 GlobalNavigation
--------------------------------- */
.gheader__nav {
  margin: 0 0 0 auto;
}
.gheader__nav .gheader__menu {
  display: none;
}
.gheader__nav .primary {
  z-index: 1;
  display: flex;
  align-items: center;
  column-gap: min(2 * 1vw, 30px);
  margin: 0;
  line-height: 1;
}
.gheader__nav .primary > li > a {
  position: relative;
  font-size: min(1.0666666667 * 1vw, 16px);
  font-weight: 500;
  text-decoration: none;
  color: #1a2229;
  transition: color 0.3s cubic-bezier(0.05, 0.935, 0.905, 0.875);
}
.gheader__nav .primary > li > a::before {
  z-index: 100;
  position: absolute;
  content: "";
  bottom: min(-0.2666666667 * 1vw, -4px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-bottom: 1px solid currentColor;
  transition: width 0.3s cubic-bezier(0.05, 0.935, 0.905, 0.875);
}
.gheader__nav .primary > li:hover > a {
  position: relative;
  color: #132c8d;
}
.gheader__nav .primary > li:hover > a::before {
  width: 40px;
}
.gheader__nav .primary > li.hours-and-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: min(0.2666666667 * 1vw, 4px);
}
.gheader__nav .primary > li.hours-and-tel .business-hours {
  font-size: min(0.8 * 1vw, 12px);
}
.gheader__nav .primary > li.hours-and-tel .tel {
  font-size: min(0.9333333333 * 1vw, 14px);
}
.gheader__nav .primary > li.hours-and-tel .tel span {
  font-size: min(1.4666666667 * 1vw, 22px);
  font-weight: 700;
}
.gheader__nav .primary > li.sns-icons {
  display: flex;
  gap: min(1.3333333333 * 1vw, 20px);
}
.gheader__nav .primary > li.sns-icons a:before {
  content: none;
}
.gheader__nav .primary > li.sns-icons a:hover {
  opacity: 0.8;
}
.gheader__nav .primary > li.sns-icons a img {
  width: min(2.1333333333 * 1vw, 32px);
  height: min(2.1333333333 * 1vw, 32px);
  object-fit: contain;
}
.gheader__nav .primary > li.sns-icons:hover a {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .gheader__nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: min(17.6 * 1vw, 105.6px);
  }
  .gheader__nav.is_open {
    position: fixed;
  }
  .gheader__nav .gheader__menu {
    z-index: 2000;
    position: absolute;
    top: 50%;
    right: min(4 * 1vw, 24px);
    transform: translateY(-50%);
    display: block;
  }
  .gheader__nav .gheader__menu button {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: min(10.6666666667 * 1vw, 64px);
    height: min(2.9333333333 * 1vw, 17.6px);
    padding: min(2.6666666667 * 1vw, 16px);
    white-space: nowrap;
    text-indent: 200%;
    background-color: transparent;
    border: none;
  }
  .gheader__nav .gheader__menu button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    z-index: -1;
    border-radius: 50%;
    width: min(10.6666666667 * 1vw, 64px);
    height: min(10.6666666667 * 1vw, 64px);
    transform: translate(-50%, -50%) scale(1);
  }
  .gheader__nav .gheader__menu button > span {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: calc(100% - min(5.3333333333 * 1vw, 32px));
    height: 100%;
    margin: auto;
  }
  .gheader__nav .gheader__menu button > span::before, .gheader__nav .gheader__menu button > span::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    background: #1a2229;
    transition: all 0.3s ease;
  }
  .gheader__nav .gheader__menu button > span::before {
    top: min(1.0666666667 * 1vw, 6.4px);
  }
  .gheader__nav .gheader__menu button > span::after {
    bottom: min(1.0666666667 * 1vw, 6.4px);
  }
  .gheader__nav .gheader__menu button.is_active span::before {
    top: 50%;
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .gheader__nav .gheader__menu button.is_active span::after {
    bottom: 50%;
    margin-bottom: 0;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .gheader__nav .gheader__menu .is_active::before {
    opacity: 1;
  }
  .gheader__nav .gheader__menu .is_active span::before,
  .gheader__nav .gheader__menu .is_active span::after {
    background: #1a2229;
  }
  .gheader__nav .gheader__navInner {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
  }
  .gheader__nav .gheader__navInner .gheader__navContent {
    overscroll-behavior-y: contain;
    box-sizing: border-box;
    z-index: 1000;
    position: relative;
    overflow: auto;
    height: 100vh;
    padding: 100px 30px 200px;
  }
  .gheader__nav .primary {
    flex-direction: column;
    row-gap: min(6.9333333333 * 1vw, 41.6px);
  }
  .gheader__nav .primary > li {
    text-align: center;
  }
  .gheader__nav .primary > li > a {
    font-size: min(4.2666666667 * 1vw, 25.6px);
    font-weight: 400;
  }
  .gheader__nav .primary > li > a::before {
    content: none;
  }
  .gheader__nav .primary > li.hours-and-tel {
    align-items: center;
    gap: min(2.6666666667 * 1vw, 16px);
  }
  .gheader__nav .primary > li.hours-and-tel .business-hours {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
  .gheader__nav .primary > li.hours-and-tel .tel {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
  .gheader__nav .primary > li.hours-and-tel .tel span {
    font-size: min(4.2666666667 * 1vw, 25.6px);
    font-weight: 500;
  }
  .gheader__nav .primary > li.sns-icons {
    gap: min(5.3333333333 * 1vw, 32px);
  }
  .gheader__nav .primary > li.sns-icons a img {
    width: min(8.5333333333 * 1vw, 51.2px);
    height: min(8.5333333333 * 1vw, 51.2px);
  }
}
/* -------------------------------
 共通パーツ
--------------------------------- */
/* ユーティリティ系
--------------------------------- */
.bgc-wh1 {
  background-color: #fff;
}

.bgc-beige2 {
  background-color: #EFEDE5;
}

.bgc-gy2 {
  background-color: #e8e8e8;
}

.main {
  margin-top: min(6.6666666667 * 1vw, 100px);
}

.inner-wid-pc-1 {
  width: 90%;
}

.inner-wid-pc-2 {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(1200px + min(5.3333333333 * 1vw, 80px));
  margin: 0 auto;
  padding-left: min(2.6666666667 * 1vw, 40px);
  padding-right: min(2.6666666667 * 1vw, 40px);
}

.pdb-st-1 {
  padding-block: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .pdb-st-1 {
    padding-block: min(21.3333333333 * 1vw, 128px);
  }
}

.pdb-st-2 {
  padding-block: min(6.6666666667 * 1vw, 100px) min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .pdb-st-2 {
    padding-block: min(26.6666666667 * 1vw, 160px) min(21.3333333333 * 1vw, 128px);
  }
}

.pdb-st-3 {
  padding-block: min(5.3333333333 * 1vw, 80px) min(8 * 1vw, 120px);
}
@media (max-width: 767px) {
  .pdb-st-3 {
    padding-block: min(21.3333333333 * 1vw, 128px) min(32 * 1vw, 192px);
  }
}

.mt-st-1 {
  margin-top: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .mt-st-1 {
    margin-top: min(21.3333333333 * 1vw, 128px);
  }
}

.mt-st-2 {
  margin-top: min(6.6666666667 * 1vw, 100px);
}
@media (max-width: 767px) {
  .mt-st-2 {
    margin-top: min(26.6666666667 * 1vw, 160px);
  }
}

.mb-st-1 {
  margin-bottom: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .mb-st-1 {
    margin-bottom: min(21.3333333333 * 1vw, 128px);
  }
}

.mb-st-2 {
  margin-bottom: min(6.6666666667 * 1vw, 100px);
}
@media (max-width: 767px) {
  .mb-st-2 {
    margin-bottom: min(26.6666666667 * 1vw, 160px);
  }
}

.mt-20 {
  margin-top: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .mt-20 {
    margin-top: min(5.3333333333 * 1vw, 32px);
  }
}

.mt-30 {
  margin-top: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .mt-30 {
    margin-top: min(8 * 1vw, 48px);
  }
}

.mt-40 {
  margin-top: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .mt-40 {
    margin-top: min(10.6666666667 * 1vw, 64px);
  }
}

.mt-60 {
  margin-top: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .mt-60 {
    margin-top: min(16 * 1vw, 96px);
  }
}

.mt-80 {
  margin-top: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .mt-80 {
    margin-top: min(21.3333333333 * 1vw, 128px);
  }
}

.mb-30 {
  margin-bottom: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .mb-30 {
    margin-bottom: min(8 * 1vw, 48px);
  }
}

.mb-40 {
  margin-bottom: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
}

.mb-60 {
  margin-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: min(16 * 1vw, 96px);
  }
}

.mb-80 {
  margin-bottom: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .mb-80 {
    margin-bottom: min(21.3333333333 * 1vw, 128px);
  }
}

.pt-20 {
  padding-top: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .pt-20 {
    padding-top: min(5.3333333333 * 1vw, 32px);
  }
}

.pt-30 {
  padding-top: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .pt-30 {
    padding-top: min(8 * 1vw, 48px);
  }
}

.pt-40 {
  padding-top: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .pt-40 {
    padding-top: min(10.6666666667 * 1vw, 64px);
  }
}

.pt-60 {
  padding-top: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .pt-60 {
    padding-top: min(16 * 1vw, 96px);
  }
}

.pt-80 {
  padding-top: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .pt-80 {
    padding-top: min(21.3333333333 * 1vw, 128px);
  }
}

.pb-20 {
  padding-bottom: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .pb-20 {
    padding-bottom: min(5.3333333333 * 1vw, 32px);
  }
}

.pb-30 {
  padding-bottom: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .pb-30 {
    padding-bottom: min(8 * 1vw, 48px);
  }
}

.pb-40 {
  padding-bottom: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .pb-40 {
    padding-bottom: min(10.6666666667 * 1vw, 64px);
  }
}

.pb-60 {
  padding-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .pb-60 {
    padding-bottom: min(16 * 1vw, 96px);
  }
}

.pb-80 {
  padding-bottom: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .pb-80 {
    padding-bottom: min(21.3333333333 * 1vw, 128px);
  }
}

@media (max-width: 767px) {
  .main {
    margin-top: min(17.3333333333 * 1vw, 104px);
  }
  .inner-wid-pc-1 {
    width: 94%;
  }
  .inner-wid-pc-2 {
    width: 100%;
    padding-left: min(4 * 1vw, 24px);
    padding-right: min(4 * 1vw, 24px);
  }
  .pdb-st-1 {
    padding-block: min(10.6666666667 * 1vw, 64px);
  }
  .pdb-st-2 {
    padding-block: min(16 * 1vw, 96px) min(10.6666666667 * 1vw, 64px);
  }
  .pdb-st-3 {
    padding-block: min(10.6666666667 * 1vw, 64px) min(21.3333333333 * 1vw, 128px);
  }
  .mt-st-1 {
    margin-top: min(10.6666666667 * 1vw, 64px);
  }
  .mt-st-2 {
    margin-top: min(16 * 1vw, 96px);
  }
  .mb-st-1 {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
  .mb-st-2 {
    margin-bottom: min(16 * 1vw, 96px);
  }
  .mt-20-sp {
    margin-top: min(5.3333333333 * 1vw, 32px);
  }
  .mt-30-sp {
    margin-top: min(8 * 1vw, 48px);
  }
  .mt-40-sp {
    margin-top: min(10.6666666667 * 1vw, 64px);
  }
  .mt-60-sp {
    margin-top: min(16 * 1vw, 96px);
  }
  .mt-80-sp {
    margin-top: min(21.3333333333 * 1vw, 128px);
  }
  .mb-30-sp {
    margin-bottom: min(8 * 1vw, 48px);
  }
  .mb-40-sp {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
  .mb-60-sp {
    margin-bottom: min(16 * 1vw, 96px);
  }
  .mb-80-sp {
    margin-bottom: min(21.3333333333 * 1vw, 128px);
  }
  .pt-20-sp {
    padding-top: min(5.3333333333 * 1vw, 32px);
  }
  .pt-30-sp {
    padding-top: min(8 * 1vw, 48px);
  }
  .pt-40-sp {
    padding-top: min(10.6666666667 * 1vw, 64px);
  }
  .pt-60-sp {
    padding-top: min(16 * 1vw, 96px);
  }
  .pt-80-sp {
    padding-top: min(21.3333333333 * 1vw, 128px);
  }
  .pb-20-sp {
    padding-bottom: min(5.3333333333 * 1vw, 32px);
  }
  .pb-30-sp {
    padding-bottom: min(8 * 1vw, 48px);
  }
  .pb-40-sp {
    padding-bottom: min(10.6666666667 * 1vw, 64px);
  }
  .pb-60-sp {
    padding-bottom: min(16 * 1vw, 96px);
  }
  .pb-80-sp {
    padding-bottom: min(21.3333333333 * 1vw, 128px);
  }
}
/* コンポーネント
--------------------------------- */
.heading_1 {
  margin-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .heading_1 {
    margin-bottom: min(16 * 1vw, 96px);
  }
}
.heading_1 {
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .heading_1 {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
}
.heading_1 {
  font-weight: 300;
  text-align: center;
  color: #433232;
}
.heading_1 span {
  display: block;
  margin-bottom: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .heading_1 span {
    margin-bottom: min(2.6666666667 * 1vw, 16px);
  }
}
.heading_1 span {
  font-size: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .heading_1 span {
    font-size: min(8 * 1vw, 48px);
  }
}
.heading_1 span {
  font-weight: 400;
  color: #333;
  line-height: 1;
  letter-spacing: 0.5em;
}

.lead_1 {
  margin-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .lead_1 {
    margin-bottom: min(16 * 1vw, 96px);
  }
}
.lead_1 {
  font-size: min(2.1333333333 * 1vw, 32px);
}
@media (max-width: 767px) {
  .lead_1 {
    font-size: min(8.5333333333 * 1vw, 51.2px);
  }
}
.lead_1 {
  font-weight: 700;
  text-align: center;
  color: #707070;
}

.text_1 {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .text_1 {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.text_1 {
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
  color: #333;
}

a.link-btn_1 {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: min(1.3333333333 * 1vw, 20px) min(3.3333333333 * 1vw, 50px);
}
@media (max-width: 767px) {
  a.link-btn_1 {
    padding: min(5.3333333333 * 1vw, 32px) min(13.3333333333 * 1vw, 80px);
  }
}
a.link-btn_1 {
  font-size: min(1 * 1vw, 15px);
}
@media (max-width: 767px) {
  a.link-btn_1 {
    font-size: min(4 * 1vw, 24px);
  }
}
a.link-btn_1 {
  font-weight: 500;
  border: 1px solid #333;
}
@media (hover: hover) and (pointer: fine) {
  a.link-btn_1 {
    transition: opacity 0.3s;
  }
  a.link-btn_1:hover {
    opacity: 0.8;
  }
}

a.link-btn_2 {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: min(1.0666666667 * 1vw, 16px) min(4.6666666667 * 1vw, 70px);
}
@media (max-width: 767px) {
  a.link-btn_2 {
    padding: min(4.2666666667 * 1vw, 25.6px) min(18.6666666667 * 1vw, 112px);
  }
}
a.link-btn_2 {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  a.link-btn_2 {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
a.link-btn_2 {
  font-weight: 500;
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
}
@media (hover: hover) and (pointer: fine) {
  a.link-btn_2 {
    transition: opacity 0.3s;
  }
  a.link-btn_2:hover {
    opacity: 0.8;
  }
}

.category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  display: block;
  width: fit-content;
  min-width: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    min-width: min(21.3333333333 * 1vw, 128px);
  }
}
.category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  padding: min(0.2666666667 * 1vw, 4px) min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    padding: min(1.0666666667 * 1vw, 6.4px) min(3.2 * 1vw, 19.2px);
  }
}
.category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
}
.category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  font-weight: 500;
  color: #333;
  text-align: center;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    border-radius: min(8 * 1vw, 48px);
  }
}

.mv-lower {
  position: relative;
  height: auto;
}
.mv-lower h1 {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: calc(min(2.6666666667 * 1vw, 40px) + 2.5%);
  transform: translateY(-50%);
  width: 28.3333333333%;
  padding: min(4.2666666667 * 1vw, 64px) min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .mv-lower h1 {
    padding: min(17.0666666667 * 1vw, 102.4px) min(5.3333333333 * 1vw, 32px);
  }
}
.mv-lower h1 {
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .mv-lower h1 {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
}
.mv-lower h1 {
  font-weight: 300;
  text-align: center;
  color: #333;
  background-color: #fff;
}
.mv-lower h1 span {
  display: block;
  margin-bottom: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .mv-lower h1 span {
    margin-bottom: min(2.6666666667 * 1vw, 16px);
  }
}
.mv-lower h1 span {
  font-size: min(1.7333333333 * 1vw, 26px);
}
@media (max-width: 767px) {
  .mv-lower h1 span {
    font-size: min(6.9333333333 * 1vw, 41.6px);
  }
}
.mv-lower h1 span {
  font-weight: 400;
  letter-spacing: 0.5em;
  color: #433232;
}
.mv-lower .mv-lower__image {
  width: 83.3333333333%;
  height: min(43.3333333333 * 1vw, 650px);
  object-fit: cover;
  margin-left: auto;
  filter: brightness(0.7);
}

.mv-lower.mv-lower-noimage h1 {
  position: relative;
  top: 0;
  transform: none;
  left: 0;
  width: 100%;
  margin: min(2 * 1vw, 30px) auto 0;
}
.mv-lower.mv-lower-noimage h1 span {
  font-size: min(2 * 1vw, 30px);
  font-weight: 700;
}

.image-panels {
  display: flex;
  column-gap: min(2 * 1vw, 30px);
}
.image-panels .image-panels__panel {
  flex: 1;
  max-width: 400px;
  height: 100%;
  aspect-ratio: 4/3;
}
.image-panels .image-panels__panel .image-panels__panel-img {
  height: 100%;
  object-fit: cover;
}

.table-1 .table-1__item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.table-1 .table-1__item:not(:last-child) {
  margin-bottom: min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item:not(:last-child) {
    margin-bottom: min(6.4 * 1vw, 38.4px);
  }
}
.table-1 .table-1__item .table-1__ttl {
  position: relative;
  width: 19.1666666667%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item .table-1__ttl {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.table-1 .table-1__item .table-1__ttl::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: min(0.2666666667 * 1vw, 4px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item .table-1__ttl::after {
    height: min(1.0666666667 * 1vw, 6.4px);
  }
}
.table-1 .table-1__item .table-1__ttl::after {
  background-color: #333;
}
.table-1 .table-1__item .table-1__text {
  position: relative;
  width: 80.8333333333%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item .table-1__text {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.table-1 .table-1__item .table-1__text {
  padding-left: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .table-1 .table-1__item .table-1__text {
    padding-left: min(10.6666666667 * 1vw, 64px);
  }
}
.table-1 .table-1__item .table-1__text::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
  opacity: 0.8;
}

.custom-php-form .form-1__inner .form-1__item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.custom-php-form .form-1__inner .form-1__item:not(:last-child) {
  margin-bottom: min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item:not(:last-child) {
    margin-bottom: min(6.4 * 1vw, 38.4px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl {
  position: relative;
  width: 19.1666666667%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__ttl {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D4D2C1;
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .req {
  display: inline-block;
  margin-left: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__ttl .req {
    margin-left: min(2.6666666667 * 1vw, 16px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .req {
  font-size: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__ttl .req {
    font-size: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .req {
  font-weight: 400;
  color: red;
  vertical-align: middle;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content {
  position: relative;
  width: 80.8333333333%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content {
  padding-left: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content {
    padding-left: min(10.6666666667 * 1vw, 64px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #D4D2C1 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.8;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=text],
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=email],
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=tel] {
  width: 100%;
  max-width: 400px;
  padding: min(0.5333333333 * 1vw, 8px) min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content input[type=text],
  .custom-php-form .form-1__inner .form-1__item .form-1__content input[type=email],
  .custom-php-form .form-1__inner .form-1__item .form-1__content input[type=tel] {
    padding: min(2.1333333333 * 1vw, 12.8px) min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=text],
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=email],
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=tel] {
  font-size: min(1.0666666667 * 1vw, 16px);
  border: 1px solid #9F9F9F;
  background-color: #F8F8F8;
  border-radius: 4px;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=text]:focus,
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=email]:focus,
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=tel]:focus {
  outline: none;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=text]::placeholder,
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=email]::placeholder,
.custom-php-form .form-1__inner .form-1__item .form-1__content input[type=tel]::placeholder {
  color: #9F9F9F;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=radio]) {
  display: flex;
  align-items: center;
  gap: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=radio]) {
    gap: min(5.3333333333 * 1vw, 32px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=radio]) label {
  display: flex;
  align-items: center;
  gap: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=radio]) label {
    gap: min(2.6666666667 * 1vw, 16px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=radio]) label input {
  width: min(1.6 * 1vw, 24px);
  height: min(1.6 * 1vw, 24px);
}
.custom-php-form .form-1__inner .form-1__item .form-1__content textarea {
  width: 85%;
  height: min(13.3333333333 * 1vw, 200px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content textarea {
    height: min(53.3333333333 * 1vw, 320px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content textarea {
  padding: min(0.5333333333 * 1vw, 8px) min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content textarea {
    padding: min(2.1333333333 * 1vw, 12.8px) min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content textarea {
  font-size: min(1.0666666667 * 1vw, 16px);
  border: 1px solid #9F9F9F;
  background-color: #F8F8F8;
  border-radius: 4px;
  resize: vertical;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content textarea:focus {
  outline: none;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content textarea::placeholder {
  color: #9F9F9F;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: min(1.0666666667 * 1vw, 16px) min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) {
    gap: min(4.2666666667 * 1vw, 25.6px) min(6.4 * 1vw, 38.4px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) label {
  display: flex;
  align-items: center;
  gap: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) label {
    gap: min(2.6666666667 * 1vw, 16px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) label {
  cursor: pointer;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content:has(input[type=checkbox]) label input {
  width: min(1.4666666667 * 1vw, 22px);
  height: min(1.4666666667 * 1vw, 22px);
  cursor: pointer;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content select {
  width: 100%;
  max-width: 400px;
  padding: min(0.5333333333 * 1vw, 8px) min(2.4 * 1vw, 36px) min(0.5333333333 * 1vw, 8px) min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__content select {
    padding: min(2.1333333333 * 1vw, 12.8px) min(9.6 * 1vw, 57.6px) min(2.1333333333 * 1vw, 12.8px) min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__content select {
  font-size: min(1.0666666667 * 1vw, 16px);
  border: 1px solid #9F9F9F;
  background-color: #F8F8F8;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content select:focus {
  outline: none;
}
.custom-php-form .form-1__inner .form-1__item .form-1__content select:invalid {
  color: #9F9F9F;
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .any {
  display: inline-block;
  margin-left: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__ttl .any {
    margin-left: min(2.6666666667 * 1vw, 16px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .any {
  font-size: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-1__ttl .any {
    font-size: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-1__ttl .any {
  font-weight: 400;
  color: #777;
  vertical-align: middle;
}
.custom-php-form .form-1__inner .form-1__item .form-error {
  margin-top: min(0.5333333333 * 1vw, 8px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-error {
    margin-top: min(2.1333333333 * 1vw, 12.8px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-error {
  font-size: min(0.8666666667 * 1vw, 13px);
  color: red;
}
.custom-php-form .form-1__inner .form-1__item .form-note {
  margin-top: min(0.5333333333 * 1vw, 8px);
}
@media (max-width: 767px) {
  .custom-php-form .form-1__inner .form-1__item .form-note {
    margin-top: min(2.1333333333 * 1vw, 12.8px);
  }
}
.custom-php-form .form-1__inner .form-1__item .form-note {
  font-size: min(0.8666666667 * 1vw, 13px);
  color: #777;
}
.custom-php-form button[type=submit] {
  display: block;
  margin: min(2.6666666667 * 1vw, 40px) auto 0;
}
@media (max-width: 767px) {
  .custom-php-form button[type=submit] {
    margin: min(10.6666666667 * 1vw, 64px) auto 0;
  }
}
.custom-php-form button[type=submit] {
  padding: min(0.8 * 1vw, 12px) min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .custom-php-form button[type=submit] {
    padding: min(3.2 * 1vw, 19.2px) min(10.6666666667 * 1vw, 64px);
  }
}
.custom-php-form button[type=submit] {
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .custom-php-form button[type=submit] {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.custom-php-form button[type=submit] {
  font-weight: 500;
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
  border-radius: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .custom-php-form button[type=submit] {
    transition: opacity 0.3s;
  }
  .custom-php-form button[type=submit]:hover {
    opacity: 0.8;
  }
}
.custom-php-form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.custom-php-form button[type=submit]:not(:disabled):hover {
  opacity: 0.8;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__item {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__item:not(:last-child) {
  margin-bottom: min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__item:not(:last-child) {
    margin-bottom: min(6.4 * 1vw, 38.4px);
  }
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__ttl {
  position: relative;
  width: 19.1666666667%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__ttl {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__ttl {
  font-weight: 500;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__ttl::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D4D2C1;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content {
  position: relative;
  width: 80.8333333333%;
  padding-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content {
    padding-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content {
  padding-left: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content {
    padding-left: min(10.6666666667 * 1vw, 64px);
  }
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content {
  font-size: min(1.0666666667 * 1vw, 16px);
  line-height: 1.8;
  word-break: break-word;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #D4D2C1 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.8;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content:empty::before {
  content: "未入力";
  color: #999;
}
.custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content br {
  display: block;
  margin-top: min(0.4 * 1vw, 6px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--confirm .form-1--confirm .form-1__content br {
    margin-top: min(1.6 * 1vw, 9.6px);
  }
}
.custom-php-form.custom-php-form--complete .blk-style-1__inner {
  text-align: center;
}
.custom-php-form.custom-php-form--complete .lead_1 {
  margin-bottom: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--complete .lead_1 {
    margin-bottom: min(5.3333333333 * 1vw, 32px);
  }
}
.custom-php-form.custom-php-form--complete .text_1 {
  margin-bottom: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--complete .text_1 {
    margin-bottom: min(4.2666666667 * 1vw, 25.6px);
  }
}
.custom-php-form.custom-php-form--complete .text_1 {
  line-height: 1.8;
}
.custom-php-form.custom-php-form--complete .form-complete__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  flex-wrap: wrap;
  gap: min(1.3333333333 * 1vw, 20px) min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--complete .form-complete__btns {
    gap: min(5.3333333333 * 1vw, 32px) min(8 * 1vw, 48px);
  }
}
.custom-php-form.custom-php-form--complete .form-complete__btns {
  margin-top: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--complete .form-complete__btns {
    margin-top: min(10.6666666667 * 1vw, 64px);
  }
}
.custom-php-form.custom-php-form--complete .btn-style-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: min(0.8 * 1vw, 12px) min(1.8666666667 * 1vw, 28px);
}
@media (max-width: 767px) {
  .custom-php-form.custom-php-form--complete .btn-style-1 {
    padding: min(3.2 * 1vw, 19.2px) min(7.4666666667 * 1vw, 44.8px);
  }
}
.custom-php-form.custom-php-form--complete .btn-style-1 {
  border-radius: 4px;
  font-size: min(1.0666666667 * 1vw, 16px);
  font-weight: 500;
  background-color: #333;
  color: #fff;
  transition: 0.2s ease;
}
.custom-php-form.custom-php-form--complete .btn-style-1:hover {
  opacity: 0.85;
}
.custom-php-form.custom-php-form--complete .btn-style-1--sub {
  background-color: #707070;
  color: #fff;
}

@media (max-width: 767px) {
  .heading_1 {
    margin-bottom: min(8 * 1vw, 48px);
    font-size: min(3.2 * 1vw, 19.2px);
  }
  .heading_1 span {
    margin-bottom: min(2.6666666667 * 1vw, 16px);
    font-size: min(6.9333333333 * 1vw, 41.6px);
    letter-spacing: 0.3em;
  }
  .lead_1 {
    margin-bottom: min(8 * 1vw, 48px);
    font-size: min(6.4 * 1vw, 38.4px);
  }
  .text_1 {
    font-size: min(4 * 1vw, 24px);
  }
  .category-label-1, .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    padding: min(0.5333333333 * 1vw, 3.2px) min(2.6666666667 * 1vw, 16px);
    font-size: min(3.2 * 1vw, 19.2px);
  }
  .link-btn_1 {
    padding: min(3.2 * 1vw, 19.2px) min(13.3333333333 * 1vw, 80px);
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
  .link-btn_2 {
    padding: min(3.7333333333 * 1vw, 22.4px) min(18.6666666667 * 1vw, 112px);
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
  .mv-lower h1 {
    width: fit-content;
    font-size: min(3.7333333333 * 1vw, 22.4px);
    padding: min(9.6 * 1vw, 57.6px) min(5.3333333333 * 1vw, 32px);
    background-color: rgba(255, 255, 255, 0.8666666667);
  }
  .mv-lower h1 span {
    margin-bottom: 0;
    font-size: min(5.3333333333 * 1vw, 32px);
    letter-spacing: 0.3em;
  }
  .mv-lower.mv-lower-noimage h1 span {
    font-size: min(5.8666666667 * 1vw, 35.2px);
  }
  .image-panels {
    flex-direction: column;
    align-items: center;
    row-gap: min(8 * 1vw, 48px);
  }
  .table-1 .table-1__item {
    display: block;
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
  .table-1 .table-1__item:not(:last-child) {
    margin-bottom: min(7.4666666667 * 1vw, 44.8px);
  }
  .table-1 .table-1__item .table-1__ttl {
    width: fit-content;
    padding-right: min(5.3333333333 * 1vw, 32px);
    padding-bottom: min(2.6666666667 * 1vw, 16px);
  }
  .table-1 .table-1__item .table-1__ttl::after {
    bottom: 0;
    height: min(0.8 * 1vw, 4.8px);
  }
  .table-1 .table-1__item .table-1__text {
    width: 100%;
    padding-top: min(3.7333333333 * 1vw, 22.4px);
    padding-bottom: min(3.2 * 1vw, 19.2px);
    padding-left: 0;
    line-height: 1.9;
  }
  .table-1 .table-1__item .table-1__text::after {
    height: 1px;
  }
}
/* footer
--------------------------------- */
.footer {
  padding-block: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .footer {
    padding-block: min(16 * 1vw, 96px);
  }
}
.footer {
  color: #333;
  background: #e8e8e8;
}
.footer .footer__inner .footer__upper {
  display: flex;
  justify-content: center;
  margin-bottom: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__upper {
    margin-bottom: min(8 * 1vw, 48px);
  }
}
.footer .footer__inner .footer__upper .footer__logo {
  margin: 0;
}
.footer .footer__inner .footer__upper .footer__logo a {
  display: block;
}
.footer .footer__inner .footer__upper .footer__logo img {
  width: min(16.6666666667 * 1vw, 250px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__upper .footer__logo img {
    width: min(66.6666666667 * 1vw, 400px);
  }
}
.footer .footer__inner .footer__upper .footer__logo img {
  height: auto;
}
.footer .footer__inner .footer__bottom {
  border-top: 1px solid #aaa;
  padding-top: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__bottom {
    padding-top: min(8 * 1vw, 48px);
  }
}
.footer .footer__inner .footer__bottom .footer__nav {
  margin-bottom: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__bottom .footer__nav {
    margin-bottom: min(8 * 1vw, 48px);
  }
}
.footer .footer__inner .footer__bottom .footer__nav-list {
  display: flex;
  justify-content: center;
  gap: min(1.8666666667 * 1vw, 28px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__bottom .footer__nav-list {
    gap: min(7.4666666667 * 1vw, 44.8px);
  }
}
.footer .footer__inner .footer__bottom .footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer__inner .footer__bottom .footer__nav-list li {
  line-height: 1;
}
.footer .footer__inner .footer__bottom .footer__nav-list a {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__bottom .footer__nav-list a {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
}
.footer .footer__inner .footer__bottom .footer__nav-list a {
  letter-spacing: 0.08em;
  text-decoration: none;
}
.footer .footer__inner .footer__bottom .footer__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: min(-0.5333333333 * 1vw, -8px);
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__bottom .footer__nav-list a::after {
    bottom: min(-2.1333333333 * 1vw, -12.8px);
  }
}
.footer .footer__inner .footer__bottom .footer__nav-list a::after {
  width: 100%;
  height: 1px;
  background: #333;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.footer .footer__inner .footer__bottom .footer__nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.footer .footer__inner .copyright {
  margin: 0;
  color: #433232;
  font-size: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .footer .footer__inner .copyright {
    font-size: min(3.2 * 1vw, 19.2px);
  }
}
.footer .footer__inner .copyright {
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 767px) {
  .footer {
    padding: min(13.3333333333 * 1vw, 80px) min(6.4 * 1vw, 38.4px) min(10.6666666667 * 1vw, 64px);
  }
  .footer .footer__inner .footer__upper {
    margin-bottom: min(8 * 1vw, 48px);
  }
  .footer .footer__inner .footer__upper .footer__logo img {
    width: auto;
    height: min(9.6 * 1vw, 57.6px);
  }
  .footer .footer__inner .footer__bottom {
    padding-top: min(8 * 1vw, 48px);
  }
  .footer .footer__inner .footer__bottom .footer__nav {
    margin-bottom: min(8 * 1vw, 48px);
  }
  .footer .footer__inner .footer__bottom .footer__nav .footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: min(3.2 * 1vw, 19.2px);
  }
  .footer .footer__inner .footer__bottom .footer__nav .footer__nav-list a {
    font-size: min(3.4666666667 * 1vw, 20.8px);
  }
}
/* CTA
--------------------------------- */
/*======================================

	1. 基本

======================================*/
/*
	width
======================================*/
@media (min-width: 769px) {
  .w100p-im {
    width: 100% !important;
  }
  .w98p-im {
    width: 98% !important;
  }
  .w96p-im {
    width: 96% !important;
  }
  .w94p-im {
    width: 94% !important;
  }
  .w92p-im {
    width: 92% !important;
  }
  .w90p-im {
    width: 90% !important;
  }
  .w88p-im {
    width: 88% !important;
  }
  .w86p-im {
    width: 86% !important;
  }
  .w84p-im {
    width: 84% !important;
  }
  .w82p-im {
    width: 82% !important;
  }
  .w78p-im {
    width: 78% !important;
  }
  .w76p-im {
    width: 76% !important;
  }
  .w74p-im {
    width: 74% !important;
  }
  .w72p-im {
    width: 72% !important;
  }
  .w68p-im {
    width: 68% !important;
  }
  .w66p-im {
    width: 66% !important;
  }
  .w64p-im {
    width: 64% !important;
  }
  .w62p-im {
    width: 62% !important;
  }
  .w58p-im {
    width: 58% !important;
  }
  .w56p-im {
    width: 56% !important;
  }
  .w54p-im {
    width: 54% !important;
  }
  .w52p-im {
    width: 52% !important;
  }
  .w48p-im {
    width: 48% !important;
  }
  .w46p-im {
    width: 46% !important;
  }
  .w44p-im {
    width: 44% !important;
  }
  .w42p-im {
    width: 42% !important;
  }
  .w38p-im {
    width: 38% !important;
  }
  .w36p-im {
    width: 36% !important;
  }
  .w34p-im {
    width: 34% !important;
  }
  .w32p-im {
    width: 32% !important;
  }
  .w28p-im {
    width: 28% !important;
  }
  .w26p-im {
    width: 26% !important;
  }
  .w24p-im {
    width: 24% !important;
  }
  .w22p-im {
    width: 22% !important;
  }
  .w18p-im {
    width: 18% !important;
  }
  .w16p-im {
    width: 16% !important;
  }
  .w14p-im {
    width: 14% !important;
  }
  .w12p-im {
    width: 12% !important;
  }
  .w8p-im {
    width: 8% !important;
  }
  .w6p-im {
    width: 6% !important;
  }
  .w4p-im {
    width: 4% !important;
  }
  .w2p-im {
    width: 2% !important;
  }
  .w0p-im {
    width: 0% !important;
  }
  .w100p {
    width: 100%;
  }
  .w98p {
    width: 98%;
  }
  .w96p {
    width: 96%;
  }
  .w94p {
    width: 94%;
  }
  .w92p {
    width: 92%;
  }
  .w90p {
    width: 90%;
  }
  .w88p {
    width: 88%;
  }
  .w86p {
    width: 86%;
  }
  .w84p {
    width: 84%;
  }
  .w82p {
    width: 82%;
  }
  .w78p {
    width: 78%;
  }
  .w76p {
    width: 76%;
  }
  .w74p {
    width: 74%;
  }
  .w72p {
    width: 72%;
  }
  .w68p {
    width: 68%;
  }
  .w66p {
    width: 66%;
  }
  .w64p {
    width: 64%;
  }
  .w62p {
    width: 62%;
  }
  .w58p {
    width: 58%;
  }
  .w56p {
    width: 56%;
  }
  .w54p {
    width: 54%;
  }
  .w52p {
    width: 52%;
  }
  .w48p {
    width: 48%;
  }
  .w46p {
    width: 46%;
  }
  .w44p {
    width: 44%;
  }
  .w42p {
    width: 42%;
  }
  .w38p {
    width: 38%;
  }
  .w36p {
    width: 36%;
  }
  .w34p {
    width: 34%;
  }
  .w32p {
    width: 32%;
  }
  .w28p {
    width: 28%;
  }
  .w26p {
    width: 26%;
  }
  .w24p {
    width: 24%;
  }
  .w22p {
    width: 22%;
  }
  .w18p {
    width: 18%;
  }
  .w16p {
    width: 16%;
  }
  .w14p {
    width: 14%;
  }
  .w12p {
    width: 12%;
  }
  .w8p {
    width: 8%;
  }
  .w6p {
    width: 6%;
  }
  .w4p {
    width: 4%;
  }
  .w2p {
    width: 2%;
  }
  .w0p {
    width: 0%;
  }
}
@media screen and (max-width: 768px) {
  .w100p-sp-im {
    width: 100% !important;
  }
  .w98p-sp-im {
    width: 98% !important;
  }
  .w96p-sp-im {
    width: 96% !important;
  }
  .w94p-sp-im {
    width: 94% !important;
  }
  .w92p-sp-im {
    width: 92% !important;
  }
  .w90p-sp-im {
    width: 90% !important;
  }
  .w88p-sp-im {
    width: 88% !important;
  }
  .w86p-sp-im {
    width: 86% !important;
  }
  .w84p-sp-im {
    width: 84% !important;
  }
  .w82p-sp-im {
    width: 82% !important;
  }
  .w78p-sp-im {
    width: 78% !important;
  }
  .w76p-sp-im {
    width: 76% !important;
  }
  .w74p-sp-im {
    width: 74% !important;
  }
  .w72p-sp-im {
    width: 72% !important;
  }
  .w68p-sp-im {
    width: 68% !important;
  }
  .w66p-sp-im {
    width: 66% !important;
  }
  .w64p-sp-im {
    width: 64% !important;
  }
  .w62p-sp-im {
    width: 62% !important;
  }
  .w58p-sp-im {
    width: 58% !important;
  }
  .w56p-sp-im {
    width: 56% !important;
  }
  .w54p-sp-im {
    width: 54% !important;
  }
  .w52p-sp-im {
    width: 52% !important;
  }
  .w48p-sp-im {
    width: 48% !important;
  }
  .w46p-sp-im {
    width: 46% !important;
  }
  .w44p-sp-im {
    width: 44% !important;
  }
  .w42p-sp-im {
    width: 42% !important;
  }
  .w38p-sp-im {
    width: 38% !important;
  }
  .w36p-sp-im {
    width: 36% !important;
  }
  .w34p-sp-im {
    width: 34% !important;
  }
  .w32p-sp-im {
    width: 32% !important;
  }
  .w28p-sp-im {
    width: 28% !important;
  }
  .w26p-sp-im {
    width: 26% !important;
  }
  .w24p-sp-im {
    width: 24% !important;
  }
  .w22p-sp-im {
    width: 22% !important;
  }
  .w18p-sp-im {
    width: 18% !important;
  }
  .w16p-sp-im {
    width: 16% !important;
  }
  .w14p-sp-im {
    width: 14% !important;
  }
  .w12p-sp-im {
    width: 12% !important;
  }
  .w8p-sp-im {
    width: 8% !important;
  }
  .w6p-sp-im {
    width: 6% !important;
  }
  .w4p-sp-im {
    width: 4% !important;
  }
  .w2p-sp-im {
    width: 2% !important;
  }
  .w0p-sp-im {
    width: 0% !important;
  }
  .w100p-sp {
    width: 100%;
  }
  .w98p-sp {
    width: 98%;
  }
  .w96p-sp {
    width: 96%;
  }
  .w94p-sp {
    width: 94%;
  }
  .w92p-sp {
    width: 92%;
  }
  .w90p-sp {
    width: 90%;
  }
  .w88p-sp {
    width: 88%;
  }
  .w86p-sp {
    width: 86%;
  }
  .w84p-sp {
    width: 84%;
  }
  .w82p-sp {
    width: 82%;
  }
  .w78p-sp {
    width: 78%;
  }
  .w76p-sp {
    width: 76%;
  }
  .w74p-sp {
    width: 74%;
  }
  .w72p-sp {
    width: 72%;
  }
  .w68p-sp {
    width: 68%;
  }
  .w66p-sp {
    width: 66%;
  }
  .w64p-sp {
    width: 64%;
  }
  .w62p-sp {
    width: 62%;
  }
  .w58p-sp {
    width: 58%;
  }
  .w56p-sp {
    width: 56%;
  }
  .w54p-sp {
    width: 54%;
  }
  .w52p-sp {
    width: 52%;
  }
  .w48p-sp {
    width: 48%;
  }
  .w46p-sp {
    width: 46%;
  }
  .w44p-sp {
    width: 44%;
  }
  .w42p-sp {
    width: 42%;
  }
  .w38p-sp {
    width: 38%;
  }
  .w36p-sp {
    width: 36%;
  }
  .w34p-sp {
    width: 34%;
  }
  .w32p-sp {
    width: 32%;
  }
  .w28p-sp {
    width: 28%;
  }
  .w26p-sp {
    width: 26%;
  }
  .w24p-sp {
    width: 24%;
  }
  .w22p-sp {
    width: 22%;
  }
  .w18p-sp {
    width: 18%;
  }
  .w16p-sp {
    width: 16%;
  }
  .w14p-sp {
    width: 14%;
  }
  .w12p-sp {
    width: 12%;
  }
  .w8p-sp {
    width: 8%;
  }
  .w6p-sp {
    width: 6%;
  }
  .w4p-sp {
    width: 4%;
  }
  .w2p-sp {
    width: 2%;
  }
  .w0p-sp {
    width: 0%;
  }
}
/*
height
======================================*/
.h01r {
  height: 0.1rem;
}

.h02r {
  height: 0.2rem;
}

.h04r {
  height: 0.4rem;
}

.h06r {
  height: 0.6rem;
}

.h08r {
  height: 0.8rem;
}

.h1r {
  height: 1rem;
}

.h2r {
  height: 2rem;
}

.h3r {
  height: 3rem;
}

.h5r {
  height: 5rem;
}

.h8r {
  height: 8rem;
}

.h10r {
  height: 10rem;
}

.h20r {
  height: 20rem;
}

.h30r {
  height: 30rem;
}

.h40r {
  height: 40rem;
}

.h50r {
  height: 50rem;
}

.h60r {
  height: 60rem;
}

.h70r {
  height: 70rem;
}

.h10p {
  height: 100%;
}

.h10v {
  height: 10vh;
}

.h20v {
  height: 20vh;
}

.h30v {
  height: 30vh;
}

.h40v {
  height: 40vh;
}

.h50v {
  height: 50vh;
}

.h60v {
  height: 60vh;
}

.h70v {
  height: 70vh;
}

.h80v {
  height: 80vh;
}

.h90v {
  height: 90vh;
}

.h100v {
  height: 100vh;
}

/*
	min-width
======================================*/
.miw100p-im {
  min-width: 100% !important;
}

.miw95p-im {
  min-width: 95% !important;
}

.miw90p-im {
  min-width: 90% !important;
}

.miw85p-im {
  min-width: 85% !important;
}

.miw80p-im {
  min-width: 80% !important;
}

.miw75p-im {
  min-width: 75% !important;
}

.miw70p-im {
  min-width: 70% !important;
}

.miw65p-im {
  min-width: 65% !important;
}

.miw60p-im {
  min-width: 60% !important;
}

.miw55p-im {
  min-width: 55% !important;
}

.miw50p-im {
  min-width: 50% !important;
}

.miw45p-im {
  min-width: 45% !important;
}

.miw40p-im {
  min-width: 40% !important;
}

.miw35p-im {
  min-width: 35% !important;
}

.miw30p-im {
  min-width: 30% !important;
}

.miw25p-im {
  min-width: 25% !important;
}

.miw20p-im {
  min-width: 20% !important;
}

.miw15p-im {
  min-width: 15% !important;
}

.miw10p-im {
  min-width: 10% !important;
}

.miw5p-im {
  min-width: 5% !important;
}

.miw100p {
  min-width: 100%;
}

.miw95p {
  min-width: 95%;
}

.miw90p {
  min-width: 90%;
}

.miw85p {
  min-width: 85%;
}

.miw80p {
  min-width: 80%;
}

.miw75p {
  min-width: 75%;
}

.miw70p {
  min-width: 70%;
}

.miw65p {
  min-width: 65%;
}

.miw60p {
  min-width: 60%;
}

.miw55p {
  min-width: 55%;
}

.miw50p {
  min-width: 50%;
}

.miw45p {
  min-width: 45%;
}

.miw40p {
  min-width: 40%;
}

.miw35p {
  min-width: 35%;
}

.miw30p {
  min-width: 30%;
}

.miw25p {
  min-width: 25%;
}

.miw20p {
  min-width: 20%;
}

.miw15p {
  min-width: 15%;
}

.miw10p {
  min-width: 10%;
}

.miw5p {
  min-width: 5%;
}

/*
	max-width
======================================*/
.maw100p-im {
  max-width: 100% !important;
}

.maw95p-im {
  max-width: 95% !important;
}

.maw90p-im {
  max-width: 90% !important;
}

.maw85p-im {
  max-width: 85% !important;
}

.maw80p-im {
  max-width: 80% !important;
}

.maw75p-im {
  max-width: 75% !important;
}

.maw70p-im {
  max-width: 70% !important;
}

.maw65p-im {
  max-width: 65% !important;
}

.maw60p-im {
  max-width: 60% !important;
}

.maw55p-im {
  max-width: 55% !important;
}

.maw50p-im {
  max-width: 50% !important;
}

.maw45p-im {
  max-width: 45% !important;
}

.maw40p-im {
  max-width: 40% !important;
}

.maw35p-im {
  max-width: 35% !important;
}

.maw30p-im {
  max-width: 30% !important;
}

.maw25p-im {
  max-width: 25% !important;
}

.maw20p-im {
  max-width: 20% !important;
}

.maw15p-im {
  max-width: 15% !important;
}

.maw10p-im {
  max-width: 10% !important;
}

.maw5p-im {
  max-width: 5% !important;
}

.maw100p {
  max-width: 100%;
}

.maw95p {
  max-width: 95%;
}

.maw90p {
  max-width: 90%;
}

.maw85p {
  max-width: 85%;
}

.maw80p {
  max-width: 80%;
}

.maw75p {
  max-width: 75%;
}

.maw70p {
  max-width: 70%;
}

.maw65p {
  max-width: 65%;
}

.maw60p {
  max-width: 60%;
}

.maw55p {
  max-width: 55%;
}

.maw50p {
  max-width: 50%;
}

.maw45p {
  max-width: 45%;
}

.maw40p {
  max-width: 40%;
}

.maw35p {
  max-width: 35%;
}

.maw30p {
  max-width: 30%;
}

.maw25p {
  max-width: 25%;
}

.maw20p {
  max-width: 20%;
}

.maw15p {
  max-width: 15%;
}

.maw10p {
  max-width: 10%;
}

.maw5p {
  max-width: 5%;
}

/*
border
======================================*/
.bt1-im {
  border-top: 0.1rem solid !important;
}

.bb1-im {
  border-bottom: 0.1rem solid !important;
}

.br1-im {
  border-right: 0.1rem solid !important;
}

.bl1-im {
  border-left: 0.1rem solid !important;
}

.bt2-im {
  border-top: 0.2rem solid !important;
}

.bb2-im {
  border-bottom: 0.2rem solid !important;
}

.br2-im {
  border-right: 0.2rem solid !important;
}

.bl2-im {
  border-left: 0.2rem solid !important;
}

.bt1 {
  border-top: 0.1rem solid;
}

.bb1 {
  border-bottom: 0.1rem solid;
}

.br1 {
  border-right: 0.1rem solid;
}

.bl1 {
  border-left: 0.1rem solid;
}

.bt2 {
  border-top: 0.2rem solid;
}

.bb2 {
  border-bottom: 0.2rem solid;
}

.br2 {
  border-right: 0.2rem solid;
}

.bl2 {
  border-left: 0.2rem solid;
}

.bs-sl {
  border-style: solid;
}

.bs-ds {
  border-style: dashed;
}

.bs-dt {
  border-style: dashed;
}

.bw-05 {
  border-width: 0.05rem;
}

.bw-10 {
  border-width: 0.1rem;
}

.bw-15 {
  border-width: 0.15rem;
}

.bw-20 {
  border-width: 0.2rem;
}

.bw-30 {
  border-width: 0.3rem;
}

.bw-40 {
  border-width: 0.4rem;
}

.bw-60 {
  border-width: 0.6rem;
}

.bw-80 {
  border-width: 0.8rem;
}

.bw-100 {
  border-width: 1rem;
}

/*
border-radius
======================================*/
.br-0r {
  border-radius: 0rem;
}

.br-2r {
  border-radius: 0.2rem;
}

.br-3r {
  border-radius: 0.3rem;
}

.br-4r {
  border-radius: 0.4rem;
}

.br-5r {
  border-radius: 0.5rem;
}

.br-6r {
  border-radius: 0.6rem;
}

.br-8r {
  border-radius: 0.8rem;
}

.br-10r {
  border-radius: 1rem;
}

.br-20r {
  border-radius: 2rem;
}

.br-30r {
  border-radius: 3rem;
}

.br-40r {
  border-radius: 4rem;
}

.br-50r {
  border-radius: 5rem;
}

.br-50p {
  border-radius: 50%;
}

/*
	box-shadow
======================================*/
.b-s-p1 {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.3);
}

.b-s-p2 {
  box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}

/*
	drop-shadow
======================================*/
.d-s-p1 {
  filter: drop-shadow(0 0 0.3rem rgba(0, 0, 0, 0.3));
}

.d-s-p2 {
  filter: drop-shadow(0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.3));
}

/*
	text-decoration
======================================*/
.td-ul {
  text-decoration: underline;
}

.td-n {
  text-decoration: none;
}

/*
	overflow
======================================*/
.of-h {
  overflow: hidden;
}

.of-x-s {
  overflow-x: scroll;
}

.of-y-s {
  overflow-y: scroll;
}

/*
	line-height
======================================*/
.lh-1 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-175 {
  line-height: 1.75;
}

.lh-200 {
  line-height: 2;
}

.lh-300 {
  line-height: 3;
}

/*
	letter-spacing
======================================*/
.ls-1 {
  letter-spacing: 0.1rem;
}

.ls-2 {
  letter-spacing: 0.2rem;
}

.ls-3 {
  letter-spacing: 0.3rem;
}

.ls-4 {
  letter-spacing: 0.4rem;
}

.ls-5 {
  letter-spacing: 0.5rem;
}

.ls--1 {
  letter-spacing: -0.1rem;
}

.ls--2 {
  letter-spacing: -0.2rem;
}

.ls--3 {
  letter-spacing: -0.3rem;
}

/*
flex
======================================*/
.flex {
  display: flex;
}

/* ■ 値 */
.fd-r {
  flex-direction: row;
}

.fd-rr {
  flex-direction: row-reverse;
}

.fd-c {
  flex-direction: column;
}

.fd-cr {
  flex-direction: column-reverse;
}

.fw-n {
  flex-wrap: nowrap;
}

.fw-w {
  flex-wrap: wrap;
}

.fw-wr {
  flex-wrap: wrap-reverse;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.jc-sa {
  justify-content: space-around;
}

.ai-s {
  align-items: stretch;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

.ai-b {
  align-items: baseline;
}

.as-b {
  align-self: baseline;
}

.as-c {
  align-self: center;
}

.as-fs {
  align-self: flex-start;
}

.as-fe {
  align-self: flex-end;
}

.ac-s {
  align-content: stretch;
}

.ac-fs {
  align-content: flex-start;
}

.ac-fe {
  align-content: flex-end;
}

.ac-c {
  align-content: center;
}

.ac-sb {
  align-content: space-between;
}

.ac-sa {
  align-content: space-around;
}

.flex-sc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-ec {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
displayプロパティ
======================================*/
.dp-b {
  display: block;
}

.dp-ib {
  display: inline-block;
}

/*
positionプロパティ
======================================*/
.po-r {
  position: relative;
}

.po-a {
  position: absolute;
}

.po-a-t0 {
  position: absolute;
  top: 0;
}

.po-a-r0 {
  position: absolute;
  right: 0;
}

.po-a-l0 {
  position: absolute;
  left: 0;
}

.po-a-b0 {
  position: absolute;
  bottom: 0;
}

.po-a-tr {
  position: absolute;
  top: 0;
  right: 0;
}

.po-a-tl {
  position: absolute;
  top: 0;
  left: 0;
}

.po-a-br {
  position: absolute;
  bottom: 0;
  right: 0;
}

.po-a-bl {
  position: absolute;
  bottom: 0;
  left: 0;
}

.po-a-c {
  position: absolute;
  left: 0;
  right: 0;
}

.po-a-t50 {
  position: absolute;
  top: 50%;
}

.po-a-l50 {
  position: absolute;
  left: 50%;
}

.tr--50X {
  transform: translateX(-50%);
}

.tr--50Y {
  transform: translateY(-50%);
}

/*
オパシティ
======================================*/
.op-0 {
  opacity: 0;
}

.op-1 {
  opacity: 1;
}

/*
マウスポインタ
======================================*/
.mus-p {
  cursor: pointer;
}

/*
カーソルライン、タッチハイライト色
======================================*/
.clc-tp {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cur-tp {
  caret-color: transparent;
}

/*
インデント
======================================*/
.ml-em {
  margin-left: 1em;
}

.ml--em {
  margin-left: -1em;
}

.pl-em {
  padding-left: 1em;
}

.pl--em {
  padding-left: -1em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*
	非表示/pcのみ表示/spのみ表示
======================================*/
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/*
	イメージの調整
======================================*/
.i100oc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.i100aoc {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*
margin
======================================*/
/* ■ margin (auto) */
.mt-a-im {
  margin-top: auto !important;
}

.mb-a-im {
  margin-bottom: auto !important;
}

.mr-a-im {
  margin-right: auto !important;
}

.ml-a-im {
  margin-left: auto !important;
}

.mlr-a-im {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mtb0-im {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.mtb2-im {
  margin-top: 0.2rem !important;
  margin-bottom: 0.2rem !important;
}

.mtb4-im {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

.mtb5-im {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mtb6-im {
  margin-top: 0.6rem !important;
  margin-bottom: 0.6rem !important;
}

.mtb8-im {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.mtb10-im {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mtb12-im {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.mtb14-im {
  margin-top: 1.4rem !important;
  margin-bottom: 1.4rem !important;
}

.mtb15-im {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mtb16-im {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.mtb18-im {
  margin-top: 1.8rem !important;
  margin-bottom: 1.8rem !important;
}

.mtb20-im {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mlr0-im {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.mlr2-im {
  margin-left: 0.2rem !important;
  margin-right: 0.2rem !important;
}

.mlr4-im {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.mlr5-im {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mlr6-im {
  margin-left: 0.6rem !important;
  margin-right: 0.6rem !important;
}

.mlr8-im {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.mlr10-im {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mlr12-im {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

.mlr14-im {
  margin-left: 1.4rem !important;
  margin-right: 1.4rem !important;
}

.mlr15-im {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mlr16-im {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

.mlr18-im {
  margin-left: 1.8rem !important;
  margin-right: 1.8rem !important;
}

.mlr20-im {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mt-a {
  margin-top: auto;
}

.mb-a {
  margin-bottom: auto;
}

.mr-a {
  margin-right: auto;
}

.ml-a {
  margin-left: auto;
}

.mlr-a {
  margin-left: auto;
  margin-right: auto;
}

.mtb0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.mtb2 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.mtb4 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.mtb5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mtb6 {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.mtb8 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.mtb10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mtb12 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.mtb14 {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.mtb15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mtb16 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.mtb18 {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}

.mtb20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mlr0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.mlr2 {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.mlr4 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.mlr5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mlr6 {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}

.mlr8 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.mlr10 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mlr12 {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.mlr14 {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}

.mlr15 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mlr16 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.mlr18 {
  margin-left: 1.8rem;
  margin-right: 1.8rem;
}

.mlr20 {
  margin-left: 2rem;
  margin-right: 2rem;
}

/* ■ margin (all) */
.ma-0 {
  margin: 0 !important;
}

.ma-2 {
  margin: 0.2rem !important;
}

.ma-4 {
  margin: 0.4rem !important;
}

.ma-5 {
  margin: 0.5rem !important;
}

.ma-6 {
  margin: 0.6rem !important;
}

.ma-8 {
  margin: 0.8rem !important;
}

.ma-10 {
  margin: 1rem !important;
}

.ma-15 {
  margin: 1.5rem !important;
}

.ma-20 {
  margin: 2rem !important;
}

.ma-25 {
  margin: 2.5rem !important;
}

/* negative-margin */
.mt--5 {
  margin-top: -0.5rem !important;
}

.mt--10 {
  margin-top: -1rem !important;
}

.mt--15 {
  margin-top: -1.5rem !important;
}

.mt--20 {
  margin-top: -2rem !important;
}

.mb--5 {
  margin-bottom: -0.5rem !important;
}

.mb--10 {
  margin-bottom: -1rem !important;
}

.mb--15 {
  margin-bottom: -1.5rem !important;
}

.mb--20 {
  margin-bottom: -2rem !important;
}

.ml--5 {
  margin-left: -0.5rem !important;
}

.ml--10 {
  margin-left: -1rem !important;
}

.ml--15 {
  margin-left: -1.5rem !important;
}

.ml--20 {
  margin-left: -2rem !important;
}

.mr--5 {
  margin-right: -0.5rem !important;
}

.mr--10 {
  margin-right: -1rem !important;
}

.mr--15 {
  margin-right: -1.5rem !important;
}

.mr--20 {
  margin-right: -2rem !important;
}

/* ■ margin-top */
.mt0 {
  margin-top: 0 !important;
}

.mt2 {
  margin-top: 0.2rem !important;
}

.mt3 {
  margin-top: 0.3rem !important;
}

.mt4 {
  margin-top: 0.4rem !important;
}

.mt5 {
  margin-top: 0.5rem !important;
}

.mt6 {
  margin-top: 0.6rem !important;
}

.mt8 {
  margin-top: 0.8rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mt12 {
  margin-top: 1.2rem !important;
}

.mt14 {
  margin-top: 1.4rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mt45 {
  margin-top: 4.5rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mt55 {
  margin-top: 5.5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mt65 {
  margin-top: 6.5rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mt75 {
  margin-top: 7.5rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mt85 {
  margin-top: 8.5rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

/* ■ margin-bottom */
.mb0 {
  margin-bottom: 0 !important;
}

.mb2 {
  margin-bottom: 0.2rem !important;
}

.mb3 {
  margin-bottom: 0.3rem !important;
}

.mb4 {
  margin-bottom: 0.4rem !important;
}

.mb5 {
  margin-bottom: 0.5rem !important;
}

.mb6 {
  margin-bottom: 0.6rem !important;
}

.mb8 {
  margin-bottom: 0.8rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.mb12 {
  margin-bottom: 1.2rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mb45 {
  margin-bottom: 4.5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.mb55 {
  margin-bottom: 5.5rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

/* ■ margin-right */
.mr0 {
  margin-right: 0 !important;
}

.mr2 {
  margin-right: 0.2rem !important;
}

.mr3 {
  margin-right: 0.3rem !important;
}

.mr4 {
  margin-right: 0.4rem !important;
}

.mr5 {
  margin-right: 0.5rem !important;
}

.mr6 {
  margin-right: 0.6rem !important;
}

.mr8 {
  margin-right: 0.8rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mr12 {
  margin-right: 1.2rem !important;
}

.mr15 {
  margin-right: 1.5rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mr25 {
  margin-right: 2.5rem !important;
}

.mr30 {
  margin-right: 3rem !important;
}

.mr35 {
  margin-right: 3.5rem !important;
}

.mr40 {
  margin-right: 4rem !important;
}

.mr45 {
  margin-right: 4.5rem !important;
}

.mr50 {
  margin-right: 5rem !important;
}

.mr55 {
  margin-right: 5.5rem !important;
}

.mr60 {
  margin-right: 6rem !important;
}

.mr70 {
  margin-right: 7rem !important;
}

.mr80 {
  margin-right: 8rem !important;
}

.mr90 {
  margin-right: 9rem !important;
}

.mr100 {
  margin-right: 10rem !important;
}

/* ■ margin-left */
.ml0 {
  margin-left: 0 !important;
}

.ml2 {
  margin-left: 0.2rem !important;
}

.ml3 {
  margin-left: 0.3rem !important;
}

.ml4 {
  margin-left: 0.4rem !important;
}

.ml5 {
  margin-left: 0.5rem !important;
}

.ml6 {
  margin-left: 0.6rem !important;
}

.ml8 {
  margin-left: 0.8rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.ml12 {
  margin-left: 1.2rem !important;
}

.ml15 {
  margin-left: 1.5rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.ml25 {
  margin-left: 2.5rem !important;
}

.ml30 {
  margin-left: 3rem !important;
}

.ml35 {
  margin-left: 3.5rem !important;
}

.ml40 {
  margin-left: 4rem !important;
}

.ml45 {
  margin-left: 4.5rem !important;
}

.ml50 {
  margin-left: 5rem !important;
}

.ml55 {
  margin-left: 5.5rem !important;
}

.ml60 {
  margin-left: 6rem !important;
}

.ml70 {
  margin-left: 7rem !important;
}

.ml80 {
  margin-left: 8rem !important;
}

.ml90 {
  margin-left: 9rem !important;
}

.ml100 {
  margin-left: 10rem !important;
}

/*
padding
======================================*/
/* ■ padding (all) */
.pa-0 {
  padding: 0 !important;
}

.pa-1 {
  padding: 0.1rem !important;
}

.pa-2 {
  padding: 0.2rem !important;
}

.pa-3 {
  padding: 0.3rem !important;
}

.pa-4 {
  padding: 0.4rem !important;
}

.pa-5 {
  padding: 0.5rem !important;
}

.pa-6 {
  padding: 0.6rem !important;
}

.pa-7 {
  padding: 0.7rem !important;
}

.pa-8 {
  padding: 0.8rem !important;
}

.pa-9 {
  padding: 0.9rem !important;
}

.pa-10 {
  padding: 1rem !important;
}

.pa-15 {
  padding: 1.5rem !important;
}

.pa-20 {
  padding: 2rem !important;
}

.pa-25 {
  padding: 2.5rem !important;
}

.ptb0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ptb2 {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}

.ptb3 {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

.ptb4 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

.ptb5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.ptb6 {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

.ptb8 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.ptb10 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.ptb12 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.ptb14 {
  padding-top: 1.4rem !important;
  padding-bottom: 1.4rem !important;
}

.ptb15 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.ptb16 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.ptb18 {
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
}

.ptb20 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.ptb25 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.plr0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.plr2 {
  padding-left: 0.2rem !important;
  padding-right: 0.2rem !important;
}

.plr3 {
  padding-left: 0.3rem !important;
  padding-right: 0.3rem !important;
}

.plr4 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.plr5 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.plr6 {
  padding-left: 0.6rem !important;
  padding-right: 0.6rem !important;
}

.plr8 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.plr10 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.plr12 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.plr14 {
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}

.plr15 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.plr16 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.plr18 {
  padding-left: 1.8rem !important;
  padding-right: 1.8rem !important;
}

.plr20 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.plr25 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

/* ■ padding-top */
.pt0 {
  padding-top: 0 !important;
}

.pt2 {
  padding-top: 0.2rem !important;
}

.pt3 {
  padding-top: 0.3rem !important;
}

.pt4 {
  padding-top: 0.4rem !important;
}

.pt5 {
  padding-top: 0.5rem !important;
}

.pt6 {
  padding-top: 0.6rem !important;
}

.pt7 {
  padding-top: 0.7rem !important;
}

.pt8 {
  padding-top: 0.8rem !important;
}

.pt10 {
  padding-top: 1rem !important;
}

.pt12 {
  padding-top: 1.2rem !important;
}

.pt15 {
  padding-top: 1.5rem !important;
}

.pt20 {
  padding-top: 2rem !important;
}

.pt25 {
  padding-top: 2.5rem !important;
}

.pt30 {
  padding-top: 3rem !important;
}

.pt35 {
  padding-top: 3.5rem !important;
}

.pt40 {
  padding-top: 4rem !important;
}

.pt45 {
  padding-top: 4.5rem !important;
}

.pt50 {
  padding-top: 5rem !important;
}

.pt55 {
  padding-top: 5.5rem !important;
}

.pt60 {
  padding-top: 6rem !important;
}

.pt65 {
  padding-top: 6.5rem !important;
}

.pt70 {
  padding-top: 7rem !important;
}

.pt75 {
  padding-top: 7.5rem !important;
}

.pt80 {
  padding-top: 8rem !important;
}

.pt85 {
  padding-top: 8.5rem !important;
}

.pt90 {
  padding-top: 9rem !important;
}

/* ■ padding-bottom */
.pb0 {
  padding-bottom: 0 !important;
}

.pb2 {
  padding-bottom: 0.2rem !important;
}

.pb3 {
  padding-bottom: 0.3rem !important;
}

.pb4 {
  padding-bottom: 0.4rem !important;
}

.pb5 {
  padding-bottom: 0.5rem !important;
}

.pb6 {
  padding-bottom: 0.6rem !important;
}

.pb7 {
  padding-bottom: 0.7rem !important;
}

.pb8 {
  padding-bottom: 0.8rem !important;
}

.pb10 {
  padding-bottom: 1rem !important;
}

.pb12 {
  padding-bottom: 1.2rem !important;
}

.pb15 {
  padding-bottom: 1.5rem !important;
}

.pb20 {
  padding-bottom: 2rem !important;
}

.pb25 {
  padding-bottom: 2.5rem !important;
}

.pb30 {
  padding-bottom: 3rem !important;
}

.pb35 {
  padding-bottom: 3.5rem !important;
}

.pb40 {
  padding-bottom: 4rem !important;
}

.pb45 {
  padding-bottom: 4.5rem !important;
}

.pb50 {
  padding-bottom: 5rem !important;
}

.pb55 {
  padding-bottom: 5.5rem !important;
}

.pb60 {
  padding-bottom: 6rem !important;
}

.pb65 {
  padding-bottom: 6.5rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pb75 {
  padding-bottom: 7.5rem !important;
}

.pb80 {
  padding-bottom: 8rem !important;
}

.pb85 {
  padding-bottom: 8.5rem !important;
}

.pb90 {
  padding-bottom: 9rem !important;
}

/* ■ padding-right */
.pr0 {
  padding-right: 0 !important;
}

.pr2 {
  padding-right: 0.2rem !important;
}

.pr3 {
  padding-right: 0.3rem !important;
}

.pr4 {
  padding-right: 0.4rem !important;
}

.pr5 {
  padding-right: 0.5rem !important;
}

.pr6 {
  padding-right: 0.6rem !important;
}

.pr7 {
  padding-right: 0.7rem !important;
}

.pr8 {
  padding-right: 0.8rem !important;
}

.pr10 {
  padding-right: 1rem !important;
}

.pr12 {
  padding-right: 1.2rem !important;
}

.pr15 {
  padding-right: 1.5rem !important;
}

.pr20 {
  padding-right: 2rem !important;
}

.pr25 {
  padding-right: 2.5rem !important;
}

.pr30 {
  padding-right: 3rem !important;
}

.pr35 {
  padding-right: 3.5rem !important;
}

.pr40 {
  padding-right: 4rem !important;
}

.pr45 {
  padding-right: 4.5rem !important;
}

.pr50 {
  padding-right: 5rem !important;
}

.pr55 {
  padding-right: 5.5rem !important;
}

.pr60 {
  padding-right: 6rem !important;
}

.pr65 {
  padding-right: 6.5rem !important;
}

.pr70 {
  padding-right: 7rem !important;
}

.pr75 {
  padding-right: 7.5rem !important;
}

.pr80 {
  padding-right: 8rem !important;
}

.pr85 {
  padding-right: 8.5rem !important;
}

.pr90 {
  padding-right: 9rem !important;
}

/* ■ padding-left */
.pl0 {
  padding-left: 0 !important;
}

.pl2 {
  padding-left: 0.2rem !important;
}

.pl3 {
  padding-left: 0.3rem !important;
}

.pl4 {
  padding-left: 0.4rem !important;
}

.pl5 {
  padding-left: 0.5rem !important;
}

.pl6 {
  padding-left: 0.6rem !important;
}

.pl7 {
  padding-left: 0.7rem !important;
}

.pl8 {
  padding-left: 0.8rem !important;
}

.pl10 {
  padding-left: 1rem !important;
}

.pl12 {
  padding-left: 1.2rem !important;
}

.pl15 {
  padding-left: 1.5rem !important;
}

.pl20 {
  padding-left: 2rem !important;
}

.pl25 {
  padding-left: 2.5rem !important;
}

.pl30 {
  padding-left: 3rem !important;
}

.pl35 {
  padding-left: 3.5rem !important;
}

.pl40 {
  padding-left: 4rem !important;
}

.pl45 {
  padding-left: 4.5rem !important;
}

.pl50 {
  padding-left: 5rem !important;
}

.pl55 {
  padding-left: 5.5rem !important;
}

.pl60 {
  padding-left: 6rem !important;
}

.pl65 {
  padding-left: 6.5rem !important;
}

.pl70 {
  padding-left: 7rem !important;
}

.pl75 {
  padding-left: 7.5rem !important;
}

.pl80 {
  padding-left: 8rem !important;
}

.pl85 {
  padding-left: 8.5rem !important;
}

.pl90 {
  padding-left: 9rem !important;
}

/*
font-size
======================================*/
.fs7 {
  font-size: 0.7rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs50 {
  font-size: 5rem !important;
}

.fs51 {
  font-size: 5.1rem !important;
}

.fs52 {
  font-size: 5.2rem !important;
}

.fs53 {
  font-size: 5.3rem !important;
}

.fs54 {
  font-size: 5.4rem !important;
}

.fs55 {
  font-size: 5.5rem !important;
}

.fs56 {
  font-size: 5.6rem !important;
}

.fs57 {
  font-size: 5.7rem !important;
}

.fs58 {
  font-size: 5.8rem !important;
}

.fs59 {
  font-size: 5.9rem !important;
}

.fs60 {
  font-size: 6rem !important;
}

/*
font-weight
======================================*/
.fw1 {
  font-weight: 100 !important;
}

.fw2 {
  font-weight: 200 !important;
}

.fw3 {
  font-weight: 300 !important;
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw6 {
  font-weight: 600 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fw8 {
  font-weight: 800 !important;
}

.fw9 {
  font-weight: 900 !important;
}

/*
text-align
======================================*/
.ta-j {
  text-align: justify;
}

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

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

.ta-c {
  text-align: center;
}

.ta-j-im {
  text-align: justify !important;
}

.ta-r-im {
  text-align: right !important;
}

.ta-l-im {
  text-align: left !important;
}

.ta-c-im {
  text-align: center !important;
}

.page-front-page .mv {
  height: min(50.9333333333 * 1vw, 764px);
}
.page-front-page .mv .mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  height: 100%;
}
.page-front-page .mv .mv__inner .mv__slider {
  width: 84.4444444444%;
  height: 100%;
  margin-left: 5.5555555556%;
}
.page-front-page .mv .mv__inner .mv__slider .mv__sliderItem {
  height: 100%;
}
.page-front-page .mv .mv__inner .mv__slider .mv__sliderItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-front-page .mv .mv__inner .mv__title {
  width: 5.1851851852%;
  margin-top: min(1.3333333333 * 1vw, 20px);
  font-size: min(1.3333333333 * 1vw, 20px);
  font-weight: 400;
  letter-spacing: 1.2em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .page-front-page .mv {
    height: auto;
    height: 100svh;
    max-height: 850px;
    min-height: 450px;
  }
  .page-front-page .mv .mv__inner {
    position: relative;
    display: block;
    height: 100%;
    padding: 0;
  }
  .page-front-page .mv .mv__inner .mv__slider {
    margin-left: 0;
    width: 100%;
  }
  .page-front-page .mv .mv__inner .mv__sliderItem {
    height: 100%;
  }
  .page-front-page .mv .mv__inner .mv__sliderItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
  }
  .page-front-page .mv .mv__inner .mv__title {
    position: absolute;
    top: min(8 * 1vw, 48px);
    right: min(4 * 1vw, 24px);
    width: auto;
    margin-top: 0;
    font-size: min(4.8 * 1vw, 28.8px);
    color: #fff;
    line-height: 2;
    letter-spacing: 0.8em;
  }
}
.page-front-page .news {
  background-color: #EFEDE5;
}
.page-front-page .news .news__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  column-gap: min(2.1333333333 * 1vw, 32px);
  padding-block: min(2.5333333333 * 1vw, 38px);
}
.page-front-page .news .news__inner .news__title {
  font-size: min(1.3333333333 * 1vw, 20px);
  font-weight: 500;
}
.page-front-page .news .news__inner .news__list {
  flex: 1;
}
.page-front-page .news .news__inner .news__list .news__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  column-gap: min(1.3333333333 * 1vw, 20px);
  font-size: min(0.9333333333 * 1vw, 14px);
}
.page-front-page .news .news__inner .news__list .news__item a h3 {
  font-size: min(0.9333333333 * 1vw, 14px);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.page-front-page .news .news__inner .news__list .news__item:not(:first-child) {
  margin-top: min(0.8 * 1vw, 12px);
}
.page-front-page .news .news__inner .news__more {
  margin-top: auto;
  margin-left: auto;
  font-size: min(0.9333333333 * 1vw, 14px);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .page-front-page .news .news__inner {
    display: block;
    padding: min(5.3333333333 * 1vw, 32px) min(5.3333333333 * 1vw, 32px);
  }
  .page-front-page .news .news__inner .news__title {
    margin-bottom: min(3.2 * 1vw, 19.2px);
    font-size: min(5.3333333333 * 1vw, 32px);
  }
  .page-front-page .news .news__inner .news__list .news__item a {
    flex-wrap: wrap;
    column-gap: min(3.2 * 1vw, 19.2px);
    row-gap: min(3.2 * 1vw, 19.2px);
    font-size: min(3.2 * 1vw, 19.2px);
  }
  .page-front-page .news .news__inner .news__list .news__item a h3 {
    width: 100%;
    font-size: min(3.2 * 1vw, 19.2px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .page-front-page .news .news__inner .news__list .news__item:not(:first-child) {
    margin-top: min(4.2666666667 * 1vw, 25.6px);
    padding-top: min(4.2666666667 * 1vw, 25.6px);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }
  .page-front-page .news .news__inner .news__more {
    margin-top: min(4.8 * 1vw, 28.8px);
    margin-left: auto;
    font-size: min(3.2 * 1vw, 19.2px);
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .page-front-page .message .message__inner {
    padding-top: min(14.9333333333 * 1vw, 89.6px);
    padding-bottom: min(17.0666666667 * 1vw, 102.4px);
  }
}
.page-front-page .works {
  background-color: #e8e8e8;
}
.page-front-page .works .works__inner .works__panels {
  display: flex;
  flex-wrap: wrap;
  gap: min(4 * 1vw, 60px);
}
.page-front-page .works .works__inner .works__panels > li {
  width: calc((100% - min(4 * 1vw, 60px) * (2 - 1)) / 2);
}
@media (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels {
    gap: min(10.6666666667 * 1vw, 64px);
  }
  .page-front-page .works .works__inner .works__panels > li {
    width: calc((100% - min(10.6666666667 * 1vw, 64px) * (1 - 1)) / 1);
  }
}
.page-front-page .works .works__inner .works__panels {
  margin-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels {
    margin-bottom: min(16 * 1vw, 96px);
  }
}
.page-front-page .works .works__inner .works__panels .works__panel {
  position: relative;
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 1.2/1;
  object-fit: cover;
  filter: brightness(0.7);
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts {
    padding: min(10.6666666667 * 1vw, 64px);
  }
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts {
  color: #fff;
  text-align: center;
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-ttl {
  font-size: min(2 * 1vw, 30px);
}
@media (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-ttl {
    font-size: min(8 * 1vw, 48px);
  }
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-ttl {
  font-weight: 700;
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-text {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-text {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-text {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels {
    justify-content: center;
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
  .page-front-page .works .works__inner .works__panels .works__panel {
    max-width: 400px;
  }
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts {
    padding: min(1.3333333333 * 1vw, 20px);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts {
    padding: min(5.3333333333 * 1vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-ttl {
    font-size: min(2 * 1vw, 30px);
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-ttl {
    font-size: min(8 * 1vw, 48px);
  }
}
@media screen and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-text {
    font-size: min(1.2 * 1vw, 18px);
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-front-page .works .works__inner .works__panels .works__panel .works__panel-texts .works__panel-text {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main {
  display: flex;
  column-gap: min(4.6666666667 * 1vw, 70px);
}
@media (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main {
    column-gap: min(18.6666666667 * 1vw, 112px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-left {
  width: 45.3333333333%;
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-left img {
  height: 100%;
  object-fit: cover;
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right {
  width: 48.9166666667%;
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
  margin-bottom: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
  font-size: min(2.4 * 1vw, 36px);
}
@media (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
    font-size: min(9.6 * 1vw, 57.6px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
  font-weight: 500;
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
  margin-bottom: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
  font-weight: 400;
}
.page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .link-btn_2 {
  margin-left: unset;
}
@media screen and (max-width: 767px) {
  .page-front-page .recruit .recruit__inner .recruit__main {
    flex-direction: column;
    row-gap: min(8 * 1vw, 48px);
  }
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-left {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right {
    width: 100%;
  }
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-ttl {
    margin-bottom: min(5.3333333333 * 1vw, 32px);
    font-size: min(5.8666666667 * 1vw, 35.2px);
  }
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .recruit__main-text {
    margin-bottom: min(8 * 1vw, 48px);
    font-size: min(4 * 1vw, 24px);
  }
  .page-front-page .recruit .recruit__inner .recruit__main .recruit__main-right .link-btn_2 {
    margin-left: auto;
  }
}

.page-news .news-articles .news-articles__inner {
  padding-block: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner {
    padding-block: min(10.6666666667 * 1vw, 64px);
  }
}
.page-news .news-articles .news-articles__inner {
  background-color: #fff;
}
.page-news .news-articles .news-articles__inner .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: min(2.6666666667 * 1vw, 40px);
}
.page-news .news-articles .news-articles__inner .article-list > li {
  width: calc((100% - min(2.6666666667 * 1vw, 40px) * (3 - 1)) / 3);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list {
    gap: min(6.4 * 1vw, 38.4px);
  }
  .page-news .news-articles .news-articles__inner .article-list > li {
    width: calc((100% - min(6.4 * 1vw, 38.4px) * (1 - 1)) / 1);
  }
}
.page-news .news-articles .news-articles__inner .article-list {
  margin-bottom: min(5.3333333333 * 1vw, 80px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list {
    margin-bottom: min(14.9333333333 * 1vw, 89.6px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item {
  margin-bottom: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item {
    margin-bottom: min(5.3333333333 * 1vw, 32px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item {
  background-color: #fff;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__link {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__thumb {
  overflow: hidden;
  aspect-ratio: 2/1;
  width: 26%;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__body {
  width: 72%;
  padding: min(1.6 * 1vw, 24px) min(1.3333333333 * 1vw, 20px) min(1.8666666667 * 1vw, 28px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__body {
    padding: min(4.8 * 1vw, 28.8px) min(4.2666666667 * 1vw, 25.6px) min(5.8666666667 * 1vw, 35.2px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__meta {
    gap: min(2.6666666667 * 1vw, 16px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__meta {
  margin-bottom: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__meta {
    margin-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__date {
  font-size: min(1 * 1vw, 15px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__date {
    font-size: min(2.6666666667 * 1vw, 16px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__date {
  color: #433232;
  line-height: 1;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats {
    gap: min(2.6666666667 * 1vw, 16px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  font-size: min(1 * 1vw, 15px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
    font-size: min(2.6666666667 * 1vw, 16px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__cats li {
  min-width: unset;
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__title {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .article-list .article-item .article-item__title {
    font-size: min(4 * 1vw, 24px);
  }
}
.page-news .news-articles .news-articles__inner .article-list .article-item .article-item__title {
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}
.page-news .news-articles .news-articles__inner .pagination {
  display: flex;
  justify-content: center;
}
.page-news .news-articles .news-articles__inner .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.5333333333 * 1vw, 8px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .nav-links {
    gap: min(1.6 * 1vw, 9.6px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: min(3.2 * 1vw, 48px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .page-numbers {
    min-width: min(10.6666666667 * 1vw, 64px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers {
  height: min(3.2 * 1vw, 48px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .page-numbers {
    height: min(10.6666666667 * 1vw, 64px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers {
  padding: 0 min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .page-numbers {
    padding: 0 min(2.6666666667 * 1vw, 16px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers {
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .page-numbers {
    font-size: min(3.4666666667 * 1vw, 20.8px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers {
  color: #333;
  background-color: #fff;
  border: 1px solid #707070;
  transition: 0.3s ease;
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers.current {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.page-news .news-articles .news-articles__inner .pagination .page-numbers:hover:not(.current) {
  background-color: #e8e8e8;
}
.page-news .news-articles .news-articles__inner .pagination .prev,
.page-news .news-articles .news-articles__inner .pagination .next {
  padding: 0 min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .page-news .news-articles .news-articles__inner .pagination .prev,
  .page-news .news-articles .news-articles__inner .pagination .next {
    padding: 0 min(3.7333333333 * 1vw, 22.4px);
  }
}
.page-news .news-articles .news-articles__inner .pagination .prev,
.page-news .news-articles .news-articles__inner .pagination .next {
  width: auto;
}

.post-template-default.single-post .news-articles {
  margin-bottom: min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles {
    margin-bottom: min(16 * 1vw, 96px);
  }
}
.post-template-default.single-post .news-articles {
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.post-template-default.single-post .news-articles {
  font-weight: 400;
  line-height: 1.8;
  background-color: #fff;
}
.post-template-default.single-post .news-articles article {
  padding: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article {
    padding: min(6.4 * 1vw, 38.4px);
  }
}
.post-template-default.single-post .news-articles article .myfigure {
  max-width: 800px;
  margin: 0 auto min(2 * 1vw, 30px);
}
.post-template-default.single-post .news-articles article .myfigure img {
  width: 100%;
  object-fit: cover;
}
.post-template-default.single-post .news-articles article h1 {
  margin-bottom: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article h1 {
    margin-bottom: min(2.6666666667 * 1vw, 16px);
  }
}
.post-template-default.single-post .news-articles article h1 {
  font-size: min(2.1333333333 * 1vw, 32px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article h1 {
    font-size: min(8.5333333333 * 1vw, 51.2px);
  }
}
.post-template-default.single-post .news-articles article p {
  margin-bottom: min(0.8 * 1vw, 12px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article p {
    margin-bottom: min(3.2 * 1vw, 19.2px);
  }
}
.post-template-default.single-post .news-articles article .category_date {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(2.6666666667 * 1vw, 40px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date {
    margin-bottom: min(10.6666666667 * 1vw, 64px);
  }
}
.post-template-default.single-post .news-articles article .category_date {
  font-size: min(0.8666666667 * 1vw, 13px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date {
    font-size: min(3.4666666667 * 1vw, 20.8px);
  }
}
.post-template-default.single-post .news-articles article .category_date {
  font-weight: 400;
}
.post-template-default.single-post .news-articles article .category_date ul {
  display: flex;
  justify-content: flex-start;
  column-gap: min(0.6666666667 * 1vw, 10px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date ul {
    column-gap: min(2.6666666667 * 1vw, 16px);
  }
}
.post-template-default.single-post .news-articles article .category_date li {
  padding: min(0.2666666667 * 1vw, 4px) min(0.8 * 1vw, 12px) min(0.3333333333 * 1vw, 5px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date li {
    padding: min(1.0666666667 * 1vw, 6.4px) min(3.2 * 1vw, 19.2px) min(1.3333333333 * 1vw, 8px);
  }
}
.post-template-default.single-post .news-articles article .category_date li {
  background-color: #F7F6F1;
  border-radius: min(0.3333333333 * 1vw, 5px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date li {
    border-radius: min(1.3333333333 * 1vw, 8px);
  }
}
.post-template-default.single-post .news-articles article .category_date li a {
  color: #333;
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date li a {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.post-template-default.single-post .news-articles article .category_date time {
  font-size: min(1.0666666667 * 1vw, 16px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles article .category_date time {
    font-size: min(4.2666666667 * 1vw, 25.6px);
  }
}
.post-template-default.single-post .news-articles .navigation {
  width: 90%;
  max-width: 850px;
  margin: 0 auto min(16 * 1vw, 240px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation {
    margin: 0 auto min(64 * 1vw, 384px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links {
  display: flex;
  background-color: #fdfdfd;
  border: 1px solid #707070;
  font-size: min(0.9333333333 * 1vw, 14px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links {
    font-size: min(3.7333333333 * 1vw, 22.4px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links {
  line-height: 1.4;
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous,
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next {
  position: relative;
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  height: auto;
  border-right: 1px solid #707070;
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous a,
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next a {
  display: block;
  width: 100%;
  font-size: min(1.2 * 1vw, 18px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-previous a,
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-next a {
    font-size: min(4.8 * 1vw, 28.8px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous a {
  padding: min(1 * 1vw, 15px) min(2.4 * 1vw, 36px) min(1 * 1vw, 15px) min(4 * 1vw, 60px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-previous a {
    padding: min(4 * 1vw, 24px) min(9.6 * 1vw, 57.6px) min(4 * 1vw, 24px) min(16 * 1vw, 96px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous a {
  text-align: left;
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-previous i {
    left: min(5.3333333333 * 1vw, 32px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-previous i {
  font-size: min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-previous i {
    font-size: min(6.4 * 1vw, 38.4px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next {
  border-left: 1px solid #707070;
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next a {
  padding: min(1 * 1vw, 15px) min(4 * 1vw, 60px) min(1 * 1vw, 15px) min(2.4 * 1vw, 36px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-next a {
    padding: min(4 * 1vw, 24px) min(16 * 1vw, 96px) min(4 * 1vw, 24px) min(9.6 * 1vw, 57.6px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next a {
  text-align: right;
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(1.3333333333 * 1vw, 20px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-next i {
    right: min(5.3333333333 * 1vw, 32px);
  }
}
.post-template-default.single-post .news-articles .navigation .nav-links .nav-next i {
  font-size: min(1.6 * 1vw, 24px);
}
@media (max-width: 767px) {
  .post-template-default.single-post .news-articles .navigation .nav-links .nav-next i {
    font-size: min(6.4 * 1vw, 38.4px);
  }
}

.page-company .message {
  background-color: #e8e8e8;
}
.page-company .map .map__inner iframe {
  width: 100%;
  aspect-ratio: 1500/450;
}

@media (max-width: 767px) {
  .page-company .map .map__inner iframe {
    aspect-ratio: 380/300;
  }
}