@charset "utf-8";
/*--------------------------------------
  # page-title
--------------------------------------*/
#page-title {
  position: relative;
  clear: both;
}
#page-title .page-title-img {
  position: relative;
  width: 100%;
  min-height: 180px;
  min-height: 150px;
  overflow: hidden;
}
/* #page-title .page-title-img:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
} */
#page-title .page-title-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-title .page-title-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
#page-title .page-title-txt h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: calc(100% - 15px);
  font-family: "Shippori Mincho", serif;
  font-size: min(7vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 2px;
}
#page-title .page-title-txt h2 > span {
  padding: 10px 30px 0 20px;
  color: var(--titleColor);
  background: #fff;
  line-height: 1.2;
  opacity: 0;
  animation: PagetitleH2 1.8s 0.3s forwards;
}
#page-title .page-title-txt .en {
  position: absolute;
  top: calc(100% - 0.45em);
  right: 0;
  color: var(--titleColor);
  font-size: 8.0rem;
  font-family: "Marcellus", serif;
  text-align: right;
  line-height: 1.2;
  letter-spacing: -2px;
  white-space: nowrap;
  opacity: 0;
  animation: PagetitleEn 1s 0.6s forwards;
}
@keyframes PagetitleH2 {
  0% {clip-path: inset(0 100% 0 0);opacity:0;}
  100% {clip-path: inset(0);opacity:1;}
}
@keyframes PagetitleEn {
  0% {clip-path: inset(0 100% 0 0);opacity:0;}
  100% {clip-path: inset(0);opacity:0.1;}
}
@media (min-width: 950px) {
  #page-title {
    margin-top: 110px;
  }
  #page-title .page-title-img {
    width: calc(100% - min(6%, 80px));
    min-height: 360px;
    min-height: 300px;
    border-radius: 0 10px 10px 0;
  }
  #page-title .page-title-txt {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 min(6%, 80px);
  }
  #page-title .page-title-txt h2 {
    max-width: calc(100% - min(6%, 80px));
    font-size: min(7vw, 4.8rem);
  }
  #page-title .page-title-txt h2 > span {
    padding: 0 20px 0.1em;
  }
  #page-title .page-title-txt .en {
    font-size: min(10vw, 15.8rem);
  }
}

/*--------------------------------------
  # breadcrumbs
--------------------------------------*/
#breadcrumbs {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  overflow: auto;
}
#breadcrumbs::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
#breadcrumbs::-webkit-scrollbar-track {
  background: none;
  border-radius: 5px;
}
#breadcrumbs::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 5px;
}
#breadcrumbs ol {
  display: flex;
}
#breadcrumbs ol:after {
  content: '';
  border-right: 15px solid transparent;
}
#breadcrumbs li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#breadcrumbs li:not(:first-child):before {
  content: '';
  width: 6px;
  height: 6px;
  margin: 0 6px 0 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  opacity: 0.8;
  transform: rotate(45deg);
}
@media (min-width: 821px) {
    #breadcrumbs {
      top: 110px;
      padding: 20px min(6%, 80px);
    }
		#breadcrumbs ol {
			justify-content: flex-end;
		}
}

/*--------------------------------------
  # layout
--------------------------------------*/
.column-layout .column-layout-sub {
  padding: 25px 0 0;
  z-index: 10;
}
/* column-layout-sub-item */
.column-layout-sub-item:not(:last-child) {
  margin-bottom: 20px;
}
.page-nav,.anchor-nav {
  clear: both;
  counter-reset: count 0;
}
.page-nav .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.page-nav .swiper-slide {
  height: auto;
  background: var(--linkColor);
  border-radius: 10px;
}
.page-nav .swiper-slide a,.anchor-nav .swiper-slide a {
  position: relative;
  gap: 0 10px;
  height: 100%;
  min-height: 53px;
  padding: 5px 13px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  transition: 0.2s;
}
.page-nav .swiper-slide a {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 10px 1fr;
  align-items: center;
}
.page-nav .swiper-slide a:has(.icon) {
  grid-template-rows: auto auto;
}
.page-nav .swiper-slide a:before {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  content: '';
  position: relative;
  top: 6%;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translate(0, -50%) rotate(135deg);
}
.page-nav .swiper-slide a .icon,
.anchor-nav .swiper-slide a .icon {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
  opacity: 0.8;
}
.page-nav .swiper-slide a .icon {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  align-self: end;
}
.page-nav .swiper-slide a .icon:after,
.anchor-nav .swiper-slide a .icon:after {
  content: counter(count);
  counter-increment: count 1;
  font-size: 118%;
}
.page-nav .swiper-button-next,
.page-nav .swiper-button-prev {
  display: none;
}
/* accordion-layout */
.column-layout .column-layout-sub .accordion-layout {
  border: none;
}
.column-layout .column-layout-sub .accordion-layout label {
  background: #f8f5f3;
  background: var(--linkColor);
  border: none;
  border-radius: 10px;
}
.column-layout .column-layout-sub .accordion-layout .accordion-title {
  padding: 13px 35px 13px 18px;
  color: #fff;
}
.column-layout .column-layout-sub .accordion-layout .accordion-title:before,
.column-layout .column-layout-sub .accordion-layout .accordion-title:after {
  background: #fff;
}
.column-layout .column-layout-sub .accordion-layout .accordion-content {
  padding-bottom: 0;
}
.column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  border-top: 1px dotted rgba(255,255,255,0.6);
}
.column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li.active {
  background: rgba(255,255,255,0.2);
}
.column-layout .column-layout-sub .accordion-layout .accordion-content a {
  position: relative;
  display: block;
  padding: 10px 18px 10px 38px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
.column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li > a {
  flex: 1;
  transform: translateX(-20px);
}
.column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li > a:before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.2s;
  transform: translate(0, -50%) rotate(45deg);
}
.column-layout .column-layout-sub .accordion-layout .accordion-content ul ul {
  width: 100%;
  padding: 0 10px 10px;
}
.column-layout .column-layout-sub .accordion-layout .accordion-content ul ul a {
  padding: 5px 18px 5px 28px;
  font-size: 90%;
  transition: 0.2s;
}
.column-layout .column-layout-sub .accordion-layout .accordion-content ul ul a:before {
  content: '';
  position: absolute;
  top: 1.5em;
  left: 0.8em;
  width: 0.5em;
  height: 1px;
  background: #fff;
  opacity: 0.6;
}
@media (max-width: 949px) {
  .column-layout .column-layout-sub {
    padding-left: 20px;
    padding-right: 20px;
  }
  .node-wrapper .column-layout .column-layout-sub {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .column-layout .column-layout-sub .accordion-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }
  .column-layout .column-layout-sub .accordion-layout label {
    min-width: calc(50% - 5px);
  }
  /* .page-nav {
    padding: 0 20px !important;
  } */
  .page-nav .swiper-slide {
    width: calc(50% - 5px);
  }
  .anchor-nav {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: var(--linkColor);
    transition: 0.2s;
  }
  body:not(.anchor-scroll) .anchor-nav {
    transform: translateY(calc(100% + 60px));
  }
  .swiper.anchor-nav {
    position: fixed;
    left: 0;
    bottom: 60px;
    width: 100%;
    line-height: 1.2;
    transition: 0.2s;
    z-index: 989;
    --swiper-navigation-sides-offset: 0;
  }
  .anchor-nav .swiper-slide a {
    display: flex;
    align-items: center;
  }
  .anchor-nav .swiper-button-next,
  .anchor-nav .swiper-button-prev {
    top: 0;
    width: 40px !important;
    height: 100% !important;
    margin: 0;
  }
  .anchor-nav .swiper-button-next {
    background: linear-gradient(to right,  rgba(96,56,19,0) 0%,rgba(96,56,19,1) 100%);
  }
  .anchor-nav .swiper-button-prev {
    background: linear-gradient(to right,  rgba(96,56,19,1) 0%,rgba(96,56,19,0) 100%);
  }
  .anchor-nav .swiper-button-next:after,
  .anchor-nav .swiper-button-prev:after {
    color: #fff !important;
    font-size: min(4.8vw, 1.8rem) !important;
    font-weight: bold;
  }
  .anchor-nav .swiper-button-next:before,
  .anchor-nav .swiper-button-prev:before {
    display: none;
  }
  .anchor-nav .swiper-slide {
    width: auto !important;
    max-width: 100%;
    height: auto;
  }
  .anchor-nav .swiper-slide a {
    padding: 1em 1.5em;
    font-weight: 500;
    opacity: 0.3;
  }
  .anchor-nav .swiper-slide.swiper-slide-active a {
    opacity: 1;
  }
}
@media (min-width: 950px) {
  .column-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  .column-layout .column-layout-sub {
    position: sticky;
    top: 80px;
    width: min(25%, 320px);
    margin-bottom: 80px;
    padding: 80px 80px 0 0;
  }
  .column-layout .column-layout-main {
    flex: 1;
  }
  .column-layout .column-layout-main .node .node-wrapper {
    padding: 0;
  }
  .node-wrapper .column-layout {
    padding: 0;
  }
  .node-wrapper .column-layout .column-layout-sub {
    top: 120px;
    margin-bottom: 0;
  }
  .anchor-nav {
    display: none !important;
  }
  .page-nav .swiper-slide {
    width: 100%;
  }
  .page-nav .swiper-slide:not(.current) {
    opacity: 0.7;
  }
  .page-nav .swiper-slide a {
    padding: .5em 1.5em;
    font-weight: 700;
  }
  .page-nav .swiper-slide a:before {
    transition: 0.2s;
  }
  .page-nav .swiper-slide:not(.current) a:hover {
    gap: 0 20px;
    padding-right: 0;
    /* transform: translateX(10px); */
  }
  .page-nav .swiper-slide:not(.current) a:hover:before {
    animation: DownbuttonMove 0.3s ease-in-out forwards;
  }
  .column-layout .column-layout-sub .accordion-layout label:not(:last-child) {
    margin-bottom: 15px;
  }
  .column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li.active > a,
  .column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li > a:hover {
    transform: translateX(0);
  }
  .column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li.active > a:before,
  .column-layout .column-layout-sub .accordion-layout .accordion-content > ul > li > a:hover:before {
    left: 20px;
  }
  .column-layout .column-layout-sub .accordion-layout .accordion-content ul ul a:hover {
    transform: translateX(10px);
  }
}

/*--------------------------------------
  # node
--------------------------------------*/
.node {
  padding: 40px 0;
  transition: 0.8s;
}
.node.bg {
  background: #f8f5f3;
}
.node[data-scrollin]:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.node .node-wrapper {
  padding: 0 20px;
}
.node .node-wrapper>*:last-child {
  margin-bottom: 0;
}
/* title */
.node h3 {
  margin: 30px 0;
  padding: 30px 0 0;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-size: min(6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}
.node h3:first-child {
  margin-top: 0;
  padding-top: 0;
}
.node h3[data-scrollin] {
  clip-path: inset(0);
  transition: clip-path 2s ease 0.2s;
}
.node h3[data-scrollin]:not(.scrollin) {
  clip-path: inset(0 100% 0 0);
}
.node h4 {
  /* display: inline-block; */
  margin: 2em 0 1em;
  padding: 0.2em 0.5em;
  background: #a4998e;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 120%;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}
h5 {
  margin: 1em 0;
  font-family: "Shippori Mincho", serif;
  font-size: 120%;
  font-weight: 500;
  line-height: 1.2;
}
.node h4:first-child,
.node h5:first-child {
  margin-top: 0;
}

/* btn */
.node .node-btn,
.node .img-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 2em 0;
}
.node .node-btn:first-child,
.node .img-btn:first-child {
  margin-top: 0;
}
.node .node-btn a,
.node .img-btn a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.6s 0.15s transform, 0.6s 0.15s opacity;
}
.node .node-btn:not(.scrollin)[data-scrollin] a {
  transform: translateX(-100px);
  opacity: 0;
}
.node .node-btn a:after,
.node .img-btn a:after {
  content: '';
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-left: auto;
  background: var(--linkColor) url(../img/icon/arrow_white.svg) no-repeat center;
  background-size: 50% auto;
  border-radius: 50%;
  transition: 0.2s;
}
.node .node-btn a > span:not(.img),
.node .img-btn a > span:not(.img) {
  padding: 0.5em 0;
  background: linear-gradient(var(--linkColor), var(--linkColor)) 0 100% / 100% 1px no-repeat;
}
.node .node-btn a > .img,
.node .img-btn a > .img {
  flex-shrink: 0;
  width: 20%;
  overflow: hidden;
}
.node .img-btn {
  justify-content: center;
}
.node .img-btn a {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  transition: 0.8s;
}
.node .img-btn:not(.scrollin)[data-scrollin] a {
  transform: translateY(80px);
  opacity: 0;
}
@media (min-width: 950px) {
  .node {
    padding: 80px 0;
  }
  .node .node-wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 0 min(6%, 80px);
  }
  /* .node .node-wrapper:has(.node-inner) {
    display: flex;
    align-items: flex-start;
  }
  .node .node-wrapper .node-inner {
    padding-top: 3em;
  } */
  /* title */
  .node h3 {
    font-size: min(2.8vw, 3.8rem);
  }


  
  .node h4 {
    margin: 2em 0 0.6em;
    font-size: 150%;
  }
  h5 {
    font-size: 125%;
  }
  /* btn */
  .node .node-btn a > .img,
  .node .img-btn a > .img {
    width: 150px;
  }
  .node .node-btn a > .img img,
  .node .img-btn a > .img img {
    transition: 0.4s;
  }
  .node .node-btn a:hover:after,
  .node .img-btn a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  .node .node-btn a:hover > span:not(.img),
  .node .img-btn a:hover > span:not(.img) {
    animation: UnderLineMove 0.8s ease-in-out forwards;
  }
  .node .node-btn a:hover > .img img,
  .node .img-btn a:hover > .img img {
    transform: scale(1.1);
    filter: brightness(1.1);
    opacity: 0.8;
  }
  .node .img-btn a:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
  }
}

/*--------------------------------------
  # article
--------------------------------------*/
.article-list {
  clear: both;
  /* background-image : linear-gradient(to right, var(--titleColor) 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left top; */
}
.article-list .article-list-item {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto auto;
  gap: 5px 15px;
  padding: 12px 0;
  background-image : linear-gradient(to right, var(--titleColor) 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.article-list .article-list-item .img {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.article-list .article-list-item .img a {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}
.article-list .article-list-item .img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.article-list .article-list-item .date-category-tag {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  align-self: end;
  display: flex;
  line-height: 1.2;
}
.article-list .article-list-item .date-category-tag .date {
  margin: 0 1em 0 0;
  color: var(--accentColor);
  font-size: 1.2rem;
  font-weight: 600;
}
.article-list .article-list-item .date-category-tag .category {
  display: flex;
  gap: 5px;
  margin: 0;
}
.article-list .article-list-item .date-category-tag .category a {
  padding: 0.2em 0.5em;
  background: #b0a69c;
  color: #fff;
  font-size: 1.0rem;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.2s;
}
.article-list .article-list-item .title a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.2s;
}
.article-block .article-supplement {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.article-block .date-category-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  /* margin-bottom: 10px; */
  line-height: 1.2;
}
.article-block .date-category-tag .date {
  margin: 0 1em 0 0;
  color: var(--accentColor);
  font-size: 1.2rem;
  font-weight: 600;
  font-weight: 600;
}
.article-block .date-category-tag .category {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 0 0 5px;
}
.article-block .date-category-tag .category a {
  padding: 0.3em 0.75em;
  font-size: 1.2rem;
  color: #FFF;
  background: #b0a69c;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.2s;
}
.article-block .share-buttons {
    margin: 0 -5px -5px 0;
}
.node .article-block .article-title {
	margin-bottom: 0;
	padding-bottom: 0.25em;
	border-bottom: none;
}
.article-block .body {
  clear: both;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 949px) {
}
@media (min-width: 950px) {
  .article-list .article-list-item {
    grid-template-columns: 160px 1fr;
    padding: 10px 0;
  }
  .article-list .article-list-item .img a:hover img {
    transform: scale(1.2);
    opacity: 0.7;
  }
  .article-list .article-list-item .date-category-tag {
    align-items: baseline;
  }
  .article-list .article-list-item .date-category-tag .category a {
    padding: 0.3em 0.75em;
    font-size: 1.2rem;
  }
  .article-list .article-list-item .date-category-tag .category a:hover {
    opacity: 0.7;
  }
  .article-list .article-list-item .title a {
    font-size: 1.6rem;
  }
  .article-list .article-list-item .title a:hover {
    transform: translateX(20px);
  }
}

/* pager */
.pager {
  margin: 2em 0;
  line-height: 1.2;
}
.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pager span,
.pager a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  color: var(--linkColor);
  font-family: "Marcellus", serif;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.2s;
}
.pager .current {
  background: var(--accentColor);
  color: #fff;
}
.pager .prev,
.pager .next {
  color: var(--accentColor);
  font-weight: bold;
}

/* post-nav */
.post-nav {
  margin: 2em 0;
  line-height: 1.2;
}
.post-nav a {
  position: relative;
  display: block;
  padding: 15px 0;
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.post-nav .prev,
.post-nav .next {
  display: flex;
  gap: 15px;
}
.post-nav .prev:before,
.post-nav .next:after {
  content: '';
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #fff url(../img/icon/arrow_brown.svg) no-repeat center;
  background-size: 50% auto;
  border: 1px solid var(--linkColor);
  border-radius: 50%;
  transition: 0.2s;
}
.post-nav .prev:before {
  transform: scale(-1, 1);
}
.post-nav .next {
  justify-content: flex-end;
  text-align: right;
}
.post-nav .node-btn {
  margin-bottom: 0;
  justify-content: center;
}
@media (max-width: 949px) {
  /* .post-nav div:nth-child(2) {
    border-top: 1px solid #b0a69c;
  } */
}
@media (min-width: 950px) {
  .pager a:hover {
    background: #dfd7d0;
    animation: ButtonArrowMove 1s;
  }
  .post-nav {
    padding: 1em 0;
    border-top: 1px solid #b0a69c;
  }
  .post-nav ul {
    display: flex;
    gap: 30px;
  }
  .post-nav .prev,
  .post-nav .next {
    flex: 1;
  }
  .post-nav a {
    padding: 15px 0;
  }
  .post-nav .prev a:hover {
    transform: translateX(10px);
  }
  .post-nav .next a:hover {
    transform: translateX(-10px);
  }
  .post-nav .prev:hover:before,
  .post-nav .next:hover:after {
    animation: ButtonArrowMove 1s;
  }
  .post-nav .prev:hover:before {
    transform: scale(-0.9, 0.9);
  }
  .post-nav .next:hover:after {
    transform: scale(0.9);
  }
}
/*--------------------------------------
  # Works
--------------------------------------*/
.works-search-wrapper .works-search-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 365px;
  margin: 0 auto;
  padding: 16px 50px;
  background: var(--linkColor);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
.works-search-wrapper .works-search-button a:before {
  content: '';
  width: 33px;
  height: 27px;
  margin-right: 5px;
  background: url(../img/icon/search.svg) no-repeat center;
  background-size: contain;
}
#works-search.fancybox__content {
  padding: 0;
}
#works-search .works-search-content {
  max-width: calc(100vw - 4em);
  max-height: calc(100svh - 4em);
  overflow: auto;
}
/* #works-search .works-search-content h3 {
  margin: 0 0 1em;
  padding: 0.25em 40px 0.25em 0.5em;
  background: #f8f5f3;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-size: min(6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
} */
#works-search .works-search-inner {
  padding: 0 1em 60px;
}
#works-search .works-search-inner h3 {
  margin: 0 0 0.75em;
  padding-bottom: 0.25em;
  color: var(--titleColor);
  border-bottom: 1px solid #b0a69c;
}
#works-search .works-search-inner h3:first-child {
  margin-top: 40px;
}
#works-search .works-search-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0.5em 2em;
}
#works-search .works-search-inner li {
  display: flex;
  line-height: 1.4;
}
#works-search .works-search-inner input[type="checkbox"] {
  margin: 0.2em 0.3em 0 0;
}
#works-search .search-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 50px;
  background: #f8f5f3;
  background: var(--linkColor);
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
}
.works-list-wrapper {
  counter-reset: count 0;
}
.works-list-wrapper .works-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: 0.2s;
}
.works-list-wrapper .works-item a {
  text-decoration: none;
}
.works-list-wrapper .works-item dt a {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 312 / 185;
  line-height: 0;
  overflow: hidden;
}
.works-list-wrapper .works-item dt a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.works-list-wrapper .works-item dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}
.works-list-wrapper .works-item .works-icon {
  position: absolute;
  top: 10px;
  left: 10px;
}
.works-list-wrapper .works-item .works-icon li {
  background: #fff;
}
.works-list-wrapper .works-item .works-icon li a {
  padding: 0.2em 0.5em;
}
.works-list-wrapper .works-item dd .works-title {
  flex: 1;
  margin-bottom: 1em;
}
.works-icon, .works-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.works-icon li {
  color: var(--accentColor);
  font-size: 1.3rem;
  font-weight: 700;
}
.works-icon a {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  transition: 0.2s;
}
.works-icon i {
  font-size: 110%;
}
.works-tag a {
  display: block;
  padding: 0.2em 0.5em;
  color: var(--titleColor);
  font-size: 1.2rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid #c4bcb4;
  border-radius: 3px;
  transition: 0.2s;
}
.works-tag .ctg a {
  background: var(--linkColor);
  color: #fff;
  border-color: var(--linkColor);
}
.works-title {
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
}
.works-title a {
  font-size: 1.8rem;
  text-decoration: none;
  transition: 0.2s;
}
.works-title a .icon {
  display: inline-flex;
  margin: 0 0.25em 0.1em 0;
  align-items: center;
  color: var(--accentColor);
  font-size: 87.5%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
}
.works-title a .icon:after {
  content: counter(count, decimal-leading-zero);
  counter-increment: count 1;
}
.works-list-wrapper.sub .works-item {
  width: calc(50% - 7.5px);
  height: auto;
}
.works-list-wrapper.sub .works-item dd {
  padding: 5px 10px 15px;
}
.works-list-wrapper.sub .works-icon {
  top: 5px;
  left: 5px;
  gap: 5px;
}
.works-list-wrapper.sub .works-icon li {
  font-size: 1.0rem;
}
.works-list-wrapper.sub .works-tag {
  gap: 5px;
}
.works-list-wrapper.sub .works-title a {
  font-size: 1.4rem;
}
.works-block {
  padding: 0 20px;
}
.node-wrapper .works-block {
  padding: 0;
}
.works-block .works-ttl h3 {
  margin-top: 0;
  padding-top: 0;
}
.works-block .swiper-wrapper .img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  line-height: 0;
  overflow: hidden;
}
.works-block .swiper-wrapper .img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.works-block .swiper-works-main {
  margin: 0 -10px 15px;
  padding: 0 10px;
}
.works-block .swiper-works-main .swiper-slide {
  position: relative;
  background: #fff;
}
.works-block .swiper-works-main .swiper-slide .beforeafter {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  position: relative;
  width: 100%;
  height: 100%;
}
.works-block .swiper-works-main .swiper-slide .beforeafter img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.works-block .swiper-works-main .swiper-slide .beforeafter .after {
  position: absolute;
  inset: 0;
  /* position: relative;
  max-width: 100%;
  max-height: 100%; */
}
.works-block .swiper-works-main .swiper-slide .beforeafter .before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.works-block .swiper-works-main .swiper-slide .beforeafter .before img {
  max-width: inherit;
  /* object-fit: cover; */
}
.works-block .swiper-works-main .swiper-slide .beforeafter .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: #fff;
  cursor: ew-resize;
}
.works-block .swiper-works-main .swiper-slide .beforeafter .divider:before {
  content: "\f07e";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--linkColor);
  font-size: 160%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-align: center;
  border: 3px solid var(--linkColor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-in-out;
}
.works-block .swiper-works-main .swiper-slide .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.25em 1em;
  background: rgba(255,255,255,0.6);
  font-size: 87.5%;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.works-block .swiper-works-main .swiper-slide .text p {
  margin: 0;
}
.works-block .swiper-works-main .swiper-slide.swiper-slide-active .text {
  opacity: 1;
  transform: translateY(0);
}
.swiper-works-main .swiper-button-next,
.swiper-works-main .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--linkColor) url(../img/icon/arrow_white.svg) no-repeat center;
  background-size: 65% auto;
  border-radius: 50%;
  transition: 0.2s;
}
.swiper-works-main .swiper-button-next {
  right: 0;
}
.swiper-works-main .swiper-button-prev {
  left: 0;
  transform: scale(-1, 1);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.works-block .swiper-works-thumbnail {
  /* padding: 0 20px 20px; */
  padding-bottom: 20px;
}
.works-block .swiper-works-thumbnail .swiper-slide {
  width: 100px;
  height: auto;
  opacity: 0.5;
  cursor: pointer;
}
.works-block .swiper-works-thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}
.works-block .swiper-works-thumbnail .swiper-horizontal>.swiper-scrollbar,
.works-block .swiper-works-thumbnail .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 3px !important;
}
.works-block .swiper-works-thumbnail .swiper-scrollbar-drag {
  background: var(--accentColor) !important;
}
.buken-data > dl {
  display: flex;
  padding: 0.5em 0;
  font-size: 95%;
  border-bottom: 1px solid #b0a69c;
}
.buken-data > dl:first-child {
  border-top: 1px solid #b0a69c;
}
.buken-data > dl dt {
  width: 8em;
  padding: 0 0.25em;
  font-weight: 500;
  border-right: 1px dotted #b0a69c;
}
.buken-data > dl dd {
  flex: 1;
  padding: 0 0.25em 0 1em;
}
@media (max-width: 949px) {
  .f-button.is-close-btn {
    background: var(--linkColor);
  }
  #works-search .works-search-inner ul[data-type="type"] li,
  #works-search .works-search-inner ul[data-type="taste"] li {
    width: calc(50% - 5px);
  }
  #works-search .works-search-inner ul[data-type="area"] li,
  #works-search .works-search-inner ul[data-type="parts"] li {
    width: calc(33.3% - 6.6px);
  }
  .works-list-wrapper .works-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .works-list-wrapper.sub {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .works-list-wrapper.sub .works-item:not(:last-child) {
    margin-bottom: 0;
  }
  .works-list-wrapper.sub .works-tag {
    font-size: 50%;
  }
  .works-list-wrapper.sub .works-tag a {
    font-size: 0.9rem;
  }
  .works-block .photo {
    margin-top: 1em;
  }
  .works-block .data {
    margin-top: 40px;
  }
}
@media (min-width: 950px) {
  .works-search-wrapper .works-search-button a:hover {
    transform: scale(0.95);
    animation: ButtonArrowMove 1s;
  }
  #works-search .works-search-content {
    width: calc(100vw - 4em - 80px);
    max-width: 1080px;
    max-height: calc(100svh - 4em - 80px);
  }
  #works-search .works-search-inner {
    padding: 0 40px 60px;
  }
  #works-search .works-search-inner .form-item {
    display: block;
  }
  #works-search .works-search-inner ul {
    gap: 15px 20px;
  }
  #works-search .works-search-inner li {
    width: calc(25% - 15px);
  }
  #works-search .search-button:hover {
    opacity: 0.8;
  }
  .works-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
  }
  .works-list-wrapper .works-item {
    width: calc(33.3% - 20px);
    height: auto;
    margin-bottom: 30px;
  }
  .works-list-wrapper .works-item:hover {
    transform: translate(2px, 2px);
    box-shadow: none;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  }
  .works-list-wrapper .works-item a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  .works-list-wrapper .works-item dd a:hover {
    opacity: 0.6;
  }
  .works-tag {
    gap: 6px 10px;
    margin-top: auto;
  }
  .works-tag a {
    font-size: 1.2rem;
  }
  .works-icon a:hover,
  .works-tag a:hover {
    opacity: 0.7;
  }
  .works-title a {
    font-size: 1.8rem;
  }
  .works-list-wrapper.sub .works-item {
    width: calc(25% - 22.5px);
    height: auto;
  }
  .works-list-wrapper.sub .works-item dd {
    padding: 10px 15px 15px;
  }
  .works-list-wrapper.sub .works-icon li {
    font-size: 1.2rem;
  }
  .works-list-wrapper.sub .works-tag a {
    font-size: 1.1rem;
  }
  .works-list-wrapper.sub .works-title a {
    font-size: 1.6rem !important;
  }
  .works-list-wrapper .works-item.pickup {
    flex-direction: row;
    gap: 30px;
    width: 100%;
    padding: 10px;
  }
  .works-list-wrapper .works-item.pickup dt {
    width: 40%;
  }
  .works-list-wrapper .works-item.pickup dd {
    flex: 1;
    justify-content: center;
  }
  .works-list-wrapper .works-item.pickup .works-icon {
    top: 20px;
    left: 20px;
  }
  .works-list-wrapper .works-item dd .works-title {
    flex: none;
  }
  .works-list-wrapper .works-item dd .works-title a {
    font-size: 2.4rem;
  }
  /* .works-list-wrapper:not(.sub) .works-item dd .works-tag {
    margin-top: 1.5em;
  } */
  .works-block {
    padding: 0 min(6%, 80px);
  }
  .works-block .works-ttl {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: minmax(0, min(50%, 600px)) minmax(0, 540px);
    justify-content: center;
    gap: 40px 60px;
  }
  .works-block .works-ttl .works-icon {
    margin-bottom: 5px;
  }
  .works-block .works-ttl .works-icon li {
    font-size: 1.4rem;
  }
  .works-block .works-ttl .title {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    justify-content: flex-start;
  }
  .works-block .works-ttl .photo {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  .works-block .swiper-works-main {
    margin: 0 -30px 15px;
    padding: 0 30px;
  }
  .works-block .works-ttl .data {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: start;
  }
  .buken-data > dl {
    padding: 0.75em 0.25em;
    font-size: 87.5%;
  }
  .buken-data > dl dt {
    padding: 0 0.5em;
  }
  .buken-data > dl dd {
    padding: 0 0.5em 0 1.25em;
  }
  .swiper-works-main .swiper-button-next {
    right: 15px;
  }
  .swiper-works-main .swiper-button-prev {
    left: 15px;
  }
  .swiper-works-main .swiper-button-next:hover,
  .swiper-works-main .swiper-button-prev:hover {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  .swiper-works-main .swiper-button-prev:hover {
    transform: scale(-0.9, 0.9);
  }
}

/*--------------------------------------
  # Voices
--------------------------------------*/
.voice-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.voice-list-wrapper .voice-item {
  position: relative;
  width: calc(50% - 10px);
}
.voice-list-wrapper .voice-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
.voice-list-wrapper .voice-item a {
  text-decoration: none;
}
.voice-list-wrapper .voice-item .img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  line-height: 0;
  overflow: hidden;
}
.voice-list-wrapper .voice-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.voice-list-wrapper .voice-item .works-icon {
  position: absolute;
  top: 5px;
  left: 5px;
  gap: 5px;
}
.voice-list-wrapper .voice-item .works-icon li,
.voice-ttl .works-icon li {
  display: flex;
  align-items: center;
  gap: 3px;
}
.voice-list-wrapper .voice-item .works-icon li {
  padding: 0.2em 0.5em;
  background: #fff;
  font-size: 1.1rem;
}
.voice-list-wrapper .voice-item .works-icon li.name {
  background: #777069;
  color: #fff;
  font-weight: 500;
}
.voice-list-wrapper .voice-item .works-title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #fff;
  font-size: 90%;
  z-index: 2;
}
.voice-ttl .article-supplement {
  margin: 0 0 10px;
}
.voice-ttl .works-icon li {
  font-size: 1.4rem;
}
.voice-ttl .works-icon li.name {
  color: #777069;
  opacity: 0.6;
}
.node .voice-ttl .article-title {
  margin-top: 0;
  padding-top: 0;
}
.node .voice-ttl .img {
  width: 90%;
  margin: 20px auto 0;
  line-height: 0;
}
.interview-wrapper li {
  overflow: hidden;
}
.interview-wrapper li:not(:last-child) {
  margin-bottom: 2em;
}
.interview-wrapper li[data-scrollin] {
  transition: 0.8s;
}
.interview-wrapper li[data-scrollin]:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.interview-wrapper li .txtbloc {
  text-align: left !important;
}
.interview-wrapper li img {
  width: 90%;
  line-height: 0;
}

@media (min-width: 950px) {
  .voice-list-wrapper {
    gap: 40px;
  }
  .voice-list-wrapper .voice-item {
    width: calc(25% - 30px);
  }
  .voice-list-wrapper .voice-item a:hover .img img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  .voice-ttl {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 40% 1fr;
    gap: 0 40px;
  }
  .voice-ttl .article-supplement {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    align-self: end;
  }
  .voice-ttl .works-icon li {
    font-size: 1.6rem;
  }
  .node .voice-ttl .article-title {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: start;
  }
  .node .voice-ttl .img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 100%;
    margin: 0;
  }
  .interview-wrapper li .txtbloc {
    max-width: calc(65% - 60px);
    margin-left: 0;
    margin-right: 0;
  }
  .interview-wrapper li .vtext {
    padding-left: 1em;
  }
  .interview-wrapper li img {
    width: 100%;
  }
}
/*--------------------------------------
  # Staff
--------------------------------------*/
ul.staffList {
  display: flex;
  flex-direction: column;
}
ul.staffList li a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  padding: 12px 0;
  text-decoration: none;
}
ul.staffList li .img {
  position: relative;
  width: 45%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
ul.staffList li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
ul.staffList li .text {
  flex: 1;
}
ul.staffList li .text p {
  margin-bottom: 0;
  line-height: 1.4;
}
ul.staffList li .text .staffp1 {
  margin-bottom: 0.25em;
  font-size: 87.5%;
  font-weight: 500;
  opacity: 0.7;
}
ul.staffList li .text .staffp2 {
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-size: 138%;
  font-weight: 500;
  letter-spacing: 2px;
}
ul.staffList.sub li .img {
  width: 35%;
}
ul.staffList.sub li .text .staffp2 {
  font-size: 118%;
}
.staff-ttl {
  margin-bottom: 40px;
}
.staff-ttl .article-supplement {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.staff-ttl .article-supplement .position {
  margin-bottom: 0;
  font-size: 87.5%;
  font-weight: 500;
  opacity: 0.7;
}
.node .staff-ttl .article-title {
  margin: 0;
  padding: 0;
}
.node .staff-ttl .img {
  width: 75%;
  margin: 20px auto;
  line-height: 0;
}
table.staffProfile {
  margin-top: 0;
  border-left: none;
}
table.staffProfile th,
table.staffProfile td {
  border-right: none;
}
table.staffProfile th {
  background: none;
}
@media (max-width: 949px) {
  ul.staffList li:not(:last-child) {
    background-image: linear-gradient(to right, #b0a69c 1px, transparent 1px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  table.staffProfile.sp-style th {
    padding: 10px 5px 0;
  }
  table.staffProfile.sp-style td {
    padding: 0 15px 10px;
  }
  table.staffProfile02 {
    font-size: 90%;
  }
}
@media (min-width: 950px) {
  ul.staffList {
    flex-direction: row;
    flex-wrap: wrap;
  }
  ul.staffList li {
    width: 50%;
    padding: 20px 0;
  }
  ul.staffList:not(.sub) li:nth-child(n+3) {
    background-image: linear-gradient(to right, #b0a69c 1px, transparent 1px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  ul.staffList li a {
    gap: 0 40px;
    padding: 0 20px;
  }
  ul.staffList:not(.sub) li:nth-child(even) a {
    background-image: linear-gradient(to bottom, #b0a69c 1px, transparent 1px);
    background-size: 1px 3px;
    background-repeat: repeat-y;
    background-position: left top;
  }
  ul.staffList li .img {
    width: 50%;
  }
  ul.staffList li a:hover .img img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  ul.staffList li .text .staffp2 {
    font-size: 160%;
  }
  ul.staffList.sub li {
    width: 33.3%;
  }
  ul.staffList.sub li:nth-child(n+4) {
    background-image: linear-gradient(to right, #b0a69c 1px, transparent 1px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  ul.staffList.sub li:not(:nth-child(3n+1)) a {
    background-image: linear-gradient(to bottom, #b0a69c 1px, transparent 1px);
    background-size: 1px 3px;
    background-repeat: repeat-y;
    background-position: left top;
  }
  ul.staffList.sub li .img {
    width: 45%;
  }
  .staff-ttl {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 35% 1fr;
    gap: 0 40px;
    margin-bottom: 60px;
  }
  .staff-ttl .article-supplement {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    justify-content: flex-start;
    gap: 20px;
  }
  .staff-ttl .article-supplement .position {
    margin-top: 1em;
  }
  .node .staff-ttl .img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 100%;
    margin: 0;
  }
  .node .staff-ttl .staffProfile {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: start;
  }
  table.staffProfile th {
    vertical-align: middle;
  }
}
/*--------------------------------------
  # Bukken
--------------------------------------*/
ul.fudousan_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
ul.fudousan_list li {
  border-left: 3px solid var(--linkColor);
}
ul.fudousan_list li a {
  position: relative;
	display: block;
  text-decoration: none;
}
ul.fudousan_list li .box1 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  aspect-ratio: 16 / 9;
  aspect-ratio: 33 / 23;
  line-height: 0;
  overflow: hidden;
}
ul.fudousan_list li .box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
ul.fudousan_list li .box3 {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}
.f-label,
.is_close,
.is_new {
  padding: 0.25em 0.75em;
  font-weight: 500;
  line-height: 1.2;
}
.f-label {
  background: var(--accentColor);
  color: #fff;
}
.is_close {
  background: #fff;
  color: #b0a69c;
	white-space:nowrap;
}
.is_new {
  background: var(--btnColor);
  color: var(--titleColor);
	white-space:nowrap;
}
ul.fudousan_list li .midashi {
  padding: 15px 0 10px 15px;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
}
.works-ttl .title .bukken-icon {
  display: flex;
  gap: 5px 10px;
  margin-bottom: 1em;
  align-items: center;
}
.works-ttl .title .bukken-icon .label {
  display: block;
  padding: 0 0.75em 0.2em;
  font-size: 1.2rem;
  color: #FFF;
  background: #b0a69c;
  border-radius: 3px;
}
.works-ttl .title .bukken-icon .f-label {
  display: block;
  padding: 0.3em 0.75em;
  font-size: 1.3rem;
}
.works-ttl .title .bukken-icon .f-label.close {
  border: 1px solid;
}
.f-label.close {
  background: #fff;
  color: #b0a69c;
}
ul.bukkenList.sub li .text .staffp2 {
  font-size: 95%;
}
table.fudousaninfo {
  font-size: 87.5%;
}
table.fudousaninfo th,
table.fudousaninfo td {
  padding: 10px;
  line-height: 1.4;
}
table.fudousaninfo th {
  width: calc(5em + 21px);
  letter-spacing: 0;
}
@media (max-width: 949px) {
  ul.fudousan_list li .box2 {
    display: none;
  }
}
@media (min-width: 950px) {
  ul.fudousan_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  ul.fudousan_list li {
    width: calc(33.3% - 26.6px);
    border-left: 5px solid var(--linkColor);
  }
  ul.fudousan_list li a:hover .box1 img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  ul.fudousan_list li .box2 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(58,32,8, 0.8);
    transition: 0.3s;
    transform: translateX(-100%);
  }
  ul.fudousan_list li a:hover .box2 {
    transform: translateX(0);
  }
  ul.fudousan_list li .box2 .desc {
    padding: 20px 10px;
  }
  ul.fudousan_list li .box2 table {
    width: auto;
    margin: 0;
    background: none;
    border: none;
  }
  ul.fudousan_list li .box2 table th,
  ul.fudousan_list li .box2 table td {
    padding: 5px;
    background: none;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4;
    border: none;
  }
  ul.fudousan_list li .box2 table th {
    white-space: nowrap;
  }
  ul.bukkenList.sub li a {
    gap: 0 20px;
  }
  ul.bukkenList.sub li .img {
    width: 130px;
  }
  table.fudousaninfo th {
    width: calc(10em + 21px);
  }
}
/*--------------------------------------
  # Event
--------------------------------------*/
.event_catch {
  color: var(--titleColor);
  font-weight: 600;
}
.eventchirasi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1em;
}
.eventchirasi > a {
  position: relative;
  display: block;
  width: calc(20% - 8px);
  width: calc(25% - 7.5px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.eventchirasi > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.eventchirasi > a.link-pdf > img {
  object-fit: contain;
  transform: scale(0.75);
}
.iframe-wrapper .map {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 1em;
  padding-top: 340px;
  overflow: hidden;
}
.iframe-wrapper .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 950px) {
  .eventchirasi > a {
    width: calc(20% - 8px);
  }
  .eventchirasi > a:hover > img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  .eventchirasi > a.link-pdf:hover > img {
    transform: scale(0.8);
  }
  .iframe-wrapper .map {
    padding-top: 450px;
  }
}
/*--------------------------------------
  # Faq
--------------------------------------*/
.node .ewd-ufaq-faq-category-title h3 {
  padding: 30px 0 0;
  color: var(--titleColor);
  font-size: min(6vw, 2.4rem);
  font-weight: 500;
  background: none;
}
.node .ewd-ufaq-faq-div {
  margin-bottom: 0 !important;
  padding: 15px 0 !important;
  background: none;
  border-bottom: 1px solid #d8d2ce;
}
.node div.ewd-ufaq-faq-title .ewd-ufaq-post-margin {
  display: flex;
}
.node div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
  position: relative;
  flex-shrink: 0;
  float: none;
  width: 2em;
  height: 0;
  margin: 0 !important;
  padding-top: 2em !important;
  overflow: hidden;
}
.node div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol:before {
  content: 'Q';
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--accentColor);
  font-size: 1.8rem;
  font-family: "Marcellus", serif;
  transform: translate(-50%, -50%);
}
.node .ewd-ufaq-post-margin-symbol, .node .ewd-ufaq-toggle-all-symbol {
  content: '';
}
.node .ewd-ufaq-faq-title-text {
  float: none;
  width: auto;
}
.node .ewd-ufaq-faq-title-text h4 {
  margin: 0 !important;
  padding: 0;
  background: none;
  color: var(--titleColor);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
}
.node .ewd-ufaq-clear {
  position: relative;
  flex-shrink: 0;
  margin: auto 0 auto auto;
  width: 2em;
  height: 2em;
}
.node .ewd-ufaq-clear:before,
.node .ewd-ufaq-clear:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 2px;
  background: var(--linkColor);
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.node .ewd-ufaq-faq-div:not(.ewd-ufaq-post-active) .ewd-ufaq-clear:before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.node .ewd-ufaq-faq-body {
  padding: 10px 0 0 2.5em;
}
.node .ewd-ufaq-faq-body:before {
  content: 'A';
  top: 10px;
  width: 2em;
  color: #b0a69c;
  font-size: 1.8rem;
  font-family: "Marcellus", serif;
  text-align: center;
}
.node .ewd-ufaq-faq-post {
  padding: 0;
}
.node .ewd-ufaq-faq-post > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 950px) {
  .node .ewd-ufaq-faq-category-title h3 {
    font-size: min(2.8vw, 3.8rem);
  }
}

/*--------------------------------------
  # Location
--------------------------------------*/
.location #page-title .page-title-img {
  min-height: 300px;
}
.location #page-title .page-title-txt {
  bottom: 60px;
}
.location #page-title .page-title-txt h2 > span {
  padding: 5px 20px;
}
.location #page-title .page-title-txt .en {
  display: none;
}
.location-ttl {
  position: relative;
  margin: -80px 20px 40px 0;
  padding: 20px 20px 0;
  background: var(--titleColor);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  overflow: hidden;
}
.location-ttl .emblem {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 55%;
  opacity: 0.3;
  filter: grayscale(0.7);
  z-index: 10;
}
.location-ttl .emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location-ttl p {
  position: relative;
}
.features-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.8s;
}
.features-wrapper:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.features-wrapper h3 {
  margin: 0 0 -1px;
  padding: 0.1em 0.5em 0.3em;
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  border: 1px solid;
}
.features-wrapper h3:first-letter {
  font-size: 2.2rem;
}
ul.features-list {
  width: 100%;
  padding: 0 10px;
  border: 1px solid var(--titleColor);
  counter-reset: count 0;
}
ul.features-list li {
  transition: 0.8s;
}
ul.features-list li:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
ul.features-list li a {
  display: block;
  padding: 10px 0 15px;
  text-decoration: none;
  transition: 0.6s;
}
ul.features-list li a dl dt {
  display: flex;
  align-items: center;
  margin: 0 0 0.25em;
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.2;
}
ul.features-list li a dl dt .icon {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-right: 1em;
  color: var(--accentColor);
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
}
ul.features-list li a dl dt .icon:before,
ul.features-list li a dl dt .icon:after {
  content: counter(count);
}
ul.features-list li a dl dt .icon:before {
  counter-increment: count;
  position: absolute;
  top: 45%;
  left: 0;
	right: 0;
  color: var(--linkColor);
  font-size: 9.0rem;
  font-family: "Whisper", cursive;
	text-align: center;
  line-height: 1.2;
  opacity: 0.2;
  transform: translate(0, -50%);
}
ul.features-list li a dl dt .icon:after {
  flex-shrink: 0;
}
ul.features-list li a dl dd {
  display: flex;
  gap: 15px;
  padding: 0 5px;
  font-size: 1.4rem;
  line-height: 1.6;
}
ul.features-list li a dl dd .img {
  flex-shrink: 0;
  width: 35%;
}
ul.features-list li a dl dd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
ul.features-list li a dl dd >*:last-child {
  margin-bottom: 0;
}
.location-wrapper h3 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  color: var(--titleColor);
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.location-wrapper h3 > span {
  writing-mode: vertical-rl;
  transition: 0.8s;
}
.location-wrapper h3 > span:nth-child(2) {
  transition-delay: 0.2s;
}
.location-wrapper h3 > span:nth-child(3) {
  transition-delay: 0.4s;
}
.location-wrapper h3 > span:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.location-inner {
  margin: 0 -20px;
  padding: 65px 20px 0;
}
.location-map {
  position: relative;
  margin: 0 -10px 1.6em -25%;
  aspect-ratio: 517 / 351;
}
.location-map > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.8s;
}
.location-map > li:not(.scrollin) {
  opacity: 0;
}
.location-map > li.kokubunji {
  background-image: url(../img/home/kokubunji.png);
  transition-delay: 0.2s;
}
.location-map > li.kodaira {
  background-image: url(../img/home/kodaira.png);
  transition-delay: 0.4s;
}
.location-map > li.koganei {
  background-image: url(../img/home/koganei.png);
  transition-delay: 0.6s;
}
.location-map > li.huchu {
  background-image: url(../img/home/huchu.png);
  transition-delay: 0.8s;
}
.location-map > li.kunitachi {
  background-image: url(../img/home/kunitachi.png);
  transition-delay: 1s;
}
.location-map > li.tachikawa {
  background-image: url(../img/home/tachikawa.png);
  transition-delay: 1.2s;
}
.location-map > li a {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.6em 1.5em;
  background: #fff;
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
	white-space: nowrap;
  border: 1px solid;
  border-radius: 50vh;
  z-index: 1;
  transition: 0.2s;
  transform: translate(-50%, -50%);
}
.location-map > li.kokubunji a {
  top: 40%;
  left: 60%;
}
.location-map > li.kodaira a {
  top: 20%;
  left: 73%;
}
.location-map > li.koganei a {
  top: 45%;
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.location-map > li.huchu a {
  top: 73%;
  left: 73%;
}
.location-map > li.kunitachi a {
  top: 60%;
  left: 48%;
}
.location-map > li.tachikawa a {
  top: 35%;
  left: 30%;
}
.location-map > li.nolink {
  /* filter: grayscale(1); */
  opacity: 0.3;
}
@media (max-width: 949px) {
  ul.features-list li:not(:last-child) {
    border-bottom: 1px solid #d8d2ce;
  }
}
@media (min-width: 950px) {
  .location #page-title .page-title-img {
    min-height: 500px;
  }
  .location #page-title .page-title-txt {
  }
  .location-ttl {
    position: relative;
    display: inline-block;
    margin: -240px min(12%, 160px) 80px min(6%, 80px);
    padding: 30px 60px 0 30px;
  }
  .location-ttl .emblem {
    bottom: -10px;
    width: 250px;
  }
  .location-ttl p {
    font-size: 118%;
  }
  /*
  div.location-ttl span {
    line-height: 1.6;
    background: linear-gradient(#fff, #fff) 0 100% / 100% 100% no-repeat;
  } */
  /* div.location-ttl p > span {
    padding: 0 20px 0.1em;
    background: #fff;
  } */



  .features-wrapper {
    max-width: 1080px;
    margin: 0 auto;
  }
  .features-wrapper h3 {
    position: relative;
    margin: 0 0 -1em;
    padding: 0.2em 1.2em 0.3em;
    background: #fff;
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .features-wrapper h3:first-letter {
    font-size: 2.8rem;
  }
  ul.features-list {
    display: flex;
    padding: 50px 15px 20px;
  }
  ul.features-list li {
    flex: 1;
    padding: 0 15px;
  }
  ul.features-list li:nth-child(1) {
    transition-delay: 0.2s;
  }
  ul.features-list li:nth-child(2) {
    transition-delay: 0.4s;
  }
  ul.features-list li:nth-child(3) {
    transition-delay: 0.6s;
  }
  ul.features-list li:not(:last-child) {
    border-right: 1px solid #d8d2ce;
  }
  ul.features-list li a {
    padding: 0;
  }
  ul.features-list li a dl {
    display: flex;
    flex-direction: column;
  }
  ul.features-list li a dl dt {
    order: 2;
    margin: 0.6em 0;
    font-size: 2.2rem;
  }
  ul.features-list li a dl dt .icon {
    font-size: 1.3rem;
  }
  ul.features-list li a dl dt .icon:before {
    font-size: 10.0rem;
  }
  ul.features-list li a dl dd {
    display: contents;
    padding: 0;
    font-size: 1.5rem;
  }
  ul.features-list li a dl dd .img {
    order: 1;
    width: 100%;
    aspect-ratio: 8 / 5;
    overflow: hidden;
  }
  ul.features-list li a:hover dl dd img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
  ul.features-list li a dl dd p {
    order: 3;
  }
  ul.features-list:hover li a:not(:hover) {
    filter: grayscale(100%);
    opacity: 0.6;
  }
  .location-wrapper {
    display: inline-grid;
    grid-template-rows: auto;
    grid-template-columns: 640px auto;
    gap: 0 35px;
  }
  .location-wrapper h3 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .location-map {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    margin: 0;
  }
  .location-map > li a {
    font-size: 1.5rem;
  }
  .location-map > li.kodaira a {
    top: 22%;
  }
  .location-map > li.koganei a {
    right: 5%;
  }
  .location-map > li.tachikawa a {
    left: 34%;
  }
  .location-map > li a:hover {
    background: var(--linkColor);
    color: #fff;
    border-color: var(--linkColor);
    animation: ButtonArrowMove 1s;
  }
}

/*--------------------------------------
  # Page
--------------------------------------*/
.marker {
  background: linear-gradient(var(--btnColor), var(--btnColor)) 0 100% / 100% 10px no-repeat;
  transition: background 1s .5s;
}
.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.googlemap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a[data-fancybox]:has(img) {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
a[data-fancybox]:has(img):after {
  content: '＋';
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: min(8vw, 3.0rem);
  font-weight: 700;
  transition: 0.4s;
}
.nolink {
  opacity: 0.5;
}
.nolink a {
  pointer-events: none;
}
.nolink a img {
  filter: brightness(1.3);
}
@media (min-width: 950px) {
  .youtube {
    width: 60%;
    margin: 0 auto;
  }
  .googlemap {
    aspect-ratio: 4 / 2;
  }
  a[data-fancybox] > img {
    transition: 0.4s;
  }
  a[data-fancybox]:has(img):after {
    font-size: min(4vw, 6.0rem);
  }
  a[data-fancybox]:hover > img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  a[data-fancybox]:has(img):hover:after {
    background: rgba(0,0,0,0);
    transform: scale(1.4);
  }
}
/* .flex-column
--------------------------------------*/
@media (max-width: 949px) {
  .flex-column .flex-sub {
    width: 100% !important;
  }
}
@media (min-width: 950px) {
  .flex-column {
    display: flex;
    gap: 0 40px;
  }
  .flex-column:not(:last-child) {
    margin-bottom: 40px;
  }
  .flex-column.row-reverse {
    flex-direction: row-reverse;
  }
  .flex-column .flex-sub {
    width: 40%;
    flex-shrink: 0;
  }
  .flex-column .flex-main {
    flex: 1;
  }
  .flex-column .flex-main > *:last-child {
    margin-bottom: 0;
  }
  .flex-column .img {
    position: relative;
    height: 100%;
  }
  .flex-column .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ul.problem-list
--------------------------------------*/
ul.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 1.6em;
}
ul.problem-list > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  width: 90%;
  padding: 25px;
  background: #f8f5f3;
  line-height: 1.6;
  border-radius: 10px;
}
ul.problem-list > li:before,
ul.problem-list > li:after {
  position: absolute;
  color: var(--accentColor);
  font-size: min(6vw, 2.4rem);
  font-size: 360%;
  font-weight: 600;
  line-height: 1.2;
}
ul.problem-list > li:before {
  content: '“';
  top: -0.25em;
  left: 0;
}
ul.problem-list > li:after {
  content: '”';
  bottom: -0.68em;
  right: 0;
}
ul.problem-list > li:not(.scrollin) .marker {
  background-size: 0 10px;
}
ul.problem-list > li .img {
  width: 70%;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  overflow: hidden;
}
ul.problem-list > li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul.problem-list > li .img:has(i) {
  text-align: center;
  aspect-ratio: inherit;
}
ul.problem-list > li .img i {
  color: var(--linkColor);
  font-size: 200%;
}
@media (max-width: 949px) {
  ul.problem-list > li:nth-child(even) {
    margin-left: 10%;
  }
}
@media (min-width: 950px) {
  ul.problem-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  ul.problem-list > li {
    width: calc(25% - 30px);
  }
}
/* .merit-wrapper
--------------------------------------*/
.merit-wrapper {
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  counter-reset: count 0;
}
.merit-wrapper .merit-item {
  padding: 20px 0;
  transition: 0.8s;
}
.merit-wrapper .merit-item[data-scrollin]:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.merit-wrapper .merit-item:not(:last-child) {
  border-bottom: 1px solid #d8d2ce;
}
.merit-wrapper .merit-item .merit-item-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 10px;
}
.merit-wrapper .merit-item .icon {
  flex-shrink: 0;
  position: relative;
  min-width: 3em;
  min-height: 15px;
  color: var(--accentColor);
  font-size: 87.5%;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 4px;
}
.merit-wrapper .merit-item .icon:before,
.merit-wrapper .merit-item .icon:not(.num):after {
  content: counter(count);
}
.merit-wrapper .merit-item .icon:before {
  counter-increment: count;
  position: absolute;
  top: 45%;
  left: 47%;
  color: var(--linkColor);
  font-size: 9.0rem;
  font-family: "Whisper", cursive;
  line-height: 1.2;
  opacity: 0.2;
  transform: translate(-50%, -50%);
}
.merit-wrapper .merit-item .icon i {
  margin-right: 0.2em;
  font-size: min(4.8vw, 2.8rem);
}
.merit-wrapper .merit-item .img {
  width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
}
.merit-wrapper .merit-item .img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merit-wrapper .merit-item .body {
  flex: 1;
}
/* .merit-wrapper .merit-item .body > *:last-child {
  margin-bottom: 0;
} */
.merit-wrapper .merit-item .body h4 {
  padding: 0;
  background: none;
  color: var(--titleColor);
}
.merit-wrapper.compact .merit-item .merit-item-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 20px 10px;
}
.merit-wrapper.compact .merit-item .icon {
  width: 100%;
  margin: 0 0 1em;
}
.merit-wrapper.compact .merit-item .img {
  width: 30%;
}
.merit-wrapper.compact .merit-item .body {
  flex: 1;
}
.merit-wrapper.compact .merit-item .body > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 949px) {
  .merit-wrapper:not(.compact) .merit-item .img {
    order: 3;
  }
  .merit-wrapper:not(.compact) .merit-item .body {
    order: 2;
  }
  .merit-wrapper.compact .flex-block > *:not(:last-child) {
    border-bottom: 1px solid #d8d2ce;
  }
  .merit-wrapper.compact .merit-item {
    padding-top: 30px;
  }
  .merit-wrapper.compact .merit-item .img {
    aspect-ratio: auto;
  }
}
@media (min-width: 950px) {
  .merit-wrapper {
    padding: 0 30px;
  }
  .merit-wrapper .merit-item .merit-item-inner {
    align-items: stretch;
    gap: 0 20px;
  }
  .merit-wrapper .merit-item .icon {
    min-height: 58px;
    margin-bottom: auto;
    padding: 20px 0;
    font-family: "Shippori Mincho", serif;
    font-size: 100%;
  }
  .merit-wrapper .merit-item .icon:before {
    font-size: 11.0rem;
  }
  .merit-wrapper .merit-item .icon i {
    margin: 0;
  }
  .merit-wrapper .merit-item .img {
    max-width: max(35%, 300px);
    margin: 10px 15px 0;
  }
  .merit-wrapper .merit-item .body h4 {
    padding: 15px 0;
  }
  .merit-wrapper .merit-item .body img {
    max-width: max(35%, 300px);
    padding-top: 10px;
  }
  .merit-wrapper.compact .merit-item .merit-item-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-left: 0;
  }
  .merit-wrapper.compact .merit-item .icon {
    position: relative;
  }
  .merit-wrapper.compact .merit-item .img {
    float: none;
    width: 70%;
    margin: 0 auto;
  }
  .merit-wrapper.compact .merit-item .img img {
    height: 100%;
    object-fit: contain;
  }
  .merit-wrapper.compact .merit-item .body {
    display: contents;
  }
  .merit-wrapper.compact .merit-item .body > *:last-child {
    margin-bottom: 0;
  }
}
/* .float-right-bottom-wrapper
--------------------------------------*/
@media (max-width: 949px) {
  .float-right-bottom-wrapper .img {
    max-width: 100% !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 950px) {
  .float-right-bottom-wrapper {
    position: relative;
  }
  .float-right-bottom-wrapper .img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 35%;
    line-height: 0;
    z-index: -1;
  }
}
/* ul.img-column
--------------------------------------*/
ul.img-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1em;
}
ul.img-column > li {
  width: calc(50% - 2.5px);
}
ul.img-column > li:not(:has(p)) > a {
  height: 100%;
}
ul.img-column > li:not(:has(p)) > a > img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul.img-column > li img {
  min-width: 100%;
}
ul.img-column.img-cover > li > a {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
ul.img-column.img-cover > li > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 949px) {
  ul.img-column > li:only-child {
    width: 80%;
  }
}
@media (min-width: 950px) {
  ul.img-column {
    gap: 10px;
  }
  ul.img-column > li {
    width: calc(25% - 7.5px);
  }
}
/* ul.accordion-flow
--------------------------------------*/
ul.accordion-flow {
  margin-bottom: 1.6em;
  counter-reset: count 0;
}
ul.accordion-flow > li {
  position: relative;
  display: flex;
  gap: 10px;
}
ul.accordion-flow > li:not(:last-child):before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: var(--linkColor);
  opacity: 0.3;
}
ul.accordion-flow > li > .icon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--titleColor);
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  line-height: 1.2;
  border-radius: 50%;
}
ul.accordion-flow > li > .icon.num:after {
  counter-increment: count;
  content: counter(count);
}
ul.accordion-flow > li > .icon i {
  width: 100%;
  margin-bottom: 3px;
  font-size: 180%;
  text-align: center;
}
ul.accordion-flow > li dl {
  flex: 1;
  padding: 12px 0;
  background-image: linear-gradient(to right, #b0a69c 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.accordion-flow > li dt {
  margin-bottom: 0.5em;
  color: var(--titleColor);
  font-size: 118%;
  font-weight: 600;
}
ul.accordion-flow > li dd {
  font-size: 95%;
  line-height: 1.6;
}
ul.accordion-flow > li dd > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 950px) {
  ul.accordion-flow > li {
    gap: 20px;
    min-height: 120px;
  }
  ul.accordion-flow > li:not(:last-child):before {
    left: 48px;
    width: 5px;
  }
  ul.accordion-flow > li > .icon {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
  }
  ul.accordion-flow > li > .icon i {
    font-size: 210%;
  }
  ul.accordion-flow > li dl {
    padding: 18px 0;
  }
  ul.accordion-flow > li dd {
    font-size: 100%;
    overflow: hidden;
  }
  ul.accordion-flow > li dd ul.img-column {
    justify-content: flex-end;
    float: right;
    margin: 0 0 0 20px;
  }
  ul.accordion-flow > li dd ul.img-column > li {
    width: 240px;
  }
}
/* bg-box
--------------------------------------*/
.bg-box {
  margin-bottom: 1.6em;
  padding: 20px;
  background: #f8f5f3;
}
.node.bg .bg-box {
  background: #fff;
}
dl.bg-box dt {
  margin: 0 0 1em -5px;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-size: 118%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
}
/* border-box
--------------------------------------*/
.border-box {
  margin-bottom: 1.6em;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--titleColor);
}
dl.border-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: none;
  border: none;
}
dl.border-box dt {
  position: relative;
  margin: 0 10px 0 0;
  padding: 0.2em 0.5em 0.3em;
  background: #fff;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-size: 118%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  border: 1px solid var(--titleColor);
}
dl.border-box dd {
  width: 100%;
  margin: -0.75em 0 0;
  padding: 25px 20px 20px;
  background: #fff;
  border: 1px solid var(--titleColor);
}
@media (min-width: 950px) {
  dl.border-box dt {
    margin: 0 20px 0 0;
  }
}

/* .node-ttl
--------------------------------------*/
.node-ttl {
  margin: 30px 0;
  padding: 30px 0 0;
  color: var(--accentColor);
  text-align: center;
  line-height: 1.2;
}
.node-ttl:first-child {
  margin-top: 0;
  padding-top: 0;
}
.node-ttl .en {
  font-size: 2.0rem;
  font-family: "Marcellus", serif;
  letter-spacing: 1.5px;
}
.node-ttl .jp {
  margin-top: 0;
  padding-top: 0;
  color: var(--accentColor);
  font-size: 1.5rem;
}
.node-ttl[data-scrollin] .en {
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
.node-ttl[data-scrollin] .jp {
  clip-path: inset(0);
  transition: all 2s ease 0.4s;
}
.node-ttl[data-scrollin]:not(.scrollin) .en,
.node-ttl[data-scrollin]:not(.scrollin) .jp {
  clip-path: inset(0 100% 0 0);
}
@media (min-width: 950px) {
  .node-ttl .en {
    font-size: 2.6rem;
  }
  .node-ttl .jp {
    font-size: min(1.2vw, 1.6rem);
  }
}
/* text-vw
--------------------------------------*/
.text-vw {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  color: var(--titleColor);
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.text-vw > span {
  padding: 0.25em 0 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: 0.8s;
}
.text-vw > span:nth-child(2) {
  transition-delay: 0.2s;
}
.text-vw > span:nth-child(3) {
  transition-delay: 0.4s;
}
.text-vw > span:nth-child(4) {
  transition-delay: 0.6s;
}
.text-vw > span:nth-child(5) {
  transition-delay: 0.8s;
}
.text-vw > span:nth-child(6) {
  transition-delay: 1s;
}
.text-vw > span:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
@media (min-width: 950px) {
  .text-vw {
    font-size: min(2vw, 3.0rem);
  }
}
/* history-table
--------------------------------------*/
table.history-table {
  border-left: none;
}
table.history-table th,
table.history-table td {
  border-right: none;
}
table.history-table tr:nth-child(even) th,
table.history-table tr:nth-child(even) td {
  background: #f8f5f3;
}
table.history-table th {
  background: none;
}
@media (max-width: 949px) {
  table.history-table.sp-style th {
    padding: 5px 10px 0;
  }
}
@media (min-width: 950px) {
  table.history-table th {
    white-space: nowrap;
  }
}
/* text-box
--------------------------------------*/
.text-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.6em;
}
.text-box > li {
  padding: 0.3em 1em 0.5em;
  border: 1px solid #b0a69c;
  line-height: 1.4;
}
/* speech-bubble
--------------------------------------*/
dl.speech-bubble {
  display: flex;
  align-items: center;
  margin-bottom: 1.6em;
}
dl.speech-bubble > dt {
  width: min(20%, 80px);
}
dl.speech-bubble > dd {
  position: relative;
  margin-left: 10px;
  padding: 0.5em 1em;
  line-height: 1.4;
  border: 2px solid var(--titleColor);
  border-radius: 10px;
}
/* dl.speech-bubble > dd:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 100%;
  height: 100%;
  background: #777;
  border-radius: 10px;
  z-index: -1;
} */
dl.speech-bubble > dd:after {
  content: "ー";
  position: absolute;
  top: 50%;
  right: calc(100% - 0.3em);
  color: var(--titleColor);
  font-size: 140%;
  text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
  transform: translate(0, -50%) rotate(30deg);
}

/*--------------------------------------
  # FAQ
--------------------------------------*/
.faq-block .icon {
  position: absolute;
  left: 0;
  width: 2.2em;
  font-family: "Marcellus", serif;
  font-size: 1.2em;
  text-align: center;
  line-height: 1.4;
}
.faq-block .accordion-title {
  padding-left: 2.5em;
}
.faq-block .accordion-content {
  position: relative;
  padding-left: 2.5em;
}
.faq-block .accordion-content .icon {
  color: #999;
}

/*--------------------------------------
    # form
--------------------------------------*/
.contact-box {
  position: relative;
  display: inline-block;
  margin-bottom: -30px !important;
  padding: 30px 20px;
  background: var(--linkColor);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.contact-box .tel-num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.2;
}
.contact-box .tel-num .freedial {
  padding-bottom: 30px;
  background: url(../img/icon/freedial_white.svg) no-repeat center 5px;
  background-size: 40px auto;
  font-size: 56%;
  letter-spacing: -1px;
  line-height: 1.2;
}
.contact-box .tel-num a {
  flex-shrink: 0;
  font-size: min(11vw, 3.8rem);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1.5px;
}
.form-wrapper {
}
table.contactform {
  margin: 0 0 2em;
  background: none;
  border-left: none;
  border-top-style: dotted;
}
table.contactform th,
table.contactform td {
  background: none;
  border-right: none;
  border-bottom-style: dotted;
}
table.contactform th > *:last-child,
table.contactform td > *:last-child {
  margin-bottom: 0;
}
table.contactform th > p {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
  margin-bottom: 8px;
}
table.contactform th .hissu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 2em;
  margin-left: 1em;
  background: #fff;
  color: #d70000;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid;
}
table.contactform td input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]) {
  vertical-align: baseline;
  max-width: 100%;
  margin: 5px 0;
  padding: 10px;
  font-size: 110%;
  border: 1px solid #d8d2ce;
}
table.contactform td input[type="checkbox"],
table.contactform td input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0 0.3em 0.2em 0;
}
table.contactform td input[type="file"] {
  background: #fff;
  font-size: 100% !important;
}
table.contactform td select {
  display: inline-block;
  max-width: 100%;
  padding: 10px;
  font-size: 100%;
  border: 1px solid #d8d2ce;
}
table.contactform td textarea {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 100%;
  border: 1px solid #d8d2ce;
}
table.contactform td textarea[readonly="readonly"] {
  color: #999;
}
table.contactform td .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
table.contactform td .wpcf7-form-control-wrap {
  display: inline-block;
}
table.contactform td .wpcf7-form-control-wrap:has(textarea) {
  display: block;
}
.form-wrapper .wpcf7-not-valid-tip {
    margin-top: 4px;
    padding: 5px;
    color: #F00;
    font-size: 1.2rem;
    background: #fff1f1;
    line-height: 1.4;
}
.form-wrapper .form-item-cloudflare {
    text-align: center;
}
.form-wrapper .form-item-cloudflare p {
    display: contents;
}
.form-item-btn {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.form-item-btn input {
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 42px;
  padding: 5px 50px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--linkColor);
  border: 1px solid var(--linkColor);
  border-radius: 50vh;
  outline: none;
  text-decoration: none;
  white-space: normal;
  line-height: 1.2;
  cursor: pointer;
}
.form-item-btn input[disabled] {
  filter: grayscale(1);
	opacity: 0.4;
}
.form-item-btn input.back {
	opacity: 0.4;
}
.form-wrapper .wpcf7 form .wpcf7-response-output {
    margin: 0;
}
.mwform-tel-field input,
.mwform-zip-field input {
    width: auto !important;
}
.form-wrapper .agree {
  padding: 0.5em;
	background: #f5f5f5;
}
table.contactform td .bukkenaddr {
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
table.contactform td .bukkenaddr:not(.is-hidden) {
  height: auto;
  padding-top: 1.6em;
  opacity: 1;
}
.mw_wp_form_confirm .confirm-hidden {
	display: none;
}
@media (max-width: 949px) {
  table.contactform th,
  table.contactform td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  table.contactform th {
    padding-bottom: 0;
    border-bottom: none;
  }
  table.contactform td input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]) {
    width: 100%;
  }
  table.contactform td input[name="person01"],
  table.contactform td input[name="kodomo"] {
    width: 75% !important;
  }
  .form-wrapper .form-item-btn input.back {
    transform: scale(0.9);
  }
  /* .form-wrapper {
      margin: 0 -20px 40px;
      padding: 0 20px 20px;
      background-size: 700px auto;
  } */
}
@media (min-width: 950px) {
  .contact-box {
    margin-bottom: -50px !important;
    padding: 30px 40px;
  }
  .contact-box .tel-num a {
    font-size: min(3.6vw, 5.0rem);
  }
  .form-wrapper .form-inner {
    /* max-width: 700px;
    margin: 0 auto; */
  }
  .form-item-btn {
    flex-direction: row;
    justify-content: center;
  }
  .form-item-btn input {
    min-width: 220px;
    height: 47px;
    padding: 0 60px;
    transition: 0.2s;
  }
  .form-item-btn input:not([disabled]):hover {
    background: #fff;
    color: var(--titleColor);
  }
  table.contactform th,
  table.contactform td {
    vertical-align: middle;
  }
}