@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #1E1E1E;
}

input[type=text],
input[type=submit] {
  -webkit-appearance: none;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

:root {
  --sp1: 6.6vw;
}

@media screen and (min-width: 769px) {
  :root {
    --sp1: 6vw;
  }
}
html {
  font-size: 625%;
}

body {
  font-size: 0.14em;
  line-height: 2.2;
  letter-spacing: 0.25em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background-color: #ffffff;
  color: #1E1E1E;
}

.sp-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .sp-none {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}

html {
  scroll-behavior: auto;
}

body {
  color: #595959;
  padding-top: 95px !important;
}
@media screen and (min-width: 769px) {
  body {
    padding-top: 84px !important;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555; /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

.btn-white {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #333;
}
.btn span img {
  filter: invert(13%) sepia(41%) saturate(8%) hue-rotate(330deg) brightness(102%) contrast(85%);
}

.btn-white span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.btn:hover span {
  color: #333;
}
.btn:hover span img {
  filter: invert(13%) sepia(41%) saturate(8%) hue-rotate(330deg) brightness(102%) contrast(85%);
}

.btn-white:hover span {
  color: #fff;
}

/*== 背景が流れる（下から上） */
.bgbottom:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #5fbbfe; /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgbottom:hover:before {
  height: 100%;
  background-color: #5fbbfe;
}

/*== 背景が流れる（右から左） */
.bgright:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #5fbbfe; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: left top;
}

/*hoverした際の形状*/
.bgright:hover:before {
  transform-origin: right top;
  transform: scale(1, 1);
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.pankuzu {
  width: 100%;
  padding: 20px;
  font-size: 0.1rem;
}
@media screen and (min-width: 769px) {
  .pankuzu {
    max-width: 1200px;
    padding: 0 80px;
    margin: 40px auto;
    font-size: 0.12rem;
  }
}
.enjp-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
}
.enjp-heading .en {
  justify-self: end;
}
.enjp-heading .sep {
  justify-self: center;
}
.enjp-heading .jp {
  justify-self: start;
  font-size: 0.12rem;
  letter-spacing: 0.18em;
}
@media screen and (min-width: 769px) {
  .enjp-heading .jp {
    font-size: 0.2rem;
  }
}

#etc-list {
  width: 100%;
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  #etc-list {
    padding: 120px 0;
  }
}
#etc-list.bgcolor-lightbeige {
  background-color: #fff;
}
#etc-list div.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #etc-list div.title {
    max-width: 1200px;
    margin: 0 auto 60px auto;
  }
}
#etc-list div.title h2 {
  font-size: 0.18rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #etc-list div.title h2 {
    font-size: 0.24rem;
  }
}
#etc-list div.title span {
  display: block;
  width: 35%;
  height: 1px;
  background-color: #595959;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #etc-list div.title span {
    width: calc(100% - 24em);
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  #etc-list div.title span.line-event_home {
    max-width: 760px;
  }
}
@media screen and (min-width: 769px) {
  #etc-list div.title span.line-event {
    max-width: 818px;
  }
}
@media screen and (min-width: 769px) {
  #etc-list div.title span.line-work {
    max-width: 840px;
  }
}
#etc-list div.title div {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  #etc-list div.title div {
    gap: 30px;
  }
}
#etc-list div.title div img {
  width: 22px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #etc-list div.title div img {
    width: 40px;
  }
}
#etc-list div.title div img {
  cursor: pointer;
  transition: 0.3s;
}
#etc-list div.title div img:hover {
  filter: brightness(0.5);
}
#etc-list div.contents {
  display: flex;
  word-wrap: 100%;
  overflow-x: scroll;
  padding: 0 20px;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents {
    padding: 0 20px 0 calc((100vw - 1200px) / 2);
  }
}
#etc-list div.contents dl {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl {
    width: 385px;
  }
}
#etc-list div.contents dl.end dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
#etc-list div.contents dl.end dt:after {
  content: "このイベントは終了しました";
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  letter-spacing: 0;
  top: 0;
  left: 0;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl.end dt:after {
    font-size: 13px;
  }
}
#etc-list div.contents dl dt {
  margin-bottom: 15px;
  position: relative;
}
#etc-list div.contents dl dt img {
  width: 100%;
  height: auto;
}
#etc-list div.contents dl dd span {
  display: inline-block;
  background-color: #76716D;
  color: #fff;
  font-size: 0.1rem;
  padding: 3px 10px;
  margin-bottom: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl dd span {
    font-size: 0.12rem;
    padding: 3px 15px;
  }
}
#etc-list div.contents dl dd span.category {
  background-color: #76716D;
  margin-right: 4px;
}
#etc-list div.contents dl dd span.acceptance {
  background-color: #AD1212;
}
#etc-list div.contents dl dd h3 {
  font-size: 0.16rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl dd h3 {
    font-size: 0.18rem;
  }
}
#etc-list div.contents dl dd h3.h3event {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl dd h3.h3event {
    margin-bottom: 40px;
  }
}
#etc-list div.contents dl dd p {
  font-size: 0.12rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl dd p {
    font-size: 0.14rem;
  }
}
#etc-list div.contents dl dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  padding: 1.1em 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  z-index: 1;
}
#etc-list div.contents dl dd a:before, #etc-list div.contents dl dd a:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
  top: 0;
  width: 0;
  height: 100%;
  box-sizing: border-box;
}
#etc-list div.contents dl dd a:before {
  right: 0;
  border: 1px solid #595959;
  border-left: 0;
  border-right: 0;
}
#etc-list div.contents dl dd a:after {
  left: 0;
}
#etc-list div.contents dl dd a:hover {
  transition-delay: 0.5s;
  color: #fff;
}
#etc-list div.contents dl dd a:hover:before {
  transition-delay: 0s;
  width: 100%;
}
#etc-list div.contents dl dd a:hover:after {
  background: #595959;
  transition-delay: 0.35s;
  width: 100%;
}
#etc-list div.contents dl dd a:hover img {
  transition-delay: 0.55s;
  filter: brightness(10);
}
#etc-list div.contents dl dd a img {
  width: 15px;
  height: auto;
  margin-left: 10px;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media screen and (min-width: 769px) {
  #etc-list div.contents dl dd a img {
    width: 20px;
  }
}
#etc-list > a {
  background-color: #76716D;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 70px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #etc-list > a {
    font-size: 0.16rem;
    width: 380px;
    height: 60px;
  }
}
#etc-list > a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #etc-list > a img {
    width: 20px;
    margin-left: 10px;
  }
}
#etc-list > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}

.fot-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .fot-menu {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto 100px;
  }
}
.fot-menu li {
  width: calc((100% - 20px) / 2);
  height: 72px;
  border-top: 2px solid #aaa;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
  font-size: 0.12rem;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .fot-menu li {
    width: 25%;
  }
}
.fot-menu li.on {
  border-top: 2px solid #595959;
  color: #595959;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .fot-menu li.on {
    font-size: 0.16rem;
  }
}
.fot-menu li a {
  color: #aaa;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .fot-menu li a {
    font-size: 0.16rem;
  }
}
.fot-menu li:hover {
  border-top: 2px solid #595959;
}
.fot-menu li:hover a {
  color: #595959;
}

@keyframes menuBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.28;
  }
}
#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  background-color: #CDC3B3; /* 背景色 */
  transform: translate(-50%, -50%);
}
#loading.fadeOut {
  animation: fadeOutAnimation 1s forwards;
  animation-timing-function: cubic-bezier(0, 0.69, 0.3, 0.99);
}
@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}

header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
  background-color: white;
  padding: calc(var(--sp1) * 2) 0 calc(var(--sp1) * 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #595959;
}
@media screen and (min-width: 769px) {
  header {
    display: block;
    height: 84px;
    padding: 0 calc(var(--sp1) * 1);
    border-bottom: none;
  }
}
header#home-header > div {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  header#home-header > div {
    height: 84px;
    padding-left: 40px;
    border-bottom: 1px solid #595959;
  }
}
header#home-header > div > a {
  position: relative;
  z-index: 40;
  text-decoration: none;
}
header#home-header > div > a h1 {
  color: #464646;
  line-height: 1;
  font-size: 0.18rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 769px) {
  header#home-header > div > a h1 {
    font-size: 0.24rem;
    letter-spacing: 0.2em;
  }
}
header#home-header > div > a h1 img {
  width: 100%;
  height: auto;
}
header#home-header > div ul.top-menu {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: relative;
  z-index: 40;
  display: none;
}
@media screen and (min-width: 769px) {
  header#home-header > div ul.top-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: calc(9vw + 116px);
    transform: translateY(26px);
  }
}
header#home-header > div ul.top-menu > li {
  position: relative;
}
header#home-header > div ul.top-menu > li > a,
header#home-header > div ul.top-menu > li > .top-menu-trigger {
  display: block;
  position: relative;
  padding: 6px 2px;
  letter-spacing: 0.1em;
  color: #333;
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
header#home-header > div ul.top-menu > li > a:hover,
header#home-header > div ul.top-menu > li > .top-menu-trigger:hover {
  color: #e3a52a;
}
header#home-header > div ul.top-menu .has-sub:hover > .top-menu-trigger {
  color: #e3a52a;
}
header#home-header > div ul.top-menu .has-sub:hover > .top-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
header#home-header > div ul.top-menu .top-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: #fff;
  border: 1px solid #c9c4bb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
  z-index: 50;
}
header#home-header > div ul.top-menu .top-submenu li + li {
  border-top: 1px solid #e4e0d9;
}
header#home-header > div ul.top-menu .top-submenu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
  text-align: left;
  font-size: 0.12rem;
  letter-spacing: 0.06em;
  color: #333;
  transition: color 0.3s;
}
header#home-header > div ul.top-menu .top-submenu a::before {
  content: "- ";
}
header#home-header > div ul.top-menu .top-submenu a .sep {
  margin: 0 0.15em;
}
header#home-header > div ul.top-menu .top-submenu a:hover {
  color: #e3a52a;
}
header#home-header > div ul.top-menu .has-sub:hover > .top-submenu {
  transition: opacity 0.3s, transform 0.3s, visibility 0s 0s;
}
header#home-header > div #menu-open {
  width: 90px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  header#home-header > div #menu-open {
    flex-direction: row;
    gap: 7px;
    width: auto;
    height: 84px;
    right: 9vw;
    transform: translateY(26px);
  }
}
header#home-header > div #menu-open span:first-child {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 100px;
  transition: 0.5s;
  position: relative;
  animation: menuBlink 1.6s ease-in-out infinite;
}
header#home-header > div #menu-open span:first-child::before, header#home-header > div #menu-open span:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.2px solid #595959;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}
header#home-header > div #menu-open span:last-child {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  transition: 0.5s;
  margin-top: -1px;
}
@media screen and (min-width: 769px) {
  header#home-header > div #menu-open span:last-child {
    font-size: 0.13rem;
    line-height: 1;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin-top: -3px;
  }
}
header#home-header > div #menu-open span:last-child:before {
  content: "menu";
  display: block;
}
header#home-header > div #menu-open:hover span:first-child::before, header#home-header > div #menu-open:hover span:first-child::after {
  animation: menuRipple 1.8s ease-out infinite;
}
header#home-header > div #menu-open:hover span:first-child::after {
  animation-delay: 0.9s;
}
header#home-header > div #menu-open.close span:first-child::before, header#home-header > div #menu-open.close span:first-child::after {
  display: none;
}
header#home-header > div #menu-open.close {
  z-index: 10000;
}
header#home-header > div #menu-open.close span:first-child {
  width: 11px;
  height: 11px;
  border-radius: 100px;
  background-color: #e3a52a !important;
  transform: none;
  margin: 0;
  animation: menuBlink 1.4s ease-in-out infinite;
}
header#home-header > div #menu-open.close span:last-child:before {
  content: "close";
  color: #e3a52a;
}
header.home-only, header.moclock-only, header.home-plain {
  background-color: #fff !important;
}
header:has(#menu-open.close) {
  background-color: #fff !important;
  border-bottom-color: #595959;
}
header:has(#menu-open.close) h1 {
  color: #1e1e1e !important;
}
header:has(#menu-open.close) ul.top-menu {
  opacity: 1 !important;
  visibility: visible !important;
}
header:has(#menu-open.close) #menu-open span:first-child {
  background-color: #e3a52a !important;
}
header:has(#menu-open.close) #menu-open span:first-child::before, header:has(#menu-open.close) #menu-open span:first-child::after {
  border-color: #e3a52a !important;
}
header:has(#menu-open.close) #menu-open span:last-child:before {
  color: #e3a52a !important;
}

body:has(#menu.close) {
  overflow: hidden;
}

.side-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  gap: 20px;
  display: none;
  z-index: 1001;
}
@media screen and (min-width: 769px) {
  .side-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.side-button a {
  background-color: #76716D;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 167px;
  width: 42px;
  line-height: 1.3;
  position: relative;
  transition: 0.3s;
}
.side-button a:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 42px;
  height: 0;
  background-color: #362B22;
  transition: 0.3s;
}
.side-button a span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 125px;
  position: relative;
}
.side-button a span:last-child {
  background-color: #362B22;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: relative;
}
.side-button a:last-child {
  height: 262px;
}
.side-button a:last-child span:first-child {
  height: 220px;
}
.side-button a:hover:before {
  height: 100%;
}

@keyframes menuRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
#menu, #menu * {
  letter-spacing: 0 !important;
}
#menu {
  position: fixed;
  inset: 0;
  background-color: #3a3835;
  color: #efece6;
  z-index: 30;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.6s;
}
@media screen and (min-width: 769px) {
  #menu {
    inset: 84px calc(var(--sp1) * 1) auto calc(var(--sp1) * 1);
    height: auto;
    max-height: calc(100vh - 84px - 24px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  }
}
#menu.close {
  visibility: visible;
  transform: translateY(84px);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0s;
}
@media screen and (min-width: 769px) {
  #menu.close {
    transform: translateY(0);
  }
}
#menu .menu-inner {
  margin: 0 auto;
  padding: calc(var(--sp1) * 2);
}
@media screen and (min-width: 769px) {
  #menu .menu-inner {
    max-width: calc(100vw - var(--sp1) * 2);
    padding: calc(var(--sp1) * 1);
  }
}
#menu .menu-inner {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#menu.close .menu-inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}
#menu a {
  text-decoration: none;
  color: #efece6;
  transition: color 0.3s, opacity 0.3s;
}
#menu a:hover {
  color: #fff;
  opacity: 0.8;
}
#menu .en {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}
#menu .jp {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#menu .sep {
  margin: 0 0.45em;
  color: #b9b4ab;
}
#menu .menu-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 769px) {
  #menu .menu-grid {
    grid-template-columns: 1.05fr 1fr 1fr 1fr;
    gap: 0 2.6vw;
  }
}
@media screen and (min-width: 769px) {
  #menu .menu-col {
    padding-left: 0.55vw;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}
#menu .menu-top {
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #menu .menu-top {
    margin-bottom: 24px;
  }
}
#menu .menu-top a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #fff;
}
#menu .menu-mainlinks > li {
  margin-bottom: 0;
}
#menu .menu-mainlinks > li > a,
#menu .menu-mainlinks .menu-acc__head > a {
  display: inline-flex;
  align-items: baseline;
}
#menu .menu-mainlinks .en {
  color: #fff;
}
@media screen and (min-width: 769px) {
  #menu .menu-mainlinks .en {
    display: inline-block;
    width: 5.2em;
  }
}
#menu .menu-mainlinks .sep {
  flex: 0 0 auto;
}
#menu .menu-mainlinks__staff {
  display: none;
}
#menu .menu-dept {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  #menu .menu-dept {
    margin-top: 0;
  }
}
#menu .menu-dept__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}
#menu .menu-dept__ttl .jp {
  color: #b9b4ab;
}
@media screen and (min-width: 769px) {
  #menu .menu-dept__ttl a {
    display: block;
    padding: 6px 8px;
    margin: 0 -8px 0 -8px;
    border-radius: 2px;
    transition: background 0.3s;
  }
  #menu .menu-dept__ttl a:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
  }
}
#menu .menu-dept__row > a,
#menu .menu-dept__row .menu-acc__head > a {
  display: block;
  padding: 4px 2px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.08em;
}
#menu .menu-dept__list > .menu-dept__row:first-child {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}
#menu .menu-sub,
#menu .menu-subitems {
  padding: 2px 2px 8px 16px;
}
#menu .menu-sub li,
#menu .menu-subitems li {
  margin-bottom: 6px;
}
#menu .menu-sub li:last-child,
#menu .menu-subitems li:last-child {
  margin-bottom: 2px;
}
#menu .menu-sub a,
#menu .menu-subitems a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.06em;
  color: #efece6;
}
#menu .menu-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#menu .menu-acc__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  flex: 0 0 auto;
}
#menu .menu-acc__toggle::before, #menu .menu-acc__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: #efece6;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
}
#menu .menu-acc__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#menu .menu-acc.is-open > .menu-acc__head .menu-acc__toggle::before {
  background: #e3a52a;
}
#menu .menu-acc.is-open > .menu-acc__head .menu-acc__toggle::after {
  opacity: 0;
}
#menu .menu-acc.is-open > .menu-acc__head {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}
#menu .menu-acc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
#menu .menu-acc.is-open > .menu-acc__panel {
  max-height: 60vh;
}
@media screen and (min-width: 769px) {
  #menu .menu-acc__toggle {
    display: none;
  }
  #menu .menu-dept .menu-acc__panel {
    max-height: none;
  }
  #menu .menu-mainlinks__staff {
    display: block;
  }
  #menu .menu-acc--company .menu-acc__panel {
    display: none;
  }
  #menu .menu-dept__row {
    border-bottom: none;
  }
  #menu .menu-dept__list > .menu-dept__row:first-child {
    border-top: none;
  }
  #menu .menu-acc.is-open > .menu-acc__head {
    border-top: none;
    padding-top: 0;
  }
  #menu .menu-top a,
  #menu .menu-sub a,
  #menu .menu-subitems a {
    display: inline-block;
  }
  #menu .menu-top a,
  #menu .menu-mainlinks > li > a,
  #menu .menu-mainlinks .menu-acc__head > a,
  #menu .menu-subitems a,
  #menu .menu-dept__ttl a,
  #menu .menu-dept__row > a,
  #menu .menu-dept__row .menu-acc__head > a,
  #menu .menu-sub a {
    padding: 4px 8px;
    margin: 0 -8px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s;
  }
  #menu .menu-top a:hover,
  #menu .menu-mainlinks > li > a:hover,
  #menu .menu-mainlinks .menu-acc__head > a:hover,
  #menu .menu-subitems a:hover,
  #menu .menu-dept__ttl a:hover,
  #menu .menu-dept__row > a:hover,
  #menu .menu-dept__row .menu-acc__head > a:hover,
  #menu .menu-sub a:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
  }
  #menu .menu-col--main {
    display: flex;
    flex-direction: column;
  }
  #menu .menu-top {
    margin-bottom: 16px;
  }
  #menu .menu-mainlinks {
    margin-top: 59px;
  }
  #menu .menu-mainlinks > li {
    margin-bottom: 0;
  }
  #menu .menu-dept__ttl {
    margin-bottom: 24px;
  }
  #menu .menu-dept__row > a,
  #menu .menu-dept__row .menu-acc__head > a,
  #menu .menu-sub a {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  #menu .menu-dept__row {
    margin-bottom: 0;
  }
  #menu .menu-sub {
    padding-top: 0;
  }
  #menu .menu-sub li {
    margin-bottom: 0;
  }
}
#menu .menu-sns {
  display: flex;
}
@media screen and (min-width: 769px) {
  #menu .menu-sns {
    display: none;
  }
}
#menu .menu-sns {
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
#menu .menu-sns a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #efece6;
}
#menu .menu-sns .sns-ico {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
#menu .menu-sns span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
}
#menu .menu-top a,
#menu .menu-mainlinks > li > a,
#menu .menu-mainlinks .menu-acc__head > a,
#menu .menu-dept__ttl,
#menu .menu-dept__row > a,
#menu .menu-dept__row .menu-acc__head > a,
#menu .menu-sub a,
#menu .menu-subitems a,
#menu .menu-sns span,
#menu .en, #menu .jp {
  font-size: 0.12rem;
  line-height: 1.4;
}
#menu .menu-sns span {
  font-size: 0.1rem;
}

footer {
  color: #d7d2ca;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  footer {
    padding: calc(var(--sp1) * 1);
  }
}
footer .footer-inner {
  background-color: #3a3835;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--sp1) * 1) calc(var(--sp1) * 2) calc(var(--sp1) * 3);
  gap: calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  footer .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--sp1) * 1) 0;
  }
}
footer .footer-brand {
  display: none;
}
@media screen and (min-width: 769px) {
  footer .footer-brand {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 229px;
  }
}
footer .footer-brand .footer-logo {
  font-family: "Zen Old Mincho", serif;
  font-size: 0.18rem;
  letter-spacing: 0.16em;
  color: #efeae2;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  footer .footer-brand .footer-logo {
    font-size: 0.24rem;
    margin-bottom: 44px;
  }
}
footer .footer-brand .footer-cert {
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 0.2rem;
  letter-spacing: 0.34em;
  color: #d7d2ca;
  margin-bottom: 12px;
  width: 130px;
}
@media screen and (min-width: 769px) {
  footer .footer-brand .footer-cert {
    font-size: 0.22rem;
    width: 180px;
  }
}
footer .footer-brand img {
  width: 100%;
  height: auto;
}
footer .footer-divider {
  display: none;
}
@media screen and (min-width: 769px) {
  footer .footer-divider {
    display: block;
    align-self: stretch;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin-right: 3.5%;
  }
}
@media screen and (min-width: 769px) {
  footer .footer-col {
    width: 22.6666666667%;
    padding: calc(var(--sp1) * 0.3) 0;
  }
}
@media screen and (min-width: 769px) {
  footer .footer-sns {
    margin-left: auto;
  }
}
footer h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  footer h2 {
    margin-bottom: 1em;
  }
}
footer .footer-block {
  margin-bottom: 0;
  display: flex;
  gap: 1em;
}
@media screen and (min-width: 769px) {
  footer .footer-block {
    margin-bottom: 1em;
    display: block;
  }
}
footer .footer-block p {
  margin: 0;
  font-size: 0.1rem;
  letter-spacing: 0.08em;
  line-height: 1.95;
  color: #d7d2ca;
}
@media screen and (min-width: 769px) {
  footer .footer-block p {
    font-size: 0.11rem;
  }
}
footer .footer-block p.kv {
  display: flex;
  gap: 10px;
}
footer .footer-block p.kv .k {
  flex: 0 0 auto;
  width: 52px;
}
footer .footer-block p.kv .v {
  flex: 1 1 auto;
}
footer .footer-block p.dept {
  color: #cbc5bb;
}
footer .footer-block p.tel {
  font-size: 0.1rem;
  letter-spacing: 0.04em;
}
footer .footer-block p.tel a {
  color: #eae5dd;
}
@media screen and (min-width: 769px) {
  footer .footer-block p.tel {
    font-size: 0.11rem;
  }
}
footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  color: #eae5dd;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity 0.3s;
}
footer .footer-link:hover {
  opacity: 0.6;
}
footer .footer-link .arw {
  text-decoration: none;
  font-size: 1.05em;
}
@media screen and (min-width: 769px) {
  footer .footer-link {
    font-size: 0.11rem;
  }
}
footer .footer-sns ul {
  display: flex;
  gap: 18px;
}
@media screen and (min-width: 769px) {
  footer .footer-sns ul {
    flex-direction: column;
  }
}
footer .footer-sns ul li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d7d2ca;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  footer .footer-sns ul li a {
    gap: 18px;
  }
}
footer .footer-sns ul li a:hover {
  opacity: 0.6;
}
footer .footer-sns ul li a .ico {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  footer .footer-sns ul li a .ico {
    width: 30px;
    height: 30px;
  }
}
footer .footer-sns ul li a .ico svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}
footer .footer-sns ul li a .label {
  font-size: 0.1rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  footer .footer-sns ul li a .label {
    font-size: 0.11rem;
  }
}

#loader {
  display: none !important;
}

.home #loader.loader--home {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #3a3835;
  z-index: 20000;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.home #loader.loader--home.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.home #loader.loader--home .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .home #loader.loader--home .loader-inner {
    gap: 28px;
  }
}
.home #loader.loader--home .loader-title {
  display: inline-flex;
  align-items: baseline;
  font-family: "Zen Old Mincho", serif;
  color: #efece6;
  font-size: 0.2rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .home #loader.loader--home .loader-title {
    font-size: 0.3rem;
    letter-spacing: 0.18em;
  }
}
.home #loader.loader--home .loader-title .loader-title__caret {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 0.06em;
  background: #efece6;
  transform: translateY(0.08em);
  animation: loaderCaret 0.9s step-end infinite;
}
.home #loader.loader--home.is-typed .loader-title__caret {
  animation: none;
  opacity: 0;
}
.home #loader.loader--home .loader-status {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #cfcac2;
  white-space: nowrap;
  animation: menuBlink 1.5s ease-in-out infinite;
}
@media screen and (min-width: 769px) {
  .home #loader.loader--home .loader-status {
    bottom: 7%;
    font-size: 0.13rem;
  }
}
.home #loader.loader--home .loader-status__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e3a52a;
}

@keyframes loaderCaret {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
#videoModal video {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

#home-top {
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 95px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  #home-top {
    height: 100vh;
    margin-top: 0;
    height: calc(100vh - 84px);
  }
}
#home-top:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@keyframes slideDownAndFade {
  0% {
    bottom: 60px; /* 初期位置（画面外） */
    height: 60px; /* 初期の高さ */
  }
  50% {
    bottom: 0; /* 中間位置（画面の上端） */
    height: 60px; /* 高さは変わらず */
  }
  100% {
    bottom: 0; /* 最終位置（画面の下端） */
    height: 0; /* 高さを0にして消える */
  }
}
#home-top h2 {
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(0, -48%);
  font-size: 0.18rem;
  z-index: 10;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 769px) {
  #home-top h2 {
    font-size: 0.18rem;
    left: 30%;
    top: 50%;
  }
}
#home-top .lineWrap {
  z-index: 100;
  left: calc(50% - 20px);
  bottom: 0;
  height: 60px;
  position: absolute;
  overflow: hidden;
  width: 40px;
}
#home-top .lineWrap:before {
  content: "scroll";
  transform: rotate(-90deg) translate(-12px, -20px);
  display: inline-block;
  color: #fff;
}
#home-top .line {
  position: absolute;
  z-index: 100;
  left: 50%;
  bottom: 0;
  height: 60px;
  overflow: hidden;
  width: 1px;
  background-color: white;
  animation: slideDownAndFade 2s infinite;
}
#home-top .home-kv {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #home-top .home-kv {
    inset: 0 calc(var(--sp1) * 1) calc(var(--sp1) * 1);
  }
}
#home-top .home-kv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#home-top .swiperHome {
  position: relative;
}
#home-top .swiperHome .swiper-slide > div {
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#home-top .swiperHome .swiper-pagination-default {
  position: absolute;
  right: 36px;
  bottom: 60px;
  z-index: 10;
  transform: translate(0, 0);
  height: 100px;
  top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home-top .swiperHome .swiper-pagination-default span.swiper-pagination-bullet {
  display: block;
  width: 4px;
  height: 4px;
  background: #fff;
  opacity: 1;
}
#home-top .swiperHome .swiper-pagination-default span.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 8px;
  height: 8px;
}
#home-top .swiperHome .swiper-pagination-custom {
  position: absolute;
  right: 0;
  bottom: 20px;
  color: #fff;
  z-index: 100;
  font-size: 30px;
  left: calc(100vw - 80px);
}
@media screen and (min-width: 769px) {
  #home-top .swiperHome .swiper-pagination-custom {
    font-size: 40px;
  }
}

.home-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .home-cta {
    right: 8vw;
    bottom: 32px;
  }
}
.home-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(150, 145, 137, 0.5);
  color: #2b2723;
  font-size: 0.11rem;
  letter-spacing: 0.2em;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: background 0.3s;
}
.home-cta__btn:hover {
  background: rgba(150, 145, 137, 0.74);
}
@media screen and (min-width: 769px) {
  .home-cta__btn {
    padding: 10px 26px;
    font-size: 0.13rem;
  }
}
@media screen and (min-width: 769px) {
  .home-cta__btn--event {
    display: none;
  }
}

#home-message {
  margin: 80px 20px;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #home-message {
    margin: 0 auto calc(var(--sp1) * 1) auto;
    padding: 0 calc(var(--sp1) * 1);
    text-align: center;
  }
}
#home-message h2 {
  font-size: 0.18rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 769px) {
  #home-message h2 {
    font-size: 0.24rem;
    margin: 0 0 0 80px;
  }
  #home-message h2 br {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #home-message > div {
    writing-mode: vertical-rl;
    text-align: left;
    margin: 0 auto;
  }
}
#home-message > div p {
  font-size: 0.11rem;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 769px) {
  #home-message > div p {
    font-size: 0.16rem;
    line-height: 2.1;
  }
}
#home-message > div p.newline {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #home-message > div p.newline {
    margin-left: 30px;
    margin-bottom: 0;
  }
}
#home-message > div p.newline2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #home-message > div p.newline2 {
    margin-left: 80px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #home-message > div p.en span {
    rotate: -90deg;
    display: inline-block;
    transform: translate(-2px, 7px);
  }
}
#home-message > div div {
  margin-top: 24px;
  text-align: right;
}
@media screen and (min-width: 769px) {
  #home-message > div div {
    text-align: left;
    margin-top: 0;
  }
}
#home-message > div div h3 {
  font-size: 0.16rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #home-message > div div h3 {
    font-size: 0.21rem;
    margin-bottom: 0;
    margin-right: 60px;
  }
}
#home-message > div div a {
  background-color: #76716D;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 70px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #home-message > div div a {
    font-size: 0.16rem;
    width: 380px;
    height: 60px;
  }
}
#home-message > div div a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #home-message > div div a img {
    width: 20px;
    margin-left: 10px;
  }
}
#home-message > div div a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}
@media screen and (min-width: 769px) {
  #home-message > div div a {
    width: 60px;
    height: 218px;
    margin-top: 190px;
    margin-right: 16px;
    margin-bottom: 0;
    letter-spacing: 3px;
  }
  #home-message > div div a img {
    margin-left: 0;
    margin-top: 8px;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  #home-message > div div a img {
    transform: rotate(90deg);
  }
}

#home-service {
  position: relative;
  width: 100%;
  padding: 56px 0 64px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
@media screen and (min-width: 769px) {
  #home-service {
    width: auto;
    margin: calc(var(--sp1) * 1);
    padding: calc(var(--sp1) * 1) 0;
    background-attachment: fixed;
  }
}
#home-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
#home-service .service-heading,
#home-service .service-cols {
  position: relative;
  z-index: 1;
}
#home-service .service-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 200;
  color: #fff;
  font-size: 0.14rem;
  letter-spacing: 0.25em;
  margin-bottom: 40px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
@media screen and (min-width: 769px) {
  #home-service .service-heading {
    font-size: 0.22rem;
    margin-bottom: calc(var(--sp1) * 1.2);
  }
}
#home-service .service-heading .en {
  justify-self: end;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#home-service .service-heading .sep {
  justify-self: center;
  margin: 0 0.35em 0 0.8em;
  color: #fff;
}
#home-service .service-heading .jp {
  justify-self: start;
  color: #fff;
}
#home-service .service-cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--sp1) * 3);
}
@media screen and (min-width: 769px) {
  #home-service .service-cols {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 2.5vw;
    padding: 0 calc(var(--sp1) * 0.6);
  }
}
#home-service .service-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.34);
  min-height: 120px;
  padding: 40px 20px;
  transition: background 0.4s ease, border-color 0.4s ease;
}
@media screen and (min-width: 769px) {
  #home-service .service-col {
    flex: 0 0 22%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1/1;
    padding: 20px;
  }
}
#home-service .service-col:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: #fff;
}
#home-service .service-col .label {
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  #home-service .service-col .label {
    font-size: clamp(10px, 0.92vw, 16px);
    letter-spacing: 0.08em;
  }
}

#home-cases,
#moclock-cases {
  width: 100%;
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  #home-cases,
  #moclock-cases {
    padding: calc(var(--sp1) * 1) 0;
  }
}
#home-cases .cases-head,
#moclock-cases .cases-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #home-cases .cases-head,
  #moclock-cases .cases-head {
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
#home-cases .cases-head h2,
#moclock-cases .cases-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #home-cases .cases-head h2,
  #moclock-cases .cases-head h2 {
    font-size: 0.22rem;
  }
}
#home-cases .cases-head h2 .en,
#moclock-cases .cases-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#home-cases .cases-head h2 .sep,
#moclock-cases .cases-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#home-cases .cases-head p,
#moclock-cases .cases-head p {
  font-size: 0.13rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #76716D;
}
@media screen and (min-width: 769px) {
  #home-cases .cases-head p,
  #moclock-cases .cases-head p {
    font-size: 0.15rem;
  }
}
#home-cases .case-row,
#moclock-cases .case-row {
  display: block;
  text-decoration: none;
  color: #595959;
  margin-bottom: 48px;
}
#home-cases .case-row:last-of-type,
#moclock-cases .case-row:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #home-cases .case-row,
  #moclock-cases .case-row {
    margin-bottom: calc(var(--sp1) * 1);
  }
}
#home-cases .case-marquee,
#moclock-cases .case-marquee {
  overflow: hidden;
  height: 28vh;
  min-height: 220px;
  cursor: grab;
}
#home-cases .case-marquee.is-dragging,
#moclock-cases .case-marquee.is-dragging {
  cursor: grabbing;
}
@media screen and (min-width: 769px) {
  #home-cases .case-marquee,
  #moclock-cases .case-marquee {
    height: 56vh;
    max-height: 620px;
  }
}
#home-cases .case-track,
#moclock-cases .case-track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  animation-name: caseMarquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#home-cases .case-slide,
#moclock-cases .case-slide {
  flex: 0 0 auto;
  height: 100%;
  margin-right: 1px;
  overflow: hidden;
}
#home-cases .case-slide img,
#moclock-cases .case-slide img {
  display: block;
  height: 100%;
  width: auto;
  transform-origin: center;
  transition: transform 0.6s ease;
  -webkit-user-drag: none;
  user-select: none;
}
#home-cases .case-slide:hover img,
#moclock-cases .case-slide:hover img {
  transform: scale(1.05);
}
#home-cases .case-bar,
#moclock-cases .case-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0px calc(var(--sp1) * 1) 0 10px;
}
@media screen and (min-width: 769px) {
  #home-cases .case-bar,
  #moclock-cases .case-bar {
    padding: 0px calc(var(--sp1) * 1);
  }
}
#home-cases .case-bar__meta,
#moclock-cases .case-bar__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1.35;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #home-cases .case-bar__meta,
  #moclock-cases .case-bar__meta {
    line-height: 1.6;
    gap: 2px 8px;
  }
}
#home-cases .case-bar__meta .t, #home-cases .case-bar__meta .p,
#moclock-cases .case-bar__meta .t,
#moclock-cases .case-bar__meta .p {
  font-size: 0.08rem;
  letter-spacing: 0.06em;
  color: #8a857d;
  line-height: 1.35;
}
@media screen and (min-width: 769px) {
  #home-cases .case-bar__meta .t, #home-cases .case-bar__meta .p,
  #moclock-cases .case-bar__meta .t,
  #moclock-cases .case-bar__meta .p {
    font-size: 0.12rem;
    line-height: inherit;
  }
}
#home-cases .case-bar__meta .sep,
#moclock-cases .case-bar__meta .sep {
  color: #c8c4bd;
}
#home-cases .case-bar__meta .name,
#moclock-cases .case-bar__meta .name {
  font-size: 0.08rem;
  letter-spacing: 0.1em;
  color: #595959;
  margin-left: 0;
  line-height: 1.35;
}
@media screen and (min-width: 769px) {
  #home-cases .case-bar__meta .name,
  #moclock-cases .case-bar__meta .name {
    font-size: 0.12rem;
    line-height: inherit;
    margin-left: 8px;
  }
}
#home-cases .case-bar__more,
#moclock-cases .case-bar__more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.08rem;
  letter-spacing: 0.1em;
  color: #595959;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  #home-cases .case-bar__more,
  #moclock-cases .case-bar__more {
    margin-top: 6px;
    font-size: 0.12rem;
  }
}
#home-cases .case-bar__more:hover,
#moclock-cases .case-bar__more:hover {
  opacity: 0.55;
}
#home-cases .cases-more,
#moclock-cases .cases-more {
  text-align: center;
  margin-top: 48px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #home-cases .cases-more,
  #moclock-cases .cases-more {
    margin-top: 72px;
  }
}
#home-cases .cases-more a,
#moclock-cases .cases-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.15rem;
  letter-spacing: 0.1em;
  color: #595959;
  text-decoration: none;
  border: 1px solid #595959;
  padding: 14px 40px;
  transition: 0.4s;
}
#home-cases .cases-more a img,
#moclock-cases .cases-more a img {
  width: 14px;
  transition: transform 0.4s, filter 0.4s;
}
#home-cases .cases-more a:hover,
#moclock-cases .cases-more a:hover {
  background-color: #595959;
  color: #fff;
}
#home-cases .cases-more a:hover img,
#moclock-cases .cases-more a:hover img {
  filter: invert(1) brightness(2);
  transform: translateX(4px);
}

#moclock-cases .cases-head {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #moclock-cases .cases-head {
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}

@keyframes caseMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#home-voice,
#moclock-voice,
#reno-voice {
  width: 100%;
  padding: 50px 20px;
}
@media screen and (min-width: 769px) {
  #home-voice,
  #moclock-voice,
  #reno-voice {
    padding: calc(var(--sp1) * 1);
  }
}
#home-voice .voice-head,
#moclock-voice .voice-head,
#reno-voice .voice-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-head,
  #moclock-voice .voice-head,
  #reno-voice .voice-head {
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
#home-voice .voice-head h2,
#moclock-voice .voice-head h2,
#reno-voice .voice-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-head h2,
  #moclock-voice .voice-head h2,
  #reno-voice .voice-head h2 {
    font-size: 0.22rem;
  }
}
#home-voice .voice-head h2 .en,
#moclock-voice .voice-head h2 .en,
#reno-voice .voice-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#home-voice .voice-head h2 .sep,
#moclock-voice .voice-head h2 .sep,
#reno-voice .voice-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#home-voice .voice-cols,
#moclock-voice .voice-cols,
#reno-voice .voice-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-cols,
  #moclock-voice .voice-cols,
  #reno-voice .voice-cols {
    display: flex;
    justify-content: center;
    gap: 2.5vw;
  }
}
#home-voice .voice-col,
#moclock-voice .voice-col,
#reno-voice .voice-col {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-col,
  #moclock-voice .voice-col,
  #reno-voice .voice-col {
    display: block;
    flex: 0 0 22%;
    min-width: 0;
  }
}
#home-voice .voice-col__img,
#moclock-voice .voice-col__img,
#reno-voice .voice-col__img {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
  width: 44%;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-col__img,
  #moclock-voice .voice-col__img,
  #reno-voice .voice-col__img {
    width: 100%;
  }
}
#home-voice .voice-col__img img,
#moclock-voice .voice-col__img img,
#reno-voice .voice-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#home-voice .voice-col:hover .voice-col__img img,
#moclock-voice .voice-col:hover .voice-col__img img,
#reno-voice .voice-col:hover .voice-col__img img {
  transform: scale(1.05);
}
#home-voice .voice-col__meta-container,
#moclock-voice .voice-col__meta-container,
#reno-voice .voice-col__meta-container {
  width: 56%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-col__meta-container,
  #moclock-voice .voice-col__meta-container,
  #reno-voice .voice-col__meta-container {
    width: 100%;
    padding-left: 0;
    align-items: center;
  }
}
#home-voice .voice-col__meta-container .voice-col__more,
#moclock-voice .voice-col__meta-container .voice-col__more,
#reno-voice .voice-col__meta-container .voice-col__more {
  font-size: 0.08rem;
  letter-spacing: 0.1em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-col__meta-container .voice-col__more,
  #moclock-voice .voice-col__meta-container .voice-col__more,
  #reno-voice .voice-col__meta-container .voice-col__more {
    margin-top: 6px;
    font-size: clamp(9px, 0.8vw, 13px);
  }
}
#home-voice .voice-col__meta,
#moclock-voice .voice-col__meta,
#reno-voice .voice-col__meta {
  margin-top: 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  width: 100%;
  text-align: left;
  font-size: 0.1rem;
  letter-spacing: 0.08em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-col__meta,
  #moclock-voice .voice-col__meta,
  #reno-voice .voice-col__meta {
    text-align: center;
    font-size: clamp(10px, 0.92vw, 16px);
  }
}
#home-voice .voice-col__meta .sep,
#moclock-voice .voice-col__meta .sep,
#reno-voice .voice-col__meta .sep {
  margin: 0 0.4em;
  color: #c8c4bd;
}
#home-voice .voice-more,
#moclock-voice .voice-more,
#reno-voice .voice-more {
  text-align: right;
  margin-top: 36px;
}
@media screen and (min-width: 769px) {
  #home-voice .voice-more,
  #moclock-voice .voice-more,
  #reno-voice .voice-more {
    margin-top: 48px;
  }
}
#home-voice .voice-more a,
#moclock-voice .voice-more a,
#reno-voice .voice-more a {
  display: inline-flex;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #595959;
  text-decoration: none;
  transition: opacity 0.3s;
}
#home-voice .voice-more a:hover,
#moclock-voice .voice-more a:hover,
#reno-voice .voice-more a:hover {
  opacity: 0.55;
}

#home-info,
#moclock-info,
#reno-info {
  width: 100%;
  padding: 50px calc(var(--sp1) * 2);
}
@media screen and (min-width: 769px) {
  #home-info,
  #moclock-info,
  #reno-info {
    padding: calc(var(--sp1) * 1) 18.46vw calc(var(--sp1) * 1);
  }
}
#home-info .info-head,
#moclock-info .info-head,
#reno-info .info-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #home-info .info-head,
  #moclock-info .info-head,
  #reno-info .info-head {
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
#home-info .info-head h2,
#moclock-info .info-head h2,
#reno-info .info-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #home-info .info-head h2,
  #moclock-info .info-head h2,
  #reno-info .info-head h2 {
    font-size: 0.22rem;
  }
}
#home-info .info-head h2 .en,
#moclock-info .info-head h2 .en,
#reno-info .info-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#home-info .info-head h2 .sep,
#moclock-info .info-head h2 .sep,
#reno-info .info-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#home-info .info-list,
#moclock-info .info-list,
#reno-info .info-list {
  border-top: 1px solid #e3ded5;
}
#home-info .info-row,
#moclock-info .info-row,
#reno-info .info-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #e3ded5;
  text-decoration: none;
  color: #595959;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  #home-info .info-row,
  #moclock-info .info-row,
  #reno-info .info-row {
    padding: 1em calc(var(--sp1) * 0.5);
    gap: 20px;
  }
}
#home-info .info-row:hover,
#moclock-info .info-row:hover,
#reno-info .info-row:hover {
  opacity: 0.55;
}
#home-info .info-row__cat,
#moclock-info .info-row__cat,
#reno-info .info-row__cat {
  flex: 0 0 auto;
  min-width: 40px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.08rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgb(232.9253112033, 184.0456431535, 87.0746887967);
  border-bottom: 1px solid rgb(242.4058091286, 214.5186721992, 159.1941908714);
  padding-bottom: 2px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  #home-info .info-row__cat,
  #moclock-info .info-row__cat,
  #reno-info .info-row__cat {
    min-width: 58px;
    font-size: 0.11rem;
  }
}
#home-info .info-row__title,
#moclock-info .info-row__title,
#reno-info .info-row__title {
  flex: 1 1 auto;
  font-size: 0.1rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #home-info .info-row__title,
  #moclock-info .info-row__title,
  #reno-info .info-row__title {
    font-size: 0.15rem;
  }
}
#home-info .info-row__title::before,
#moclock-info .info-row__title::before,
#reno-info .info-row__title::before {
  content: "・";
  margin-right: 0.1em;
}
#home-info .info-row__date,
#moclock-info .info-row__date,
#reno-info .info-row__date {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.12em;
  color: #8a857d;
}
@media screen and (min-width: 769px) {
  #home-info .info-row__date,
  #moclock-info .info-row__date,
  #reno-info .info-row__date {
    font-size: 0.13rem;
  }
}
#home-info .info-more,
#moclock-info .info-more,
#reno-info .info-more {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #home-info .info-more,
  #moclock-info .info-more,
  #reno-info .info-more {
    margin-top: 28px;
  }
}
#home-info .info-more a,
#moclock-info .info-more a,
#reno-info .info-more a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  letter-spacing: 0.1em;
  color: #595959;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  #home-info .info-more a,
  #moclock-info .info-more a,
  #reno-info .info-more a {
    font-size: 0.13rem;
  }
}
#home-info .info-more a:hover,
#moclock-info .info-more a:hover,
#reno-info .info-more a:hover {
  opacity: 0.55;
}

#home-event {
  width: 100%;
  background-color: #76716D;
  padding: 50px 0;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-event {
    padding: 40px 0;
  }
}
#home-event div.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #home-event div.title {
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto 30px auto;
  }
}
#home-event div.title h2 {
  font-size: 0.18rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #home-event div.title h2 {
    font-size: 0.24rem;
  }
}
#home-event div.title a {
  display: flex;
  color: #fff;
}
#home-event div.title a img {
  transition: 0.3s;
  filter: brightness(100);
}
#home-event div.title a:hover img {
  transform: translate(5px, 0);
}
#home-event div.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 20px;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #home-event div.contents {
    padding: 0 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1280px;
    gap: 5.7142857%;
    margin: 0 auto;
  }
}
#home-event div.contents a {
  display: block;
  transition: 0.3s;
  color: #fff;
}
#home-event div.contents a:hover {
  opacity: 0.5;
}
#home-event div.contents a.end dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
#home-event div.contents a.end dt:after {
  content: "このイベントは終了しました";
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  letter-spacing: 0;
  top: 0;
  left: 0;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  #home-event div.contents a.end dt:after {
    font-size: 13px;
  }
}
#home-event div.contents a dl dt {
  margin-bottom: 10px;
  position: relative;
}
#home-event div.contents a dl dt img {
  width: 100%;
  height: auto;
}
#home-event div.contents a dl dd h3 {
  font-size: 0.12rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #home-event div.contents a dl dd h3 {
    font-size: 0.14rem;
  }
}
#home-event div.contents a dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.12rem;
  font-weight: bold;
}
#home-event div.contents a dl dd a img {
  transition: 0.3s;
}
#home-event div.contents a dl dd a:hover img {
  transform: translate(5px, 0);
}

#home-works {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  #home-works {
    padding: 40px 0;
  }
}
#home-works div.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #home-works div.title {
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto 30px auto;
  }
}
#home-works div.title h2 {
  font-size: 0.18rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #home-works div.title h2 {
    font-size: 0.24rem;
  }
}
#home-works div.title a {
  display: flex;
}
#home-works div.title a img {
  transition: 0.3s;
}
#home-works div.title a:hover img {
  transform: translate(5px, 0);
}
#home-works div.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 20px;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #home-works div.contents {
    padding: 0 40px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 5.7142857%;
    max-width: 1280px;
    margin: 0 auto;
  }
}
#home-works div.contents a {
  display: block;
  transition: 0.3s;
}
#home-works div.contents a:hover {
  opacity: 0.5;
}
#home-works div.contents a dl dt {
  margin-bottom: 10px;
  position: relative;
}
#home-works div.contents a dl dt img {
  width: 100%;
  height: auto;
}
#home-works div.contents a dl dt > span {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #404040;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 24px;
  font-size: 0.12rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#home-works div.contents a dl dt > span[data-type=リノベーション], #home-works div.contents a dl dt > span[data-type=リフォーム] {
  background-color: #17274d;
}
#home-works div.contents a dl dt > span[data-type=新築] {
  background-color: #921111;
}
#home-works div.contents a dl dd h3 {
  font-size: 0.12rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #home-works div.contents a dl dd h3 {
    font-size: 0.16rem;
  }
}

#home-news {
  padding: 50px 20px;
  background-color: #76716D;
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-news {
    padding: 40px 40px;
    display: grid;
    display: flex;
    justify-content: center;
    gap: 3%;
  }
}
#home-news > div {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #home-news > div {
    width: calc(600px - 1.5%);
  }
}
#home-news > div h2 {
  font-size: 0.18rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  #home-news > div h2 {
    font-size: 0.24rem;
    margin-bottom: 50px;
  }
}
#home-news > div div a {
  display: block;
  font-size: 0.14rem;
  font-weight: 700;
  border-bottom: 1px solid #595959;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-news > div div a {
    font-size: 0.16rem;
  }
}
#home-news > div div a span {
  display: block;
  font-size: 0.12rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#home-news > div.news {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #home-news > div.news {
    padding-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  #home-news > div.m-blog {
    padding-left: 15px;
  }
}
#home-news > div.m-blog div > a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: none;
  color: #fff;
}
#home-news > div.m-blog div > a div:first-child {
  width: 130px;
}
@media screen and (min-width: 769px) {
  #home-news > div.m-blog div > a div:first-child {
    width: 180px;
  }
}
#home-news > div.m-blog div > a div:first-child img {
  width: 130px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #home-news > div.m-blog div > a div:first-child img {
    width: 180px;
  }
}
#home-news > div.m-blog div > a div:last-child {
  width: calc(100% - 140px);
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #home-news > div.m-blog div > a div:last-child {
    width: calc(100% - 190px);
  }
}
#home-news > div > a {
  background-color: #76716D;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 70px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #home-news > div > a {
    font-size: 0.16rem;
    width: 380px;
    height: 60px;
  }
}
#home-news > div > a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #home-news > div > a img {
    width: 20px;
    margin-left: 10px;
  }
}
#home-news > div > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}
#home-news > div > a {
  background-color: #888;
  margin-top: 40px;
}

#sns-wrap {
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  #sns-wrap {
    display: flex;
    justify-content: center;
    max-width: 1280px;
    padding: 40px;
    gap: 40px;
    margin: 0 auto;
  }
}
#sns-wrap #instagram-list {
  margin: 0 0 40px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list {
    margin: 0;
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap #instagram-list .insta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header {
    width: 100%;
  }
}
#sns-wrap #instagram-list .insta-header h2 {
  width: 200px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h2 {
    width: 200px;
  }
}
#sns-wrap #instagram-list .insta-header h2 img {
  width: 100%;
  height: auto;
}
#sns-wrap #instagram-list .insta-header h3 a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h3 a {
    font-size: 12px;
    gap: 10px;
  }
}
#sns-wrap #instagram-list .insta-header h3 a img {
  width: 64px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h3 a img {
    width: 64px;
  }
}
#sns-wrap #instagram-list .insta-article {
  margin: 0 auto;
}
#sns-wrap #youtube-list {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list {
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap #youtube-list h2 {
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list h2 {
    margin: 0 auto 47px;
  }
}
#sns-wrap #youtube-list h2 img {
  width: 200px;
  height: auto;
}
#sns-wrap #youtube-list .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list .contents {
    width: 100%;
  }
}
#sns-wrap #youtube-list .contents a {
  position: relative;
  display: block;
}
#sns-wrap #youtube-list .contents a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/play-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: 0.3s;
  opacity: 0;
}
#sns-wrap #youtube-list .contents a:hover:before {
  content: "";
  opacity: 0.6;
}
#sns-wrap #youtube-list .contents a img {
  width: 100%;
}
#sns-wrap #youtube-list > a {
  border: 2px solid #404040;
  border-radius: 100px;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  margin: 0 auto 70px auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list > a {
    font-size: 0.16rem;
    width: 100%;
    height: 60px;
  }
}
#sns-wrap #youtube-list > a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list > a img {
    width: 20px;
    margin-left: 10px;
  }
}
#sns-wrap #youtube-list > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}
#sns-wrap .showroom-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #sns-wrap .showroom-link {
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap .showroom-link a {
  display: block;
  background-image: url(../images/home/showroom-link.jpg);
  background-size: auto 100%;
  background-position: center;
  width: 100%;
  padding-top: 69%;
  position: relative;
  transition: 0.3s;
}
#sns-wrap .showroom-link a > div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
#sns-wrap .showroom-link a > div span {
  color: #fff;
}
#sns-wrap .showroom-link a > div span.en {
  letter-spacing: 0.1em;
  font-size: 24px;
}
#sns-wrap .showroom-link a > div span.en.large {
  font-size: 32px;
}
#sns-wrap .showroom-link a > div span.jp {
  font-size: 16px;
}
#sns-wrap .showroom-link a > div span.link {
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 42px;
  border-radius: 100px;
  gap: 10px;
  margin-top: 20px;
}
#sns-wrap .showroom-link a > div span.link img {
  transition: 0.3s;
}
#sns-wrap .showroom-link a:hover {
  background-size: auto 110%;
}
#sns-wrap .showroom-link a:hover > div span.link img {
  transform: translate(5px, 0);
}
#sns-wrap .showroom-link a.muku {
  background-image: url(../images/home/muku-link.jpg);
}

#loader {
  display: none !important;
}

/* PC のみ：画面右に現在セクション名を縦表示（スクロールで切替） */
.moclock-side-label {
  display: none;
}
@media screen and (min-width: 769px) {
  .moclock-side-label {
    display: block;
    position: fixed;
    top: 50%;
    right: calc(var(--sp1) * 1);
    transform: translateY(-50%) rotate(180deg);
    z-index: 5;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 0.15rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: #b5b1a8;
    white-space: nowrap;
    text-transform: none;
    transition: opacity 0.5s ease;
  }
  .moclock-side-label.is-hidden {
    opacity: 0;
  }
}

.moclock #loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex !important;
  background-color: #fff;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}
.moclock #loader #loading-wrapper {
  width: 280px;
  height: 200px;
}
@media screen and (min-width: 769px) {
  .moclock #loader #loading-wrapper {
    width: 340px;
  }
}
.moclock #loader.animation {
  animation: fadeOut 2s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
#videoModal video {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

#moclock-top {
  width: 100%;
}
#moclock-top .moclock-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-top: calc(var(--sp1) * 2);
  margin-bottom: calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  #moclock-top .moclock-head {
    padding-top: calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
#moclock-top .moclock-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #moclock-top .moclock-head h2 {
    font-size: 0.22rem;
  }
}
#moclock-top .moclock-head h2 .en {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#moclock-top .moclock-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#moclock-top .moclock-head h2 .jp {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #moclock-top figure {
    padding: 0 calc(var(--sp1) * 2);
  }
}
#moclock-top figure img {
  width: 100%;
  height: auto;
}

#moclock-message {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: relative;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: calc(var(--sp1) * 1);
  }
}
#moclock-message .moclock-message1 figure {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: absolute;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 figure {
    position: relative;
    width: 340px;
  }
}
#moclock-message .moclock-message1 figure img {
  width: 80%;
  height: auto;
  opacity: 0.3;
  transform: translate(40vw, -16vw);
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 figure img {
    transform: none;
    opacity: 0.5;
    width: 340px;
  }
}
#moclock-message .moclock-message1 > div {
  padding: calc(var(--sp1) * 1);
  position: relative;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 > div {
    padding: 0 calc(var(--sp1) * 1) 0 0;
  }
}
#moclock-message .moclock-message1 > div h2 {
  font-size: 0.12rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 > div h2 {
    font-size: 0.14rem;
    margin-bottom: 2em;
  }
}
#moclock-message .moclock-message1 > div p {
  font-size: 0.1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-message1 > div p {
    font-size: 0.12rem;
    margin-bottom: 1.5em;
  }
}
#moclock-message .moclock-message1 > div p strong {
  font-weight: bold;
}
#moclock-message .moclock-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--sp1) * 6) 0;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    padding: calc(var(--sp1) * 3) 0;
  }
}
#moclock-message .moclock-brand figure {
  width: 160px;
  margin-bottom: calc(var(--sp1) * 2);
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand figure {
    width: 400px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) and (min-width: 1080px) {
  #moclock-message .moclock-brand figure {
    width: 300px;
  }
}
#moclock-message .moclock-brand figure img {
  width: 100%;
  height: auto;
}
#moclock-message .moclock-brand > div {
  text-align: center;
}
#moclock-message .moclock-brand > div h2 {
  letter-spacing: 0.1em;
  margin-bottom: calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand > div h2 {
    font-size: 0.2rem;
    margin-bottom: 1em;
  }
}
#moclock-message .moclock-brand > div h2 strong {
  font-weight: bold;
}
#moclock-message .moclock-brand > div h2 span {
  font-size: 0.1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand > div h2 span {
    font-size: 0.14rem;
  }
}
#moclock-message .moclock-brand > div > div p {
  font-size: 0.1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand > div > div p {
    font-size: 0.14rem;
    text-align: left;
    margin-left: calc(var(--sp1) * 1);
  }
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand > div > div {
    flex-direction: row;
    align-items: end;
    gap: 30px;
  }
}
#moclock-message .moclock-brand > div > div a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.15em;
  color: #595959;
  border: 1px solid #c8c4bd;
  padding: 12px 24px;
  transition: 0.4s;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand > div > div a {
    padding: 8px 32px;
  }
}
#moclock-message .moclock-brand > div > div a .arw {
  font-size: 0.16rem;
  line-height: 1;
  transition: transform 0.4s;
  margin-top: -8px;
}
#moclock-message .moclock-brand > div > div a:hover {
  background-color: #595959;
  color: #fff;
  border-color: #595959;
}
#moclock-message .moclock-brand > div > div a:hover .arw {
  transform: translateX(4px);
}
#moclock-message .moclock-brand > div > div a.moclock-more-toggle[aria-expanded=true] .arw {
  transform: rotate(90deg);
}
#moclock-message .moclock-brand > div > div a.moclock-more-toggle[aria-expanded=true]:hover .arw {
  transform: rotate(90deg) translateX(4px);
}
#moclock-message .moclock-brand-more-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s ease, margin-top 0.6s ease;
  margin-top: 0;
}
#moclock-message .moclock-brand-more-wrap.is-open {
  grid-template-rows: 1fr;
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand-more-wrap.is-open {
    margin-top: 100px;
  }
}
#moclock-message .moclock-brand-more {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand-more {
    flex-direction: row-reverse;
    gap: 10vw;
  }
}
#moclock-message .moclock-brand-more > div p {
  margin-bottom: 1.7em;
}
#moclock-message .moclock-brand-more figure {
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand-more figure {
    height: 400px;
    width: auto;
  }
}
#moclock-message .moclock-brand-more figure img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #moclock-message .moclock-brand-more figure img {
    height: 100%;
  }
}

@media screen and (min-width: 769px) {
  #moclock-showroom {
    margin-bottom: calc(var(--sp1) * 1);
  }
}
#moclock-showroom .moclock-showroom-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-top: calc(var(--sp1) * 2);
  margin-bottom: calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  #moclock-showroom .moclock-showroom-head {
    padding-top: calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
#moclock-showroom .moclock-showroom-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #moclock-showroom .moclock-showroom-head h2 {
    font-size: 0.22rem;
  }
}
#moclock-showroom .moclock-showroom-head h2 .en {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#moclock-showroom .moclock-showroom-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#moclock-showroom .moclock-showroom-head h2 .jp {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#moclock-showroom ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--sp1) * 1);
  padding: 0 calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 calc(var(--sp1) * 3);
    gap: calc(var(--sp1) * 0.7);
  }
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li {
    position: relative;
  }
}
#moclock-showroom ul li .showroom-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li .showroom-img {
    margin-bottom: calc(var(--sp1) * 0.4);
  }
}
#moclock-showroom ul li .showroom-img img {
  width: 100%;
  height: auto;
}
#moclock-showroom ul li h3 {
  font-size: 0.08rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li h3 {
    position: absolute;
    left: 50%;
    margin-top: -10px;
  }
}
#moclock-showroom ul li h3 .main {
  font-size: 0.08rem;
  letter-spacing: 0;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li h3 .main {
    font-size: 0.13rem;
  }
}
#moclock-showroom ul li h3 .sub {
  font-size: 0.06rem;
  font-weight: normal;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li h3 .sub {
    font-size: 0.1rem;
  }
}
#moclock-showroom ul li .showroom-map {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#moclock-showroom ul li .showroom-map img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li:nth-child(1) h3, #moclock-showroom ul li:nth-child(2) h3, #moclock-showroom ul li:nth-child(3) h3 {
    margin-top: calc(var(--sp1) * 0.2);
  }
}
#moclock-showroom ul li:nth-child(1) .showroom-map, #moclock-showroom ul li:nth-child(2) .showroom-map, #moclock-showroom ul li:nth-child(3) .showroom-map {
  display: flex;
  align-items: end;
  gap: 10px;
}
#moclock-showroom ul li:nth-child(1) .showroom-map img, #moclock-showroom ul li:nth-child(2) .showroom-map img, #moclock-showroom ul li:nth-child(3) .showroom-map img {
  width: 50%;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li:nth-child(1) .showroom-map img, #moclock-showroom ul li:nth-child(2) .showroom-map img, #moclock-showroom ul li:nth-child(3) .showroom-map img {
    width: 39%;
  }
}
#moclock-showroom ul li:nth-child(1) .showroom-map a, #moclock-showroom ul li:nth-child(2) .showroom-map a, #moclock-showroom ul li:nth-child(3) .showroom-map a {
  font-size: 0.06rem;
  letter-spacing: 0.1em;
  color: #595959;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li:nth-child(1) .showroom-map a, #moclock-showroom ul li:nth-child(2) .showroom-map a, #moclock-showroom ul li:nth-child(3) .showroom-map a {
    position: absolute;
    right: calc(var(--sp1) * 0.3);
    font-size: 0.12rem;
  }
}
@media screen and (min-width: 769px) {
  #moclock-showroom ul li:nth-child(6) h3 {
    margin-left: 20px;
  }
}

.moclock-service-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-top: calc(var(--sp1) * 2);
  margin-bottom: calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  .moclock-service-head {
    padding-top: calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
.moclock-service-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .moclock-service-head h2 {
    font-size: 0.22rem;
  }
}
.moclock-service-head h2 .en {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.moclock-service-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
.moclock-service-head h2 .jp {
  letter-spacing: 0.1em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

#moclock-service {
  position: relative;
  width: 100%;
  padding: calc(var(--sp1) * 3) calc(var(--sp1) * 2.2);
  background-image: url("../images/moclock/moclock-service-bg-sp.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) {
  #moclock-service {
    width: auto;
    margin: 0 calc(var(--sp1) * 1);
    padding: calc(var(--sp1) * 1.5) calc(var(--sp1) * 1);
    background-image: url("../images/moclock/moclock-service-bg-pc.jpg");
    background-attachment: fixed;
  }
}
#moclock-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
#moclock-service .service-heading,
#moclock-service .service-cols {
  position: relative;
  z-index: 1;
}
#moclock-service .service-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--sp1) * 0.7);
}
@media screen and (min-width: 769px) {
  #moclock-service .service-cols {
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--sp1) * 0.5);
  }
}
#moclock-service .service-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.34);
  padding: 0;
  transition: background 0.4s ease, border-color 0.4s ease;
}
#moclock-service .service-col:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: #fff;
}
#moclock-service .service-col .label {
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  #moclock-service .service-col .label {
    font-size: clamp(10px, 0.95vw, 15px);
  }
}

#moclock-event,
#reno-event {
  width: 100%;
  padding: 50px 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #moclock-event,
  #reno-event {
    padding: 90px 0;
  }
}
#moclock-event .event-head,
#reno-event .event-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #moclock-event .event-head,
  #reno-event .event-head {
    margin-bottom: 64px;
  }
}
#moclock-event .event-head h2,
#reno-event .event-head h2 {
  font-weight: 200;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #moclock-event .event-head h2,
  #reno-event .event-head h2 {
    font-size: 0.22rem;
  }
}
#moclock-event .event-head h2 .en,
#reno-event .event-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#moclock-event .event-head h2 .sep,
#reno-event .event-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#moclock-event .event-cards,
#reno-event .event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f2f1ef;
}
@media screen and (min-width: 769px) {
  #moclock-event .event-cards,
  #reno-event .event-cards {
    gap: 28px;
    padding: 64px 48px;
  }
}
#moclock-event .event-card,
#reno-event .event-card {
  display: block;
  width: 100%;
  max-width: 380px;
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.4s, box-shadow 0.4s;
}
@media screen and (min-width: 769px) {
  #moclock-event .event-card,
  #reno-event .event-card {
    width: calc((100% - 56px) / 3);
  }
}
#moclock-event .event-card:hover,
#reno-event .event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#moclock-event .event-card figure,
#reno-event .event-card figure {
  width: 100%;
}
#moclock-event .event-card figure img,
#reno-event .event-card figure img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes caseMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#moclock-works {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  #moclock-works {
    padding: 40px 0;
  }
}
#moclock-works div.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #moclock-works div.title {
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto 30px auto;
  }
}
#moclock-works div.title h2 {
  font-size: 0.18rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #moclock-works div.title h2 {
    font-size: 0.24rem;
  }
}
#moclock-works div.title a {
  display: flex;
}
#moclock-works div.title a img {
  transition: 0.3s;
}
#moclock-works div.title a:hover img {
  transform: translate(5px, 0);
}
#moclock-works div.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 20px;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #moclock-works div.contents {
    padding: 0 40px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 5.7142857%;
    max-width: 1280px;
    margin: 0 auto;
  }
}
#moclock-works div.contents a {
  display: block;
  transition: 0.3s;
}
#moclock-works div.contents a:hover {
  opacity: 0.5;
}
#moclock-works div.contents a dl dt {
  margin-bottom: 10px;
  position: relative;
}
#moclock-works div.contents a dl dt img {
  width: 100%;
  height: auto;
}
#moclock-works div.contents a dl dt > span {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #404040;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 24px;
  font-size: 0.12rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#moclock-works div.contents a dl dt > span[data-type=リノベーション], #moclock-works div.contents a dl dt > span[data-type=リフォーム] {
  background-color: #17274d;
}
#moclock-works div.contents a dl dt > span[data-type=新築] {
  background-color: #921111;
}
#moclock-works div.contents a dl dd h3 {
  font-size: 0.12rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #moclock-works div.contents a dl dd h3 {
    font-size: 0.16rem;
  }
}

#moclock-news {
  padding: 50px 20px;
  background-color: #76716D;
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #moclock-news {
    padding: 40px 40px;
    display: grid;
    display: flex;
    justify-content: center;
    gap: 3%;
  }
}
#moclock-news > div {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #moclock-news > div {
    width: calc(600px - 1.5%);
  }
}
#moclock-news > div h2 {
  font-size: 0.18rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  #moclock-news > div h2 {
    font-size: 0.24rem;
    margin-bottom: 50px;
  }
}
#moclock-news > div div a {
  display: block;
  font-size: 0.14rem;
  font-weight: 700;
  border-bottom: 1px solid #595959;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #moclock-news > div div a {
    font-size: 0.16rem;
  }
}
#moclock-news > div div a span {
  display: block;
  font-size: 0.12rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#moclock-news > div.news {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #moclock-news > div.news {
    padding-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  #moclock-news > div.m-blog {
    padding-left: 15px;
  }
}
#moclock-news > div.m-blog div > a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: none;
  color: #fff;
}
#moclock-news > div.m-blog div > a div:first-child {
  width: 130px;
}
@media screen and (min-width: 769px) {
  #moclock-news > div.m-blog div > a div:first-child {
    width: 180px;
  }
}
#moclock-news > div.m-blog div > a div:first-child img {
  width: 130px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #moclock-news > div.m-blog div > a div:first-child img {
    width: 180px;
  }
}
#moclock-news > div.m-blog div > a div:last-child {
  width: calc(100% - 140px);
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #moclock-news > div.m-blog div > a div:last-child {
    width: calc(100% - 190px);
  }
}
#moclock-news > div > a {
  background-color: #76716D;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 70px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #moclock-news > div > a {
    font-size: 0.16rem;
    width: 380px;
    height: 60px;
  }
}
#moclock-news > div > a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #moclock-news > div > a img {
    width: 20px;
    margin-left: 10px;
  }
}
#moclock-news > div > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}
#moclock-news > div > a {
  background-color: #888;
  margin-top: 40px;
}

#sns-wrap {
  padding: 40px 0;
}
@media screen and (min-width: 769px) {
  #sns-wrap {
    display: flex;
    justify-content: center;
    max-width: 1280px;
    padding: 40px;
    gap: 40px;
    margin: 0 auto;
  }
}
#sns-wrap #instagram-list {
  margin: 0 0 40px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list {
    margin: 0;
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap #instagram-list .insta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header {
    width: 100%;
  }
}
#sns-wrap #instagram-list .insta-header h2 {
  width: 200px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h2 {
    width: 200px;
  }
}
#sns-wrap #instagram-list .insta-header h2 img {
  width: 100%;
  height: auto;
}
#sns-wrap #instagram-list .insta-header h3 a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h3 a {
    font-size: 12px;
    gap: 10px;
  }
}
#sns-wrap #instagram-list .insta-header h3 a img {
  width: 64px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #instagram-list .insta-header h3 a img {
    width: 64px;
  }
}
#sns-wrap #instagram-list .insta-article {
  margin: 0 auto;
}
#sns-wrap #youtube-list {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list {
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap #youtube-list h2 {
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list h2 {
    margin: 0 auto 47px;
  }
}
#sns-wrap #youtube-list h2 img {
  width: 200px;
  height: auto;
}
#sns-wrap #youtube-list .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list .contents {
    width: 100%;
  }
}
#sns-wrap #youtube-list .contents a {
  position: relative;
  display: block;
}
#sns-wrap #youtube-list .contents a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/play-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: 0.3s;
  opacity: 0;
}
#sns-wrap #youtube-list .contents a:hover:before {
  content: "";
  opacity: 0.6;
}
#sns-wrap #youtube-list .contents a img {
  width: 100%;
}
#sns-wrap #youtube-list > a {
  border: 2px solid #404040;
  border-radius: 100px;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  margin: 0 auto 70px auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list > a {
    font-size: 0.16rem;
    width: 100%;
    height: 60px;
  }
}
#sns-wrap #youtube-list > a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #sns-wrap #youtube-list > a img {
    width: 20px;
    margin-left: 10px;
  }
}
#sns-wrap #youtube-list > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}
#sns-wrap .showroom-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #sns-wrap .showroom-link {
    width: calc((100% - 80px) / 3);
  }
}
#sns-wrap .showroom-link a {
  display: block;
  background-image: url(../images/home/showroom-link.jpg);
  background-size: auto 100%;
  background-position: center;
  width: 100%;
  padding-top: 69%;
  position: relative;
  transition: 0.3s;
}
#sns-wrap .showroom-link a > div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
#sns-wrap .showroom-link a > div span {
  color: #fff;
}
#sns-wrap .showroom-link a > div span.en {
  letter-spacing: 0.1em;
  font-size: 24px;
}
#sns-wrap .showroom-link a > div span.en.large {
  font-size: 32px;
}
#sns-wrap .showroom-link a > div span.jp {
  font-size: 16px;
}
#sns-wrap .showroom-link a > div span.link {
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 42px;
  border-radius: 100px;
  gap: 10px;
  margin-top: 20px;
}
#sns-wrap .showroom-link a > div span.link img {
  transition: 0.3s;
}
#sns-wrap .showroom-link a:hover {
  background-size: auto 110%;
}
#sns-wrap .showroom-link a:hover > div span.link img {
  transform: translate(5px, 0);
}
#sns-wrap .showroom-link a.muku {
  background-image: url(../images/home/muku-link.jpg);
}

#companyoverview-image {
  display: block;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  #companyoverview-image {
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 140px;
  }
  #companyoverview-image::before {
    content: "";
    background-image: url("../images/companyoverview-top.jpg");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(30px);
    z-index: -1;
  }
}
#companyoverview-image > img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #companyoverview-image > img {
    max-width: 1200px;
    margin: auto;
    box-shadow: 0px 0px 30px #000;
  }
}

#companyoverview-main {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #companyoverview-main {
    max-width: 980px;
    margin: auto;
    padding: 0 0 150px 0;
  }
}
#companyoverview-main h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #companyoverview-main h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#companyoverview-main > figure img {
  width: 100%;
  height: auto;
}
#companyoverview-main dl {
  border-top: 1px solid #595959;
  padding: 20px 0 15px 0;
}
@media screen and (min-width: 769px) {
  #companyoverview-main dl {
    padding: 30px 0 24px 0;
    display: flex;
  }
}
#companyoverview-main dl dt {
  width: 100%;
  font-size: 0.14rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  #companyoverview-main dl dt {
    width: 280px;
  }
}
#companyoverview-main dl dd {
  width: 100%;
  font-size: 0.14rem;
}
@media screen and (min-width: 769px) {
  #companyoverview-main dl dd {
    width: calc(100% - 280px);
  }
}
#companyoverview-main dl dd a {
  text-decoration: underline;
}
#companyoverview-main dl:last-child {
  border-bottom: 1px solid #595959;
}

#companyoverview-staff {
  background-color: #CDC3B3;
  padding: 70px 20px;
}
@media screen and (min-width: 769px) {
  #companyoverview-staff {
    padding: 150px 0;
  }
}
#companyoverview-staff img {
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  #companyoverview-staff img {
    max-width: 1200px;
    margin: auto;
  }
}

#companyoverview-access {
  width: 100%;
  padding: 70px 20px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access {
    padding: 140px 0;
  }
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div:first-child {
    width: 600px;
    margin-left: auto;
    margin-right: 80px;
  }
  #companyoverview-access > div > div:last-child {
    width: 50%;
  }
}
#companyoverview-access > div > div h2 {
  font-size: 0.32rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div h2 {
    font-size: 0.42rem;
  }
}
#companyoverview-access > div > div dl {
  border-top: 1px solid #595959;
  padding: 20px 0 15px 0;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div dl {
    padding: 30px 0 24px 0;
    display: flex;
  }
}
#companyoverview-access > div > div dl dt {
  width: 100%;
  font-size: 0.14rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div dl dt {
    width: 150px;
  }
}
#companyoverview-access > div > div dl dd {
  width: 100%;
  font-size: 0.14rem;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div dl dd {
    width: calc(100% - 150px);
  }
}
#companyoverview-access > div > div dl.last-dl {
  border-bottom: 1px solid #595959;
  margin-bottom: 40px;
}
#companyoverview-access > div > div aside {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div aside {
    display: flex;
    justify-content: space-between;
  }
}
#companyoverview-access > div > div aside a {
  background-color: #76716D;
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 20px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div aside a {
    margin: 0;
    font-size: 0.16rem;
    width: calc(50% - 20px);
    height: 60px;
  }
}
#companyoverview-access > div > div aside a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div aside a img {
    width: 20px;
    margin-left: 10px;
  }
}
#companyoverview-access > div > div aside a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}
#companyoverview-access > div > div iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 769px) {
  #companyoverview-access > div > div iframe {
    width: 100%;
    height: 617px;
  }
}

/* ===== 会社概要 リニューアル（会社情報 / staff / 有資格者）2026-08 ===== */
.co-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 0;
}
@media screen and (min-width: 769px) {
  .co-section {
    padding: 80px 40px 0;
  }
}

#company {
  padding-top: 30px;
}
@media screen and (min-width: 769px) {
  #company {
    padding-top: 50px;
  }
}

#company-staff {
  scroll-margin-top: 100px;
}

#company-qual {
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #company-qual {
    padding-bottom: 80px;
  }
}

.co-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .co-head {
    margin-bottom: calc(var(--sp1) * 0.5);
  }
}
.co-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .co-head h2 {
    font-size: 0.22rem;
  }
}
.co-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.co-head h2 .sep {
  margin: 0 0.25em;
  color: #595959;
}

.co-list {
  max-width: 860px;
  margin: 0 auto;
}

.co-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 0 0 30px;
}
@media screen and (min-width: 769px) {
  .co-row {
    grid-template-columns: 210px 1fr;
    gap: 0;
    align-items: start;
    padding: 0 0 20px;
  }
}
.co-row dt {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.13rem;
  letter-spacing: 0.32em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .co-row dt {
    font-size: 0.14rem;
  }
}
.co-row dd {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-left: 12px;
}
@media screen and (min-width: 769px) {
  .co-row dd {
    border-left: 1px solid #d8d4cd;
    padding-left: 40px;
  }
}
.co-row__main {
  font-size: 0.13rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .co-row__main {
    font-size: 0.14rem;
  }
}
.co-row__sub {
  margin-top: 14px;
}
.co-row__sub p {
  font-size: 0.11rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #7a756e;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .co-row__sub p {
    font-size: 0.12rem;
  }
}
.co-row__lines p {
  font-size: 0.13rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .co-row__lines p {
    font-size: 0.14rem;
  }
}

.co-map {
  display: inline-block;
  margin-left: 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.2em;
  color: #8a857d;
  border-bottom: 1px solid #b9b4ab;
}
.co-map:hover {
  color: #595959;
}

.co-arrow {
  margin-left: 8px;
  color: #8a857d;
}

/* staff タイトル（PCのみ）：en の右パディングを消し、sep はマージン→左パディング6px */
@media screen and (min-width: 769px) {
  #company-staff .co-head .en {
    padding-right: 0;
  }
  #company-staff .co-head .sep {
    margin: 0;
    padding-left: 6px;
  }
}

/* staff：中央に1本の連続した縦線／ラベル右寄せ・値左寄せで中央に寄せる */
@media screen and (min-width: 769px) {
  .co-list--staff {
    position: relative;
  }
  .co-list--staff::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 50%;
    width: 1px;
    background: #d8d4cd;
  }
}

.co-row--staff dt {
  letter-spacing: 0.04em;
}
.co-row--staff dd {
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .co-row--staff dd {
    border-left: none;
  }
}
@media screen and (min-width: 769px) {
  .co-row--staff {
    grid-template-columns: 1fr 1fr;
  }
  .co-row--staff dt {
    text-align: left;
    padding-right: 40px;
    padding-left: 100px;
  }
  .co-row--staff dd {
    padding-left: 40px;
  }
}
.co-row--staff .co-name {
  display: inline-block;
  font-size: 0.13rem;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0 1.4em 0.2em 0;
}
@media screen and (min-width: 769px) {
  .co-row--staff .co-name {
    font-size: 0.14rem;
  }
}

.co-staff-gap {
  height: 30px;
}
@media screen and (min-width: 769px) {
  .co-staff-gap {
    height: 46px;
  }
}

/* 有資格者（中央） */
.co-qual {
  text-align: center;
  padding-top: 20px;
}
.co-qual__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.16rem;
  letter-spacing: 0.2em;
  color: #595959;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .co-qual__ttl {
    font-size: 0.18rem;
  }
}
.co-qual__note {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.08em;
  color: #8a857d;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .co-qual__note {
    margin-bottom: 56px;
  }
}
.co-qual__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.co-qual__list li {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.13rem;
  letter-spacing: 0.12em;
  color: #333;
  margin-bottom: 22px;
}
@media screen and (min-width: 769px) {
  .co-qual__list li {
    font-size: 0.15rem;
    margin-bottom: 26px;
  }
}

#staff-main {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #staff-main {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px 150px;
  }
}
#staff-main h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #staff-main h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#staff-main h3 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.21rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #staff-main h3 {
    font-size: 0.24rem;
    margin-bottom: 42px;
  }
}
#staff-main .staff-all {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #staff-main .staff-all {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
#staff-main .staff-all img {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #staff-main .staff-all img {
    width: calc(100% - 320px);
  }
}
#staff-main .staff-all figcaption {
  text-align: left;
}
@media screen and (min-width: 769px) {
  #staff-main .staff-all figcaption {
    width: 280px;
  }
}
#staff-main .staff-all figcaption h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #404040;
  margin-top: 24px;
}
#staff-main .staff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #staff-main .staff-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
#staff-main .staff-list li figure {
  overflow: hidden;
}
#staff-main .staff-list li figure img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
#staff-main .staff-list li h4 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-top: 10px;
}
#staff-main .staff-list li h4 span {
  font-size: 14px;
}
#staff-main .staff-list li:hover {
  cursor: pointer;
}
#staff-main .staff-list li:hover figure img {
  transform: scale(1.1);
}

.staff-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200000;
  width: 100vw;
  height: 100vh;
  padding: 80px 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 769px) {
  .staff-modal {
    padding: 0;
  }
}
.staff-modal .modalClose {
  all: unset;
  display: flex;
  position: absolute;
  top: 20px;
  right: 7%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .staff-modal .modalClose {
    right: calc(50% - 448px);
  }
}
.staff-modal .modalClose:before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.staff-modal .modalClose:after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
  margin-left: -48px;
}
.staff-modal > div {
  width: 86%;
  max-width: 780px;
  height: 100%;
  overflow: scroll;
  background-color: #fff;
  position: relative;
}
.staff-modal > div figure img {
  width: 100%;
  height: auto;
}
.staff-modal > div .contents {
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .staff-modal > div .contents {
    padding: 32px;
  }
}
.staff-modal > div .contents .roll {
  font-weight: bold;
}
.staff-modal > div .contents h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
.staff-modal > div .contents h3 .en {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 769px) {
  .staff-modal > div .contents h3 .en {
    display: inline-block;
    margin-left: 20px;
  }
}
.staff-modal > div .contents .pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .staff-modal > div .contents .pc {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .staff-modal > div .contents .pc .roll {
    letter-spacing: 0.05em;
  }
  .staff-modal > div .contents .pc .en {
    margin-left: 0;
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .staff-modal > div .contents .sp {
    display: none;
  }
}
.staff-modal > div .contents > dl {
  display: flex;
  gap: 10px;
  padding: 0.5em;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
  margin-top: -1px;
}
.staff-modal > div .contents > dl dt {
  font-weight: 900;
  width: 70px;
  text-align: right;
}
.staff-modal > div .contents > dl dd {
  width: calc(100% - 80px);
}
.staff-modal > div .contents > div {
  margin-top: 32px;
}
.staff-modal > div .contents > div > dl {
  margin-bottom: 32px;
}
.staff-modal > div .contents > div > dl dt {
  font-weight: 900;
  font-size: 16px;
}
.staff-modal > div .contents > button {
  all: unset;
  border: 2px solid #404040;
  width: 200px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
  cursor: pointer;
}

#showroom-main {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #showroom-main {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px 100px 80px;
  }
}
#showroom-main h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #showroom-main h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#showroom-main h3 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.21rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #showroom-main h3 {
    font-size: 0.24rem;
    margin-bottom: 42px;
  }
}
#showroom-main .showroom-title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #showroom-main .showroom-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
}
#showroom-main .showroom-title img {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #showroom-main .showroom-title img {
    width: calc(100% - 440px);
  }
}
#showroom-main .showroom-title figcaption {
  text-align: left;
}
@media screen and (min-width: 769px) {
  #showroom-main .showroom-title figcaption {
    width: 400px;
  }
}
#showroom-main .showroom-title figcaption h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #404040;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  #showroom-images {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #showroom-images ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
#showroom-images ul li {
  width: 100%;
  padding-top: 66.8%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #E0D8CB;
}
#showroom-images ul li:nth-child(1) {
  background-image: url(../images/showroom/img01.jpg);
}
#showroom-images ul li:nth-child(2) {
  background-image: url(../images/showroom/img02.jpg);
}
#showroom-images ul li:nth-child(3) {
  background-image: url(../images/showroom/img03.jpg);
}
#showroom-images ul li:nth-child(4) {
  background-image: url(../images/showroom/img04.jpg);
}
#showroom-images ul li:nth-child(5) {
  background-image: url(../images/showroom/img05.jpg);
}
#showroom-images ul li:nth-child(6) {
  background-image: url(../images/showroom/img06.jpg);
}
#showroom-images ul li:nth-child(7) {
  background-image: url(../images/showroom/img07.jpg);
}
#showroom-images ul li:nth-child(8) {
  background-image: url(../images/showroom/img08.jpg);
}
#showroom-images ul li:nth-child(9) {
  background-image: url(../images/showroom/img09.jpg);
}

body.sr-cream {
  background: #fff;
  padding-top: 64px;
}
@media screen and (min-width: 769px) {
  body.sr-cream {
    padding-top: 84px;
  }
}
@media screen and (max-width: 768px) {
  body.sr-cream .pankuzu {
    display: none;
  }
}

#showroom {
  width: 100%;
  padding: 24px 0 0;
}
@media screen and (min-width: 769px) {
  #showroom {
    padding: 0 0 0;
  }
}
#showroom .sr-form {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #e3ddd3;
}
@media screen and (min-width: 769px) {
  #showroom .sr-form {
    margin-top: 120px;
    padding-top: 60px;
  }
}
#showroom .sr-hero {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #showroom .sr-hero {
    padding-left: 48px;
    padding-right: 48px;
  }
}
#showroom .sr-hero .sr-hero__img {
  overflow: hidden;
}
#showroom .sr-hero .sr-hero__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  #showroom .sr-hero .sr-hero__img img {
    aspect-ratio: 2688/766;
  }
}
#showroom .sr-intro {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #showroom .sr-intro {
    padding-left: 48px;
    padding-right: 48px;
  }
}
#showroom .sr-intro {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  #showroom .sr-intro {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding-top: 60px;
  }
}
#showroom .sr-intro .sr-intro__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #46423c;
  font-size: 0.24rem;
  letter-spacing: 0.3em;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #showroom .sr-intro .sr-intro__ttl {
    flex: 0 0 32%;
    font-size: 0.29rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  #showroom .sr-intro .sr-intro__text {
    flex: 1 1 auto;
    padding-top: 0.4em;
  }
}
#showroom .sr-intro .sr-intro__text p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #5f5b55;
  font-size: 0.14rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
  margin: 0 0 0.6em;
}
#showroom .sr-intro .sr-intro__text p:last-child {
  margin-bottom: 0;
}
#showroom .sr-intro .sr-intro__text p a {
  color: #46423c;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #showroom .sr-intro .sr-intro__text p {
    font-size: 0.15rem;
  }
}
#showroom .sr-region {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #showroom .sr-region {
    padding-left: 48px;
    padding-right: 48px;
  }
}
#showroom .sr-region {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #showroom .sr-region {
    margin-top: 90px;
  }
}
#showroom .sr-region::before, #showroom .sr-region::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background: #d8d2c7;
}
#showroom .sr-region span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.16rem;
  letter-spacing: 0.2em;
  color: #46423c;
}
@media screen and (min-width: 769px) {
  #showroom .sr-region span {
    font-size: 0.2rem;
  }
}
#showroom .sr-card {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #showroom .sr-card {
    padding-left: 48px;
    padding-right: 48px;
  }
}
#showroom .sr-card {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 769px) {
  #showroom .sr-card {
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 56px;
    margin-top: 48px;
  }
}
#showroom .sr-slider {
  position: relative;
}
@media screen and (min-width: 769px) {
  #showroom .sr-slider {
    flex: 1 1 auto;
    min-width: 0;
  }
}
#showroom .sr-slider .sr-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
#showroom .sr-slider .sr-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#showroom .sr-slider .sr-slider__slide {
  flex: 0 0 100%;
}
#showroom .sr-slider .sr-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
#showroom .sr-slider .sr-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
#showroom .sr-slider .sr-slider__count {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #76716D;
  margin-right: 4px;
}
#showroom .sr-slider .sr-slider__count .sep {
  margin: 0 6px;
  color: #b8b2a8;
}
#showroom .sr-slider .sr-slider__arw {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid #C7C0B4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f5b55;
  font-size: 0.16rem;
  transition: 0.3s;
}
#showroom .sr-slider .sr-slider__arw:hover {
  background: #46423c;
  color: #fff;
  border-color: #46423c;
}
@media screen and (min-width: 769px) {
  #showroom .sr-card__info {
    flex: 0 0 34%;
    display: flex;
    flex-direction: column;
  }
}
#showroom .sr-card__info .sr-card__catch {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 0.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #413d37;
  margin-bottom: 18px;
}
@media screen and (min-width: 769px) {
  #showroom .sr-card__info .sr-card__catch {
    font-size: 0.24rem;
  }
}
#showroom .sr-card__info .sr-card__name {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  letter-spacing: 0.14em;
  color: #8a857d;
  margin-bottom: 22px;
  padding-left: 30px;
  position: relative;
}
#showroom .sr-card__info .sr-card__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 20px;
  height: 1px;
  background: #b8b2a8;
}
#showroom .sr-card__info .sr-card__zip {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #8a857d;
  margin-bottom: 2px;
}
#showroom .sr-card__info .sr-card__address {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #46423c;
  line-height: 1.8;
  margin-bottom: 10px;
}
#showroom .sr-card__info .sr-card__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.08em;
  color: #46423c;
  text-decoration: underline;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}
#showroom .sr-card__info .sr-card__map:hover {
  opacity: 0.6;
}
#showroom .sr-card__info .sr-card__map .ext {
  font-size: 0.9em;
}
#showroom .sr-card__info .sr-card__meta {
  margin-bottom: 28px;
}
#showroom .sr-card__info .sr-card__meta .sr-card__row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ece8e1;
}
#showroom .sr-card__info .sr-card__meta .sr-card__row:first-child {
  border-top: 1px solid #ece8e1;
}
#showroom .sr-card__info .sr-card__meta .sr-card__row dt {
  flex: 0 0 84px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  letter-spacing: 0.14em;
  color: #8a857d;
  padding-top: 2px;
}
#showroom .sr-card__info .sr-card__meta .sr-card__row dd {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #46423c;
  line-height: 1.7;
}
#showroom .sr-card__info .sr-card__meta .sr-tel {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
#showroom .sr-card__info .sr-card__meta .sr-tel + .sr-tel {
  margin-top: 4px;
}
#showroom .sr-card__info .sr-card__meta .sr-tel .l {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.06em;
  color: #8a857d;
}
#showroom .sr-card__info .sr-card__meta .sr-tel a {
  color: #46423c;
}
#showroom .sr-card__info .sr-card__btns {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  #showroom .sr-card__info .sr-card__btns {
    flex-direction: column;
  }
}
#showroom .sr-card__info .sr-btn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.13rem;
  letter-spacing: 0.14em;
  text-align: center;
  transition: 0.4s;
}
#showroom .sr-card__info .sr-btn--ghost {
  border: 1px solid #46423c;
  color: #46423c;
}
#showroom .sr-card__info .sr-btn--ghost:hover {
  background: #46423c;
  color: #fff;
}
#showroom .sr-card__info .sr-btn--fill {
  background: #3f3b35;
  color: #fff;
}
#showroom .sr-card__info .sr-btn--fill:hover {
  background: #5a544b;
}

#muku-main {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #muku-main {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px 100px 80px;
  }
}
#muku-main h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #muku-main h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#muku-main h3 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.21rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #muku-main h3 {
    font-size: 0.24rem;
    margin-bottom: 42px;
  }
}
#muku-main .muku-title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #muku-main .muku-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
}
#muku-main .muku-title img {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #muku-main .muku-title img {
    width: calc(100% - 440px);
  }
}
#muku-main .muku-title figcaption {
  text-align: left;
}
@media screen and (min-width: 769px) {
  #muku-main .muku-title figcaption {
    width: 400px;
  }
}
#muku-main .muku-title figcaption h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #404040;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  #muku-images {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #muku-images ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
#muku-images ul li {
  width: 100%;
  padding-top: 66.8%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #E0D8CB;
}
#muku-images ul li:nth-child(1) {
  background-image: url(../images/mukubar/img01.jpg);
}
#muku-images ul li:nth-child(2) {
  background-image: url(../images/mukubar/img02.jpg);
}
#muku-images ul li:nth-child(3) {
  background-image: url(../images/mukubar/img03.jpg);
}
#muku-images ul li:nth-child(4) {
  background-image: url(../images/mukubar/img04.jpg);
}
#muku-images ul li:nth-child(5) {
  background-image: url(../images/mukubar/img05.jpg);
}
#muku-images ul li:nth-child(6) {
  background-image: url(../images/mukubar/img06.jpg);
}
#muku-images ul li:nth-child(7) {
  background-image: url(../images/mukubar/img07.jpg);
}
#muku-images ul li:nth-child(8) {
  background-image: url(../images/mukubar/img08.jpg);
}
#muku-images ul li:nth-child(9) {
  background-image: url(../images/mukubar/img09.jpg);
}

#single_main {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 96px;
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #single_main {
    max-width: 880px;
    margin: 0 auto 120px auto;
  }
}
#single_main .title {
  font-size: 0.14rem;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  #single_main .title {
    font-size: 0.16rem;
  }
}
#single_main .title span.line {
  width: 120px;
  height: 1px;
  background-color: #595959;
  display: inline-block;
  margin-bottom: 10px;
  margin: 0 10px 10px 10px;
}
@media screen and (min-width: 769px) {
  #single_main .title span.line {
    width: 120px;
  }
}
#single_main .title span.category {
  font-size: 0.1rem;
  padding: 3px 18px;
  color: #fff;
  background-color: #595959;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #single_main .title span.category {
    font-size: 0.12rem;
  }
}
#single_main .date {
  font-size: 16px;
  margin-bottom: 20px;
}
#single_main h2 {
  font-size: 0.2rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  #single_main h2 {
    font-size: 0.32rem;
    margin-bottom: 80px;
  }
}
#single_main .column-single-content {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#single_main .column-single-content {
  width: 100%;
  margin-bottom: 90px;
}
@media screen and (min-width: 769px) {
  #single_main .column-single-content {
    max-width: 880px;
    margin-bottom: 120px;
  }
}
#single_main .column-single-content p {
  font-size: 0.14rem;
}
@media screen and (min-width: 769px) {
  #single_main .column-single-content p {
    font-size: 0.16rem;
  }
}
#single_main .column-single-content a {
  text-decoration: underline;
  color: cornflowerblue;
}
#single_main .column-single-content img {
  max-width: 100%;
  height: auto;
}
#single_main .column-single-content figure {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  #single_main .column-single-content figure {
    margin-top: 60px;
  }
}
#single_main .column-single-content figure img {
  width: 100%;
  height: auto;
}
#single_main > a {
  background-color: #76716D;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  #single_main > a {
    width: 550px;
    height: 60px;
  }
}
#single_main > a > img {
  margin-right: 10px;
  width: 20px;
  height: auto;
}
#single_main .post-navigation {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  #single_main .post-navigation {
    gap: 20px;
  }
}
#single_main .post-navigation .prev-post,
#single_main .post-navigation .next-post {
  width: auto;
}
#single_main .post-navigation .prev-post a,
#single_main .post-navigation .next-post a {
  letter-spacing: 0;
  display: flex;
  width: 90px;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 2px solid #222;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  #single_main .post-navigation .prev-post a,
  #single_main .post-navigation .next-post a {
    font-size: 14px;
    width: 120px;
    height: 48px;
  }
}
#single_main .post-navigation .prev-post a:hover,
#single_main .post-navigation .next-post a:hover {
  background-color: #222;
  color: #fff;
}
#single_main .post-navigation > a {
  letter-spacing: 0.05em;
  display: flex;
  width: 120px;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 2px solid #222;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 12px;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  #single_main .post-navigation > a {
    font-size: 14px;
    width: 180px;
    height: 48px;
  }
}
#single_main .post-navigation > a img {
  filter: brightness(0);
  transition: 0.3s;
}
#single_main .post-navigation > a:hover {
  background-color: #222;
  color: #fff;
}
#single_main .post-navigation > a:hover img {
  filter: brightness(1);
}

/* =========================================================
   お知らせ詳細（single post）新レイアウト
   ========================================================= */
.pankuzu--news {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.news-single {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 96px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  .news-single {
    max-width: 1200px;
    padding: 0 80px;
    margin-bottom: 120px;
  }
}
.news-single__box {
  display: flex;
  flex-direction: column;
  border: 1px solid #d8d4cd;
}
@media screen and (min-width: 769px) {
  .news-single__box {
    flex-direction: row;
    align-items: stretch;
  }
}
.news-single__media {
  position: relative;
  min-height: 220px;
  background: #efece6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .news-single__media {
    flex: 0 0 46%;
    max-width: 46%;
    min-height: 320px;
  }
}
.news-single__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-single__noimg {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-align: center;
  color: #b9b4ab;
  text-indent: 0.28em;
}
@media screen and (min-width: 769px) {
  .news-single__noimg {
    font-size: 0.16rem;
  }
}
.news-single__body {
  padding: 28px 24px;
}
@media screen and (min-width: 769px) {
  .news-single__body {
    flex: 1 1 auto;
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.news-single__title {
  font-size: 0.16rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .news-single__title {
    font-size: 0.14rem;
    margin-bottom: 12px;
  }
}
.news-single__date {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.12em;
  color: #a8a39a;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .news-single__date {
    font-size: 0.1rem;
    margin-bottom: 32px;
  }
}
.news-single__content {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  line-height: 2;
  color: #4a4642;
}
@media screen and (min-width: 769px) {
  .news-single__content {
    font-size: 0.12rem;
    padding: 0 54px;
  }
}
.news-single__content p {
  margin-bottom: 1.2em;
}
.news-single__content p:last-child {
  margin-bottom: 0;
}
.news-single__content a {
  color: #e3a52a;
  text-decoration: underline;
}
.news-single__content img {
  max-width: 100%;
  height: auto;
}
.news-single__foot {
  margin-top: 24px;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .news-single__foot {
    margin-top: 32px;
  }
}
.news-single__back {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #595959;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .news-single__back {
    font-size: 0.13rem;
  }
}
.news-single__back:hover {
  opacity: 0.55;
}

#works-archive {
  width: 100%;
  padding: 50px 0 70px;
}
@media screen and (min-width: 769px) {
  #works-archive {
    padding: 70px 0 110px;
  }
}
#works-archive .works-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding: 0 20px;
  margin-bottom: 36px;
}
@media screen and (min-width: 769px) {
  #works-archive .works-head {
    margin-bottom: 56px;
  }
}
#works-archive .works-head h2 {
  font-weight: 200;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #works-archive .works-head h2 {
    font-size: 0.22rem;
  }
}
#works-archive .works-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#works-archive .works-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
}
#works-archive .works-tabs {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 20px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #works-archive .works-tabs {
    margin-bottom: 64px;
    padding: 0 40px;
  }
}
#works-archive .works-tabs .works-tab {
  flex: 1 1 0;
  text-align: center;
  padding: 16px 6px;
  font-size: 0.13rem;
  letter-spacing: 0.18em;
  color: #9b9690;
  border: 1px solid transparent;
  border-bottom: 1px solid #c2bdb5;
  transition: color 0.3s;
}
@media screen and (min-width: 769px) {
  #works-archive .works-tabs .works-tab {
    padding: 20px 6px;
    font-size: 0.15rem;
  }
}
#works-archive .works-tabs .works-tab:hover {
  color: #595959;
}
#works-archive .works-tabs .works-tab.is-active {
  color: #595959;
  font-weight: 600;
  border: 1px solid #c2bdb5;
  border-bottom-color: transparent;
}
#works-archive .works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 769px) {
  #works-archive .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px 4px;
    padding: 0 40px;
  }
}
#works-archive .works-card {
  display: block;
  text-decoration: none;
  color: #595959;
}
#works-archive .works-card__img {
  overflow: hidden;
  aspect-ratio: 1/1;
}
#works-archive .works-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
#works-archive .works-card:hover .works-card__img img {
  transform: scale(1.06);
}
#works-archive .works-card__meta {
  margin-top: 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #works-archive .works-card__meta {
    font-size: 0.14rem;
  }
}
#works-archive .works-card__meta .sep {
  margin: 0 0.35em;
  color: #9b9690;
}
#works-archive .works-empty {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #76716D;
  padding: 40px 20px;
}

#works-swiper {
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) {
  #works-swiper {
    max-width: 1080px;
    margin: 0 auto 0px;
    padding: 0 40px;
  }
}
#works-swiper .swiper {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 66.66%;
}
#works-swiper .swiper .swiper-slide {
  height: auto;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.66%;
  margin-top: -66.66%;
  overflow: hidden;
}
#works-swiper .swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#works-swiper .swiper .vertical-image {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#works-swiper .swiper .vertical-image img {
  height: 100%;
  width: auto;
  left: auto;
}
#works-swiper .swiper .swiper-button-next, #works-swiper .swiper .swiper-button-prev {
  filter: brightness(100);
}
#works-swiper .swiper .swiper-pagination-bullet-active {
  filter: brightness(100);
}
#works-swiper .thumbsSwiper {
  position: relative;
  margin-top: 10px;
}
#works-swiper .thumbsSwiper .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#works-swiper .thumbsSwiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#works-swiper .thumbsSwiper .swiper-button-next, #works-swiper .thumbsSwiper .swiper-button-prev {
  filter: brightness(100);
}
#works-swiper .thumbsSwiper .swiper-button-next:after, #works-swiper .thumbsSwiper .swiper-button-prev:after {
  font-size: 26px;
}

#works-detail {
  width: 100%;
}
#works-detail .works-detail__head {
  text-align: center;
  padding: 30px 20px 40px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__head {
    padding: 40px 20px 60px;
  }
}
#works-detail .works-detail__head h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 0.2rem;
  letter-spacing: 0.35em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__head h2 {
    font-size: 0.22rem;
  }
}
#works-detail .works-detail__hero {
  width: 100vw;
  margin-left: 50%;
  margin-bottom: 24px;
  transform: translateX(-50%);
  background-color: #000;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__hero {
    margin-bottom: 40px;
  }
}
#works-detail .works-detail__hero img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__hero {
    width: min(100vw - 80px, 1120px);
    aspect-ratio: 3/2;
  }
  #works-detail .works-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
#works-detail .works-detail__marquee {
  overflow: hidden;
  height: 26vh;
  min-height: 150px;
  margin-top: 2px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__marquee {
    height: 34vh;
    max-height: 360px;
  }
}
#works-detail .works-detail__track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
  animation-name: caseMarquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#works-detail .works-detail__slide {
  flex: 0 0 auto;
  height: 100%;
  margin-right: 2px;
  overflow: hidden;
}
#works-detail .works-detail__slide img {
  display: block;
  height: 100%;
  width: auto;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.6s ease;
}
#works-detail .works-detail__slide:hover img {
  transform: scale(1.05);
}
#works-detail .works-detail__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  width: 100%;
  margin: 16px auto 0;
  padding: 0 24px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__controls {
    gap: 18px;
    margin-top: 20px;
    padding: 0 40px;
  }
}
#works-detail .works-detail__counter {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.16rem;
  letter-spacing: 0.15em;
  color: #595959;
  margin-right: 6px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__counter {
    font-size: 0.14rem;
  }
}
#works-detail .works-detail__counter .dash {
  color: #b9b4ac;
}
#works-detail .works-detail__nav {
  all: unset;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
#works-detail .works-detail__nav:hover {
  background-color: #f2f1ef;
}
#works-detail .works-detail__nav img {
  width: 16px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__nav img {
    width: 18px;
  }
}
#works-detail .works-detail__body {
  width: 100%;
  padding: 50px 24px 0;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__body {
    max-width: 1000px;
    padding: 70px 40px 0;
  }
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__body--media {
    max-width: 1120px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    grid-template-areas: "title title" "main  media";
    column-gap: 60px;
    align-items: start;
  }
  #works-detail .works-detail__body--media .works-detail__title {
    grid-area: title;
  }
  #works-detail .works-detail__body--media .works-detail__main {
    grid-area: main;
  }
  #works-detail .works-detail__body--media .works-detail__media {
    grid-area: media;
  }
}
#works-detail .works-detail__media {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__media {
    margin-top: 0;
    position: sticky;
    top: 104px;
  }
}
#works-detail .works-detail__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
#works-detail .works-detail__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
#works-detail .works-detail__title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 0.22rem;
  letter-spacing: 0.12em;
  color: #444;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__title {
    font-size: 0.28rem;
    margin-bottom: 48px;
  }
}
#works-detail .works-spec {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #595959;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-spec {
    margin-bottom: 72px;
  }
}
#works-detail .works-spec__row {
  display: flex;
  align-items: baseline;
  font-size: 0.14rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 6px 0;
}
@media screen and (min-width: 769px) {
  #works-detail .works-spec__row {
    font-size: 0.16rem;
    padding: 9px 0;
  }
}
#works-detail .works-spec__row dt {
  flex: 0 0 auto;
  width: 6.5em;
  letter-spacing: 0.22em;
}
@media screen and (min-width: 769px) {
  #works-detail .works-spec__row dt {
    width: 8em;
  }
}
#works-detail .works-spec__row dd {
  flex: 1 1 auto;
  position: relative;
  padding-left: 1.8em;
}
#works-detail .works-spec__row dd::before {
  content: "｜";
  position: absolute;
  left: 0;
  color: #b9b4ac;
}
#works-detail .works-detail__desc {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #595959;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #works-detail .works-detail__desc {
    font-size: 0.15rem;
  }
}
#works-detail .works-detail__desc p {
  margin-bottom: 1.6em;
}

#a-detail-image {
  display: block;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  #a-detail-image {
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 140px;
  }
  #a-detail-image::before {
    content: "";
    background-image: url("../images/sample-a-detail1.jpg");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(30px);
    z-index: -1;
  }
}
#a-detail-image > img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #a-detail-image > img {
    max-width: 1200px;
    margin: auto;
    box-shadow: 0px 0px 30px #000;
  }
}

#a-detail-main {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #a-detail-main {
    max-width: 1200px;
    margin: 0 auto 60px auto;
  }
}
#a-detail-main .title {
  font-size: 0.14rem;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  #a-detail-main .title {
    font-size: 0.16rem;
  }
}
#a-detail-main .title span.line {
  width: 120px;
  height: 1px;
  background-color: #595959;
  display: inline-block;
  margin-bottom: 10px;
  margin: 0 10px 10px 10px;
}
@media screen and (min-width: 769px) {
  #a-detail-main .title span.line {
    width: 120px;
  }
}
#a-detail-main .title span.category {
  font-size: 0.1rem;
  padding: 3px 18px;
  color: #fff;
  background-color: #595959;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #a-detail-main .title span.category {
    font-size: 0.12rem;
  }
}
#a-detail-main .title span.category[data-type=リノベーション], #a-detail-main .title span.category[data-type=リフォーム] {
  background-color: #17274d;
}
#a-detail-main .title span.category[data-type=新築] {
  background-color: #921111;
}
#a-detail-main h2 {
  font-size: 0.2rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #a-detail-main h2 {
    font-size: 0.32rem;
    margin-bottom: 40px;
  }
}
#a-detail-main > p {
  font-size: 0.14rem;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  #a-detail-main > p {
    font-size: 0.16rem;
  }
}
#a-detail-main > a {
  background-color: #76716D;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 45px;
  margin-left: calc(100% - 200px);
  color: #fff;
  font-size: 0.12rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #a-detail-main > a {
    font-size: 0.14rem;
    width: 300px;
    height: 60px;
    margin-left: calc(100% - 300px);
  }
}
#a-detail-main > a img {
  width: 12px;
  height: auto;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  #a-detail-main > a img {
    width: 20px;
  }
}

#a-detail-about {
  background-color: #76716D;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #a-detail-about {
    padding: 60px 20px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #a-detail-about > div {
    max-width: 1200px;
    margin: 0 auto;
  }
}
#a-detail-about > div h2 {
  font-size: 0.18rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #a-detail-about > div h2 {
    font-size: 0.24rem;
    margin-bottom: 40px;
  }
}
#a-detail-about > div div {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  #a-detail-about > div div {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#a-detail-about > div div dl {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: -1px;
  display: flex;
  align-items: center;
  padding: 1.5em 0;
}
@media screen and (min-width: 769px) {
  #a-detail-about > div div dl {
    width: 550px;
  }
}
#a-detail-about > div div dl dt {
  width: 105px;
  font-weight: 700;
  text-align: left;
}
#a-detail-about > div div dl dd {
  width: calc(100% - 105px);
  text-align: left;
  line-height: 1.7;
}

#backlink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media screen and (min-width: 769px) {
  #backlink {
    padding: 100px 0;
  }
}
#backlink > a {
  background-color: #76716D;
  width: 250px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.12rem;
  color: #fff;
  font-weight: 700;
  margin: auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #backlink > a {
    width: 550px;
    height: 60px;
    font-size: 0.14rem;
  }
}
#backlink > a img {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  #backlink > a img {
    width: 20px;
  }
}
#backlink > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}

.swiper {
  width: 600px;
  height: 300px;
}
.swiper img {
  width: 100%;
}

#works-images img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.works-single-header {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  margin: 0 0 0 -20px;
  height: 500px;
  background-position: center;
  padding-top: 120px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.works-single-header .title {
  color: #fff;
}
.works-single-header .title span.line {
  background-color: #fff !important;
}
.works-single-header h2 {
  color: #fff;
}

.single-works header {
  background: none;
}
.single-works .pankuzu {
  transform: translate(0, 35px);
  color: white;
}
.single-works .pankuzu a {
  color: #fff;
}
.single-works #a-detail-main {
  margin-top: -62px;
}

#reno-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}
@media screen and (min-width: 769px) {
  #reno-hero {
    padding: 120px 40px 80px;
  }
}
#reno-hero .reno-hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -25%;
  height: 150%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
#reno-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 1;
}
#reno-hero .reno-hero__box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #reno-hero .reno-hero__box {
    padding: 80px 80px;
  }
}
#reno-hero .reno-hero__lead {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.8;
  font-size: 0.24rem;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  #reno-hero .reno-hero__lead {
    font-size: 0.42rem;
    margin-bottom: 64px;
  }
}
#reno-hero .reno-hero__lead p {
  margin: 0;
  color: #fff;
  font-size: inherit;
}
#reno-hero .reno-hero__body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 2.1;
  font-size: 0.12rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  #reno-hero .reno-hero__body {
    font-size: 0.15rem;
    line-height: 2.3;
  }
}
#reno-hero .reno-hero__body p {
  margin: 0 0 2em;
  color: #fff;
  font-size: inherit;
}
#reno-hero .reno-hero__body p:last-child {
  margin-bottom: 0;
}

#reno-values {
  background: #fff;
  padding: 76px 24px 84px;
}
@media screen and (min-width: 769px) {
  #reno-values {
    padding: 130px 40px 150px;
  }
}
#reno-values .reno-values__inner {
  max-width: 1040px;
  margin: 0 auto;
}
#reno-values .reno-values__head {
  margin-bottom: 54px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-values__head {
    margin-bottom: 96px;
  }
}
#reno-values .reno-values__eyebrow {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #8a857d;
  font-size: 0.13rem;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-values__eyebrow {
    font-size: 0.15rem;
  }
}
#reno-values .reno-values__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #46423c;
  font-size: 0.25rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-values__ttl {
    font-size: 0.36rem;
  }
}
#reno-values .reno-values__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-values__list {
    gap: 120px;
  }
}
#reno-values .reno-value__body {
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-value__body {
    margin-bottom: 40px;
  }
}
#reno-values .reno-value__num {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #c7c0b4;
  font-size: 0.3rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-value__num {
    font-size: 0.42rem;
    margin-bottom: 22px;
    gap: 24px;
  }
}
#reno-values .reno-value__num::after {
  content: "";
  flex: 0 0 auto;
  width: 42px;
  height: 1px;
  background: #d8d2c7;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-value__num::after {
    width: 64px;
  }
}
#reno-values .reno-value__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #413d37;
  font-size: 0.19rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 14px;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-value__ttl {
    font-size: 0.24rem;
    margin-bottom: 20px;
  }
}
#reno-values .reno-value__desc {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #6f6a63;
  font-size: 0.14rem;
  letter-spacing: 0.06em;
  line-height: 2.1;
}
@media screen and (min-width: 769px) {
  #reno-values .reno-value__desc {
    font-size: 0.15rem;
  }
}
#reno-values .reno-value__img {
  overflow: hidden;
  background: #efece7;
}
#reno-values .reno-value__img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#reno-values .reno-value__img:hover img {
  transform: scale(1.05);
}

#reno-service {
  background: #fff;
  padding: 20px 24px 90px;
}
@media screen and (min-width: 769px) {
  #reno-service {
    padding: 40px 40px 140px;
  }
}
#reno-service .enjp-heading {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 200;
  color: #595959;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #reno-service .enjp-heading {
    font-size: 0.22rem;
    margin-bottom: 64px;
  }
}
#reno-service .enjp-heading .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#reno-service .enjp-heading .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#reno-service .reno-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #reno-service .reno-service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
#reno-service .reno-service__tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}
#reno-service .reno-service__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.45s;
}
#reno-service .reno-service__tile:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
#reno-service .reno-service__tile .reno-service__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.17rem;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.6;
  padding: 0 12px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.45s ease;
}
@media screen and (min-width: 769px) {
  #reno-service .reno-service__tile .reno-service__label {
    font-size: 0.18rem;
  }
}
#reno-service .reno-service__tile .reno-service__more {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 10px);
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
#reno-service .reno-service__tile:hover .reno-service__label {
  transform: translateY(-10px);
}
#reno-service .reno-service__tile:hover .reno-service__more {
  opacity: 1;
  transform: translate(-50%, 0);
}

#renofull {
  width: 100%;
  padding: 10px 0 80px;
}
@media screen and (min-width: 769px) {
  #renofull {
    padding: 20px 0 120px;
  }
}
#renofull .renofull-intro {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 70px;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro {
    padding: 40px 40px 110px;
  }
}
#renofull .renofull-intro__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #46423c;
  font-size: 0.22rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin-bottom: 40px;
}
#renofull .renofull-intro__ttl .pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro__ttl {
    font-size: 0.3rem;
    margin-bottom: 64px;
  }
  #renofull .renofull-intro__ttl .pc-only {
    display: inline;
  }
}
#renofull .renofull-intro__cols {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro__cols {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
}
#renofull .renofull-intro__text {
  flex: 1 1 auto;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro__text {
    margin-top: -10px;
  }
}
#renofull .renofull-intro__text p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #5f5b55;
  font-size: 0.14rem;
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin: 0 0 1.8em;
}
#renofull .renofull-intro__text p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro__text p {
    font-size: 0.15rem;
  }
}
#renofull .renofull-intro__img {
  flex: 0 0 auto;
  overflow: hidden;
  background: #efece7;
}
@media screen and (min-width: 769px) {
  #renofull .renofull-intro__img {
    width: 46%;
  }
}
#renofull .renofull-intro__img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

#moclock-design {
  width: 100%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #595959;
  padding: 50px 0 70px;
}
@media screen and (min-width: 769px) {
  #moclock-design {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px 120px;
  }
}
#moclock-design .mdesign-head {
  font-weight: 300;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-head {
    font-size: 0.22rem;
    margin-bottom: 56px;
  }
}
#moclock-design .mdesign-head .en {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.4em;
  padding-right: 0.2em;
  text-transform: lowercase;
}
#moclock-design .mdesign-head .sep {
  margin: 0 0.35em 0 0.15em;
  color: #9b9690;
}
#moclock-design .mdesign-intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 24px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-intro {
    flex-direction: row;
    align-items: flex-end;
    gap: 8%;
    padding: 0;
    margin-bottom: 160px;
  }
}
#moclock-design .mdesign-intro__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-intro__img {
    flex: 0 0 42%;
  }
}
#moclock-design .mdesign-intro__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-intro__text {
    flex: 1 1 auto;
    padding-top: 30px;
  }
}
#moclock-design .mdesign-intro__lead {
  font-size: 0.14rem;
  line-height: 2.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-intro__lead {
    font-size: 0.15rem;
  }
}
#moclock-design .mdesign-intro__lead p {
  margin-bottom: 1.8em;
}
#moclock-design .mdesign-intro__lead p:last-child {
  margin-bottom: 0;
}
#moclock-design .mdesign-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 24px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block {
    flex-direction: row;
    align-items: flex-end;
    gap: 8%;
    padding: 0;
    margin-bottom: 150px;
  }
}
#moclock-design .mdesign-block:last-child {
  margin-bottom: 0;
}
#moclock-design .mdesign-block__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block__img {
    flex: 0 0 46%;
  }
}
#moclock-design .mdesign-block__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block__text {
    flex: 1 1 auto;
  }
}
#moclock-design .mdesign-block__heading {
  font-weight: 400;
  font-size: 0.17rem;
  letter-spacing: 0.2em;
  color: #595959;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block__heading {
    font-size: 0.2rem;
    margin-bottom: 40px;
  }
}
#moclock-design .mdesign-block__heading .sep {
  margin: 0 0.5em;
  color: #9b9690;
}
#moclock-design .mdesign-block__heading .s {
  font-size: 0.8em;
}
#moclock-design .mdesign-block__body {
  font-size: 0.14rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block__body {
    font-size: 0.15rem;
  }
}
#moclock-design .mdesign-block__body p {
  margin-bottom: 1.6em;
}
#moclock-design .mdesign-block__body p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #moclock-design .mdesign-block.is-reverse {
    flex-direction: row-reverse;
  }
}

#moclock-flow {
  width: 100%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #595959;
  padding: 50px 24px 70px;
}
@media screen and (min-width: 769px) {
  #moclock-flow {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 20px 120px;
  }
}
#moclock-flow .mflow-head {
  text-align: center;
  font-weight: 300;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-head {
    font-size: 0.2rem;
    margin-bottom: 10px;
  }
}
#moclock-flow .mflow-head .en {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.4em;
  padding-right: 0.2em;
  text-transform: lowercase;
}
#moclock-flow .mflow-head .sep {
  margin: 0 0.35em 0 0.15em;
  color: #9b9690;
}
#moclock-flow .mflow-illust {
  width: 80%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-illust {
    width: 300px;
    margin: 0 0 20px calc(100% - 300px);
  }
}
#moclock-flow .mflow-illust img {
  display: block;
  width: 100%;
  height: auto;
}
#moclock-flow .mflow-timeline {
  position: relative;
}
#moclock-flow .mflow-timeline__line {
  position: absolute;
  top: 24px;
  bottom: 44px;
  left: 39px;
  width: 4px;
  background-color: #d8d4cd;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-timeline__line {
    left: 60px;
  }
}
#moclock-flow .mflow-timeline__line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 16px solid #d8d4cd;
}
#moclock-flow .mflow-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-step {
    gap: 28px;
  }
}
#moclock-flow .mflow-step__marker {
  flex: 0 0 78px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-step__marker {
    flex: 0 0 120px;
  }
}
#moclock-flow .mflow-circle {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #c9c4bc;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.08em;
  color: #8a857d;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-circle {
    width: 80px;
    height: 80px;
    font-size: 0.13rem;
  }
}
#moclock-flow .mflow-circle.is-finish {
  background-color: #e7e3da;
  border-color: #e7e3da;
  color: #6b6660;
  letter-spacing: 0.15em;
}
#moclock-flow .mflow-step__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 0 30px;
  border-bottom: 1px solid #e4e0d9;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-step__body {
    padding: 22px 0 40px;
  }
}
#moclock-flow .mflow-step:last-child .mflow-step__body {
  border-bottom: none;
}
#moclock-flow .mflow-step__title {
  position: relative;
  font-weight: 400;
  font-size: 0.15rem;
  letter-spacing: 0.1em;
  color: #595959;
  padding-left: 24px;
  margin-bottom: 14px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-step__title {
    font-size: 0.17rem;
    margin-bottom: 18px;
  }
}
#moclock-flow .mflow-step__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #cfcabf;
}
#moclock-flow .mflow-step__desc {
  font-size: 0.12rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #8a857d;
  padding-left: 34px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-step__desc {
    font-size: 0.13rem;
  }
}
#moclock-flow .mflow-notes {
  margin-top: 50px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-notes {
    margin-top: 80px;
  }
}
#moclock-flow .mflow-note {
  background-color: #efece6;
  padding: 26px 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-note {
    padding: 36px 48px;
    margin-bottom: 24px;
  }
}
#moclock-flow .mflow-note:last-child {
  margin-bottom: 0;
}
#moclock-flow .mflow-note__title {
  text-align: center;
  font-size: 0.14rem;
  letter-spacing: 0.2em;
  color: #595959;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-note__title {
    font-size: 0.16rem;
    margin-bottom: 22px;
  }
}
#moclock-flow .mflow-note__body {
  font-size: 0.12rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #8a857d;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #moclock-flow .mflow-note__body {
    font-size: 0.13rem;
  }
}

#moclock-warranty {
  width: 100%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #595959;
  padding: 50px 24px 70px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty {
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 20px 120px;
  }
}
#moclock-warranty .mwr-head {
  text-align: center;
  font-weight: 300;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
  margin-bottom: 56px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-head {
    font-size: 0.2rem;
    margin-bottom: 90px;
  }
}
#moclock-warranty .mwr-head .en {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.4em;
  padding-right: 0.2em;
  text-transform: lowercase;
}
#moclock-warranty .mwr-head .sep {
  margin: 0 0.35em 0 0.15em;
  color: #9b9690;
}
#moclock-warranty .mwr-section {
  margin-bottom: 70px;
}
#moclock-warranty .mwr-section__title {
  display: inline-block;
  font-weight: 600;
  font-size: 0.17rem;
  letter-spacing: 0.12em;
  color: #4a4641;
  padding-bottom: 4px;
  border-bottom: 1px solid #8a857d;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-section__title {
    font-size: 0.2rem;
    margin-bottom: 44px;
  }
}
#moclock-warranty .mwr-lead {
  font-size: 0.13rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #595959;
  margin-bottom: 56px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-lead {
    font-size: 0.15rem;
    line-height: 2.2;
    margin-bottom: 80px;
  }
}
#moclock-warranty .mwr-item {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-item {
    margin-bottom: 70px;
  }
}
#moclock-warranty .mwr-item:last-child {
  margin-bottom: 0;
}
#moclock-warranty .mwr-item__title {
  font-weight: 500;
  font-size: 0.15rem;
  letter-spacing: 0.1em;
  color: #4a4641;
  margin-bottom: 18px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-item__title {
    font-size: 0.17rem;
    margin-bottom: 22px;
  }
}
#moclock-warranty .mwr-item__title::before {
  content: "｜";
  color: #b3aea6;
  margin-right: 0.15em;
}
#moclock-warranty .mwr-item--num #moclock-warranty .mwr-item__title::before {
  content: none;
}
#moclock-warranty .mwr-item--num #moclock-warranty .mwr-item__title .no {
  margin-right: 0.5em;
}
#moclock-warranty .mwr-item__body {
  font-size: 0.13rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #76716d;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-item__body {
    font-size: 0.15rem;
    line-height: 2.2;
  }
}
#moclock-warranty .mwr-cta {
  text-align: center;
  margin: 70px 0 90px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-cta {
    margin: 110px 0 130px;
  }
}
#moclock-warranty .mwr-cta__lead {
  font-size: 0.13rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #76716d;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-cta__lead {
    font-size: 0.15rem;
  }
}
#moclock-warranty .mwr-cta__emph {
  font-size: 0.2rem;
  letter-spacing: 0.12em;
  color: #595959;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  margin-bottom: 22px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-cta__emph {
    font-size: 0.26rem;
  }
}
#moclock-warranty .mwr-cta__sub {
  font-size: 0.13rem;
  letter-spacing: 0.1em;
  color: #76716d;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-cta__sub {
    font-size: 0.15rem;
    margin-bottom: 50px;
  }
}
#moclock-warranty .mwr-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  min-height: 70px;
  padding: 18px 24px;
  background-color: #c3bdb0;
  color: #fff;
  font-size: 0.15rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-cta__btn {
    font-size: 0.2rem;
    min-height: 84px;
  }
}
#moclock-warranty .mwr-cta__btn:hover {
  opacity: 0.82;
}
#moclock-warranty .mwr-faq__head {
  text-align: center;
  font-weight: 400;
  font-size: 0.17rem;
  letter-spacing: 0.2em;
  color: #76716d;
  margin-bottom: 44px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-faq__head {
    font-size: 0.2rem;
    margin-bottom: 60px;
  }
}
#moclock-warranty .mwr-faq__item {
  margin-bottom: 44px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-faq__item {
    margin-bottom: 56px;
  }
}
#moclock-warranty .mwr-faq__item:last-child {
  margin-bottom: 0;
}
#moclock-warranty .mwr-faq__q {
  font-weight: 600;
  font-size: 0.15rem;
  letter-spacing: 0.08em;
  color: #4a4641;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-faq__q {
    font-size: 0.17rem;
    margin-bottom: 20px;
  }
}
#moclock-warranty .mwr-faq__a {
  display: flex;
  gap: 0.6em;
  font-size: 0.13rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #76716d;
}
@media screen and (min-width: 769px) {
  #moclock-warranty .mwr-faq__a {
    font-size: 0.15rem;
    line-height: 2.2;
  }
}
#moclock-warranty .mwr-faq__a .mark {
  flex: 0 0 auto;
}
#moclock-warranty .mwr-faq__a .txt {
  flex: 1 1 auto;
}

#event-top {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #event-top {
    max-width: 1200px;
    margin: auto;
  }
}
#event-top h2 {
  font-size: 0.32rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
}
#event-top .tabs {
  padding-bottom: 40px;
  width: 100%;
  margin: 0 auto;
}
#event-top .tabs input[name=tab_item] {
  display: none;
}
#event-top .tabs .tab_item {
  width: 33.3333333333%;
  height: 40px;
  line-height: 50px;
  font-size: 0.12rem;
  text-align: center;
  color: #8E8E8E;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-bottom: 1px solid #595959;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #event-top .tabs .tab_item {
    height: 60px;
    font-size: 0.16rem;
    margin-bottom: 70px;
  }
}
#event-top .tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #event-top .tabs .tab_content .tab_content_description {
    display: flex;
    justify-content: space-between;
  }
}
#event-top .tabs .tab_content .tab_content_description dl {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #event-top .tabs .tab_content .tab_content_description dl {
    width: calc(33.3333333333% - 20px);
    margin-bottom: 75px;
  }
}
#event-top .tabs .tab_content .tab_content_description dl dt {
  margin-bottom: 15px;
}
#event-top .tabs .tab_content .tab_content_description dl dt img {
  width: 100%;
  height: auto;
}
#event-top .tabs .tab_content .tab_content_description dl dd span {
  color: #fff;
  font-weight: 700;
  font-size: 0.1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  margin: 0 5px 15px 0;
}
#event-top .tabs .tab_content .tab_content_description dl dd span.category {
  background-color: #76716D;
}
#event-top .tabs .tab_content .tab_content_description dl dd span.acceptance {
  background-color: #AD1212;
}
#event-top .tabs .tab_content .tab_content_description dl dd h3 {
  font-size: 0.18rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 30px;
}
#event-top .tabs .tab_content .tab_content_description dl dd a {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 0.12rem;
}
@media screen and (min-width: 769px) {
  #event-top .tabs .tab_content .tab_content_description dl dd a {
    font-size: 0.14rem;
  }
}
#event-top .tabs .tab_content .tab_content_description dl dd a img {
  width: 15px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #event-top .tabs .tab_content .tab_content_description dl dd a img {
    width: 20px;
  }
}
#event-top .tabs #all:checked ~ #all_content,
#event-top .tabs #tour:checked ~ #tour_content,
#event-top .tabs #consultation:checked ~ #consultation_content {
  display: block;
  width: 100%;
}
#event-top .tabs.tabs input:checked + .tab_item {
  border: 1px solid #595959;
  border-bottom: none;
  color: #595959;
}

.eventArchive ul {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #1E1E1E;
}
.eventArchive ul li {
  display: flex;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
  border-bottom: 1px solid #1E1E1E;
  background-color: #fff;
  transform: translate(0, 1px);
}
.eventArchive ul li.active {
  color: #1E1E1E;
  border: 1px solid #1E1E1E;
  border-bottom: 1px solid #fff;
  background-color: #fff;
}
.eventArchive > div > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 0 40px;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .eventArchive > div > div {
    padding: 40px 0 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1280px;
    gap: 40px 5.7142857%;
    margin: 0 auto;
  }
}
.eventArchive > div > div a {
  display: block;
  transition: 0.3s;
}
.eventArchive > div > div a:hover {
  opacity: 0.5;
}
.eventArchive > div > div a.end dt:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.eventArchive > div > div a.end dt:after {
  content: "このイベントは終了しました";
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  letter-spacing: 0;
  top: 0;
  left: 0;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .eventArchive > div > div a.end dt:after {
    font-size: 13px;
  }
}
.eventArchive > div > div a dl dt {
  margin-bottom: 10px;
  position: relative;
}
.eventArchive > div > div a dl dt img {
  width: 100%;
  height: auto;
}
.eventArchive > div > div a dl dd h3 {
  font-size: 0.12rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .eventArchive > div > div a dl dd h3 {
    font-size: 0.14rem;
  }
}
.eventArchive > div > div a dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.12rem;
  font-weight: bold;
}
.eventArchive > div > div a dl dd a img {
  transition: 0.3s;
}
.eventArchive > div > div a dl dd a:hover img {
  transform: translate(5px, 0);
}

/* ===== イベント一覧（works のカードグリッドに準拠・2026-08 刷新） ===== */
#event-archive {
  width: 100%;
  padding: 50px 0 70px;
}
@media screen and (min-width: 769px) {
  #event-archive {
    padding: 70px 0 110px;
  }
}
#event-archive .event-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding: 0 20px;
  margin-bottom: 36px;
}
@media screen and (min-width: 769px) {
  #event-archive .event-head {
    margin-bottom: 48px;
  }
}
#event-archive .event-head h2 {
  font-weight: 200;
  font-size: 0.2rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #event-archive .event-head h2 {
    font-size: 0.22rem;
  }
}
#event-archive .event-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#event-archive .event-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
}
#event-archive .event-tabs {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 20px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #event-archive .event-tabs {
    margin-bottom: 56px;
    padding: 0 40px;
  }
}
#event-archive .event-tabs .event-tab {
  flex: 1 1 0;
  text-align: center;
  padding: 16px 6px;
  font-size: 0.13rem;
  letter-spacing: 0.18em;
  color: #9b9690;
  background: none;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid transparent;
  border-bottom: 1px solid #c2bdb5;
  transition: color 0.3s;
}
@media screen and (min-width: 769px) {
  #event-archive .event-tabs .event-tab {
    padding: 20px 6px;
    font-size: 0.15rem;
  }
}
#event-archive .event-tabs .event-tab:hover {
  color: #595959;
}
#event-archive .event-tabs .event-tab.is-active {
  color: #595959;
  font-weight: 600;
  border: 1px solid #c2bdb5;
  border-bottom-color: transparent;
}
#event-archive .event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #event-archive .event-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
    padding: 0 40px;
  }
}
#event-archive .event-card {
  display: block;
  text-decoration: none;
  color: #595959;
}
#event-archive .event-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
}
#event-archive .event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
#event-archive .event-card:hover .event-card__img img {
  transform: scale(1.06);
}
#event-archive .event-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(89, 89, 89, 0.9);
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
}
#event-archive .event-card__meta {
  margin-top: 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #event-archive .event-card__meta {
    font-size: 0.14rem;
  }
}
#event-archive .event-card__meta .date {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #8a857d;
}
#event-archive .event-card__meta .sep {
  margin: 0 0.4em;
  color: #c8c4bd;
}
#event-archive .event-card.is-end .event-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
#event-archive .event-card.is-end .event-card__meta .date, #event-archive .event-card.is-end .event-card__meta .ttl {
  color: #9b9690;
}
#event-archive .event-empty {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #76716D;
  padding: 40px 20px;
}

/* =========================================================
   イベント一覧 新レイアウト（横型カード＋過去開催リスト）
   余白はすべて sp(1)
   ========================================================= */
.ev-archive {
  width: 100%;
  padding: 0 calc(var(--sp1) * 1);
  margin-bottom: 80px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #464646;
}
@media screen and (min-width: 769px) {
  .ev-archive {
    padding: 0 calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 1);
  }
}
.ev-archive .ev-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
}
@media screen and (min-width: 769px) {
  .ev-archive .ev-head {
    margin: calc(var(--sp1) * 1) 0 calc(var(--sp1) * 2);
  }
}
.ev-archive .ev-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .ev-archive .ev-head h2 {
    font-size: 0.22rem;
  }
}
.ev-archive .ev-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.ev-archive .ev-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}

.ev-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: calc(var(--sp1) * 4);
}
@media screen and (min-width: 769px) {
  .ev-cols {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 calc(var(--sp1) * 1);
    gap: calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 2);
  }
}
.ev-cols__img {
  width: 40%;
  max-width: 300px;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .ev-cols__img {
    width: 100%;
  }
}
.ev-cols__img img {
  width: 100%;
  height: auto;
  display: block;
}
.ev-cols .ev-hero-text {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.08rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #5c574f;
  width: 230px;
}
@media screen and (min-width: 769px) {
  .ev-cols .ev-hero-text {
    width: 440px;
    font-size: 0.12rem;
    line-height: 2.15;
  }
}
.ev-cols .ev-hero-text .pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .ev-cols .ev-hero-text .pc-only {
    display: block;
  }
}

.ev-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--sp1) * 3);
}
@media screen and (min-width: 769px) {
  .ev-cards {
    gap: calc(var(--sp1) * 1);
    padding: 0 calc(var(--sp1) * 0.5);
  }
}

.ev-card {
  display: flex;
  flex-direction: column;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .ev-card {
    flex-direction: row;
    align-items: stretch;
  }
}
.ev-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: #efece6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .ev-card__img {
    flex: 0 0 46%;
    max-width: 46%;
    min-height: 0;
  }
}
.ev-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ev-card__noimg {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-align: center;
  color: #b9b4ab;
}
.ev-card__body {
  flex: 1 1 auto;
  padding: calc(var(--sp1) * 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ded9d0;
  border-top: none;
}
@media screen and (min-width: 769px) {
  .ev-card__body {
    padding: calc(var(--sp1) * 0.6) calc(var(--sp1) * 0.7);
    border: 1px solid #ded9d0;
    border-left: none;
  }
}
.ev-card__title {
  text-align: center;
  font-size: 0.11rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 18px;
}
@media screen and (min-width: 769px) {
  .ev-card__title {
    font-size: 0.14rem;
    margin-bottom: 24px;
  }
}
.ev-card__lead {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  line-height: 2;
  color: #5c574f;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .ev-card__lead {
    font-size: 0.12rem;
    margin-bottom: 28px;
  }
}
.ev-card__lead .pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .ev-card__lead .pc-only {
    display: inline;
  }
}
.ev-card__meta {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  line-height: 1.9;
  color: #464646;
}
@media screen and (min-width: 769px) {
  .ev-card__meta {
    font-size: 0.12rem;
  }
}
.ev-card__row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.ev-card__row dt {
  flex: 0 0 auto;
  position: relative;
  padding-right: 14px;
  letter-spacing: 0.1em;
}
.ev-card__row dt::after {
  content: "｜";
  position: absolute;
  right: 0;
  color: #c8c4bd;
}
.ev-card__row dd {
  flex: 1 1 auto;
  letter-spacing: 0.06em;
}
.ev-card__btn {
  align-self: flex-end;
  margin: 0 auto;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 4px 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #464646;
  text-decoration: none;
  border: 1px solid #b7b2a9;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .ev-card__btn {
    margin: 0;
    padding: 12px 28px;
    margin-top: 32px;
    font-size: 0.12rem;
    width: 180px;
  }
}
.ev-card__btn:hover {
  background: #464646;
  color: #fff;
  border-color: #464646;
}

.ev-past {
  margin-top: 60px;
  padding: 0 calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  .ev-past {
    margin-top: calc(var(--sp1) * 1);
    padding: 0;
  }
}
.ev-past__head {
  text-align: center;
  font-size: 0.15rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-weight: 500;
  color: #464646;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  .ev-past__head {
    font-size: 0.18rem;
    margin-bottom: calc(var(--sp1) * 0.6);
  }
}
.ev-past__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6px;
  border-bottom: 1px solid #ded9d0;
  text-decoration: none;
  color: #595959;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .ev-past__row {
    padding: 20px calc(var(--sp1) * 0.4);
  }
}
.ev-past__row:hover {
  opacity: 0.55;
}
.ev-past__ttl {
  font-size: 0.1rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.ev-past__ttl::before {
  content: "・";
  margin-right: 0.1em;
}
@media screen and (min-width: 769px) {
  .ev-past__ttl {
    font-size: 0.14rem;
  }
}
.ev-past__date {
  flex: 0 0 auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  color: #8a857d;
}
@media screen and (min-width: 769px) {
  .ev-past__date {
    font-size: 0.12rem;
  }
}

/* =========================================================
   ショールーム（暫定・イベントアーカイブ流用のコピー / shr-*）
   余白はすべて sp(1)
   ========================================================= */
.shr-archive {
  width: 100%;
  padding: 0 calc(var(--sp1) * 1);
  margin-bottom: 80px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #464646;
}
@media screen and (min-width: 769px) {
  .shr-archive {
    padding: 0 calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 1);
  }
}
.shr-archive .shr-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
}
@media screen and (min-width: 769px) {
  .shr-archive .shr-head {
    margin: calc(var(--sp1) * 1) 0 calc(var(--sp1) * 2);
  }
}
.shr-archive .shr-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .shr-archive .shr-head h2 {
    font-size: 0.22rem;
  }
}
.shr-archive .shr-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.shr-archive .shr-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}

.shr-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: calc(var(--sp1) * 4);
}
@media screen and (min-width: 769px) {
  .shr-cols {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 calc(var(--sp1) * 1);
    gap: calc(var(--sp1) * 1);
    margin-bottom: calc(var(--sp1) * 2);
  }
}
.shr-cols__img {
  width: 40%;
  max-width: 300px;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .shr-cols__img {
    width: 100%;
  }
}
.shr-cols__img img {
  width: 100%;
  height: auto;
  display: block;
}
.shr-cols .shr-hero-text {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.08rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #5c574f;
  width: 230px;
}
@media screen and (min-width: 769px) {
  .shr-cols .shr-hero-text {
    width: 440px;
    font-size: 0.12rem;
    line-height: 2.15;
  }
}
.shr-cols .shr-hero-text .pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .shr-cols .shr-hero-text .pc-only {
    display: block;
  }
}

.shr-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--sp1) * 3);
}
@media screen and (min-width: 769px) {
  .shr-cards {
    gap: calc(var(--sp1) * 1);
    padding: 0 calc(var(--sp1) * 0.5);
  }
}

.shr-card {
  display: flex;
  flex-direction: column;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .shr-card {
    flex-direction: row;
    align-items: stretch;
  }
}
.shr-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: #efece6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .shr-card__img {
    flex: 0 0 46%;
    max-width: 46%;
    min-height: 0;
  }
}
.shr-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shr-card__noimg {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-align: center;
  color: #b9b4ab;
}
.shr-card__body {
  flex: 1 1 auto;
  padding: calc(var(--sp1) * 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ded9d0;
  border-top: none;
}
@media screen and (min-width: 769px) {
  .shr-card__body {
    padding: calc(var(--sp1) * 0.6) calc(var(--sp1) * 0.7);
    border: 1px solid #ded9d0;
    border-left: none;
  }
}
.shr-card__title {
  text-align: center;
  font-size: 0.11rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 18px;
}
@media screen and (min-width: 769px) {
  .shr-card__title {
    font-size: 0.14rem;
    margin-bottom: 24px;
  }
}
.shr-card__lead {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  line-height: 2;
  color: #5c574f;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .shr-card__lead {
    font-size: 0.12rem;
    margin-bottom: 28px;
  }
}
.shr-card__lead .pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .shr-card__lead .pc-only {
    display: inline;
  }
}
.shr-card__meta {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  line-height: 1.9;
  color: #464646;
}
@media screen and (min-width: 769px) {
  .shr-card__meta {
    font-size: 0.12rem;
  }
}
.shr-card__row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.shr-card__row dt {
  flex: 0 0 auto;
  position: relative;
  padding-right: 14px;
  letter-spacing: 0.1em;
}
.shr-card__row dt::after {
  content: "｜";
  position: absolute;
  right: 0;
  color: #c8c4bd;
}
.shr-card__row dd {
  flex: 1 1 auto;
  letter-spacing: 0.06em;
}
.shr-card__btn {
  align-self: flex-end;
  margin: 0 auto;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 4px 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #464646;
  text-decoration: none;
  border: 1px solid #b7b2a9;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .shr-card__btn {
    margin: 0;
    padding: 12px 28px;
    margin-top: 32px;
    font-size: 0.12rem;
    width: 180px;
  }
}
.shr-card__btn:hover {
  background: #464646;
  color: #fff;
  border-color: #464646;
}

.shr-past {
  margin-top: 60px;
  padding: 0 calc(var(--sp1) * 1);
}
@media screen and (min-width: 769px) {
  .shr-past {
    margin-top: calc(var(--sp1) * 1);
    padding: 0;
  }
}
.shr-past__head {
  text-align: center;
  font-size: 0.15rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-weight: 500;
  color: #464646;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  .shr-past__head {
    font-size: 0.18rem;
    margin-bottom: calc(var(--sp1) * 0.6);
  }
}
.shr-past__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6px;
  border-bottom: 1px solid #ded9d0;
  text-decoration: none;
  color: #595959;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .shr-past__row {
    padding: 20px calc(var(--sp1) * 0.4);
  }
}
.shr-past__row:hover {
  opacity: 0.55;
}
.shr-past__ttl {
  font-size: 0.1rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.shr-past__ttl::before {
  content: "・";
  margin-right: 0.1em;
}
@media screen and (min-width: 769px) {
  .shr-past__ttl {
    font-size: 0.14rem;
  }
}
.shr-past__date {
  flex: 0 0 auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  color: #8a857d;
}
@media screen and (min-width: 769px) {
  .shr-past__date {
    font-size: 0.12rem;
  }
}

#single-event_image {
  display: block;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  #single-event_image {
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 140px;
  }
  #single-event_image::before {
    content: "";
    background-image: url("../images/sample-a-detail1.jpg");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(30px);
    z-index: -1;
  }
}
#single-event_image > img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #single-event_image > img {
    max-width: 600px;
    margin: auto;
    box-shadow: 0px 0px 30px #000;
  }
}

#single-event_main {
  width: 100%;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 769px) {
  #single-event_main {
    max-width: 1200px;
    margin: 0 auto;
  }
}
#single-event_main .title {
  font-size: 0.14rem;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  #single-event_main .title {
    font-size: 0.16rem;
  }
}
#single-event_main .title span.line {
  width: 120px;
  height: 1px;
  background-color: #595959;
  display: inline-block;
  margin-bottom: 10px;
  margin: 0 10px 10px 10px;
}
@media screen and (min-width: 769px) {
  #single-event_main .title span.line {
    width: 120px;
  }
}
#single-event_main .title span.category {
  font-size: 0.1rem;
  padding: 3px 18px;
  color: #fff;
  background-color: #595959;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #single-event_main .title span.category {
    font-size: 0.12rem;
  }
}
#single-event_main h2 {
  font-size: 0.2rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #single-event_main h2 {
    font-size: 0.32rem;
    margin-bottom: 80px;
  }
}
#single-event_main div {
  width: 100%;
  margin-bottom: 90px;
}
@media screen and (min-width: 769px) {
  #single-event_main div {
    max-width: 700px;
    margin-bottom: 100px;
  }
}
#single-event_main div p {
  font-size: 0.14rem;
}
@media screen and (min-width: 769px) {
  #single-event_main div p {
    font-size: 0.16rem;
  }
}
#single-event_main div a {
  text-decoration: underline;
  color: #0086da;
}
#single-event_main div figure {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  #single-event_main div figure {
    margin-top: 60px;
  }
}
#single-event_main div figure img {
  width: 100%;
  height: auto;
}
#single-event_main > a {
  background-color: #76716D;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  #single-event_main > a {
    width: 550px;
    height: 60px;
  }
}
#single-event_main > a > img {
  margin-right: 10px;
  width: 20px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #single-event_main aside {
    display: block;
    position: absolute;
    top: 100px;
    right: 0;
    width: 400px;
    padding-top: 50px;
  }
}
#single-event_main aside.end:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
#single-event_main aside.end:after {
  content: "このイベントは終了しました";
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  letter-spacing: 0;
  top: 0;
  left: 0;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  #single-event_main aside.end:after {
    font-size: 13px;
  }
}
#single-event_main aside dl {
  display: flex;
  font-size: 0.14rem;
  margin-bottom: 40px;
}
#single-event_main aside dl dt {
  width: 100%;
  max-width: 70px;
  font-weight: 700;
}
#single-event_main aside dl dd {
  display: flex;
}
#single-event_main aside a {
  display: block;
  background-color: #9D0000;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#single-event_main aside a img {
  width: 19px;
  height: auto;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  #single-event_main .sticky.fixed {
    display: none;
    top: 100px;
    right: calc((100% - 1200px) / 2);
    z-index: 1000;
  }
}

#eventform.embedded {
  padding-top: 100px;
}

.spEvnetformButton {
  display: none;
  background-color: #9D0000;
  width: calc(100% - 48px);
  height: 60px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 769px) {
  .spEvnetformButton {
    position: fixed;
    display: flex;
  }
}
.spEvnetformButton img {
  width: 19px;
  height: auto;
  margin-right: 10px;
}
@media screen and (max-width: 769px) {
  .spEvnetformButton {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    z-index: 100;
  }
}
.spEvnetformButton.hidden {
  opacity: 0;
  visibility: hidden;
}

/* =========================================================
   お知らせ一覧（page-news.php）
   ========================================================= */
.news-archive {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 96px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #464646;
}
@media screen and (min-width: 769px) {
  .news-archive {
    max-width: 1280px;
    padding: 0 60px;
    margin-bottom: 120px;
  }
}
.news-archive__hero {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  background: #efece6;
}
@media screen and (max-width: 769px) {
  .news-archive__hero {
    aspect-ratio: 16/9;
  }
}
.news-archive__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-tags {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 22px 0 6px;
}
@media screen and (min-width: 769px) {
  .news-tags {
    gap: 48px;
    margin: 28px 0 10px;
  }
}
.news-tags__label {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  letter-spacing: 0.1em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  .news-tags__label {
    font-size: 0.13rem;
  }
}
.news-tags__list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}
@media screen and (min-width: 769px) {
  .news-tags__list {
    gap: 10px 18px;
  }
}
.news-tags__list li {
  display: flex;
  align-items: baseline;
}
.news-tags__list li:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  color: #c8c4bd;
}
@media screen and (min-width: 769px) {
  .news-tags__list li:not(:last-child)::after {
    margin-left: 18px;
  }
}
.news-tags__item {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  letter-spacing: 0.06em;
  color: #595959;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s;
}
@media screen and (min-width: 769px) {
  .news-tags__item {
    font-size: 0.13rem;
  }
}
.news-tags__item:hover {
  color: #e3a52a;
}
.news-tags__item.is-active {
  color: #e3a52a;
  border-bottom: 1px solid #e3a52a;
}

.news-list {
  border-top: 1px solid #ded9d0;
}
.news-list__empty {
  padding: 40px 0;
  text-align: center;
  color: #8a857d;
  font-size: 0.12rem;
}

.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "meta  thumb" "main  thumb" "excerpt excerpt";
  column-gap: 16px;
  row-gap: 8px;
  padding: 22px 4px;
  border-bottom: 1px solid #ded9d0;
}
@media screen and (min-width: 769px) {
  .news-item {
    grid-template-columns: 150px minmax(0, 1.1fr) minmax(0, 1.2fr) 200px;
    grid-template-areas: "meta main excerpt thumb";
    align-items: start;
    column-gap: 32px;
    padding: 32px 8px;
  }
}
.news-item__meta {
  grid-area: meta;
}
@media screen and (min-width: 769px) {
  .news-item__meta {
    padding-top: 4px;
  }
}
.news-item__date {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.09rem;
  letter-spacing: 0.1em;
  color: #a8a39a;
}
@media screen and (min-width: 769px) {
  .news-item__date {
    font-size: 0.11rem;
  }
}
.news-item__new {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 0.1rem;
  letter-spacing: 0.06em;
  color: #333;
  margin-top: 6px;
}
@media screen and (min-width: 769px) {
  .news-item__new {
    font-size: 0.12rem;
    margin-top: 10px;
  }
}
.news-item__tv {
  display: inline-block;
  margin-top: 12px;
  width: 56px;
  transition: opacity 0.3s;
}
.news-item__tv:hover {
  opacity: 0.7;
}
.news-item__tv img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .news-item__tv {
    width: 64px;
  }
}
.news-item__main {
  grid-area: main;
}
.news-item__title {
  font-size: 0.13rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .news-item__title {
    font-size: 0.16rem;
  }
}
.news-item__title a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}
.news-item__title a:hover {
  opacity: 0.55;
}
.news-item__cat {
  display: inline-block;
  margin-top: 14px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.1em;
  color: rgb(230.555186722, 176.4273858921, 69.044813278);
}
@media screen and (min-width: 769px) {
  .news-item__cat {
    font-size: 0.12rem;
    margin-top: 22px;
  }
}
.news-item__excerpt {
  grid-area: excerpt;
}
@media screen and (min-width: 769px) {
  .news-item__excerpt {
    padding-top: 2px;
  }
}
.news-item__lead {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  line-height: 1.9;
  color: #6b665f;
}
@media screen and (min-width: 769px) {
  .news-item__lead {
    font-size: 0.13rem;
  }
}
.news-item__read {
  display: inline-block;
  margin-top: 12px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  letter-spacing: 0.08em;
  color: #595959;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .news-item__read {
    font-size: 0.13rem;
    margin-top: 18px;
  }
}
.news-item__read:hover {
  opacity: 0.55;
}
.news-item__thumb {
  grid-area: thumb;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #efece6;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .news-item__thumb {
    width: 200px;
  }
}
.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item__noimg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-indent: 0.22em;
  color: #b9b4ab;
}

.news-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.news-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-size: 0.12rem;
  color: #595959;
  text-decoration: none;
  border: 1px solid #ded9d0;
  transition: 0.3s;
}
.news-pager .page-numbers.current {
  background: #e3a52a;
  border-color: #e3a52a;
  color: #fff;
}
.news-pager .page-numbers:hover:not(.current) {
  background: #f2efe9;
}

#news-top {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #news-top {
    max-width: 1200px;
    padding: 0;
    margin: auto;
  }
}
#news-top h2 {
  font-size: 0.32rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
}
#news-top .post {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}
#news-top .post .news-post {
  border: 1px solid #404040;
  padding: 20px;
}
#news-top .post .news-post .categorys {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
#news-top .post .news-post .categorys .cate {
  background-color: #76716D;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  display: inline-block;
}
#news-top .post .news-post h3 {
  font-size: 21px;
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 20px;
}
#news-top .post .news-post a {
  display: flex;
  justify-content: end;
}
#news-top .post .news-post a img {
  margin-left: 20px;
  transition: 0.3s;
}
#news-top .post .news-post a:hover img {
  margin-left: 20px;
  transform: translate(5px, 0);
}

#column-top {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #column-top {
    max-width: 1200px;
    margin: auto;
  }
}
#column-top h2 {
  font-size: 0.32rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
}
@media screen and (min-width: 769px) {
  #column-top > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #column-top > div:before, #column-top > div:after {
    content: "";
    display: block;
    order: 1;
    width: calc((100% - 40px) / 3);
  }
}
#column-top > div a {
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #column-top > div a {
    width: calc((100% - 40px) / 3);
  }
}
#column-top > div a:hover {
  opacity: 0.5;
}
#column-top > div dl {
  margin-bottom: 60px;
}
#column-top > div dl dt {
  width: 100%;
  margin-bottom: 15px;
}
#column-top > div dl dt img {
  width: 100%;
  height: auto;
}
#column-top > div dl dd span {
  background-color: #595959;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 24px;
  font-size: 0.12rem;
  margin-bottom: 10px;
}
#column-top > div dl dd h3 {
  font-size: 0.18rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 10px;
  line-height: 1.5;
}
#column-top > div dl dd p {
  font-size: 0.14rem;
  margin-bottom: 30px;
}
#column-top > div dl dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  padding: 1.1em 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  z-index: 1;
}
#column-top > div dl dd a:before, #column-top > div dl dd a:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
  top: 0;
  width: 0;
  height: 100%;
  box-sizing: border-box;
}
#column-top > div dl dd a:before {
  right: 0;
  border: 1px solid #595959;
  border-left: 0;
  border-right: 0;
}
#column-top > div dl dd a:after {
  left: 0;
}
#column-top > div dl dd a:hover {
  transition-delay: 0.5s;
  color: #fff;
}
#column-top > div dl dd a:hover:before {
  transition-delay: 0s;
  width: 100%;
}
#column-top > div dl dd a:hover:after {
  background: #595959;
  transition-delay: 0.35s;
  width: 100%;
}
#column-top > div dl dd a:hover img {
  transition-delay: 0.55s;
  filter: brightness(10);
}
#column-top > div dl dd a img {
  width: 15px;
  height: auto;
  margin-left: 10px;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media screen and (min-width: 769px) {
  #column-top > div dl dd a img {
    width: 20px;
  }
}

#fot-top {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #fot-top {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px;
  }
}
#fot-top h2 {
  font-size: 0.32rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 40px 0;
  font-size: 0.2rem;
  margin: 0 20px 40px;
}
@media screen and (min-width: 769px) {
  #fot-top h2 {
    font-size: 0.42rem;
    margin: 70px 0 100px 0;
  }
}

#fot-chapter1 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #fot-chapter1 {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto 100px;
  }
}
#fot-chapter1 h2 {
  font-size: 0.24rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid #595959;
  margin-bottom: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fot-chapter1 h2 {
    font-size: 0.36rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
#fot-chapter1 h2 span {
  display: block;
  color: #666;
  font-size: 0.16rem;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  #fot-chapter1 h2 span {
    font-size: 0.2rem;
  }
}
#fot-chapter1 > img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #fot-chapter1 > img {
    width: 70%;
    display: block;
    margin: 0 auto 40px;
  }
}
#fot-chapter1 p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.15rem;
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  #fot-chapter1 p {
    font-size: 0.18rem;
    line-height: 3;
    margin-bottom: 0;
    text-align: center;
  }
}

#fm-chapter2 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto 100px;
  }
}
#fm-chapter2 h2 {
  font-size: 0.24rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  border-bottom: 1px solid #595959;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 12px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 h2 {
    font-size: 0.36rem;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
}
#fm-chapter2 h2 span {
  display: block;
  color: #666;
  font-size: 0.16rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 h2 span {
    font-size: 0.2rem;
  }
}
#fm-chapter2 .tab-menu {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-menu {
    margin-bottom: 40px;
    gap: 8px;
  }
}
#fm-chapter2 .tab-menu button {
  all: unset;
  border: 1px solid #000;
  letter-spacing: 0.05em;
  padding: 0.5em 1em;
  opacity: 0.5;
  transform: translate(0, 1px);
  border-radius: 4px 4px 0 0;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-menu button {
    font-size: 16px;
  }
}
#fm-chapter2 .tab-menu button.active {
  opacity: 1;
  border-bottom: 1px solid #fff;
}
#fm-chapter2 .tab-content {
  display: none;
}
#fm-chapter2 .tab-content.active {
  display: block;
}
#fm-chapter2 .tab-content > img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content > img {
    width: 70%;
    display: block;
    margin: 0 auto 60px;
  }
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content .flow-wrap {
    display: flex;
    gap: 40px;
  }
}
#fm-chapter2 .tab-content .flow-wrap figure {
  display: none;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content .flow-wrap figure {
    display: block;
  }
}
#fm-chapter2 .tab-content dl {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content dl {
    margin-bottom: 60px;
  }
}
#fm-chapter2 .tab-content dl dt {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  border-bottom: 1px solid #595959;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content dl dt {
    display: inline-block;
    font-size: 0.24rem;
  }
}
#fm-chapter2 .tab-content dl dt span {
  font-size: 0.18rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content dl dt span {
    font-size: 0.42rem;
    margin-right: 20px;
  }
}
#fm-chapter2 .tab-content dl dd {
  font-size: 0.15rem;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #fm-chapter2 .tab-content dl dd {
    font-size: 0.18rem;
    line-height: 3;
  }
}
#fm-chapter2 .renovation-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #404040;
  width: 300px;
  border-radius: 101px;
  height: 50px;
  font-weight: bold;
  gap: 10px;
  transition: 0.3s;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  #fm-chapter2 .renovation-link {
    transform: translate(180px, 0);
  }
}
#fm-chapter2 .renovation-link img {
  transform: rotate(-45deg);
}
#fm-chapter2 .renovation-link:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}

#fs-chapter3 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto 120px;
  }
}
#fs-chapter3 h2 {
  font-size: 0.24rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid #595959;
  margin-bottom: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 h2 {
    font-size: 0.36rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
#fs-chapter3 h2 span {
  display: block;
  color: #666;
  font-size: 0.16rem;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 h2 span {
    font-size: 0.2rem;
  }
}
#fs-chapter3 > img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 > img {
    width: 70%;
    display: block;
    margin: 0 auto 50px;
  }
}
#fs-chapter3 p {
  font-size: 0.15rem;
  margin-bottom: 20px;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 p {
    font-size: 0.18rem;
    margin-bottom: 50px;
    line-height: 2;
    text-align: center;
  }
}
#fs-chapter3 ul {
  margin-bottom: 20px;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 ul {
    line-height: 2;
    width: 400px;
    margin: 0 auto 50px;
  }
}
#fs-chapter3 ul li {
  font-size: 0.15rem;
}
@media screen and (min-width: 769px) {
  #fs-chapter3 ul li {
    font-size: 0.18rem;
  }
}
#fs-chapter3 .works-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #404040;
  width: 300px;
  border-radius: 101px;
  height: 50px;
  font-weight: bold;
  gap: 10px;
  transition: 0.3s;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  #fs-chapter3 .works-link {
    transform: translate(180px, 0);
  }
}
#fs-chapter3 .works-link:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}

#fs-chapter4 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 150px;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto 100px;
  }
}
#fs-chapter4 h2 {
  font-size: 0.24rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid #595959;
  margin-bottom: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 h2 {
    font-size: 0.36rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
#fs-chapter4 h2 span {
  display: block;
  color: #666;
  font-size: 0.16rem;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 h2 span {
    font-size: 0.2rem;
  }
}
#fs-chapter4 > img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 > img {
    width: 70%;
    display: block;
    margin: 0 auto 50px;
  }
}
#fs-chapter4 div {
  width: 100%;
  font-size: 0.14rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 div {
    font-size: 0.18rem;
    padding-left: 30px;
    margin-bottom: 50px;
  }
}
#fs-chapter4 div::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #595959;
}
#fs-chapter4 div::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  height: 100%;
  width: 1px;
  background-color: #595959;
}
#fs-chapter4 p {
  font-size: 0.15rem;
  margin-bottom: 20px;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #fs-chapter4 p {
    font-size: 0.18rem;
    margin-bottom: 50px;
    line-height: 2;
  }
}

#fa-chapter5 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 {
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto 120px;
  }
}
#fa-chapter5 > span {
  display: block;
  color: #666;
  font-size: 0.16rem;
  font-weight: 400;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 > span {
    font-size: 0.2rem;
  }
}
#fa-chapter5 h2 {
  font-size: 0.24rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid #595959;
  margin-bottom: 35px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 h2 {
    font-size: 0.36rem;
    padding-bottom: 20px;
    margin-bottom: 70px;
  }
}
#fa-chapter5 h2 span {
  font-size: 0.14rem;
  font-weight: 400;
  margin-left: 0;
  letter-spacing: 0;
  display: block;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 h2 span {
    font-size: 0.18rem;
    margin-left: 30px;
    display: inline-block;
  }
}
#fa-chapter5 dl {
  margin-bottom: 35px;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 dl {
    margin-bottom: 70px;
  }
}
#fa-chapter5 dl dt {
  width: 100%;
  font-size: 0.14rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 dl dt {
    font-size: 0.24rem;
    padding-left: 30px;
    margin-bottom: 50px;
  }
}
#fa-chapter5 dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #595959;
}
#fa-chapter5 dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  height: 100%;
  width: 1px;
  background-color: #595959;
}
#fa-chapter5 dl dd {
  padding-left: 15px;
  font-size: 0.13rem;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  #fa-chapter5 dl dd {
    padding-left: 30px;
    font-size: 0.16rem;
    line-height: 2.5;
  }
}

#eventform {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #eventform {
    max-width: 800px;
    margin: auto;
    padding: 0 0 150px 0;
    text-align: center;
  }
}
#eventform h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.28rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #eventform h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#eventform > p {
  margin-bottom: 2em;
}
#eventform .area {
  background-color: darkslategrey;
  color: #fff;
  padding: 1.5em 3em;
  display: inline-block;
  margin-bottom: 3em;
  text-align: left;
}
#eventform .note {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #eventform .note {
    width: 470px;
    margin: 0 auto 2em;
    text-align: left;
  }
}
#eventform .note a {
  text-decoration: underline;
}
#eventform .form dl {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #eventform .form dl {
    display: flex;
    text-align: left;
    gap: 30px;
    margin-bottom: 60px;
  }
}
#eventform .form dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #eventform .form dl dt {
    width: 200px;
    margin: 0;
  }
}
#eventform .form dl dt p {
  margin: 0;
}
@media screen and (min-width: 769px) {
  #eventform .form dl dd {
    width: calc(100% - 230px);
  }
}
#eventform .form dl dd .wpcf7-not-valid-tip {
  position: absolute;
  width: 100vw;
  max-width: 500;
}
#eventform .form dl dd p {
  margin: 0;
}
#eventform .form dl dd input {
  all: unset;
  padding: 4px 8px;
  background-color: #fff;
  height: 42px;
  width: 100%;
  max-width: 322px;
  border: 1px solid #76716D;
}
#eventform .form dl dd input:disabled {
  background-color: #EFEFEF;
}
#eventform .form dl dd input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  vertical-align: bottom;
}
#eventform .form dl dd input[name=zip] {
  width: 100px;
}
#eventform .form dl dd input[name=add1], #eventform .form dl dd input[name=add2] {
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #eventform .form dl dd input[name=add1] {
    margin-bottom: 10px;
  }
}
#eventform .form dl dd input[name=first-day], #eventform .form dl dd input[name=sec-day] {
  width: 180px;
  margin-right: 10px;
}
#eventform .form dl dd select {
  all: inherit;
  height: 52px;
  width: 80px;
  padding: 0 10px;
  border: 1px solid #76716D;
  display: inline-flex;
  align-items: center;
}
#eventform .form dl dd select[name=age] {
  width: 100px;
}
#eventform .form dl dd select[name=menu-578] {
  width: auto;
}
#eventform .form dl dd textarea {
  width: 100%;
}
#eventform .form dl dd input[type=radio] {
  all: inherit;
  border: 1px solid #262626;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  display: inline-block;
}
#eventform .form dl dd input[type=radio]:checked:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #262626;
  border-radius: 10px;
  position: absolute;
  left: 1px;
  top: 1px;
}
#eventform .form dl dd span[data-name=kind] > span,
#eventform .form dl dd span[data-name=kind2] > span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#eventform .form dl.required dt {
  display: flex;
  align-items: center;
  gap: 10px;
}
#eventform .form dl.required dt:before {
  content: "必須";
  background-color: #AD1212;
  color: #fff;
  font-size: 12px;
  padding: 1px 8px;
}
#eventform .form dl.optional dt {
  display: flex;
  align-items: center;
  gap: 10px;
}
#eventform .form dl.optional dt:before {
  content: "任意";
  background-color: #76716D;
  color: #fff;
  font-size: 12px;
  padding: 1px 8px;
}
#eventform .form input[type=submit] {
  all: unset;
  background-color: #76716D;
  width: 73%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 70px auto 0 auto;
  transition: 0.6s;
}
@media screen and (min-width: 769px) {
  #eventform .form input[type=submit] {
    font-size: 0.16rem;
    width: 380px;
    height: 60px;
  }
}
#eventform .form input[type=submit] img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  #eventform .form input[type=submit] img {
    width: 20px;
    margin-left: 10px;
  }
}
#eventform .form input[type=submit]:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}

.thanks > a {
  background-color: #76716D;
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  color: #fff;
  margin: 20px auto 0 auto;
  transition: 0.6s;
}
.thanks > a:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  background-color: #8A827C;
}

.reserveform {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 90px;
  text-align: left;
  scroll-margin-top: 110px;
}
@media screen and (min-width: 769px) {
  .reserveform {
    padding: 0 48px 120px;
    scroll-margin-top: 104px;
  }
}
.reserveform .reserveform__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.13rem;
  letter-spacing: 0.12em;
  color: #76716D;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}
.reserveform .reserveform__back:hover {
  opacity: 0.6;
}
.reserveform .reserveform__back .arw {
  font-size: 1.2em;
  line-height: 1;
}
.reserveform h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #46423c;
  font-size: 0.24rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
@media screen and (min-width: 769px) {
  .reserveform h2 {
    font-size: 0.3rem;
  }
}
.reserveform h2 .bar {
  margin: 0 0.28em;
  color: #b8b2a8;
  font-weight: 200;
}
.reserveform > p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #6f6a63;
  font-size: 0.13rem;
  line-height: 1.9;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  .reserveform > p {
    font-size: 0.14rem;
  }
}
.reserveform .reserveform__req {
  text-align: right;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  color: #8a857d;
  margin: 0 0 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d2ccc0;
}
@media screen and (min-width: 769px) {
  .reserveform .reserveform__req {
    font-size: 0.12rem;
  }
}
.reserveform .reserveform__note {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.11rem;
  line-height: 1.8;
  color: #8a857d;
  margin: -18px 0 30px;
}
.reserveform .reserveform__note a {
  color: #46423c;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .reserveform .reserveform__note {
    font-size: 0.12rem;
  }
}
.reserveform .form dl {
  margin: 0;
  padding: 0 0 30px;
}
@media screen and (min-width: 769px) {
  .reserveform .form dl {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 0 42px;
  }
}
.reserveform .form dl dt {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.15rem;
  letter-spacing: 0.08em;
  color: #46423c;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .reserveform .form dl dt {
    flex: 0 0 300px;
    margin: 0;
    padding-top: 18px;
  }
}
.reserveform .form dl dt p {
  display: inline;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .reserveform .form dl dd {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.reserveform .form dl.required dt p::after {
  content: "*";
  color: #b24a3f;
  margin-left: 0.35em;
  font-size: 0.9em;
}
.reserveform .form input[type=text],
.reserveform .form input[type=email],
.reserveform .form input[type=tel],
.reserveform .form input[type=number],
.reserveform .form input[type=date],
.reserveform .form textarea,
.reserveform .form select {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #d2ccc0;
  border-radius: 1px;
  padding: 17px 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #46423c;
  line-height: 1.6;
  transition: border-color 0.3s;
}
.reserveform .form input[type=text]:focus,
.reserveform .form input[type=email]:focus,
.reserveform .form input[type=tel]:focus,
.reserveform .form input[type=number]:focus,
.reserveform .form input[type=date]:focus,
.reserveform .form textarea:focus,
.reserveform .form select:focus {
  outline: none;
  border-color: #8a827a;
}
.reserveform .form input[type=text]::placeholder,
.reserveform .form input[type=email]::placeholder,
.reserveform .form input[type=tel]::placeholder,
.reserveform .form input[type=number]::placeholder,
.reserveform .form input[type=date]::placeholder,
.reserveform .form textarea::placeholder,
.reserveform .form select::placeholder {
  color: #aca597;
}
.reserveform .form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.9;
}
.reserveform .form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a827a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
@media screen and (min-width: 769px) {
  .reserveform .form select {
    max-width: 260px;
  }
}
.reserveform .form dl.namegrid dd p {
  display: flex;
  gap: 16px;
  margin: 0;
}
.reserveform .form dl.namegrid dd p .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
}
.reserveform .form dl.namegrid dd p input {
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 769px) {
  .reserveform .form dd input[type=tel] {
    max-width: 380px;
  }
}
.reserveform .form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.reserveform .form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.reserveform .form .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d2ccc0;
  padding: 14px 22px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.reserveform .form .wpcf7-radio label:hover {
  border-color: #8a827a;
}
.reserveform .form .wpcf7-radio label:has(input:checked) {
  border-color: #46423c;
  background: rgba(70, 66, 60, 0.05);
}
.reserveform .form .wpcf7-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #8a827a;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.reserveform .form .wpcf7-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #46423c;
  border-radius: 50%;
}
.reserveform .form .wpcf7-radio .wpcf7-list-item-label {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  letter-spacing: 0.04em;
  color: #46423c;
}
.reserveform .form .cond {
  display: none;
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #e0d9cd;
}
.reserveform .form .cond .cond__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #46423c;
  margin-bottom: 14px;
}
.reserveform .form .cond input[type=text] {
  max-width: 100%;
}
.reserveform .form .badge {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 11px;
  color: #fff;
  padding: 2px 8px;
  letter-spacing: 0.08em;
}
.reserveform .form .badge--req {
  background: #b24a3f;
}
.reserveform .form .badge--opt {
  background: #a49d92;
}
.reserveform .form .reserveform-agree {
  text-align: center;
  margin: 40px 0;
}
.reserveform .form .reserveform-agree .wpcf7-list-item {
  margin: 0;
}
.reserveform .form .reserveform-agree label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.reserveform .form .reserveform-agree .wpcf7-list-item-label {
  margin-left: 8px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #46423c;
}
.reserveform .form .reserveform-agree input[type=checkbox] {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  accent-color: #46423c;
}
.reserveform .form input[type=submit],
.reserveform .form .wpcf7-submit {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  background: #3f3b35;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.15rem;
  letter-spacing: 0.16em;
  padding: 20px;
  cursor: pointer;
  transition: background 0.4s;
}
.reserveform .form input[type=submit]:hover,
.reserveform .form .wpcf7-submit:hover {
  background: #5a544b;
}
.reserveform .form .wpcf7-not-valid-tip {
  color: #b24a3f;
  font-size: 0.11rem;
  margin-top: 6px;
  display: block;
}
.reserveform .form .wpcf7-response-output {
  margin: 24px auto 0;
  max-width: 480px;
  padding: 12px 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  text-align: center;
}
.reserveform .form .only-reno {
  display: none;
}
.reserveform .form form.is-reno .only-new {
  display: none;
}
.reserveform .form form.is-reno .only-reno {
  display: block;
}
.reserveform .form .zip-note {
  display: block;
  margin-top: 6px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.1rem;
  color: #8a857d;
}

/* ===== お客様の声 一覧（トップの voice を参考にカードで並べる） ===== */
#voice-archive {
  width: 100%;
  padding: 50px 0 70px;
}
@media screen and (min-width: 769px) {
  #voice-archive {
    padding: 70px 0 110px;
  }
}
#voice-archive .voice-head {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #voice-archive .voice-head {
    margin-bottom: 56px;
  }
}
#voice-archive .voice-head h2 {
  font-weight: 200;
  font-size: 0.12rem;
  letter-spacing: 0.25em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #voice-archive .voice-head h2 {
    font-size: 0.22rem;
  }
}
#voice-archive .voice-head h2 .en {
  letter-spacing: 0.5em;
  padding-right: 0.2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#voice-archive .voice-head h2 .sep {
  margin: 0 0.35em 0 0.15em;
  color: #595959;
}
#voice-archive .voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  #voice-archive .voice-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
    padding: 0 40px;
  }
}
#voice-archive .voice-card {
  display: block;
  text-decoration: none;
  color: #595959;
}
#voice-archive .voice-card__img {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
}
#voice-archive .voice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
#voice-archive .voice-card:hover .voice-card__img img {
  transform: scale(1.06);
}
#voice-archive .voice-card__meta {
  margin-top: 14px;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #voice-archive .voice-card__meta {
    font-size: clamp(11px, 0.95vw, 15px);
  }
}
#voice-archive .voice-empty {
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  color: #76716D;
  padding: 40px 20px;
}

/* ===== お客様の声 詳細 ===== */
#voice-single {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
@media screen and (min-width: 769px) {
  #voice-single {
    padding: 60px 40px 120px;
  }
}
#voice-single .voice-single__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-single__head {
    margin-bottom: 80px;
  }
}
#voice-single .voice-single__ttl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 200;
  font-size: 0.2rem;
  letter-spacing: 0.2em;
  color: #595959;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-single__ttl {
    font-size: 0.28rem;
  }
}
#voice-single .voice-block {
  margin-bottom: 56px;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block {
    display: flex;
    align-items: center;
    gap: 6%;
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block--rev {
    flex-direction: row-reverse;
  }
}
#voice-single .voice-block__img {
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block__img {
    flex: 0 0 46%;
    margin-bottom: 0;
  }
}
#voice-single .voice-block__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block__body {
    flex: 1 1 0;
  }
}
#voice-single .voice-block__q {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.14rem;
  letter-spacing: 0.06em;
  color: #595959;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block__q {
    font-size: 0.15rem;
  }
}
#voice-single .voice-block__a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 769px) {
  #voice-single .voice-block__a {
    font-size: 0.13rem;
  }
}
#voice-single .voice-single__link {
  text-align: center;
  margin: 20px 0 0;
}
#voice-single .voice-single__link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #595959;
  border: 1px solid #c8c4bd;
  padding: 12px 28px;
  transition: 0.3s;
}
#voice-single .voice-single__link a:hover {
  background: #595959;
  color: #fff;
  border-color: #595959;
}
#voice-single .voice-single__back {
  text-align: center;
  margin-top: 40px;
}
#voice-single .voice-single__back a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  color: #8a857d;
}
#voice-single .voice-single__back a .arw {
  margin-right: 6px;
}
#voice-single .voice-single__back a:hover {
  color: #595959;
}

#privacy-policy-main {
  width: 100%;
  padding: 0 20px 70px;
}
@media screen and (min-width: 769px) {
  #privacy-policy-main {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px 100px 80px;
  }
}
#privacy-policy-main h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.24rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #privacy-policy-main h2 {
    font-size: 0.42rem;
    margin-bottom: 60px;
  }
}
#privacy-policy-main h3 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 0.21rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 60px;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  #privacy-policy-main h3 {
    font-size: 0.24rem;
    margin-bottom: 42px;
  }
}
#privacy-policy-main p {
  margin-bottom: 1em;
}
#privacy-policy-main ul {
  padding-left: 2em;
  margin-bottom: 1em;
}
#privacy-policy-main ul li {
  list-style-type: decimal;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.inview {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s;
}

.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}
