@charset "UTF-8"; /*
*/
html.fixed {
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

body {
  position: relative;
}

a {
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.gBody {
  background-color: #f7f6ed;
}

.contents a.link {
  color: var(--c-sub-dark);
  font-weight: var(--w-m);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
  display: inline-block;
  font-size: var(--f-s);
  word-break: break-all;
}

.contents a:not.link:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

section.center {
  text-align: center;
}

[class^="ph-"]:before, [class*=" ph-"]:before {
}

@keyframes dash {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes anim-scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pop-up {
  0% {
    transform: translateY(1rem);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes MenuIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes MenuOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

section .column {
}

section .column.fix-l {
  margin-left: var(--m-fix);
  padding-left: var(--m-xxs);
}

section .column.fix-r {
  margin-right: var(--m-fix);
  padding-left: var(--m-xxs);
}

.box {
  display: block;
}

.box.white {
  padding: var(--m-s);
  background: #fff;
}

.box.gray {
  padding: var(--m-s);
  background: #f9ddf9;
}

.wyp, .column, section {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wyp.enter, .column.enter, section.enter {
  opacity: 1;
  animation: pop-up 0.7s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  line-height: 1.2;
}

h2, h3 {
  line-height: 1.7;
}

h4, h5, h6 {
  line-height: 1.4;
}

p {
  line-height: 2;
}

h3.catch {
  font-size: var(--f-xl);
  margin-bottom: var(--m-m);
  color: #222;
}

p.read {
  font-size: var(--f-r);
}

.text_box p + p {
  margin-top: var(--m-xs);
}

.text_box .column {
  margin-top: var(--m-m);
}

.text_box .column.box {
  background-color: var(--c-05);
  padding: var(--m-s);
  border-radius: var(--m-xxs);
}

section[class^="section-"] {
  position: relative;
  padding-block-start: clamp(3rem, 6vw, 8rem); padding-block-end: clamp(4rem, 8vw, 10rem); }

section[class^="section-"]:last-of-type {
  padding-block-end: clamp(5rem, 10vw, 12rem); }

/* =========================
   Padding utilities
========================= */
.pad-m {
  padding-block-start: clamp(3rem, 6vw, 8rem); padding-block-end: clamp(4rem, 8vw, 10rem); }

.pad-s {
  padding-block-start: clamp(2rem, 4vw, 5rem); padding-block-end: clamp(2rem, 4vw, 5rem); }

.pad-l {
  padding-block-start: clamp(4rem, 8vw, 12rem); padding-block-end: clamp(5rem, 10vw, 14rem); }

.pad-none {
  padding-block: 0; }

.pad-bottom-none {
  padding-block-end: 0; }

/* =========================
   Margin utilities
========================= */
.space-l {
  margin-block: clamp(4rem, 8vw, 10rem); }

.space-m {
  margin-block: clamp(3rem, 6vw, 6rem); }

.space-s {
  margin-block: clamp(1.5rem, 3vw, 3rem); }

.space-none {
  margin-block: 0; }

.space-bottom-none {
  margin-block-end: 0; }

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes anim-scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

:root {
  --c-accent: #1ba7e8;
  --c-accent-dark: #0c78c3;
  --c-sub: #ffd067;
  --c-sub-dark: #d1b478;
  --c-gray-light: #E8E8EF;
  --c-gray: #c7c8dd;
  --c-dark: #444444;
  --c-subtext: #555;
  --c-bg: #f7f8ff;
  --c-muted: #91959a;
  --c-link: #91D2E3;
  --c-link-hover: var(--c-muted);
  --f-sans: 'Noto Sans JP', sans-serif;
  --f-serif: 'Noto Serif JP', serif;
  --f-hand: 'Zen Kurenaido', sans-serif;
  --f-en: 'Plus Jakarta Sans', sans-serif;
  --f-cursive: "Oooh Baby", cursive;
  --bg-light: #fafafa;
  --f-max: clamp(2.8rem, 2.2vw, 32px);
  --f-xxl: clamp(2.2rem, 2vw, 28px);
  --f-xl: clamp(1.6rem, 1.4vw, 24px);
  --f-l: clamp(1.2rem, 1.4vw, 17px);
  --f-m: 1.066rem;
  --f-r: 1rem;
  --f-s: 0.933rem;
  --f-xs: 0.8rem;
  --w-r: 400;
  --w-m: 500;
  --w-b: 700;
  --w-eb: 800;
  --m-xxxl: 12vmax;
  --m-xxl: 8vmax;
  --m-xl: 6vmax;
  --m-l: 4vmax;
  --m-m: 2.5vmax;
  --m-r: 1.8vmax;
  --m-s: 1.2vmax;
  --m-xs: 0.8vmax;
  --m-xxs: 0.3vmax;
  --m-fix: calc(50% - 50vw);
  --max-w: 1200px;
  --l-m: 1.7;
  --transition: cubic-bezier(0.25, 0.1, 0.25, 1);
  --line-height: 1em;
}

.loader-wrap {
  opacity: 1;
  transition: opacity 0.3s ease;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: var(--bg-light);
  z-index: 99;
  flex-direction: column;
  left: 0;
  top: 0;
  gap: 1vw;
  pointer-events: none;
}

.loader-wrap.hide {
  opacity: 0;
}

.loader-wrap p {
  display: block;
  font-size: 11px;
  font-family: system-ui;
  margin-bottom: 5rem;
}

.loader-wrap svg {
  fill: none;
  stroke: dodgerblue;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-dasharray: 118 118;
  animation: loader 1.4s infinite cubic-bezier(.4,0,.3,1), loading 1.2s infinite linear, colors 5.6s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes loader {
  from {
    stroke-dashoffset: 118;
  }

  to {
    stroke-dashoffset: -118;
  }
}

@keyframes loading {
  from {
    transform: none;
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }

  25% {
    stroke: #DE3E35;
  }

  50% {
    stroke: #F7C223;
  }

  75% {
    stroke: #1B9A59;
  }

  100% {
    stroke: #4285F4;
  }
}

.header {
  position: absolute;
  width: 100%;
  z-index: 9;
  padding: min(5%, 30px)
}

.header_title {
  position: relative;
}

.gHeader_title {
  position: relative;
  width: clamp(200px, 24vw, 320px);
  z-index: 9;
  display: flex;
  flex-direction: column;
  transition: --type 0.3s ,color 0.3s;
  --type: #12c0dd;
}

.gHeader_title a {
  display: block;
}

.gHeader_title a:hover {
  opacity: 1;
}

.gHeader_title svg {
  vertical-align: top;
}

.gHeader_title .coname {
  font-size: 10px;
  color: var(--c-muted);
  display: block;
  text-align: center;
  white-space: nowrap;
  text-indent: -15%;
}

.header:before {
  content: "";
  width: 100%;
  height: 0%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  pointer-events: none;
  transition: height 0.2s var(--transition);
  z-index: 0;
  background: rgb(255 255 255 / 30%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.header .u-inner {
  margin: initial;
  max-width: initial;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.fixed .header:before {
  pointer-events: all;
  height: 100%;
}

.fixed body.on .header {
  mix-blend-mode: initial;
  position: fixed;
}

.fixed body.on .header:after {
  height: 100%;
}

body.on .header:after {
  height: 0%;
  transition: all 0.3s var(--transition);
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
}

.fixed body.on .header_title {
  animation: MenuIn 0.6s ease-in-out 0.3s forwards;
  opacity: 0;
}

.header::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0 0 0 / 50%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: -1;
  opacity: 0;
  display: none;
}

.header_title .logo {
  font-size: var(--f-xxxl);
  line-height: 1;
  transform: rotate(-5deg);
  text-align: center;
}

.header_title p {
  font-size: var(--f-xxxs);
  font-weight: var(--w-b);
  white-space: nowrap;
  margin-top: 0.4rem;
  text-align: center;
}

.logo span {
  -webkit-text-stroke: 0.3px currentColor;
}

.logo span:nth-of-type(1) {
  color: var(--c-accent-dark);
}

.logo span:nth-of-type(2) {
  letter-spacing: -0.25em;
  font-size: 80%;
  color: var(--c-accent);
}

.logo span:nth-of-type(3) {
  color: var(--c-accent-dark);
}

.logo span:nth-of-type(4) {
  letter-spacing: -0.25em;
  font-size: 80%;
  color: var(--c-accent);
}

.header_title a {
  display: block;
  opacity: 1;
}

.header_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
  --type: #222;
}

.header_title a:hover svg {
  color: var(--c-04);
}

.header .menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  flex: 1;
  max-width: 660px;
  justify-content: space-around;
}

.header .menu ul.menu-list {
  display: flex;
  font-size: var(--f-s);
  align-items: center;
  font-weight: var(--w-m);
  line-height: 1;
  width: 100%;
  justify-content: space-between;
}

.header .menu .menu-list li a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.header .menu .menu-list li:not(:last-child) a::after {
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-01);
  background: var(--c-accent-dark);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
  z-index: 2;
  display: block;
  margin-top: 5px;
}

.header .menu .menu-list li:not(:last-child) a:hover::after {
  transform: scale(1, 1);
}

.header .menu .menu-list li:not(:last-child) a:hover {
  opacity: 1;
  color: var(--c-01);
  color: var(--c-accent-dark);
}

.header .menu .menu-list li:last-child a {
  border-radius: 3em;
  padding: 0.8rem 1.6rem 0.8rem 1rem;
  align-items: baseline;
  font-weight: var(--w-b);
  font-size: var(--f-xs);
  line-height: 1.1;
  display: flex;
  background: linear-gradient(#fff 0 0) left /var(--d, 0%) 100% no-repeat;
  transition: all .3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
  background-color: var(--c-accent);
  color: initial;
  max-width: 160px;
  margin: 0 auto;
  color: #fff;
}

.header .menu .menu-list li:last-child a:hover {
  --d: 100%;
  opacity: 1;
  color: var(--c-accent);
}

.header .menu .menu-list li {
  order: 2;
}

.util_nav {
  display: flex;
  font-size: var(--f-s);
  gap: 1vmax;
  align-items: center;
  line-height: 1;
  margin: 0 var(--m-xs);
}

.util_nav li {
  display: flex;
  align-items: center;
}

.util_nav li a {
  display: flex;
  align-items: baseline;
  font-weight: bold;
  color: var(--c-accent-dark);
}

.util_nav li a:hover {
  opacity: 1;
  color: var(--c-accent);
}

.util_nav li span {
  font-size: 11px;
  color: #b1754b;
  border: 1px solid currentColor;
  background-color: #fff;
  display: inline-block;
  padding: 0.2rem 0.3rem;
  border-radius: 5px;
  margin-right: 0.3rem;
}

.util_nav li.icon-line a {
  width: 20px;
  height: auto;
}

[class$="-list"] {
}

.p-about a.-about,/**/
.p-service a.-service,/**/
.p-flow a.-flow,/**/
.p-news a.-news,/**/
.p-contact a.-contact {
  color: var(--c-accent);
  transform: scale(1, 1);
}

.p-contact .header .menu .menu-list a.-contact {
  --d: 100%;
  opacity: 1;
  color: var(--c-accent);
}

.menu-trigger {
  position: relative;
  display: flex;
  width: 19px;
  height: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  pointer-events: all;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 14px 12px;
  box-sizing: content-box;
  color: var(--c-dark);
  align-self: flex-start;
  z-index: 2;
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: none;
}

.menu-trigger span {
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  text-indent: -9999em;
  background-color: currentColor;
  color: currentColor;
  display: block;
}

.menu-trigger::before, .menu-trigger::after {
  content: "";
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  background-color: currentColor;
}

.fixed .menu-trigger span {
  background-color: transparent;
}

.fixed .menu-trigger::before {
  transform: rotate(45deg);
  transform-origin: left top;
}

.fixed .menu-trigger::after {
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

@keyframes MenuIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes MenuOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gPageTop {
  position: fixed;
  z-index: 9;
  opacity: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  right: 2.4%;
  transition: opacity .3s;
  mix-blend-mode: difference;
  display: flex;
  justify-content: center;
  mix-blend-mode: multiply;
}

.on .gPageTop {
  opacity: 1;
  pointer-events: all;
}

.gPageTop.absolute {
  position: absolute;
  bottom: auto;
}

.gPageTop_button {
  text-decoration: none;
  display: flex;
  z-index: 1;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.gPageTop_button:hover {
  opacity: 1;
}

.gPageTop_button > .lnr:before {
  font-family: 'Linearicons-Free';
  font-size: 1.6rem;
  margin: 0;
  font-style: normal;
  font-weight: bold;
  position: relative;
}

.gPageTop_button b {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 0.6em;
  white-space: nowrap;
  color: #666;
}

.gPageTop_button b::-moz-selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button b::selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button i {
  height: 5em;
  width: 1px;
  background-color: rgb(102 102 102 / 10%);
  position: relative;
  overflow: hidden;
}

.gPageTop_button i:before {
  content: none;
}

.gPageTop_button i::after {
  content: "";
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  -webkit-animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
  animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
}

.section-title {
  display: flex;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  flex-direction: column-reverse;
}

.section-title .title-jp {
  display: block;
  font-size: var(--f-xs);
  color: currentColor;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.section-title .title-en {
  font-size: var(--f-max);
  font-family: var(--f-cursive);
  color: var(--c-subtext);
  transform: rotate(-1deg);
  width: fit-content;
  display: block;
  text-indent: -0.2rem;
}

.page-title {
  margin-bottom: var(--m-xl);
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column-reverse;
}

.page-title .title-jp {
  display: block;
  font-size: var(--f-xs);
  color: currentColor;
}

.page-title .title-en {
  font-family: var(--f-cursive);
  color: var(--c-accent-dark);
  transform: rotate(-1deg);
  transform-origin: left bottom;
  width: fit-content;
  font-size: calc(var(--f-max) * 1.3);
}

section h2.title + .text_box {
  margin-bottom: var(--m-xxl);
}

section.center {
  text-align: center;
  position: relative;
}

.gFooter_title .tagline {
  flex-basis: 52%;
}

.gFooter_title .tagline svg {
  margin: 0;
}

.gFooter_title .tagline b {
  font-size: .8em;
  line-height: 1;
}

.gFooter_title {
  position: relative;
}

.gFooter_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
}

.gFooter_title .coname {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
}

.section-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 6%) 0%, rgb(0 0 0 / 0%) 50%);
  z-index: -1;
  margin: 0 var(--m-fix);
}

.section-news .overflow {
  overflow: hidden;
  width: 100%;
}

.section-news .section-title {
  grid-column: 1 / 2;
}

.section-news .list {
  margin-right: var(--m-fix);
  position: absolute;
  width: 100vw;
  transition: opacity 0.5s;
}

.section-news .swiper-wrapper.active {
  animation: 1s ease-in-out 0s 1 normal none running appear;
  visibility: visible;
  opacity: 1;
  position: relative;
  display: flex;
}

.section-news .u-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.section-news h2.title {
  margin-bottom: var(--m-m);
  width: initial;
}

.section-news .nav {
  list-style: none;
  display: flex;
  gap: 0.5vmax;
  flex-wrap: wrap;
  color: #fff;
  font-size: var( --f-xs);
  align-self: center;
  grid-column: 2 / -1;
  justify-content: flex-end;
}

.section-news .nav li a {
  display: block;
  background-color: var(--c-gray);
  padding: 0.4rem 0.8rem;
  line-height: 1;
  border-radius: 0.1rem;
  vertical-align: middle;
  border-radius: 1rem;
}

.section-news .nav li a.active {
  background-color: var(--c-sub-dark);
}

.section-news .splide {
  padding: var(--m-m) 0 var(--m-xl);
  width: 100%;
  min-width: 100%;
  grid-column: -1 / 1;
}

.section-news .splide__arrows {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}

.section-news .splide__arrow {
  top: initial;
}

.section-news .splide__track {
  overflow: visible;
}

#dynamic-slides {
  transition: opacity 0.4s ease;
}

.section-news .splide__list {
  transition: opacity 0.6s ease;
}

.section-news .swiper-wrapper {
  box-sizing: border-box;
}

.section-news .swiper_nav {
  display: flex;
  margin: var(--m-l) auto 0;
  width: fit-content;
  background-color: #eee;
  border-radius: 5rem;
}

.section-news .swiper-container .swiper-pagination {
  position: relative;
  inset: inherit;
  display: flex;
  align-items: center;
}

.section-news .swiper-container .swiper-pagination-bullet-active {
  background: #888;
}

.section-news .swiper-container .swiper-button-prev, .news .swiper-container .swiper-button-next {
  position: initial;
  height: initial;
  margin: initial;
}

.section-news .swiper-container .swiper-button-prev {
  left: 0.3rem;
  right: auto;
  padding: 1em;
}

.section-news .swiper-container .swiper-button-next {
  right: 0.3rem;
  left: auto;
  padding: 1em;
}

.section-news .swiper-container .swiper-button-next::after, .news .swiper-container .swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: 10px;
  letter-spacing: 0px;
  font-variant: initial;
  color: rgb(34, 34, 34);
  display: block;
  text-transform: none !important;
}

.section-news .swiper-container .swiper-button-next.swiper-button-disabled, .news .swiper-container .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.section-news .swiper-pagination-bullet {
  background: #fff;
  opacity: initial;
}

.section-news a.active {
  --d: 100%;
  opacity: 1;
}

.section-news .splide__slide {
  height: initial;
  padding-right: var(--m-m);
  flex-basis: calc(100vw / 3.5);
  max-width: 400px;
  display: flex;
}

.section-news .splide__slide a {
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  padding: 1.5em;
  display: flex;
  gap: 1.5vmax;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: var(--m-xxs);
  box-shadow: 0 20px 30px rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
}

.section-news .splide__slide a:hover {
  box-shadow: 0 0 2px rgb(0 0 0 / 10%);
}

.section-news .splide__slide a:hover {
  opacity: 1;
}

.section-news .splide__slide a figure {
  margin-top: -1.5em;
  margin-right: -1.5em;
  margin-left: -1.5em;
  margin-bottom: initial;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgb(247 242 242) 0%, rgb(247 242 242 / 10%) 50%);
}

.section-news .splide__slide a figure img {
  filter: brightness(1);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.2s;
  aspect-ratio: 4 / 3;
}

.section-news .splide__slide a figure img.nopt {
  object-position: center center;
}

.section-news .splide__slide a .text_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-news .splide__slide a h4 {
  font-size: var(--f-r);
  margin: 0.5rem 0;
  font-weight: var(--w-b);
  line-height: 1.3;
  min-height: 2.6rem;
}

.section-news .splide__slide a p {
  font-size: var(--f-xs);
  margin-bottom: auto;
}

.section-news .splide__slide a time {
  width: fit-content;
  font-size: var(--f-xs);
  margin-left: auto;
  color: var(--c-subtext);
  display: block;
  font-weight: bold;
  line-height: 1;
  margin-top: var(--m-l);
  font-weight: var(--w-r);
}

.section-news .splide__pagination__page.is-active {
  background: var(--c-accent);
  opacity: 1;
}

/*
## クロージング
*/
section.section-closing {
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
}

.section-closing figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  margin: 0 var(--m-fix);
}

.section-closing figure img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.4);
  width: 100vw;
}

.section-closing > .u-inner {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-closing .text_box {
  position: relative;
  z-index: 1;
  margin: initial;
  text-align: center;
}

.section-closing h3 {
  font-size: var(--f-xl);
  margin-bottom: var(--m-r);
  color: #fff;
}

.section-closing dl.line {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.section-closing dl.line dt {
  font-size: calc(var(--f-max) * 1.5);
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: var(--m-r);
  font-family: var(--f-cursive);
  transform: rotate(-1deg);
}

.section-closing dl.line dd {
  display: flex;
  justify-content: center;
  gap: 1.5vmax;
}

.section-closing dl.line dd a {
  margin: initial;
}

.section-closing dl.line dd a:last-child {
  background-color: #00C300;
}

.section-closing dl.line dd a:last-child:hover {
  color: #00C300;
}

.section-closing dl.line dd img {
  width: 20px;
  margin-right: 0.4rem;
  height: auto;
  position: relative;
}

.section-closing h2 em {
  font-size: max(5vw, 2.2em);
  font-weight: 900;
  line-height: 0.9;
  display: block;
  font-style: normal;
  font-size: var(--f-xxxl);
  font-family: var(--f-en);
  letter-spacing: -0.02em;
}

. .section-closing .text_box p.note {
  font-family: var(--f-en);
  margin: 0.5rem auto 2rem;
  font-size: var(--f-r);
}

.section-closing .text_box p.note small {
  display: block;
}

.section-closing ul {
  list-style: none;
  margin: 0 auto;
  width: fit-content;
  margin-top: var(--m-r);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.section-closing .title-en::before {
  content: "\e215";
  font-family: var(--f-icon);
  margin-right: 0.2em;
  position: relative;
  top: 2.7px;
}

.section-closing a .title-en {
  font-size: var(--f-xxl);
  font-family: var(--f-en);
}

.section-closing a small {
  padding: 0 1em;
  display: block;
  width: 100%;
}

/*
## フッター
*/
.gFooter {
  overflow: hidden;
}

.gFooter::before {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  margin: 0 var(--m-fix);
}

.gFooter section.section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  margin: 0 var(--m-fix);
  border-top: 1px solid #f1f1f1;
  padding-block-end: initial; }

.gFooter dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--m-l);
}

.gFooter_title {
  display: block;
  line-height: 1.1;
  text-align: center;
  width: clamp(200px, 23vw, 300px);
}

.gFooter dl dd {
  width: fit-content;
  text-align: center;
}

.gFooter dl dd address {
  font-style: normal;
}

.gFooter .menu-list {
  font-size: var(--f-s);
  display: flex;
  position: relative;
  line-height: 1;
  width: 100%;
  justify-content: space-evenly;
  max-width: 800px;
}

.gFooter .menu-list li {
  position: relative;
}

.gFooter .menu-list li a {
  padding: 0.7rem;
  display: block;
  display: flex;
  justify-content: space-between;
}

.gFooter a:hover {
  opacity: 1;
  color: var(--c-accent);
}

.gFooter .sns_list {
  font-size: var(--f-s);
  display: flex;
  gap: 2rem;
  font-weight: bold;
  margin: var(--m-r) 0 var(--m-xl);
  line-height: 1;
}

.gFooter .copyright {
  padding: var(--m-m);
  line-height: 1;
  text-align: center;
  margin: 0;
  color: var(--c-muted);
  font-size: var(--f-s);
}

/*
## コンテンツ
*/
.contents a.link:hover {
  color: var(--c-link-hover);
  text-decoration: underline;
  opacity: 1;
}

.contents a.link[target="_blank"]:after {
  font-family: var(--f-icon);
  font-weight: bold;
  margin-left: 0.2em;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}

.contents figure img {
  border-radius: var(--m-xxs);
  display: block;
}

.gBody aside ul {
  width: 100%;
}

.gVisual {
  position: relative;
  display: flex;
}

.gVisual {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-top: 25vh;
}

.gVisual figure {
  position: relative;
  padding-top: 60%;
  width: 100%;
  z-index: 0;
}

.gVisual figure img {
  filter: brightness(0.95);
}

.gVisual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 70%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.gVisual h1 {
  margin: initial;
}

.gVisual .title .u-en {
  font-style: normal;
  font-family: var(--f-en);
  font-weight: var(--w-b);
  font-size: var(--f-max);
  text-indent: -0.1em;
}

.gVisual .title small {
  display: block;
  margin-right: 3px;
  font-size: var(--f-r);
  font-weight: var(--w-b);
  margin-top: 0.5rem;
  color: var(--c-03);
}

.gVisual .rotate {
  position: absolute;
  top: 5%;
  right: 7%;
  z-index: 1;
}

.constnote {
  line-height: 1;
  color: #f00;
  font-size: 12px;
  padding: .5rem;
  text-align: center;
}

.pnkz {
  margin-left: auto;
  width: fit-content;
}

.pnkz > .list {
  list-style: none;
  color: var(--c-muted);
  display: flex;
  font-size: var(--f-xs);
  gap: 0.3rem 0;
  line-height: 1;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pnkz > .list > li:not(:last-of-type):after {
  content: "─";
  margin: 0 var(--m-xxs);
  line-height: 1;
}

.introduction {
  position: relative;
  padding: var(--m-m) 0 var(--m-xl);
  display: block;
  width: 100%;
  color: var(--c-muted);
  font-size: var(--f-s);
}

.introduction .copy {
  margin-bottom: var(--m-r);
  font-size: var(--f-m);
  font-weight: var(--w-m);
}

.contents header {
  grid-column: -1 / 1;
}

.contents header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: rgb(233 232 223);
  margin: 0 var(--m-fix);
}

.page_title {
  margin-bottom: 3em;
}

/*
## 共通パーツ（仮）
*/
body:not(.p-home) .contents section .column table {
  width: 100%;
  margin-bottom: 2rem;
}

body:not(.p-home) .contents section .column table th {
  width: 20%;
  text-align: left;
  padding: 1rem;
  vertical-align: top;
  white-space: nowrap;
}

body:not(.p-home) .contents section .column table td {
  padding: 1rem;
}

body:not(.p-home) .contents section .column table td strong {
  display: block;
  margin-top: 1rem;
}

.contents section .column table td strong:first-of-type {
  margin-top: 0;
}

section ul {
  list-style: none;
  position: relative;
}

.contents section h4 {
  font-size: var(--f-l);
  font-weight: var(--w-m);
  margin: 0 0 var(--m-s);
  width: fit-content;
}

.contents section h4 strong {
  color: var(--c-05);
}

.contents section h5 {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  margin-bottom: var(--m-s);
  display: flex;
  align-items: baseline;
  line-height: 1;
}

/*
## ここまで 共通パーツ（仮）
*/
.contents > section > .column:not(:first-of-type) {
  margin-top: var(--m-xl);
}

section h3.title {
  width: 100%;
  font-size: var(--f-l);
  margin-bottom: var(--m-s);
  margin-top: var(--m-xs);
  line-height: 1.3;
}

section h3.title em {
  font-style: normal;
}

section h4.title:after {
  content: "";
  background-color: #ddd;
  display: block;
  height: 2px;
  width: 110%;
  border-radius: 2.5rem;
  margin-top: 0.3rem;
}

.wp-pagenavi {
  line-height: 1;
  display: flex;
  margin: 2rem auto;
  font-size: 12px;
  font-family: var(--f-en);
  gap: 0.5rem;
  width: fit-content;
}

.wp-pagenavi a, .wp-pagenavi span {
  padding: 0 1em;
  white-space: nowrap;
  border-radius: 5em;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}

.wp-pagenavi .extend {
  display: none;
}

.wp-pagenavi a {
  background: #fff;
}

.wp-pagenavi .pages {
  width: initial;
  background: #ddd;
}

.wp-pagenavi a:hover {
  background-color: #ddd;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: var(--c-04);
  width: 30px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .gBody {
  }
}

@media screen and (max-width: 767px) {
  .gBody {
    overflow: hidden;
  }

  .fixed .header {
    z-index: 10;
    overflow: visible;
  }

  .fixed .header::after {
    opacity: 1;
  }

  .header .menu {
    flex: 1;
  }

  .header .menu-list li:not(:last-child) a::after {
    content: none!important;
  }

  .header .menu {
    display: none;
  }

  .fixed .header .menu {
    position: relative;
    animation: MenuIn 0.6s ease-in-out 0.3s forwards;
    pointer-events: all;
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
  }

  .menu-trigger {
    position: fixed;
    top: 30px;
    right: 15px;
    display: flex;
  }

  .fixed .menu-trigger span:before {
    transform: rotate(-45deg);
    top: 0;
  }

  .fixed .menu-trigger span:after {
    transform: rotate(45deg);
    bottom: 0;
  }

  .header .u-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gHeader_title .logo {
    font-size: var(--f-xxl);
  }

  .header .menu {
    opacity: 0;
    display: block;
    width: 100%;
    margin-top: 3rem;
    pointer-events: none;
    display: none;
  }

  .header .menu .menu-list {
    flex-direction: column;
    width: 100%;
    color: currentColor;
    gap: 7vw;
    align-items: stretch;
    justify-content: stretch;
  }

  .header .menu .menu-list li {
    width: 100%;
  }

  .header .menu .menu-list li a {
    display: block;
    text-align: center;
    justify-content: center;
  }

  .header .menu .menu-list li:last-child {
    order: 1;
  }

  .util_nav {
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  section .column {
    flex-direction: column;
    margin: 0 auto;
  }

  section .column.fix-l {
    margin-right: initial;
    padding-left: initial;
  }

  section .column.fix-r {
    margin-right: var(--m-fix);
  }

  .gFooter .map {
    flex-direction: column;
    padding: 0;
  }

  .gFooter .map .co_id {
    order: 2;
  }

  .access .u-inner {
    flex-direction: column;
  }

  .access .u-inner .text_box {
    padding: 1.5em;
    margin: 0;
  }

  .access .u-inner iframe {
    flex: initial;
    margin: 0;
    height: 400px;
  }

  .section-closing figure img {
    object-position: right top;
  }

  .section-closing > .u-inner {
    z-index: 2;
  }

  .gFooter .u-inner {
    flex-direction: column;
  }

  .gFooter .menu-list {
    flex-direction: column;
    width: 100%;
  }

  .gFooter .menu-list li:first-child {
    border-top: 1px solid rgb(0 0 0 / 6%);
  }

  .gFooter .menu-list li {
    border-bottom: 1px solid rgb(0 0 0 / 6%);
  }

  .gFooter .menu-list li a:after {
    content: "\f31c";
    font-family: "Phosphor";
    font-size: 0.8rem;
    display: block;
  }

  .pnkz .list li:first-child span {
    display: none;
  }

  .page_title {
    margin-bottom: 2em;
  }

  .contents > section .text_box {
    flex-direction: column;
    top: 0;
  }

  .section-news .splide__slide {
    flex-basis: calc(100vw / 1.1);
  }
}

@media print {
  body {
    width: 1080px;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform-origin: 0 0;
  }

  .gHeader {
    position: static;
  }

  .wyp, .column, .u-inner, .box {
    opacity: 1;
  }
}
