@charset "UTF-8";
/*
normalize
BASE
LAYOUT
MODULE
STATUS

header
footer
loading

HOVER
MODAL
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}
body {
  margin: 0
}
main {
  display: block
}
h1 {
  font-size: 2em;
  margin: .67em 0
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}
pre {
  font-family: monospace, monospace;
  font-size: 1em
}
a {
  background-color: transparent
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted
}
b, strong {
  font-weight: bolder
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em
}
small {
  font-size: 80%
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
img {
  border-style: none
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}
button, input {
  overflow: visible
}
button, select {
  text-transform: none;
}
[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0
}
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText
}
fieldset {
  padding: .35em .75em .625em
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
details {
  display: block
}
summary {
  display: list-item
}
template {
  display: none
}
[hidden] {
  display: none
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
ul, ol {
  padding: 0;
  list-style: none;
}
/*****************************************************
BASE*/ :root {
  --main-color: #202020;
  --txt-color: #202020;
  --link-color: var(--txt-color);
  --hover-txt-color: #8c8371;
  --line-color: #D8CDCD;
  /* Reference block size*/
  --main-max-width: 1920px;
  --reference-block-size: 120px;
  --size-ultra-high: calc(var(--reference-block-size)*1.7); /*204*/
  --size-ex-high: calc(var(--reference-block-size)*1.26); /*152*/
  --size-high: var(--reference-block-size);
  --size-ex-md: calc(var(--reference-block-size)*0.8); /*96*/
  --size-md: calc(var(--reference-block-size)*0.6); /*72*/
  --size-md-low: calc(var(--reference-block-size)*0.5); /*60*/
  --size-low: calc(var(--reference-block-size)*0.3); /*40*/
  --size-ex-low: calc(var(--reference-block-size)*0.2); /*24*/
  --size-3rem: calc(3rem - 0.5rem); /*48*/
  --size-2rem: calc(2rem - 0.5rem); /*32*/
  --size-1rem: calc(2rem - 0.5rem);
  ; /*16*/
  --size-05rem: .5rem; /*8*/
  /* sp 70%	*/
  --size-rate: .6;
  /*BTN*/
  --btn-radius: 40px;
  --btn-color-1: var(--main-color);
  --btn-color-2: #E4E6E4;
  /* setting	*/
  --master-font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,sans-serif;
  --transition-ease-out: 0.2s ease-out;
  --leading-trim: calc((1em - 1lh) / 2);
  /*BG*/
  --bg-primary-color: #E4E6E4;
  --bg-secondary-color: #ccc;
  /*hero*/
  --overlay-color: rgba(33, 33, 33, 0.3);
  --overlay-hover-color: rgba(33, 33, 33, 0.64);
  --hdr--height: 0;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr--height);
}
body {
  color: var(--txt-color);
  font-family: var(--master-font-family);
  width: 100%;
  position: relative;
  line-height: 2;
  letter-spacing: .05em;
  font-weight: 400;
  font-size: 1rem;
  line-break: strict;
}
a:link, a:visited {
  color: var(--txt-color);
  text-decoration: none;
  /*  transition: color .2s ease-out;*/
}
a:hover {
  color: var(--hover-txt-color);
}
a[href^="tel:"] {
  pointer-events: none;
}
p {
  margin-bottom: 2em;
}
p:last-child {
  margin-bottom: 0;
}
h1, h2, h3, h4 {
  font-weight: 500;
  font-size: 0;
  margin: 0;
  padding: 0;
}
img, svg, video {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.strng, strong {
  font-weight: 500;
}
picture {
  display: block;
}
.radius img {
  border-radius: var(--btn-radius);
}
/*****************************************************
LAYOUT*/
.wrp {
  width: 100%;
  position: relative;
}
.l-w-100 {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.l-w-master {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  position: relative;
  max-width: 1920px;
  /* overflow: hidden; */
}
.l-w-80 {
  width: 80%;
}
.l-w-60 {
  width: 60%;
}
.l-w-55 {/*contact*/
  width: 55%;
}
.l-w-50 {
  width: 50%;
}
.l-w-45 {
  width: 45%;
}
.l-w-40 {
  width: 40%;
}
.l-w-30 {
  width: 30%;
}
.l-w-20 {
  width: 20%;
}
.l-flex-wrp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-flex-wrp-c {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.l-flex-wrp-s {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.l-flex-wrp-end {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
.float-l {
  float: left;
}
.float-r {
  float: right;
}
.sticky {
  position: sticky;
  top: 0;
}
/*****************************************************
SIDE*/
.mgn-side-auto {
  margin-inline: auto;
}
.pd-side {
  padding-inline: 3%;
}
/*****************************************************
MARGIN*/
.mgn-ex-high {
  margin-top: var(--size-ex-high);
  margin-bottom: var(--size-ex-high);
}
.mgn-high {
  margin-top: var(--size-high);
  margin-bottom: var(--size-high);
}
.mgn-ex-md {
  margin-top: var(--size-ex-md);
  margin-bottom: var(--size-ex-md);
}
.mgn-md {
  margin-top: var(--size-md);
  margin-bottom: var(--size-md);
}
.mgn-low {
  margin-top: var(--size-low);
  margin-bottom: var(--size-low);
}
.mgn-ex-low {
  margin-top: var(--size-ex-low);
  margin-bottom: var(--size-ex-low);
}
/*****************************************************
MARGIN TOP*/
.mgn-top-md {
  margin-top: var(--size-md);
}
/*****************************************************
MARGIN BOTTOM*/
.mgn-bottom-ex-higher {
  margin-bottom: var(--size-ex-higher);
}
.mgn-bottom-ex-high {
  margin-bottom: var(--size-ex-high);
}
.mgn-bottom-high {
  margin-bottom: var(--size-high);
}
.mgn-bottom-high-fix {
  margin-bottom: var(--size-high);
}
.mgn-bottom-ex-md {
  margin-bottom: var(--size-ex-md);
}
.mgn-bottom-md {
  margin-bottom: var(--size-md);
}
.mgn-bottom-md-low {
  margin-bottom: var(--size-md-low);
}
.mgn-bottom-md-low-to-ex-low {
  margin-bottom: var(--size-md-low);
}
.mgn-bottom-low {
  margin-bottom: var(--size-low);
}
.mgn-bottom-ex-low {
  margin-bottom: var(--size-ex-low);
}
.mgn-bottom-3em {
  margin-bottom: var(--size-3rem);
}
.mgn-bottom-2em {
  margin-bottom: var(--size-2rem);
}
.mgn-bottom-1em {
  margin-bottom: var(--size-1rem);
}
.mgn-bottom-05em {
  margin-bottom: .75em;
}
/*****************************************************
PADDING*/
.pd-ultra-high {
  padding-top: var(--size-ultra-high);
}
.pd-ex-high {
  padding-top: var(--size-ex-high);
  padding-bottom: var(--size-ex-high);
}
.pd-high {
  padding-top: var(--size-high);
  padding-bottom: var(--size-high);
}
.pd-ex-md {
  padding-top: var(--size-ex-md);
  padding-bottom: var(--size-ex-md);
}
.pd-md {
  padding-top: var(--size-md);
  padding-bottom: var(--size-md);
}
.pd-low {
  padding-top: var(--size-low);
  padding-bottom: var(--size-low);
}
.pd-ex-low {
  padding-top: var(--size-ex-low);
  padding-bottom: var(--size-ex-low);
}
/*****************************************************
PADDING BOTTOM*/
.pd-bottom-ultra-high {
  padding-bottom: var(--size-ultra-high);
}
.pd-bottom-ex-high {
  padding-bottom: var(--size-ex-high);
}
.pd-bottom-high {
  padding-bottom: var(--size-high);
}
.pd-bottom-ex-md {
  padding-bottom: var(--size-ex-md);
}
.pd-bottom-md {
  padding-bottom: var(--size-md);
}
.pd-bottom-md-low {
  padding-bottom: var(--size-md-low);
}
.pd-bottom-low {
  padding-bottom: var(--size-low);
}
.pd-bottom-ex-low {
  padding-bottom: var(--size-ex-low);
}
/*****************************************************
PADDING TOP*/
.pd-top-ex-high {
  padding-top: var(--size-ex-high);
}
.pd-top-high {
  padding-top: var(--size-high);
}
.pd-top-ex-md {
  padding-top: var(--size-ex-md);
}
.pd-top-md {
  padding-top: var(--size-md);
}
.pd-top-low {
  padding-top: var(--size-low);
}
.pd-top-ex-low {
  padding-top: var(--size-ex-low);
}
@media not all and (min-width: 769px) {
  .wrp {
    width: 100%;
  }
  .l-w-60,.l-w-55, .l-w-30, .l-w-20, .l-w-45 {
    width: 100%;
    max-width: 100%
  }
  .float-l, .float-r {
    float: none;
  }
  /*************
MARGIN*/
  .mgn-ex-high {
    margin-top: calc(var(--size-ex-high) * var(--size-rate));
    margin-bottom: calc(var(--size-ex-high) * var(--size-rate));
  }
  .mgn-high {
    margin-top: calc(var(--size-high)*var(--size-rate));
    margin-bottom: calc(var(--size-high)*var(--size-rate));
  }
  .mgn-ex-md {
    margin-top: calc(var(--size-ex-md)*var(--size-rate));
    margin-bottom: calc(var(--size-ex-md)*var(--size-rate));
  }
  .mgn-md {
    margin-top: calc(var(--size-md)*var(--size-rate));
    margin-bottom: calc(var(--size-md)*var(--size-rate));
  }
  .mgn-low {
    margin-top: calc(var(--size-low)*var(--size-rate));
    margin-bottom: calc(var(--size-low)*var(--size-rate));
  }
  /*************
MARGIN BOTTOM*/
  .mgn-bottom-ex-high {
    margin-bottom: calc(var(--size-ex-high) * var(--size-rate));
  }
  .mgn-bottom-high {
    margin-bottom: calc(var(--size-high) * var(--size-rate));
  }
  .mgn-bottom-ex-md {
    margin-bottom: calc(var(--size-ex-md) * var(--size-rate));
  }
  .mgn-bottom-md {
    margin-bottom: calc(var(--size-ex-md) * var(--size-rate));
  }
  .title-md.mgn-bottom-md-low {
    margin-bottom: calc(var(--size-md-low) * 0.5);
  }
  .mgn-bottom-md-sp {
    margin-bottom: calc(var(--size-md) * var(--size-rate));
  }
  .mgn-bottom-low-sp {
    margin-bottom: calc(var(--size-low) * var(--size-rate));
  }
  /* .mgn-bottom-ex-low, */
  .mgn-bottom-ex-low-sp, .mgn-bottom-md-low-to-ex-low {
    margin-bottom: calc(var(--size-ex-low) * var(--size-rate));
  }
  /*************
PADDING*/
  .pd-ultra-high {
    padding-top: calc(var(--size-ultra-high) * 0.5);
    padding-bottom: calc(var(--size-ultra-high) * 0.5);
  }
  .pd-ex-high {
    padding-top: calc(var(--size-ex-high) * var(--size-rate));
    padding-bottom: calc(var(--size-ex-high) * var(--size-rate));
  }
  .pd-high {
    padding-top: calc(var(--size-high) * var(--size-rate));
    padding-bottom: calc(var(--size-high) * var(--size-rate));
  }
  .pd-ex-md {
    padding-top: calc(var(--size-ex-md) * var(--size-rate));
    padding-bottom: calc(var(--size-ex-md) * var(--size-rate));
  }
  .pd-md {
    padding-top: calc(var(--size-md) * var(--size-rate));
    padding-bottom: calc(var(--size-md) * var(--size-rate));
  }
  .pd-low {
    padding-top: calc(var(--size-low) * var(--size-rate));
    padding-bottom: calc(var(--size-low) * var(--size-rate));
  }
  .pd-ex-low {
    padding-top: calc(var(--size-ex-low) * var(--size-rate));
    padding-bottom: calc(var(--size-ex-low) * var(--size-rate));
  }
  /*************
PADDING BOTTOM*/
  .pd-bottom-ultra-high {
    padding-bottom: calc(var(--size-ex-high) * 0.5);
  }
  .pd-bottom-ex-high {
    padding-bottom: calc(var(--size-ex-high) * var(--size-rate));
  }
  .pd-bottom-high {
    padding-bottom: calc(var(--size-high) * var(--size-rate));
  }
  .pd-bottom-ex-md {
    padding-bottom: calc(var(--size-ex-md) * var(--size-rate));
  }
  .pd-bottom-md {
    padding-bottom: calc(var(--size-md) * var(--size-rate));
  }
  .pd-bottom-low {
    padding-bottom: calc(var(--size-low) * var(--size-rate));
  }
  .pd-bottom-ex-low {
    padding-bottom: calc(var(--size-ex-low) * var(--size-rate));
  }
  /*************
PADDING TOP*/
  .pd-top-ex-high {
    padding-top: calc(var(--size-ex-high) * var(--size-rate));
  }
  .pd-top-high {
    padding-top: calc(var(--size-high) * var(--size-rate));
  }
  .pd-top-ex-md {
    padding-top: calc(var(--size-ex-md) * var(--size-rate));
  }
  .pd-top-md {
    padding-top: calc(var(--size-md) * var(--size-rate));
  }
  .pd-top-low {
    padding-top: calc(var(--size-low) * var(--size-rate));
  }
  .pd-top-ex-low {
    padding-top: calc(var(--size-ex-low) * var(--size-rate));
  }
  /*************
SIDE*/
  .pd-side-sp, .pd-side-sp {
    padding-inline: 3%
  }
}
/*****************************************************
TITLE*/
h1, h2, h3, h4 {
  line-height: 2
}
.title-large {
  font-size: 2rem; /*32*/
  font-weight: 500;
}
.title-md { /*20*/
  font-size: 1.25rem;
  font-weight: 500;
}
.title-small { /*18*/
  font-size: 1.125rem;
  font-weight: 500;
}
.title-ex-small {
  font-size: 1rem;
  font-weight: 500;
}
.title-bold {
  font-size: 1rem;
  font-weight: 500;
}
.sub-title {
  font-size: 1.125rem
}
.sub-section-title {
  margin-bottom: 1em;
}
.leading-trim {
  margin-top: var(--leading-trim);
}
/*****************************************************
TABLE*/
.outline-table {
  border-top: 1px solid #ccc;
}
.outline-table tr td {
  border-bottom: 1px solid #ccc;
  padding: 1.4em 0;
}
.outline-table-hdr {
  width: 30%;
  font-weight: 700;
  vertical-align: top;
}
.table-header {
  font-weight: 500;
  width: 24%;
}
.outline-table table tr td {
  border: 0;
  padding: 0;
}
/*****************************************************
TEXT*/
.txt-c, .txt-c-to-l {
  text-align: center;
}
.txt-l, .txt-l-to-c {
  text-align: left;
}
.txt-r {
  text-align: right;
}
.txt-u {
  text-decoration: underline !important;
}
.txt-line-height-1 {
  line-height: 1
}
.txt-small {
  font-size: .875rem;
}
.txt-red {
  color: #F15A24;
}
/*****************************************************
BG*/
.bg-f {
  background-color: rgba(255, 255, 255, .9);
}
.bg-main-color {
  background-color: var(--main-color);
  color: #fff;
}
.bg-primary-color {
  background-color: var(--bg-primary-color);
}
.bg-secondary-color {
  background-color: var(--bg-secondary-color);
}
.bg-tertiary-color {
  background-color: var(--bg-tertiary-color);
}
/*****************************************************
LIST*/
.lst-dot {
  list-style-type: circle;
  list-style-position: outside;
}
.lst-dot li::marker {
  content: '・ ';
  font-size: 1em;
}
.lst-dot.lst-dot-blk {
  list-style-type: disc
}
.lst-dot li {
  margin-left: 1.25rem;
}
.no-pc {
  display: none;
}
.no-sp {
  display: block;
}
/*****************************************************
BTN*/
.btn {
  padding: .75em 4em;
  text-align: center;
  background-color: #fff;
  color: var(--txt-color);
  font-size: .875rem;
  transition: background-color .2s ease-out, color .2s ease-out;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  max-width: 328px;
  border: 1px solid #fff;
}
.btn:hover {
  background-color: var(--txt-color);
  color: #fff;
}
.btn.btn-white {
  background-color: #fff;
  color: var(--main-color);
}
.btn.btn-white:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btn-frm {
  border: 1px solid var(--txt-color);
  padding: .5em 1em;
  border-radius: var(--btn-radius);
  display: block;
  text-align: center;
  background-color: #fff;
  line-height: 1;
  color: var(--txt-color);
  margin-left: auto;
  font-size: .875rem;
  max-width: 180px;
}
.btn-frm:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btns .btn-frm {
  margin-bottom: .5em;
}
.btn-small {
  max-width: 240px;
}
/* ==========================================
   リンクボタン（.btn-arrow）の基本設定
========================================== */
a.btn-arrow {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
a.btn-arrow img.arrow-right-long {
  margin-left: 0.5em;
  width: 56px;
  height: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
@media (hover: hover) {
  a.btn-arrow:hover img.arrow-right-long {
    transform: translateX(6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
}
@media not all and (min-width: 769px) {
  h1, h2, h3, h4 {
    line-height: 1.4
  }
  .no-pc {
    display: block;
  }
  .no-sp {
    display: none !important;
  }
  .without-frm {
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
  }
  .txt-l-to-c {
    text-align: center;
  }
  .txt-c-to-l {
    text-align: left;
  }
  .outline-table tr td {
    display: block;
  }
  .outline-table tr td.outline-table-hdr {
    border: none;
    padding-bottom: 0;
    width: 100%;
  }
  .title-ex-large, .title-large {
    line-height: 1.2;
  }
  .title-ex-large {
    margin-bottom: 1rem;
  }
  .btn {
    max-width: 94%;
    padding-inline: 3%;
  }
}
/*****************************************************
PANKUZU */
.pankuzu {
  font-size: .875rem;
  line-height: 1.4;
  padding-block: 1em;
  border-bottom: 1px solid var(--line-color);
}
.pankuzu-list li {
  display: inline;
}
.pankuzu-list li:not(:first-child)::before {
  content: '/ '
}
/*****************************************************
HERO */
.hero {
  width: 100%;
  height: 100svh;
  display: flex;
  margin-bottom: 120px;
  min-height: 560px;
  background-color: var(--txt-color);
}
.hero-slide, .hero-img {
  display: grid;
  grid-template-areas: "hero-stack";
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-slide > *, .hero-img > * {
  grid-area: hero-stack;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}
.hero-slide .swiper, .hero-slide .swiper-wrapper, .hero-slide .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}
.hero-slide .swiper-slide picture, .hero-img picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide .swiper-slide img, .hero-img img.hero-bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-overlay-link {
  background-color: var(--overlay-color);
  display: block;
  z-index: 2;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
.hero-content {
  display: grid;
  place-items: center;
  position: relative;
  padding: 16px 40px;
  z-index: 3;
  pointer-events: none;
}
.hero-overlay-link:hover {
  background-color: var(--overlay-hover-color);
}
.hero-slide:has(a.hero-anchor:hover) .hero-overlay-link, 
.hero-img:has(a.hero-anchor:hover) .hero-overlay-link {
  background-color: var(--overlay-hover-color);
}
.hero-img:hover .hero-bg-img {
  transform: scale(1.04);
}
.hero-slide {
  width: 73%;
	height: 100%;
}
.hero-img-wrp {
  width: 27%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100%;
}
.hero-img {
  height: 50%;
  min-height: 28svh;
  flex-shrink: 0;
}
.hero-logo {
  width: 96px;
  height: 218px;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
a.hero-anchor {
  position: absolute;
  bottom: 16px;
  right: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: opacity 0.4s ease-out;
}
a.hero-anchor:hover {
  opacity: 0.7;
}
.hero-anchor img {
  width: 13px;
  height: 13px;
  margin-left: .5em;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
a.hero-anchor:hover img {
  transform: translateY(4px);
}
.hero-slide .swiper-slide-active img {
  animation: heroZoomIn 6.6s ease-out both;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes heroZoomIn {
  0% {
    transform: scale(1.04) translateZ(0);
  }
  100% {
    transform: scale(1) translateZ(0);
  }
}
@media not all and (min-width: 1025px) {
  .hero {
    height: 100svh;
    flex-direction: column;
    margin-bottom: 96px;
    min-height: 680px;
  }
  .hero-slide {
    width: 100%;
    height: 75svh;
    min-height: 400px;
  }
  .hero-slide .swiper, .hero-slide .swiper-wrapper, .hero-slide .swiper-slide {
    height: 100% !important;
  }
  .hero-img-wrp {
    width: 100%;
    height: 25svh;
    flex-direction: row;
  }
  .hero-img {
    width: 50%;
    height: 100%;
    min-height: 0; /* スマホ並列時は高さを親の25svh（最低280px）に委ねるためリセット */
  }
  .hero-content {
    padding: 16px 12px;
  }
  a.hero-anchor {
    right: 12px;
  }
}
/*****************************************************
INDEX CONCEPT */
.index-concept {
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: visible;
}
.index-concept-hdr {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  width: 22%;
}
.index-concept-hdr img {
  width: 18px;
  height: 338px;
}
.index-concept-txt {
  padding-top: 80px;
  width: 42%;
  position: relative;
  margin-inline: 7%
}
.index-concept-logo {
  position: absolute;
  right: 0;
  top: -45px;
  width: 138px;
  height: 85px;
}
.index-concept-img {
  width: 22%;
  height: auto;
  margin-top: auto;
  margin-bottom: 180px;
}
.index-concept-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
@media not all and (min-width: 769px) {
  .index-concept {
    display: grid;
    grid-template-columns: 20% 80%;
  }
  .index-concept-hdr {
    grid-column: 1;
    width: 100%;
    justify-content: center;
  }
  .index-concept-hdr img {
    width: 12px;
    height: 256px;
  }
  .index-concept-txt {
    grid-column: 2;
    width: 100%;
    margin-inline: 0;
  }
  .index-concept-logo {
    margin-bottom: 40px;
  }
  .index-concept-img {
    grid-column: 1 / -1;
    width: 64%;
    justify-self: end;
    margin-top: 6.5rem;
    margin-bottom: 0;
  }
  .index-concept-txt .title-md{
    font-size: 1.5rem;
  }
}
/*****************************************************
INDEX GARDEN  */
.anchor-img a {
  display: block;
  position: relative;
  overflow: hidden;
}
.anchor-img a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 0px #fff;
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anchor-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (hover: hover) {
  .anchor-img a:hover::after {
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.8);
  }
}
@media not all and (min-width: 769px) {
  #garden .l-w-45:first-of-type {
    margin-bottom: var(--size-md);
  }
}
/*****************************************************
INDEX ABOUT US  */
.about-wrp {
  position: relative;
}
.about-logo-inoue {
  position: absolute;
  top: -24px;
  right: 8%;
  width: 80px;
  height: 137px;
}
.card-3 {
  width: 28%;
}
.card-3-2 {
  margin-top: var(--size-md);
}
.card-3-3 {
  margin-top: 144px;
}
.card-img-about {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 80px;
}
.card-img-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-04-img {
  width: 43%;
  aspect-ratio: 4 / 5;
  background-color: #fff;
  margin-inline: 0 !important;
}
.about-04-img .swiper-wrapper {
  transition-timing-function: linear;
}
@media not all and (min-width: 769px) {
  .card-3 {
    width: 100%;
  }
  .card-img-about {
    margin-bottom: 48px;
  }
  .card-img {
    margin-bottom: 64px;
  }
  .card-3-3 {
    margin-top: var(--size-md);
  }
  .about-logo-inoue {
    position: static;
    margin-bottom: var(--size-2rem);
  }
  .about-04-img {
    width: 100%;
    margin-bottom: var(--size-md-low);
  }
}
/*****************************************************
INDEX PROFILE  */
.l-w-profile {
  width: 86%;
  padding-inline: 3%;
}
.profile-txt {
  width: 36%;
}
.outline-wrp {
  width: 46%;
}
.outline-grid {
  width: 100%;
  border-top: 1px solid #e0e0e0;
}
.outline-row {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  column-gap: 40px; /* 見出しと内容の間の余白 */
  padding-block: .75rem; /* 上下のパディング（既存の1.4em等に合わせてもOK） */
  border-bottom: 1px solid #e0e0e0; /* 各行の下の横線 */
  align-items: start; /* 複数行になった際、見出しが上に固定されるようにする */
}
.outline-label {
  color: var(--txt-color);
  line-height: 2; /* 既存の全体設計に同期 */
}
.outline-value {
  color: var(--txt-color);
  line-height: 2;
  margin: 0;
}
@media not all and (min-width: 769px) {
  .l-w-profile {
    width: 100%;
  }
  .outline-row {
    grid-template-columns: minmax(80px, auto) 1fr;
    column-gap: 24px; /* スマホの画面幅に合わせて中間の隙間を少しタイトに */
    padding-block: 1.2rem; /* 上下のパディングを少しスマートに */
  }
  .profile-txt, .outline-wrp {
    width: 100%;
  }
  .profile-txt {
    margin-bottom: var(--size-md-low);
  }
}

.card-wrp {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  row-gap: 40px;
}
.entry-list-wrp.card-wrp { /*works, journal list page*/
  row-gap: var(--size-high);
}
.card {
  width: 23.5%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 5; 
  margin-bottom: 32px;
}

.card-img.anchor-img a {
  width: 100%;
  height: 100%;
}
.card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.4s ease-out;
}

.card-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: opacity 0.4s ease-out;
}
.card-meta .entry-date {
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 0.75em;
  color: #707070;
}
.card-meta .title-normal {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.card-meta .title-normal + * {
  margin-top: 0.5em;
}
.card-meta p {
  font-size: 0.9375rem;
}

@media (hover: hover) {
  .card:hover .card-img img, .card:hover .card-meta {
    opacity: 0.7;
  }

  .card:hover .card-img.anchor-img a::after {
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.8);
  }
}

@media not all and (min-width: 769px) {
  .card-wrp {
    column-gap: 4%;
    row-gap: 72px;
  }
  .entry-list-wrp.card-wrp { /*works, journal list page*/
    row-gap: var(--size-md);
  }
  .card {
    width: 48%;
  }
  .card-img {
    margin-bottom: 24px;
  }
}
/*****************************************************
INDEX WORKS*/
.card-swiper-inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
}
[class*=swiper]:focus {
  outline: none;
}
.card-swiper {
  overflow: hidden;
}
.card-swiper .swiper {
  overflow: visible;
}
.card-swiper .swiper-controller {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 3.2rem;
}
.card-swiper .swiper-pagination {
  display: none !important;
}
.swiper-button-prev, .swiper-button-next, .card-swiper .swiper-button-prev, .card-swiper .swiper-button-next {
  position: relative;
  display: block;
  width: 56px;
  height: 12px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  inset: auto;
}
.swiper-button-prev::before, .swiper-button-next::before, .swiper-button-prev::after, .swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.card-swiper .swiper-button-prev img, .card-swiper .swiper-button-next img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .card-swiper .swiper-button-prev:hover img {
    transform: translateX(-6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
  .card-swiper .swiper-button-next:hover img {
    transform: translateX(6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
}
.card-swiper .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.card-swiper .slide {
  overflow: hidden;
  width: 28%;
  flex-shrink: 0;
  margin-right: 48px;
}
.card-swiper .swiper-slide-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.card-swiper .swiper-slide-img a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.card-swiper .swiper-slide-img a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 0px #fff;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.card-swiper .swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease-out;
}
.card-swiper .card-meta {
  transition: opacity 0.4s ease-out;
}
.card-swiper .slide-content {
  padding-block: 3rem;
}
.card-swiper .slide-title {
  font-size: .875rem;
  font-weight: 300;
  line-height: 2;
}
.slide-title a, .slide-title a:hover {
  color: #fff;
}
@media (hover: hover) {
  .card-swiper .slide:hover .swiper-slide-img img, .card-swiper .slide:hover .card-meta {
    opacity: 0.7;
  }
  .card-swiper .slide:hover .swiper-slide-img a::after {
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.8);
  }
}
.card-swiper .swiper-slide a, .card-swiper .swiper-slide img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
@media not all and (min-width: 1025px) {
  .card-swiper-inner {
    padding: 0 5%;
  }
  .card-swiper .swiper-controller {
    margin-bottom: 1rem;
  }
}
@media not all and (min-width: 769px) {
  .card-swiper .slide {
    width: 22rem;
    margin-right: 24px;
  }
}
/*****************************************************
WORKS, JOURNAL*/
.lower-main {
  margin-top: -56px;
}
.works-category-list{
  display: flex; 
  justify-content: center; 
  gap: 1rem; 
  list-style: none; 
  padding: 0;
  font-size: .875rem;
}
.lower-main.entry {
  margin-top: 56px;
}
.entry-meta.sticky {
  top: 60px;
  align-self: start;
}
.entry-meta .title-md{
	line-height: 1.75;
}
.entry-body {
  padding-bottom: var(--size-md);
  border-bottom: 1px solid var(--line-color)
}
.entry-body h1 {
  font-size: 2em;
  margin-block-end: 0.67em;
  font-weight: bold;
}

.entry-body h2 {
  font-size: 1.5em;
  margin-block-end: 0.83em;
  font-weight: bold;
}

.entry-body h3 {
  font-size: 1.17em;
  margin-block-end: 1em;
  font-weight: bold;
}

.entry-body h4 {
  font-size: 1em;
  margin-block-end: 1.33em;
  font-weight: bold;
}
.pager {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 100px;
  font-size: .875rem;
  padding-top: 12px;
}
.pager-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.pager-item img {
  display: block;
  width: 56px;
  height: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.pager-prev img {
  margin-right: 0.5em;
}
.pager-next img {
  margin-left: 0.5em;
}
.wp-block-separator {
    border: none;
    border-top: 1px solid var(--line-color)!important;
}
.entry-tags{
  padding-block: var(--size-ex-low);
  font-size: .875rem;
}
@media (hover: hover) {
  .pager-prev:hover img {
    transform: translateX(-6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
  .pager-next:hover img {
    transform: translateX(6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
}
/*****************************************************
PAGENAVI - WORKS, JOURNAL*/
.wp-pagenavi {
  clear: both;
  font-size: .875rem;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.wp-pagenavi a, .wp-pagenavi span {
  margin-inline: 1em;
  white-space: nowrap;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.wp-pagenavi a:hover {
  color: var(--hover-txt-color) !important;
}
.wp-pagenavi span.pages {
  display: none;
}
.nextpostslink, .previouspostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 12px;
}
.nextpostslink img, .previouspostslink img {
  display: block;
  width: 56px;
  height: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.wp-pagenavi span.current {
  font-weight: bold;
  color: var(--hover-txt-color);
}
@media (hover: hover) {
  .previouspostslink:hover img {
    transform: translateX(-6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
  .nextpostslink:hover img {
    transform: translateX(6px);
    filter: invert(56%) sepia(9%) saturate(830%) hue-rotate(24deg) brightness(92%) contrast(83%);
  }
}
@media not all and (min-width: 769px) {
  .lower-main {
    margin-top: -80px;
  }
  .entry-meta {
    margin-bottom: var(--size-low);
  }
  .pager {
    width: 100%;
    justify-content: space-between;
    margin-inline: auto;
  }
    .entry-meta.sticky {
    position: static;
    top: auto;
  }
}
/*****************************************************
CONTACT*/

.form-wrp {
  width: 100%;
}

.contact-form {
  width: 100%;
}

.form-item {
  width: 100%;
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
.form-note{
  color: #e27c5b;
}

.form-label.is-required::after {
  content: " ※";
  color: #e27c5b;
  font-size: 0.875rem;
  margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 16px;
  font-size: 1rem;
  color: var(--txt-color);
  transition: border-color 0.2s ease-out;
  -webkit-appearance: none;
  font-family: var(--master-font-family);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #888;
}

/* Chrome, Safari, Edge, Opera */
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #a0a0a0;
  opacity: 1;
  font-family: var(--master-font-family);
}

/* Firefox */
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
  font-family: var(--master-font-family);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a0a0;
  opacity: 1;
  font-family: var(--master-font-family);
}

.form-select-wrp {
  position: relative;
  width: 100%;
}

.form-select-wrp::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 6px;
  background-color: #666;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.contact-form textarea {
  height: 240px;
  resize: vertical;
}

.form-privacy {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
}

.privacy-note {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--txt-color);
  margin-bottom: 24px;
}

.privacy-checkbox-label {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer;
  user-select: none;
  line-height: 1; 
}

.privacy-checkbox-label .wpcf7-form-control-wrap,
.privacy-checkbox-label .wpcf7-form-control,
.privacy-checkbox-label .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.privacy-checkbox-label input[type="checkbox"] {
  margin: 0 6px 0 0;
  width: 18px;
  height: 18px;
  background-color: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  position: relative;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  cursor: pointer;
  flex-shrink: 0;
} 

.form-btn-wrp {
  width: 100%;
  text-align: center;
}

.btn-submit {
  width: 100%;
  max-width: 328px;
  height: 56px;
  background-color: #fff;
  color: var(--txt-color);
  border: 1px solid var(--txt-color);
  font-size: 0.875rem;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7-turnstile {
    text-align: center;
}

@media (hover: hover) {
  .btn-submit:hover {
    background-color: var(--txt-color);
    color: #fff;
  }
}
/*****************************************************
HEADER*/
.hdr {
  width: 100%;
  height: 182px;
  padding-inline: 3%;
  margin-top: 32px;
  z-index: 2;
}
.hdr-logo {
  width: 80px;
  height: 182px;
}
@media not all and (min-width: 769px) {
  .hdr {
    height: 146px;
    margin-top: 16px;
  }
  .hdr-logo {
    width: 64px;
    height: 146px;
  }
}
/*****************************************************
ITEM*/
.item-page-hero {
  width: 100%;
  height: 100svh;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
.item-page-hero-eyecatch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.item-page-hero-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 60%;
}
.item-page-theme, .item-page-hero-meta {
  position: relative;
  z-index: 1;
}
.item-page-theme {
  padding-top: 88px;
  padding-right: 5%;
  text-align: right;
  color: #6b6661;
}
.item-page-hero-meta {
  position: absolute;
  left: 7%;
  bottom: 3em;
}
.item-page-hero-meta .title-md, .item-page-hero-meta .title-ex-small {
  display: inline;
}
.item-page-hero-meta .title-ex-small {
  margin-left: 1em;
}
.item-master {
  margin-top: 100svh;
  background-color: var(--main-color);
  position: relative;
  z-index: 2;
  padding-top: var(--size-md);
  padding-bottom: var(--size-ex-high)
}
.item-page-imgs {
  margin-bottom: var(--size-md);
}
.item-page-img:not(:last-child) {
  margin-bottom: var(--size-1rem);
}
.item-page-body {
  padding-left: 22%;
}
.item-page-body a:not(.btn) {
  text-decoration: underline;
}
.item-page-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.item-page-profile-txt, .item-page-profile-imgs {
  width: 46%;
}
.item-page-profile-img {
  width: 48%;
  height: auto;
  align-self: flex-start;
  object-fit: cover;
}
.item-page-profile-body {
  font-size: .875rem;
}
.item-page-profile-body a, .entry-body a {
  text-decoration: underline;
}
ul.wp-block-list {
  list-style: revert;
  margin-left: 1em;
  padding-left: 0;
}
@media not all and (min-width: 769px) {
  .item-page-theme {
    text-align: left;
    padding-left: 7%;
  }
  .l-w-50 {
    width: 100%;
  }
  .item-page-img:not(:last-child) {
    margin-bottom: 0;
  }
  .img-caption {
    padding-inline: 1em;
  }
  .item-page-body {
    padding-inline: 5%;
  }
  .item-page-profile {
    display: flex;
    flex-direction: column;
    padding-inline: 5%;
  }
  .item-page-profile-txt {
    width: 100%;
    display: contents;
  }
  .item-page-profile-header {
    order: 1;
    width: 100%;
  }
  .item-page-profile-imgs {
    order: 2;
    width: 100%;
    margin-block: var(--size-low);
  }
  .item-page-profile-body {
    order: 3;
    width: 100%;
  }
  .item-page-profile-img {
    width: 48%;
  }
}
/*CTA****************************************/
.cta {
  padding-block: 140px;
  background-color: var(--txt-color);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cta-pc-bg-re.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  transform: translateZ(0);
}
.cta-inner {
  width: 36%;
  text-align: center;
}
@media not all and (min-width: 769px) {
  .cta::before {
    background-image: url("../images/cta-sp-bg.webp");
  }
  .cta-inner {
    width: 100%;
    padding-inline: 3%;
    text-align: left;
  }
}
/*FOOTER****************************************/
.ftr {
  background-color: #fff;
  padding-block: var(--size-md-low);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.ftr-logo {
  width: 70px;
  height: 158px;
  justify-self: start;
}
.ftr-nav {
  font-size: .815rem;
  margin-top: var(--leading-trim);
  justify-self: center;
}
.ftr-nav li {
  display: inline;
  margin-inline: .5em;
}
.ftr-credit {
  font-size: .75rem;
  text-align: right;
  line-height: 2;
  justify-self: end;
	white-space: nowrap;
}
.ftr-credit img {
  width: 20px;
  height: 20px;
}
@media not all and (min-width: 769px) {
  .ftr {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-nav {
    display: none;
  }
}
/****************************************************
LOADING***************************************/
.loader-wrp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--txt-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease-out;
}
.loader-logo {
  width: 120px;
  height: 75px;
  margin-bottom: 24px;
}
.progress-container {
  width: 180px;
  background: #7a7979;
  height: 1px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.hero-slide, .hero-img-wrp .hero-img {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.hero-slide.is-visible, .hero-img-wrp .hero-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/****************************************************
DRAWER */
.btn-drawer {
  position: fixed;
  top: 8px;
  right: 20px;
  width: 56px;
  height: 12px;
  display: block;
  cursor: pointer;
  z-index: 101;
  transition: all .2s ease-out;
  padding: 1.4rem 1rem;
}
.open .btn-drawer {
  background-color: rgba(255, 255, 255, 0);
}
.front-page .btn-drawer {
  display: block;
}
.btn-drawer-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 40px;
  transition: all .2s ease-out;
}
.btn-drawer-line::before, .btn-drawer-line::after {
  content: "";
  height: 2px;
  width: 40px;
  background: var(--txt-color);
  position: absolute;
  left: 0;
  transition: inherit;
}
.btn-drawer-line::before {
  top: -5px;
}
.btn-drawer-line::after {
  top: 5px;
}
.open .btn-drawer-line {
  background-color: transparent;
}
.open .btn-drawer-line::before, .open .btn-drawer-line::after {
  top: 0;
  background-color: #fff;
}
.open .btn-drawer-line::before {
  transform: rotate(22.5deg);
}
.open .btn-drawer-line::after {
  transform: rotate(-22.5deg);
}
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  overflow: hidden;
  background-color: var(--txt-color);
  display: flex;
  transition: opacity .4s ease, visibility .4s ease;
}
.open .drawer-menu {
  visibility: visible;
  opacity: 1;
}
.drawer-menu-child {
  width: 50%;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-menu-child-pc {
  background-color: #f00;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transform: translateY(-8px);
}
.drawer-menu-child-pc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/drawer-bg.avif");
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.2);
  z-index: 1;
}

.open .drawer-menu-child-pc::before {
  animation: pulseBlur 4s infinite alternate ease-in-out;
}

@keyframes pulseBlur {
  0% {
    filter: blur(10px);
  }
  35% {
    filter: blur(30px);
  }
  100% {
    filter: blur(35px);
  }
}
.drawer-logo {
  width: 96px;
  height: 218px;
  position: relative;
  z-index: 2;
}

.drawer-menu-child-sp {
  background-color: var(--txt-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: right;
  font-size: 1.25rem;
  transform: translateY(16px);
}
.open .drawer-menu-child-pc, .open .drawer-menu-child-sp {
  opacity: 1;
  transform: translateY(0);
}
.drawer-logo-sp {
  display: none;
}

.drawer-menu-child-sp-inner {
  width: 100%;
  padding-inline: 10%;
}
.drawer-list-wrp {
  margin-block: 0 1rem;
  width: 100%;
  border-top: .5px solid #FCFCFC;
}
.drawer-list-item {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25em;
  border-bottom: .75px solid #FCFCFC;
}
.drawer-list-wrp a {
  display: block;
  text-decoration: none;
  padding-block: 1em;
  color: #fff;
  transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-list-wrp a:hover {
  color: var(--hover-txt-color);
}

.drawer-sns {
  width: 100%;
  text-align: right;
}
.drawer-sns img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
@media not all and (min-width: 769px) {
  .btn-drawer {
    right: 0;
  }
  .drawer-menu-child-pc {
    display: none;
  }
  .drawer-menu-child.drawer-menu-child-sp {
    width: 100%;
  }
  .drawer-menu-child.drawer-menu-child-sp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/drawer-bg.avif");
    background-size: cover;
    background-position: center;
    filter: blur(30px);
    transform: scale(1.2);
    z-index: 1;
    animation: none;
  }
  .drawer-menu-child-sp-inner {
    z-index: 2;
    padding-inline: 27% 3%;
  }
  .drawer-logo-sp {
    display: block;
    z-index: 3;
    position: absolute;
    top: 18px;
    left: 18px;
    width: 56px;
  }
}
/****************************************************
HOVER */
@media (hover: hover) {
  a:hover {}
  .gnavi-list a:hover {
    color: var(--link-color);
  }
  .page:hover, .nextpostslink:hover, .previouspostslink:hover, .extend:hover {
    color: var(--txt-color);
    opacity: 1;
  }
}
@media (hover: none) {
  a:active {
    color: var(--txt-color);
  }
  .gnavi-list a:active {
    color: var(--link-color);
  }
  .page:active, .nextpostslink:active, .previouspostslink:active, .extend:active {
    color: var(--txt-color);
    opacity: 1;
  }
}