@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:root {
  --width-tablet: $width_tablet;
  --width-desktop: $width_desktop;
  --width-wide: $width_wide;
  /* --- Colors --- */
  --color-primary: #766854;
  --color-text-main: #231815;
  --color-white: #fff;
  --color-accent: #e60012;
  /* --- Fonts --- */
  --font-family-serif: 'Shippori Mincho', serif;
  /* --- Spacing --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-3l: 48px;
  --space-4l: 64px;
  /* --- Typography --- */
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2.0rem;
  --font-size-2xl: 2.6rem;
  --font-size-3xl: 3.2rem;
  --font-size-4xl: 5.6rem;
  /* --- Container --- */
  --container-sm: 800px;
  --container-md: 1024px;
  --container-lg: 1400px;
}

@media screen and (min-width: 768px) {
  :root {
    /* --- Spacing --- */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 22px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-3l: 96px;
    --space-4l: 128px;
  }
}
html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-serif);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-feature-settings: "halt";
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

.main {
  overflow: hidden;
}

.container {
  width: 100%;
  padding-inline: 2rem;
  margin: 0 auto;
  max-width: calc(var(--container-md) + 8rem);
}
@media screen and (min-width: 768px) {
  .container {
    padding-inline: 4rem;
  }
}
.container--min {
  max-width: calc(var(--container-sm) + 8rem);
}
.container--wide {
  max-width: calc(var(--container-lg) + 8rem);
}

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

.text-right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .text-right--mtnon {
    text-align: left;
  }
}

.textlink {
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .textlink {
    transition: 0.2s ease-out;
  }
  .textlink:hover {
    opacity: 0.6;
  }
}

.btn-wrap {
  display: block;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .btn-wrap {
    margin-top: 4rem;
  }
}
.btn-wrap--center {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background: #fff;
  border: 1px solid #000;
  padding: 1.3rem 0;
  transition: 0.2s ease-out;
}
.btn::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e902";
  margin-left: 1.5rem;
  position: relative;
  z-index: 2;
  transition: 0.2s ease-out;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .btn:hover {
    color: #fff;
  }
  .btn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.btn--inline {
  width: auto;
  padding-inline: 2rem;
}

.c-section {
  position: relative;
  padding: 4rem 0 7rem;
  overflow: hidden;
}
.c-section--fixed {
  margin-inline: -2rem;
  width: calc(100% + 4rem);
}
@media screen and (min-width: 768px) {
  .c-section--fixed {
    margin-inline: -4rem;
    width: calc(100% + 8rem);
  }
}
@media screen and (min-width: 1100px) {
  .c-section--fixed {
    width: 100vw;
    margin-inline: calc((100vw - 1024px) / -2);
  }
}
.c-section--text-wt {
  color: #fff;
}
.c-section--bg {
  background: #F3F3F3;
}

/* --- Section Header --- */
.c-section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.c-section-header__bg {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  color: #D9D9D9;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-section-header__bg {
    font-size: 7rem;
  }
}
.c-section-header__main {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .c-section-header__main {
    font-size: 2.4rem;
  }
}
.c-section-header--inverse .c-section-header__bg {
  color: #F3F3F3;
  opacity: 0.2;
}
.c-section-header--inverse .c-section-header__main {
  color: #fff;
}

/* --- Media List --- */
.c-media-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.c-media-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media screen and (min-width: 768px) {
  .c-media-list__item {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px) {
  .c-media-list__item {
    gap: 3rem 8rem;
  }
}
.c-media-list__img {
  width: 100%;
}
.c-media-list__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.c-media-list__title {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-media-list__title {
    font-size: 2rem;
  }
}
.c-media-list__title {
  margin-bottom: var(--space-md);
}
.c-media-list__text {
  font-weight: 500;
}
.c-media-list__full {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-media-list__full {
    grid-column: 1/3;
  }
}

/* --- Grid List --- */
.c-grid-list {
  display: grid;
  gap: 6.5rem;
}
@media screen and (min-width: 768px) {
  .c-grid-list {
    gap: 3.2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Basic Card --- */
.c-card {
  display: block;
}
.c-card__img {
  width: 100%;
  height: auto;
  margin-bottom: var(--space-sm);
}
.c-card__title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}
.c-card__text {
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.c-card__link {
  position: relative;
  font-size: 1.6rem;
  text-decoration: underline;
  padding-left: 4rem;
}
@media screen and (min-width: 1100px) {
  .c-card__link {
    transition: 0.2s ease-out;
  }
  .c-card__link:hover {
    opacity: 0.6;
  }
}
.c-card__link::before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e903";
  font-size: 150%;
  line-height: 1;
  display: block;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
}

.row {
  --gap-x: 0;
  --gap-y: 0;
  display: flex;
  flex-wrap: wrap;
}
.row__item {
  width: 100%;
}
.row__item--mobile-1 {
  width: 8.3333333333%;
}
.row__item--mobile-2 {
  width: 16.6666666667%;
}
.row__item--mobile-3 {
  width: 25%;
}
.row__item--mobile-4 {
  width: 33.3333333333%;
}
.row__item--mobile-5 {
  width: 41.6666666667%;
}
.row__item--mobile-6 {
  width: 50%;
}
.row__item--mobile-7 {
  width: 58.3333333333%;
}
.row__item--mobile-8 {
  width: 66.6666666667%;
}
.row__item--mobile-9 {
  width: 75%;
}
.row__item--mobile-10 {
  width: 83.3333333333%;
}
.row__item--mobile-11 {
  width: 91.6666666667%;
}
.row__item--mobile-12 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .row__item--tablet-1 {
    width: 8.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-2 {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-3 {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-4 {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-5 {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-6 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-7 {
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-8 {
    width: 66.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-9 {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-10 {
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-11 {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .row__item--tablet-12 {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-1 {
    width: 8.3333333333%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-2 {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-3 {
    width: 25%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-4 {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-5 {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-6 {
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-7 {
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-8 {
    width: 66.6666666667%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-9 {
    width: 75%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-10 {
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-11 {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-12 {
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-1 {
    width: 8.3333333333%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-2 {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-3 {
    width: 25%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-4 {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-5 {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-6 {
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-7 {
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-8 {
    width: 66.6666666667%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-9 {
    width: 75%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-10 {
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-11 {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 1400px) {
  .row__item--wide-12 {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .row__item--desktop-five {
    width: 20%;
  }
}
.row--min {
  margin: -6px;
}
@media screen and (min-width: 768px) {
  .row--min {
    margin: -6px -4px;
  }
}
.row--min .row__item {
  padding: 6px;
}
@media screen and (min-width: 768px) {
  .row--min .row__item {
    padding: 6px 4px;
  }
}
.row--std {
  margin: -20px -10px;
}
@media screen and (min-width: 768px) {
  .row--std {
    margin: -20px;
  }
}
.row--std .row__item {
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .row--std .row__item {
    padding: 20px;
  }
}
.row--wide {
  margin: -20px;
}
@media screen and (min-width: 768px) {
  .row--wide {
    margin: -40px;
  }
}
.row--wide .row__item {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .row--wide .row__item {
    padding: 40px;
  }
}
.row--center {
  justify-content: center;
}
.row--align-center {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .row--tab-re {
    flex-direction: row-reverse;
  }
  .row--tab-re .row__item:first-child {
    padding-left: 6rem;
  }
}
.row--refine {
  margin: 0;
}
.row--refine .row__item {
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .row--refine .row__item:nth-child(2n)::before {
    content: "";
    width: 3px;
    position: absolute;
    display: block;
    top: 0;
    bottom: 3px;
    left: 0;
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .row--refine .row__item:not(:first-child)::before {
    content: "";
    width: 3px;
    position: absolute;
    display: block;
    top: 0;
    bottom: 3px;
    left: 0;
    background: #fff;
  }
}

.grid {
  --gap: var(--space-md);
  display: grid;
  gap: var(--gap);
  margin-block: 2em 1em;
}
.grid--gap-sm {
  --gap: var(--space-sm);
}
.grid--gap-lg {
  --gap: var(--space-lg);
}
@media screen and (min-width: 1100px) {
  .grid--columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .grid--columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--autofill {
  grid-template-columns: repeat(auto-fill, minmax(var(--card-width), 1fr));
}
.grid--has-subgrid > * {
  display: grid;
  grid-template-rows: subgrid;
}
.grid--subgrid-row-span-4 > * {
  grid-row: span 4;
}

/*********************/
/*  ヘッダー  */
/*********************/
.header {
  z-index: 1000;
  width: 100%;
  transition: 0.2s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
@media screen and (max-width: 1099px) {
  .header {
    background: transparent;
  }
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__body {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .header__body {
    height: 98px;
  }
}
.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  .header__logo {
    transition: 0.2s ease-out;
  }
  .header__logo:hover {
    opacity: 0.6;
  }
}
.header__img {
  width: 73px;
  height: auto;
}
@media screen and (min-width: 1100px) {
  .header__img {
    width: 139px;
  }
}
@media screen and (max-width: 1099px) {
  .header__img--bk {
    display: none;
  }
}
.header__img--wt {
  display: none;
}
@media screen and (max-width: 1099px) {
  .header__img--wt {
    display: block;
  }
}
@media screen and (max-width: 1099px) {
  .header__contact {
    display: none;
  }
}
.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .header__nav {
    display: none;
  }
}
.header--open .header__img--wt {
  display: none !important;
}
.header--open .header__img--bk {
  display: block !important;
}
.header--active {
  background: #fff !important;
}
.header--active .header__img--wt {
  display: none !important;
}
.header--active .header__img--bk {
  display: block !important;
}
.header--active .menu-btn::after {
  color: #000 !important;
}
.header--active .menu-btn__line {
  background: #000 !important;
}
.header--active .gnav-list__link {
  color: #000 !important;
}

.gnav-list {
  display: flex;
  gap: 20px;
}
.gnav-list__item {
  position: relative;
}
.gnav-list__link {
  display: block;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 1100px) {
  .gnav-list__link {
    transition: 0.2s ease-out;
  }
  .gnav-list__link:hover {
    opacity: 0.6;
  }
}
.gnav-list__child {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.gnav-list__item:hover .gnav-list__child {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gnav-list__trigger {
  display: none;
}

.home .header {
  background: none;
}
.home .header__img--bk {
  display: none;
}
.home .header__img--wt {
  display: block;
}
.home .header .menu-btn::after {
  color: #fff;
}
.home .header .menu-btn__line {
  background: #fff;
}
.home .header .gnav-list__link {
  color: #fff;
}

.single-works .header {
  background: #fff;
}
.single-works .header__img--bk {
  display: block;
}
.single-works .header__img--wt {
  display: none;
}
.single-works .header .menu-btn::after {
  color: #000;
}
.single-works .header .menu-btn__line {
  background: #000;
}
.single-works .header .gnav-list__link {
  color: #000;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 9rem 0 2rem;
  background: var(--color-white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 99;
  transition: opacity 0.4s ease-out;
}
.menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu__btn {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: center;
  align-items: center;
}

.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-list__item {
  position: relative;
  transition: 0.2s ease-out;
  border-bottom: 1px solid #D9D9D9;
  max-width: 500px;
  width: 100%;
}
.menu-list__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  padding: 1.6rem 2.7rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
}
.menu-list__link::after {
  font-family: "icomoon";
  font-weight: 700;
  content: "\e904";
  font-size: 1.6rem;
}
.menu-list__child {
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease;
}
.menu-list__child-inner {
  overflow: hidden;
}
.trigger--open + .menu-list__child {
  grid-template-rows: 1fr;
}
.menu-list__trigger {
  position: absolute;
  top: 0;
  right: 0;
}

.trigger {
  display: grid;
  place-items: center;
  place-content: center;
  width: 4rem;
  height: 4rem;
}
.trigger::before {
  content: "+";
}
.trigger--open::before {
  content: "-";
}

.menu-btn {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 1100px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn::after {
  content: "MENU";
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 1099px) {
  .menu-btn::after {
    color: #fff;
  }
}
.menu-btn__line {
  position: absolute;
  display: block;
  right: 8px;
  height: 1px;
  transition: 0.2s ease-out;
  background: #000;
}
@media screen and (max-width: 1099px) {
  .menu-btn__line {
    background: #fff;
  }
}
.menu-btn__line:nth-child(1) {
  top: 11px;
  width: 30px;
}
.menu-btn__line:nth-child(2) {
  top: 19px;
  width: 18px;
}
.menu-btn[aria-expanded=true]::after {
  content: "CLOSE";
  color: #000 !important;
}
.menu-btn[aria-expanded=true] .menu-btn__line {
  background: #000 !important;
}
.menu-btn[aria-expanded=true] .menu-btn__line:nth-child(1) {
  top: 19px;
  transform: rotate(20deg);
}
.menu-btn[aria-expanded=true] .menu-btn__line:nth-child(2) {
  transform: rotate(-20deg);
  width: 30px;
}

/*********************/
/*  フッター  */
/*********************/
.footer {
  position: relative;
}
.footer__main {
  padding: 5.6rem 0 1.5rem;
  position: relative;
}
.footer__bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: #f3f3f3;
}
.footer__video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .footer__video--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__video--pc {
    display: none;
  }
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 320px;
    margin: 0 auto;
    gap: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .footer__left {
    width: 50%;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__right {
    width: 50%;
  }
}
.footer__logo {
  margin-bottom: 1rem;
  display: inline-block;
}
@media screen and (min-width: 1100px) {
  .footer__logo {
    transition: 0.2s ease-out;
  }
  .footer__logo:hover {
    opacity: 0.6;
  }
}
.footer__logo img {
  width: 313px;
  height: auto;
}
.footer__address {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .footer__address {
    display: inline-block;
    width: 100%;
    max-width: 313px;
  }
}
.footer__tel-link {
  display: inline-block;
  position: relative;
  padding-left: 4rem;
  color: #000;
  margin-top: 3.5rem;
}
@media screen and (min-width: 1100px) {
  .footer__tel-link {
    transition: 0.2s ease-out;
  }
  .footer__tel-link:hover {
    opacity: 0.6;
  }
}
.footer__tel-link::before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e900";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3rem;
  transform: rotate(10deg);
}
.footer__tel {
  display: block;
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
}
.footer__hours {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  margin-top: 1rem;
}
.footer__copyright {
  font-size: 1.2rem;
  color: var(--color-text-main);
  display: block;
  text-align: center;
  margin-top: 3.8rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 11rem;
  }
}

.fnav-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem 4rem;
}
@media screen and (min-width: 768px) {
  .fnav-list {
    grid-template-columns: repeat(4, auto);
    max-width: fit-content;
    padding-left: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .fnav-list__item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .fnav-list__item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .fnav-list__item:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .fnav-list__item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .fnav-list__item:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .fnav-list__item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .fnav-list__item:nth-child(7) {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
.fnav-list__link {
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-block;
  color: #000;
}
@media screen and (min-width: 1100px) {
  .fnav-list__link {
    transition: 0.2s ease-out;
  }
  .fnav-list__link:hover {
    opacity: 0.6;
  }
}

/* --- Bottom CTA --- */
.bottom-cta {
  display: flex;
  flex-direction: column;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .bottom-cta {
    flex-direction: row;
  }
}
.bottom-cta__item {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .bottom-cta__item {
    width: 50%;
    padding: 7rem 0;
  }
}
.bottom-cta__item::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 2;
}
@media screen and (min-width: 1100px) {
  .bottom-cta__item:nth-child(1) {
    justify-content: flex-end;
    padding-right: 9rem;
  }
}
@media screen and (min-width: 1100px) {
  .bottom-cta__item:nth-child(2) {
    justify-content: flex-start;
    padding-left: 9rem;
  }
}
.bottom-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s;
}
.bottom-cta__content {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .bottom-cta__content {
    font-size: 1.6rem;
  }
}
.bottom-cta__title {
  font-size: 3.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .bottom-cta__title {
    display: none;
  }
}
.bottom-cta__subtitle {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .bottom-cta__subtitle {
    display: none;
  }
}
.bottom-cta__btn {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .bottom-cta__btn {
    margin-top: 4.5rem;
  }
}

/*********************/
/*  TOP  */
/*********************/
/* --- Hero (Main) --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-lg);
}
.hero__title {
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 10px #000;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 4.8rem;
    line-height: 1.5;
  }
}
.hero__sub {
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  text-shadow: 0 0 8px #000;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .hero__sub {
    font-size: 2.4rem;
  }
}
.hero__bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
@media screen and (min-width: 768px) {
  .hero__video--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero__video--pc {
    display: none;
  }
}
.hero__sub-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__sub-title {
    font-size: 3.2rem;
  }
}
.hero--sub {
  height: 36vw;
  min-height: 136px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero--sub::after {
  display: none;
}
@media screen and (min-width: 1100px) {
  .hero--sub {
    margin-top: 98px;
    height: 300px;
  }
}
.hero--simple {
  background: #F3F3F3;
  margin-top: 48px;
  height: 43px;
  min-height: auto;
}
@media screen and (min-width: 768px) {
  .hero--simple {
    height: 88px;
  }
}
@media screen and (min-width: 1100px) {
  .hero--simple {
    margin-top: 98px;
  }
}
.hero--simple .hero__sub-title {
  color: #000;
}

/* --- Intro --- */
.intro {
  position: relative;
  padding: 9.5rem 0 5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .intro {
    padding: 12rem 0 13rem;
  }
}
.intro__bg-text {
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 8rem;
  font-weight: 500;
  line-height: 0.7;
  color: #988A76;
  white-space: nowrap;
  opacity: 0.15;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .intro__bg-text {
    font-size: 15rem;
  }
}
.intro__heading {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2.2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .intro__heading {
    font-size: 2rem;
  }
}
.intro__text {
  text-align: center;
  font-size: var(--font-size-sm);
  line-height: 2.2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .intro__text {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

/* --- Block Section --- */
.block-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
  padding: 16rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .block-section {
    justify-content: flex-start;
    padding: 10rem 0;
  }
}
.block-section__bg-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 4.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .block-section__bg-title {
    font-size: 10rem;
    top: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .block-section__bg-title span {
    display: block;
  }
}
.block-section__card {
  position: relative;
  z-index: 2;
  background-color: rgba(26, 26, 26, 0.95);
  color: var(--color-white);
  padding: 4.3rem 2.5rem 6.3rem;
  width: 90%;
  max-width: 560px;
}
@media screen and (min-width: 768px) {
  .block-section__card {
    padding: 7rem;
  }
}
.block-section--order {
  background-image: url("../images/top-order-bg_sp.webp");
}
@media screen and (min-width: 768px) {
  .block-section--order {
    justify-content: flex-start;
    background-image: url("../images/top-order-bg_pc.webp");
  }
}
@media screen and (min-width: 768px) {
  .block-section--order .block-section__card {
    margin-left: 4rem;
  }
}
@media screen and (min-width: 1100px) {
  .block-section--order .block-section__card {
    margin-left: 12rem;
  }
}
.block-section--order .block-section__bg-title {
  text-align: right;
}
.block-section--subdivision {
  margin-top: 9.5rem;
  background-image: url("../images/top-subdivision-bg_sp.webp");
}
@media screen and (min-width: 768px) {
  .block-section--subdivision {
    margin-top: 15.6rem;
    justify-content: flex-end;
    background-image: url("../images/top-subdivision-bg_pc.webp");
  }
}
@media screen and (min-width: 768px) {
  .block-section--subdivision .block-section__card {
    margin-right: 4rem;
  }
}
@media screen and (min-width: 1100px) {
  .block-section--subdivision .block-section__card {
    margin-right: 12rem;
  }
}
.block-section--subdivision .block-section__bg-title {
  text-align: left;
}

/* --- Card Content --- */
.card-content__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .card-content__title {
    font-size: 3.6rem;
  }
}
.card-content__desc {
  font-size: 1.4rem;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .card-content__desc {
    font-size: 1.6rem;
  }
}
.card-content__btn {
  text-align: center;
  margin-top: 3.3rem;
}
@media screen and (min-width: 768px) {
  .card-content__btn {
    text-align: left;
  }
}

/* --- Buttons --- */
.c-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 235px;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-white);
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  background: transparent;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.c-btn-outline::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  z-index: 1;
}
.c-btn-outline span {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn-outline {
    font-size: 1.8rem;
    max-width: 310px;
  }
}
@media screen and (min-width: 1100px) {
  .c-btn-outline:hover {
    color: #000;
  }
  .c-btn-outline:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.c-btn-outline::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  position: relative;
  z-index: 2;
}

.c-btn-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 235px;
  padding: var(--space-md) var(--space-lg);
  background-color: #000;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: var(--font-size-sm);
  gap: 20px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-btn-fill {
    font-size: 1.8rem;
    max-width: 310px;
  }
}
@media screen and (min-width: 1100px) {
  .c-btn-fill:hover {
    color: var(--color-text-main);
  }
  .c-btn-fill:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.c-btn-fill::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  position: relative;
  z-index: 2;
}
.c-btn-fill::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #988A76;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  z-index: 1;
}
.c-btn-fill span {
  position: relative;
  z-index: 2;
}
.c-btn-fill--simple {
  justify-content: center;
}
.c-btn-fill--simple::after {
  display: none;
}
.c-btn-fill--wt {
  background: #fff;
  color: #000;
  justify-content: center;
}

.c-btn-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  height: 60px;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  border: 1px solid #333;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-btn-wide {
    font-size: 1.8rem;
  }
}
.c-btn-wide:hover {
  background-color: #333;
}

/* --- Works --- */
.works {
  padding: 6rem 4rem;
  background: #F3F3F3;
  margin-top: 8rem;
  position: relative;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .works {
    padding: 10rem 0;
    background: none;
    margin-top: 14rem;
    margin-left: 4rem;
  }
}
.works__bg-title {
  font-size: 4.8rem;
  color: #988A76;
  font-weight: 500;
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: -2.4rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .works__bg-title {
    font-size: 10rem;
    top: -3rem;
  }
}
.works__btn {
  text-align: center;
  margin-top: 4.4rem;
}
@media screen and (min-width: 768px) {
  .works .splide {
    margin-left: 4rem;
  }
}
.works .splide__arrows {
  position: absolute;
  top: calc(37.5% - 2rem);
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .works .splide__arrows {
    top: 16rem;
  }
}
.works .splide__arrow {
  background: none;
  border-radius: 0;
  width: 4rem;
  height: 4rem;
  opacity: 1;
}
.works .splide__arrow--prev {
  left: -4rem;
}
@media screen and (min-width: 768px) {
  .works .splide__arrow--prev {
    left: -6rem;
  }
}
.works .splide__arrow--prev::before {
  transform: rotateY(180deg);
}
.works .splide__arrow--next {
  right: -4rem;
}
@media screen and (min-width: 768px) {
  .works .splide__arrow--next {
    right: -6rem;
  }
}
.works .splide__arrow svg {
  display: none;
}
.works .splide__arrow::before {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  font-size: 2rem;
  color: #000;
}

/* --- News --- */
.news {
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 10rem 0;
  }
}
.news__more {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .news__more {
    margin-top: 5rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title__en {
  display: block;
  font-size: 4.8rem;
  color: #988A76;
  opacity: 0.15;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 9.6rem;
  }
}
.section-title__ja {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 3.6rem;
  }
}
.section-title--min .section-title__en {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .section-title--min .section-title__en {
    font-size: 7rem;
  }
}

.post-type-page {
  padding: 4rem 0 7.5rem;
}
@media screen and (min-width: 768px) {
  .post-type-page {
    padding: 8.5rem 0 14rem;
  }
}
.post-type-page p {
  font-weight: 500;
  line-height: 2;
}
.post-type-page p:not(:first-child) {
  margin-top: 1rem;
}

.h20 {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .h20 {
    font-size: 2rem;
  }
}

.h24 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .h24 {
    font-size: 2.4rem;
  }
}
.h24--line {
  border-bottom: 1px solid #A4A4A4;
  padding-bottom: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .h24--line {
    padding-bottom: 1.7rem;
  }
}

.copy-text {
  margin-top: 2rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

.bg-img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  z-index: -1;
}

.sub-intro {
  text-align: center;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-intro {
    padding-bottom: 10rem;
  }
}
.sub-intro__desc {
  line-height: 2.3;
  letter-spacing: 0.1em;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-intro__desc {
    margin-top: 4rem;
  }
}

.sub-quality,
.sub-strong-point,
.sub-design,
.sub-warranty,
.sub-properties,
.sub-company,
.sub-access {
  margin: 8rem 0;
}

.tabs {
  border: 1px solid #000;
}
.tabs input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

/* フォーカス状態（キーボード操作時） */
#tab1:focus-visible ~ .tabs-inner label[for=tab1],
#tab2:focus-visible ~ .tabs-inner label[for=tab2],
#tab3:focus-visible ~ .tabs-inner label[for=tab3] {
  outline: 2px solid #A59AC9;
  outline-offset: 2px;
}

.tab-labels {
  display: flex;
}

.tab-label {
  flex: 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  background: #F3F3F3;
  border-bottom: 1px solid #000;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tab-label span {
    display: block;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .tab-label {
    font-size: 2rem;
  }
}
.tab-label:not(:last-child) {
  border-right: 1px solid #000;
}
@media screen and (min-width: 1100px) {
  .tab-label:hover {
    background: #000;
    color: #fff;
  }
}

.tab-contents > div {
  display: none;
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .tab-contents > div {
    padding: 5rem;
  }
}

/* チェックされたタブのラベルのスタイル */
#tab1:checked ~ .tabs-inner label[for=tab1],
#tab2:checked ~ .tabs-inner label[for=tab2],
#tab3:checked ~ .tabs-inner label[for=tab3] {
  background: #000;
  color: #fff;
}

/* チェックされたタブの内容を表示 */
#tab1:checked ~ .tabs-inner .content-tab1,
#tab2:checked ~ .tabs-inner .content-tab2,
#tab3:checked ~ .tabs-inner .content-tab3 {
  display: block;
}

.company-list {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ccc;
  font-weight: 500;
}
.company-list__row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding: var(--space-lg) 0;
}
@media screen and (min-width: 768px) {
  .company-list__row {
    flex-direction: row;
  }
}
.company-list dt {
  margin-bottom: var(--space-sm);
}
@media screen and (min-width: 768px) {
  .company-list dt {
    width: 30%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .company-list dd .company-list dd {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .company-list .ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(7, 1fr);
    grid-auto-flow: column;
    gap: 2rem 4rem;
  }
}
@media screen and (min-width: 1100px) {
  .company-list .ul {
    gap: 2rem 8rem;
  }
}

.policy-intro {
  margin-bottom: var(--space-xl);
}

.policy-article__title {
  font-family: var(--font-family-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid #ddd;
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 768px) {
  .policy-article__title {
    font-size: 2rem;
  }
}
.policy-article__text {
  text-align: justify;
}
.policy-article__text:not(:last-child) {
  margin-bottom: var(--space-md);
}
.policy-article:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .policy-article:not(:last-child) {
    margin-bottom: 8rem;
  }
}

.policy-list {
  padding-left: 1.5em;
  list-style-type: decimal;
  margin-bottom: var(--space-md);
}
.policy-list li {
  margin-bottom: var(--space-xs);
}

.policy-sublist {
  padding-left: 1.5em;
  list-style-type: lower-alpha;
  margin-top: var(--space-xs);
}

.policy-sublist--roman {
  list-style-type: lower-roman;
}

.single-head {
  margin-bottom: 3rem;
}
.single-head__time {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .single-head__time {
    font-size: 1.6rem;
  }
}
.single-head__meta {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.single-head__address {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .single-head__address {
    font-size: 1.5rem;
  }
}
.single-head .h24 {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .single-head .h24 {
    margin-top: 2rem;
  }
}

.refine {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 768px) {
  .refine {
    margin-bottom: 8.7rem;
  }
}
.refine__btn {
  display: block;
  background: #E6E6E6;
  color: #000;
  text-align: center;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 3px solid #000;
}
@media screen and (min-width: 768px) {
  .refine__btn {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px) {
  .refine__btn {
    transition: 0.2s ease-out;
  }
  .refine__btn:hover {
    background: #000;
    color: #fff;
  }
}
.refine__btn--active {
  background: #000;
  color: #fff;
}

.single-slider #main-carousel figcaption {
  margin-top: 1rem;
}
.single-slider #main-carousel .slide-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
}
.single-slider #main-carousel .slide-img-wrap img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.single-slider #thumbnail-carousel {
  margin-top: 3.7rem;
}
@media screen and (min-width: 768px) {
  .single-slider #thumbnail-carousel {
    margin-top: 6rem;
  }
}
.single-slider #thumbnail-carousel .slide-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .single-slider #thumbnail-carousel .slide-img-wrap {
    padding-bottom: 75%;
  }
}
.single-slider #thumbnail-carousel .slide-img-wrap img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.single-slider #thumbnail-carousel .splide__slide {
  transition: 0.2s ease-out;
}
.single-slider #thumbnail-carousel .splide__arrow {
  opacity: 1;
  background: none;
}
.single-slider #thumbnail-carousel .splide__arrow--prev {
  left: -2rem;
}
@media screen and (min-width: 768px) {
  .single-slider #thumbnail-carousel .splide__arrow--prev {
    left: -3rem;
  }
}
.single-slider #thumbnail-carousel .splide__arrow--next {
  right: -2rem;
}
@media screen and (min-width: 768px) {
  .single-slider #thumbnail-carousel .splide__arrow--next {
    right: -3rem;
  }
}

.single-content {
  margin-top: 3.7rem;
}
@media screen and (min-width: 768px) {
  .single-content {
    margin-top: 7.5rem;
  }
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#modal.is-open {
  display: flex;
}
#modal .splide {
  width: 90%;
  max-width: 1400px;
}
@media screen and (min-width: 768px) {
  #modal .splide {
    width: 70%;
  }
}
@media screen and (min-width: 1100px) {
  #modal .splide {
    width: 60%;
  }
}
#modal .splide .slide-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
}
#modal .splide .slide-img-wrap img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
#modal .splide figcaption {
  color: #000;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
}
#modal .splide__arrow {
  flex-shrink: 0;
  opacity: 1;
  background: none;
  width: 4rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  #modal .splide__arrow {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (min-width: 1100px) {
  #modal .splide__arrow {
    transition: 0.2s ease-out;
  }
  #modal .splide__arrow:hover {
    opacity: 0.5 !important;
  }
}
#modal .splide__arrow svg {
  width: 3rem;
  height: 3rem;
  fill: #fff;
}
#modal .splide__arrow--prev {
  left: -2rem;
}
@media screen and (min-width: 768px) {
  #modal .splide__arrow--prev {
    left: -6rem;
  }
}
#modal .splide__arrow--next {
  right: -2rem;
}
@media screen and (min-width: 768px) {
  #modal .splide__arrow--next {
    right: -6rem;
  }
}
#modal #close {
  position: absolute;
  top: -4rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  #modal #close {
    right: -4rem;
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__play {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  background: #ccc;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.7;
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  height: 2em;
  width: 2em;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  background: #fff;
  z-index: 1;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: #0bf 3px solid;
    outline-offset: -3px;
  }
}
.splide__slide:focus-visible {
  /* IE does not support outline-offset */
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: #0bf 3px solid;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: #0bf 3px solid;
    outline-offset: -3px;
  }
}
.splide.is-focus-in .splide__slide:focus {
  /* IE does not support outline-offset */
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: #0bf 3px solid;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%, 0);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotateZ(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotateZ(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.works-card {
  position: relative;
}
@media screen and (min-width: 1100px) {
  .works-card:hover .works-card__image img {
    transform: scale(1.1);
  }
}
.works-card__image {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}
.works-card__image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  transition: 0.2s ease-out;
}
.works-card__category {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 2rem;
  background: #fff;
  border: 1px solid #838383;
  margin-top: 2rem;
}
.works-card__category--estate {
  background: #E6E6E6;
}
.works-card__category--renovation {
  background: #838383;
  color: #fff;
}
.works-card__address {
  font-weight: 500;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .works-card__address {
    display: inline-block;
    margin: 0 0 0 1rem;
    font-size: 1.5rem;
  }
}
.works-card__post-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1.8;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .works-card__post-title {
    font-size: 1.8rem;
  }
}
.works-card__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 15px;
}
@media screen and (min-width: 768px) {
  .works-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 34px;
  }
}

.news-card {
  border-bottom: 1px solid #ddd;
  padding: 3rem 0;
}
.news-card__link {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
@media screen and (min-width: 768px) {
  .news-card__link {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1100px) {
  .news-card__link {
    transition: 0.2s ease-out;
  }
  .news-card__link:hover {
    opacity: 0.6;
  }
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
@media screen and (min-width: 768px) {
  .news-card__meta {
    min-width: 220px;
  }
}
.news-card__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-main);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .news-card__date {
    font-size: 1.6rem;
  }
}
.news-card__tag, .single-head__ctg {
  border: 1px solid #838383;
  padding: 0 10px;
  font-size: 1.3rem;
  color: var(--color-text-main);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news-card__tag, .single-head__ctg {
    font-size: 1.6rem;
  }
}
.news-card__title {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    font-size: 1.6rem;
    margin: 0;
  }
}

.estate-card {
  position: relative;
}
@media screen and (min-width: 1100px) {
  .estate-card {
    transition: 0.2s ease-out;
  }
  .estate-card:hover .estate-card__img img {
    transform: scale(1.1);
  }
  .estate-card:hover .btn {
    color: #fff;
  }
  .estate-card:hover .btn::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.estate-card__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.estate-card__img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.56%;
  overflow: hidden;
}
.estate-card__img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  transition: 0.2s ease-out;
}
.estate-card__content {
  margin-top: 1rem;
}
.estate-card__price {
  font-weight: 500;
}
.estate-card__price span {
  font-size: 137%;
  font-weight: 600;
  margin-right: 0.5rem;
}
.estate-card .btn {
  margin-top: 1.5rem;
  pointer-events: none;
}

/*  パンくず  */
.breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1rem;
  list-style: none;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .breadcrumb__list {
    font-size: 1.4rem;
  }
}
.breadcrumb__item {
  color: #000;
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item:not(:first-child):before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  position: relative;
  display: inline-block;
  margin: 0 2rem;
  font-size: 1rem;
  flex-shrink: 0;
}
.breadcrumb__item:not(:last-child) {
  flex-shrink: 0;
}
.breadcrumb__item:last-child {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child a {
  pointer-events: none;
}
.breadcrumb__link {
  color: #000;
  padding: 1rem 0;
}
@media screen and (min-width: 1100px) {
  .breadcrumb__link {
    transition: 0.2s ease-out;
  }
  .breadcrumb__link:hover {
    opacity: 0.5;
  }
}
/*  ページ送り  */
.pager-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .pager-list {
    gap: 37px;
    margin-top: 13rem;
  }
}
.pager-list__item {
  list-style: none;
  position: relative;
}
.pager-list__link {
  display: block;
  width: 60px;
  height: 48px;
  line-height: 46px;
  text-align: center;
  font-weight: 500;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .pager-list__link {
    width: 74px;
    height: 54px;
    line-height: 52px;
  }
}
.pager-list__link--number {
  border: 1px solid #000;
  font-size: 1.4rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .pager-list__link--number {
    font-size: 1.6rem;
  }
}
.pager-list__link--prev::before {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  transform: rotateY(180deg);
}
.pager-list__link--next::before {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
}
.pager-list__link--active {
  background: #000;
  color: #fff;
  pointer-events: none;
}
@media screen and (min-width: 1100px) {
  .pager-list__link {
    transition: 0.2s ease-out;
  }
  .pager-list__link:hover {
    opacity: 0.4;
  }
}

.single-pager-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .single-pager-list {
    gap: 37px;
    margin-top: 13rem;
  }
}
.single-pager-list__item {
  list-style: none;
  position: relative;
}
.single-pager-list__link {
  display: block;
  padding: 0 22px;
  height: 48px;
  line-height: 46px;
  border: 1px solid #000;
  text-align: center;
  font-weight: 500;
  transition: 0.2s ease-out;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .single-pager-list__link {
    padding: 0 38px;
    height: 54px;
    line-height: 52px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px) {
  .single-pager-list__link {
    transition: 0.2s ease-out;
  }
  .single-pager-list__link:hover {
    opacity: 0.6;
  }
}
.single-pager-list__link--prev {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .single-pager-list__link--prev {
    gap: 2rem;
  }
}
.single-pager-list__link--prev::before {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  transform: rotateY(180deg);
}
.single-pager-list__link--prev::after {
  content: "前へ";
}
@media screen and (min-width: 768px) {
  .single-pager-list__link--prev::after {
    content: "前の記事";
  }
}
.single-pager-list__link--next {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .single-pager-list__link--next {
    gap: 1.5rem;
  }
}
.single-pager-list__link--next::before {
  content: "次へ";
}
@media screen and (min-width: 768px) {
  .single-pager-list__link--next::before {
    content: "次の記事";
  }
}
.single-pager-list__link--next::after {
  display: inline-block;
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
}

/*********************/
/*  ページトップボタン　 */
/*********************/
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #000;
  border: 1px solid #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
  transform: translateY(25px);
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 36px;
    height: 36px;
    bottom: 10px;
    right: 10px;
    transform: translateY(18px);
  }
}
.page-top::before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e905";
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page-top::before {
    font-size: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .page-top {
    transition: 0.2s opacity ease-out;
  }
  .page-top:hover {
    opacity: 0.6;
  }
}

/**************************/
/*  書き方パーツ調整用クラス  */
/**************************/
/*表示・非表示 切り替え用 */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .tab-only {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .tab-only {
    display: none;
  }
}

@media screen and (max-width: 1099px) {
  .pc-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .tab-none {
    display: none;
  }
}

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

/* margin-top スマホ */
@media screen and (max-width: 767px) {
  .sp-mt0 {
    margin-top: 0;
  }
  .sp-mt10 {
    margin-top: 1rem;
  }
  .sp-mt20 {
    margin-top: 2rem;
  }
  .sp-mt30 {
    margin-top: 3rem;
  }
  .sp-mt40 {
    margin-top: 4rem;
  }
  .sp-mt50 {
    margin-top: 5rem;
  }
  .sp-mt60 {
    margin-top: 6rem;
  }
  .sp-mt70 {
    margin-top: 7rem;
  }
  .sp-mt80 {
    margin-top: 8rem;
  }
  .sp-mt90 {
    margin-top: 9rem;
  }
  .sp-mt100 {
    margin-top: 10rem;
  }
  .sp-mt110 {
    margin-top: 11rem;
  }
  .sp-mt120 {
    margin-top: 12rem;
  }
  .sp-mt130 {
    margin-top: 13rem;
  }
  .sp-mt140 {
    margin-top: 14rem;
  }
  .sp-mt150 {
    margin-top: 15rem;
  }
  .sp-mt200 {
    margin-top: 20rem;
  }
}
/* margin-top タブレット */
@media screen and (min-width: 768px) {
  .tab-mt0 {
    margin-top: 0;
  }
  .tab-mt10 {
    margin-top: 1rem;
  }
  .tab-mt20 {
    margin-top: 2rem;
  }
  .tab-mt30 {
    margin-top: 3rem;
  }
  .tab-mt40 {
    margin-top: 4rem;
  }
  .tab-mt50 {
    margin-top: 5rem;
  }
  .tab-mt60 {
    margin-top: 6rem;
  }
  .tab-mt70 {
    margin-top: 7rem;
  }
  .tab-mt80 {
    margin-top: 8rem;
  }
  .tab-mt90 {
    margin-top: 9rem;
  }
  .tab-mt100 {
    margin-top: 10rem;
  }
  .tab-mt110 {
    margin-top: 11rem !important;
  }
  .tab-mt120 {
    margin-top: 12rem !important;
  }
  .tab-mt130 {
    margin-top: 13rem !important;
  }
  .tab-mt140 {
    margin-top: 14rem !important;
  }
  .tab-mt150 {
    margin-top: 15rem !important;
  }
  .tab-mt200 {
    margin-top: 20rem !important;
  }
}
/* margin-top パソコン */
@media screen and (min-width: 1100px) {
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mt10 {
    margin-top: 1rem;
  }
  .pc-mt20 {
    margin-top: 2rem;
  }
  .pc-mt30 {
    margin-top: 3rem;
  }
  .pc-mt40 {
    margin-top: 4rem;
  }
  .pc-mt50 {
    margin-top: 5rem;
  }
  .pc-mt60 {
    margin-top: 6rem;
  }
  .pc-mt70 {
    margin-top: 7rem;
  }
  .pc-mt80 {
    margin-top: 8rem;
  }
  .pc-mt90 {
    margin-top: 9rem;
  }
  .pc-mt100 {
    margin-top: 10rem;
  }
}
/* margin-bottom スマホ */
@media screen and (max-width: 767px) {
  .sp-mb0 {
    margin-bottom: 0;
  }
  .sp-mb10 {
    margin-bottom: 1rem;
  }
  .sp-mb20 {
    margin-bottom: 2rem;
  }
  .sp-mb30 {
    margin-bottom: 3rem;
  }
  .sp-mb40 {
    margin-bottom: 4rem;
  }
  .sp-mb50 {
    margin-bottom: 5rem;
  }
  .sp-mb60 {
    margin-bottom: 6rem;
  }
  .sp-mb70 {
    margin-bottom: 7rem;
  }
  .sp-mb80 {
    margin-bottom: 8rem;
  }
  .sp-mb90 {
    margin-bottom: 9rem;
  }
  .sp-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom タブレット */
@media screen and (min-width: 768px) {
  .tab-mb0 {
    margin-bottom: 0;
  }
  .tab-mb10 {
    margin-bottom: 1rem;
  }
  .tab-mb20 {
    margin-bottom: 2rem;
  }
  .tab-mb30 {
    margin-bottom: 3rem;
  }
  .tab-mb40 {
    margin-bottom: 4rem;
  }
  .tab-mb50 {
    margin-bottom: 5rem;
  }
  .tab-mb60 {
    margin-bottom: 6rem;
  }
  .tab-mb70 {
    margin-bottom: 7rem;
  }
  .tab-mb80 {
    margin-bottom: 8rem;
  }
  .tab-mb90 {
    margin-bottom: 9rem;
  }
  .tab-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom パソコン */
@media screen and (min-width: 1100px) {
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mb10 {
    margin-bottom: 1rem;
  }
  .pc-mb20 {
    margin-bottom: 2rem;
  }
  .pc-mb30 {
    margin-bottom: 3rem;
  }
  .pc-mb40 {
    margin-bottom: 4rem;
  }
  .pc-mb50 {
    margin-bottom: 5rem;
  }
  .pc-mb60 {
    margin-bottom: 6rem;
  }
  .pc-mb70 {
    margin-bottom: 7rem;
  }
  .pc-mb80 {
    margin-bottom: 8rem;
  }
  .pc-mb90 {
    margin-bottom: 9rem;
  }
  .pc-mb100 {
    margin-bottom: 10rem;
  }
}
/* letter-spacing */
.ls10 {
  letter-spacing: 0.01em;
}

.ls20 {
  letter-spacing: 0.02em;
}

.ls30 {
  letter-spacing: 0.03em;
}

.ls40 {
  letter-spacing: 0.04em;
}

.ls50 {
  letter-spacing: 0.05em;
}

.ls60 {
  letter-spacing: 0.06em;
}

.ls70 {
  letter-spacing: 0.07em;
}

.ls80 {
  letter-spacing: 0.08em;
}

.ls90 {
  letter-spacing: 0.09em;
}

.ls100 {
  letter-spacing: 0.1em;
}

.ls110 {
  letter-spacing: 0.11em;
}

.ls120 {
  letter-spacing: 0.12em;
}

.ls130 {
  letter-spacing: 0.13em;
}

.ls140 {
  letter-spacing: 0.14em;
}

.ls150 {
  letter-spacing: 0.15em;
}

.ls160 {
  letter-spacing: 0.16em;
}

.ls170 {
  letter-spacing: 0.17em;
}

.ls180 {
  letter-spacing: 0.18em;
}

.ls190 {
  letter-spacing: 0.19em;
}

.ls200 {
  letter-spacing: 0.2em;
}

/* line-height */
.lh10 {
  line-height: 1;
}

.lh11 {
  line-height: 1.1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}

.lh18 {
  line-height: 1.8;
}

.lh19 {
  line-height: 1.9;
}

.lh20 {
  line-height: 2;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-center {
  text-align: center;
}
.img-center img {
  display: inline-block;
}

.img-link {
  display: inline-block;
}
@media screen and (min-width: 1100px) {
  .img-link {
    transition: 0.2s ease-out;
  }
  .img-link:hover {
    opacity: 0.6;
  }
}

:focus:not(:focus-visible) {
  outline: 0;
}

.alignleft,
.alignright,
.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto;
}

@media screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 2em 0 0;
  }
}

@media screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 0 2em;
  }
}

img.aligncenter {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  img.aligncenter {
    margin: 2em auto;
  }
}

.gmap-wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin-top: 2rem;
  overflow: hidden;
}
.gmap-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lazy {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s 0.3s ease-out;
}
.lazy--inview {
  transform: translateY(0);
  opacity: 1;
}

.screen-reader-text {
  display: none;
}

@media screen and (min-width: 1100px) {
  .wp-block-group--grid-wide {
    grid-column: 1/3;
  }
}
.wp-block-group--grid-wide:not(:first-child) {
  border-top: 1px solid #D9D9D9;
  padding-top: 3rem;
  margin-top: 2rem;
}
@media screen and (min-width: 1100px) {
  .wp-block-group--grid-wide:not(:first-child) {
    padding-top: 4rem;
    margin-top: 3rem;
  }
}

.snow-monkey-form-wrap {
  border-radius: 10px;
  background: #F6F6F6;
  padding: 1.8rem 2.3rem 5.5rem;
}
@media screen and (min-width: 768px) {
  .snow-monkey-form-wrap {
    padding: 2.2rem 7rem 9rem;
  }
}

.snow-monkey-form {
  display: block;
}
.snow-monkey-form ::-webkit-input-placeholder {
  color: #626161;
}
.snow-monkey-form ::-moz-placeholder {
  color: #626161;
  opacity: 1;
}
.snow-monkey-form :-ms-input-placeholder {
  color: #626161;
}
.snow-monkey-form .small {
  margin-top: 0 !important;
}
.snow-monkey-form .small--mt {
  margin-top: 1rem !important;
}
.snow-monkey-form input[type=date] {
  line-height: 1.68;
}

.smf-item {
  position: relative;
  padding: 2.2rem 0 2.7rem;
}
@media screen and (min-width: 768px) {
  .smf-item {
    padding: 4.3rem 0;
  }
}
.smf-item:not(:last-child) {
  border-bottom: 1px solid #A4A4A4;
}
@media screen and (min-width: 768px) {
  .smf-item {
    display: flex;
    flex-wrap: wrap;
  }
}
.smf-item__col--label {
  margin-bottom: 0.7rem;
}
@media screen and (min-width: 768px) {
  .smf-item__col--label {
    margin-bottom: 0;
    width: 35%;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1100px) {
  .smf-item__col--label {
    width: 25%;
    padding-right: 3rem;
  }
}
.smf-item__col--label .smf-item__label__text {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .smf-item__col--label .smf-item__label__text {
    font-size: 1.6rem;
  }
}
.smf-item__col--label .smf-item__label__text strong {
  display: inline-block;
  color: #720000;
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .smf-item__col--label .smf-item__label__text strong {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .smf-item__col--controls {
    width: 65%;
  }
}
@media screen and (min-width: 1100px) {
  .smf-item__col--controls {
    width: 75%;
  }
}
.smf-item__controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.smf-item__controls strong {
  display: inline-block;
  background: #E5004F;
  border-radius: 3px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 5px;
  flex-shrink: 0;
  margin-left: 2rem;
  vertical-align: text-top;
}
.smf-item--2column .smf-item__col--controls .smf-item__controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .smf-item--2column .smf-item__col--controls .smf-item__controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 2rem 4rem;
  }
}
.smf-item--head .smf-item__col--controls .smf-item__controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .smf-item--head .smf-item__col--controls .smf-item__controls > .wp-block-group > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 1rem 4rem;
  }
  .smf-item--head .smf-item__col--controls .smf-item__controls > .wp-block-group > .wp-block-group__inner-container .form-sub-title {
    grid-column: 1/3;
  }
}
.smf-item--flex .smf-item__col--controls .smf-item__controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .smf-item--flex .smf-item__col--controls .smf-item__controls {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 4rem;
  }
}
.smf-item--flex .smf-checkboxes-control .smf-checkbox-control {
  margin-bottom: 0;
}
.smf-item--many-check .smf-item__col--label {
  margin-bottom: 1rem;
}
.smf-item--many-check .smf-checkboxes-control__control {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0 3rem;
}
.smf-item--privacy {
  text-align: center;
}
.smf-item--privacy .smf-placeholder {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .smf-item--privacy .smf-item__col--label {
    width: 0;
  }
  .smf-item--privacy .smf-item__col--controls {
    width: 100%;
  }
}
.smf-item--radio-flex .smf-radio-buttons-control__control {
  display: flex;
  gap: 2rem 4rem;
  flex-wrap: wrap;
}
.smf-item--radio-flex .smf-radio-buttons-control .smf-label + .smf-label {
  margin: 0 !important;
}
.smf-item__description {
  font-size: 1.4rem !important;
  margin-top: 1rem !important;
  color: var(--color-font) !important;
}
@media screen and (min-width: 1100px) {
  .smf-item__description {
    margin-top: 3rem !important;
  }
}

.smf-checkboxes-control__control {
  display: flex;
  flex-direction: column;
}
.smf-checkboxes-control .smf-checkbox-control {
  margin-bottom: 1rem;
  gap: 0 0.8rem;
}
.smf-checkboxes-control .smf-checkbox-control__label {
  font-size: 1.6rem;
}
.smf-checkboxes-control .smf-checkbox-control__control {
  width: 17px;
  height: 17px;
  border: 1px solid #000;
  background: transparent;
  margin-top: 6px;
  border-radius: 0;
}
.smf-checkboxes-control .smf-checkbox-control__control:checked {
  background: #000;
  border-color: #000;
}
@media screen and (min-width: 1100px) {
  .smf-checkboxes-control .smf-checkbox-control {
    transition: 0.2s ease-out;
  }
  .smf-checkboxes-control .smf-checkbox-control:hover {
    opacity: 0.6;
  }
}

.smf-radio-buttons-control .smf-label + .smf-label {
  margin-top: 0.5rem !important;
}
@media screen and (min-width: 768px) {
  .smf-radio-buttons-control__control {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 3rem;
  }
}

.smf-radio-button-control {
  align-items: center !important;
  gap: 0 1rem !important;
}
.smf-radio-button-control__control {
  width: 14px !important;
  height: 14px !important;
  border: 1px solid #000 !important;
  margin-top: 0 !important;
}
.smf-radio-button-control__control:checked {
  border-color: #000 !important;
  background: #fff !important;
}
.smf-radio-button-control__control:checked:before {
  width: 8px !important;
  height: 8px !important;
  left: 2px !important;
  top: 2px !important;
  background: #000 !important;
}
@media screen and (min-width: 1100px) {
  .smf-radio-button-control {
    transition: 0.2s ease-out;
  }
  .smf-radio-button-control:hover {
    opacity: 0.6;
  }
}

.smf-text-control__control,
.smf-select-control__control,
.smf-textarea-control__control {
  width: 100% !important;
  box-shadow: none !important;
  border-color: #B8B8B8 !important;
  border-radius: 8px !important;
  padding: 1.5rem 1.6rem !important;
}

.smf-select-control {
  width: 100%;
  display: block;
}
.smf-select-control__control {
  padding: 1.5rem 3rem 1.5rem 1.6rem !important;
}
.smf-select-control__toggle::before {
  width: 10px !important;
  height: 10px !important;
  right: 15px !important;
  border-color: var(--color-font);
}

.pref-select .smf-select-control {
  width: 61%;
}

.zip-wrap > div {
  display: flex;
}
.zip-wrap > div .smf-placeholder:nth-child(1) {
  width: 30%;
  max-width: 117px;
  position: relative;
  margin-right: 3.3rem;
}
.zip-wrap > div .smf-placeholder:nth-child(1)::after {
  content: "－";
  display: inline-block;
  font-size: 1.6rem;
  position: absolute;
  top: 1rem;
  right: -2.5rem;
}
.zip-wrap > div .smf-placeholder:nth-child(2) {
  width: 40%;
  max-width: 151px;
}

.smf-error-messages {
  white-space: nowrap;
}

.smf-action {
  text-align: center;
}

.smf-button-control {
  text-align: center;
}
.smf-button-control__control {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.1em;
  padding: 0 1.6rem !important;
  text-align: center !important;
  width: 235px !important;
  height: 54px !important;
  line-height: 54px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 0 !important;
  text-align: left !important;
  border-color: #000 !important;
}
@media screen and (min-width: 768px) {
  .smf-button-control__control {
    font-size: 1.8rem !important;
    width: 309px !important;
    height: 75px !important;
    line-height: 75px !important;
    padding: 0 2rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .smf-button-control__control {
    transition: 0.2s ease-out !important;
  }
  .smf-button-control__control:hover {
    background: #fff !important;
    color: #000 !important;
  }
  .smf-button-control__control:hover::after {
    color: #000 !important;
  }
}
.smf-button-control__control::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e904";
  flex-shrink: 0;
  transition: 0.2s ease-out;
}

.confirm-view {
  display: none;
}

.form-hr {
  display: block;
  border-top: 1px solid #D9D9D9;
  margin: 2.8rem 0 1.5rem !important;
}

@media screen and (min-width: 1100px) {
  .width50 .smf-text-control {
    width: calc(50% - 2rem);
  }
}

.label-text .smf-control-description {
  color: #000;
  font-size: 14px;
  margin: 0 0 2rem;
}

@media screen and (min-width: 1100px) {
  .label-head {
    grid-column: 1/3;
  }
}

.footer-comment {
  margin-top: 2.5rem !important;
}
@media screen and (min-width: 768px) {
  .footer-comment {
    text-align: center;
  }
}

.snow-monkey-form[data-screen=confirm] .hiduke-select .smf-control-description {
  display: inline-block !important;
}
.snow-monkey-form[data-screen=confirm] .confirm-view {
  display: block;
}
.snow-monkey-form[data-screen=confirm] .confirm-none,
.snow-monkey-form[data-screen=confirm] .small,
.snow-monkey-form[data-screen=confirm] .footer-comment,
.snow-monkey-form[data-screen=confirm] .smf-item--privacy,
.snow-monkey-form[data-screen=confirm] .smf-item__col--label .smf-item__label__text strong,
.snow-monkey-form[data-screen=confirm] .form-privacy-policy {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .wp-block-group__inner-container > p:not([class]) {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .smf-action {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .snow-monkey-form[data-screen=confirm] .smf-action {
    margin-top: 6.7rem;
  }
}
.snow-monkey-form[data-screen=confirm] .smf-item--2column .smf-item__col--controls .smf-item__controls {
  flex-direction: row;
  justify-content: flex-start;
}
.snow-monkey-form[data-screen=confirm] .smf-item--daytime .smf-item__col--controls .smf-item__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}
@media screen and (min-width: 1100px) {
  .snow-monkey-form[data-screen=confirm] .smf-item--daytime .smf-item__col--controls .smf-item__controls {
    gap: 4rem;
  }
}
.snow-monkey-form[data-screen=confirm] .smf-item--confirm-ad .smf-item__col--controls .smf-item__controls {
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}
.snow-monkey-form[data-screen=confirm] .smf-item--place .smf-item__controls {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}
.snow-monkey-form[data-screen=confirm] .smf-item--place .smf-item__controls .wp-block-group:first-child {
  width: 100%;
}
.snow-monkey-form[data-screen=confirm] .zip-wrap > div .smf-placeholder:nth-child(1),
.snow-monkey-form[data-screen=confirm] .zip-wrap > div .smf-placeholder:nth-child(2) {
  width: auto;
  margin: 0;
}
.snow-monkey-form[data-screen=confirm] .zip-wrap > div .smf-placeholder:nth-child(1)::after,
.snow-monkey-form[data-screen=confirm] .zip-wrap > div .smf-placeholder:nth-child(2)::after {
  position: relative;
  top: 0;
  right: 0;
  line-height: 1;
}
.snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control + .smf-button-control {
  margin: 0;
}
.snow-monkey-form[data-screen=confirm] .smf-action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .snow-monkey-form[data-screen=confirm] .smf-action {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}
.snow-monkey-form[data-screen=confirm] .wp-block-group.width50 {
  display: block;
  width: 100%;
}
.snow-monkey-form[data-screen=confirm] .form-sub-title strong {
  display: none;
}

.smf-complete-content {
  margin-top: 5rem;
}

.c-form__issue__box {
  display: none;
}

.snow-monkey-form[data-screen=complete] + .footer-comment {
  display: none;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?vg6ec6");
  src: url("../fonts/icomoon.eot?vg6ec6#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?vg6ec6") format("truetype"), url("../fonts/icomoon.woff?vg6ec6") format("woff"), url("../fonts/icomoon.svg?vg6ec6#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}