/*!
Theme Name: gatewing-vr17
Text Domain: gatewing-vr17
*/



body {
  padding: 0;
  margin: 0;
  font-family: "MatissePro-L", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
}

:root {
  --base-brown: #1a1412;
  /* 焦茶 */
  --accent-gold: #b3935a;
  /* 真鍮金 */
  --text-off-white: #dbd2c7;
  /* 鳥の子色 */
  --koushi-color: rgba(179, 147, 90, 0.1);
  /* ラインの色（少しだけ濃く調整） */
}

/* サイト全体の基本設定 */
body {
  background-color: var(--base-brown);
  color: var(--text-off-white);
  margin: 0;
  line-height: 2;
  overflow-x: hidden;
}

/* ライン背景レイヤー */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;

  /* 柄（和紙画像）を削除し、縦ラインのみを定義 */
  background-image:
    repeating-linear-gradient(90deg,
      var(--koushi-color),
      var(--koushi-color) 1px,
      transparent 1px,
      transparent 45px);

  /* 中央から端にかけてラインを滑らかに消すマスク（高級感を出すポイント） */
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 95%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DNPShueiMinPr6-M", serif;
  font-weight: 400;
}

a.footer_privacy {
  /* color: #F3EDE0; */
  color: #ffffff;
  text-decoration: underline;
}

a.footer_privacy:hover {
  /* color: #FFFCF4; */
  color: #ffffff;
}

/*---------縦書き------------*/
.tategaki {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
}

/*---------メニューページ------------*/
.menu-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  color: #dbd2c7;
  /*text-align: right;*/
  line-height: 1.4em;
  text-align: right;
}

.menu-height {
  line-height: 1.4em;
  margin: 0;
  text-align: left;
}

.desc {
  font-size: 85%;
  line-height: 1.5em;
  margin: 0 0 0;
  /*    color: var(--e-global-color-76d6344);*/
  color: #6d6d6d;
  clear: both;
}

.text-right {
  display: block;
  text-align: right;
  margin-bottom: 0.2em;
  color: var(--e-global-color-accent) 3;
}

.ttl_new h3 .new {
  text-align: center;
  vertical-align: middle;
  font-size: 0.5em;
  color: #ffffff;
  background-color: #8f1e1c;
  padding: 0.2em 0.3em;
  margin-top: 0.1em;
  margin-right: 0.5em;
  line-height: 1.4;
}

.gtranslate_wrapper {
  position: ;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  word-break: break-all !important;
}

.table-style01 th {
  /* background: #F5F5F5; */
  width: 24%;
  border-bottom: 1px solid #9e1414;
}

.table-style01 td {
  border-bottom: 1px solid #dddddd;
}

.table.table-style01>tbody>tr>td,
.table.table-style01>tbody>tr>th {
  padding: 8px;
  vertical-align: middle;
  /*    border-top: 1px solid #ddd;*/
  font-size: 15px;
}

@media (max-width: 767px) {
  .table-style01 tr {
    display: flex;
    flex-direction: column;
  }

  .table-style01 th {
    /* background: #F5F5F5; */
    width: 100%;
    border-bottom: 1px solid #9e1414;
  }

  .table.table-style01>tbody>tr>td,
  .table.table-style01>tbody>tr>th {
    font-size: 14.5px;
  }
}

@media (max-width: 767px) {
  .menu-box {
    font-size: 14px;
  }

  .text-right {
    font-size: 14px;
  }

  .desc {
    font-size: 75%;
  }
}

/* ipad pc -----------------------*/
@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* sp ---------------------------*/
@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

.btn-wa {
  position: relative;
  padding: 0.75rem 3.5rem;
  border: 1px solid rgba(179, 147, 90, 0.4);
  color: var(--accent-gold);
  transition: all 0.5s ease;
  background: rgba(26, 20, 18, 0.8);
  letter-spacing: 0.3em;
  display: inline-block;
}

.btn-wa:hover {
  border-color: #b3935a;
  background: #b3935a;
  color: #1a1412;
}

/* サイト全体のデフォルトカーソルを非表示に */
@media (pointer: fine) {

  body,
  a,
  button,
  .elementor-button,
  .elementor-image {
    cursor: none !important;
  }

  #cursor {
    width: 10px;
    height: 10px;
    background: #b3935a;
    /* 選択された真鍮金 */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    /* 最前面に表示 */
    box-shadow: 0 0 20px #b3935a, 0 0 40px #b3935a;
    /* CSSでのtransformは削除し、GSAPのxPercent/yPercentで制御します */
    left: 0;
    top: 0;
    transition: background-color 0.3s ease;
    /* 拡大しても中心がずれないように基準点を中央に固定 */
    transform-origin: center center;
  }
}

.head_logo {
  position: fixed;
  top: 10px;
  left: 30px;
  z-index: 9999;
}

.head_img {
  /* width: 85px; */
  height: 139px;
}

@media (max-width: 767px) {
  .head_logo {
    position: fixed;
    top: 8px;
    left: 10px;
    z-index: 9999;
  }

  .head_img {
    /* width: 50px; */
    height: 96px;
  }

}