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

body {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

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

.contents a.link {
  color: var(--c-link);
  /* 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;
  /* padding: 0.2rem; */
  /* 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;
}

@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;
  }
}

.contents {
  overflow: hidden;
}

section .column {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

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, .u-inner, .box {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wyp.enter, .column.enter, .u-inner.enter, .box.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;
  font-feature-settings: "palt";
  /* font-feature-settings: "halt"; */
}

h1 {
  line-height: 1.2;
}

h2, h3 {
  line-height: 1.5;
}

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

p {
  /* line-height: 2; */
}

h3.catch {
  font-size: var(--f-xl);
  font-weight: var(--w-b);
  color: var(--c-dark);
  margin-bottom: var(--m-m);
}

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

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

.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-"] {
  padding-top: var(--m-xxl);
  padding-bottom: var(--m-xl);
  position: relative;
}

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

  100% {
    opacity: 1;
  }
}

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

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

:root {
  --c-accent: #da251d;
  --c-accent-dark: #a81c17;
  --c-sub: #ADDDE8;
  --c-sub-dark: #4A94A5;
  --c-gray-light: #EDEDED;
  --c-gray: #C0C0C0;
  --c-dark: #1F1B16;
  --c-subtext: #5A534E;
  --c-bg: #FFFBF8;
  --c-muted: #8A8886;
  --c-logo: #0085C0;
  --c-logotype: #4E4946;
  --c-link: var(--c-sub-dark);
  --c-link-hover: var(--c-accent);
  --f-icon: phosphor;
  --f-sans: 'Zen Kaku Gothic New', sans-serif;
  --f-en: 'Roboto', sans-serif;
  --bg-light: #f0f4f8;
  --f-max: clamp(3.8rem, 3.2vw, 32px);
  --f-xxxxl: clamp(3.4rem, 3.0vw, 28px);
  --f-xxxl: clamp(2.6rem, 2.2vw, 24px);
  --f-xxl: clamp(2.1rem, 1.8vw, 22px);
  --f-xl: clamp(1.8rem, 1.4vw, 20px);
  --f-l: clamp(1.5rem, 1.2vw, 18px);
  --f-m: clamp(1.2rem, 1vw, 16px);
  --f-r: clamp(1rem, 0.7vw, 14px);
  --f-s: clamp(0.9rem, 0.9vw, 12px);
  --f-xs: clamp(0.85rem, 0.8vw, 10px);
  --f-xxs: clamp(0.75rem, 0.6vw, 8px);
  --f-xxxs: clamp(0.5rem, 0.5vw, 6px);
  --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;
  }
}

.gHeader {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
}

.gHeader_title {
  position: relative;
  width: clamp(150px, 20vw, 250px);
  z-index: 9;
}

.gHeader_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
  --mark1: var(--c-logo);
  --mark2: #fff;
  --type: var(--c-logotype);
}

.gHeader::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  pointer-events: none;
  /* transition: height 0.2s var(--transition); */
  transition: height 0.2s cubic-bezier(0.08, 0.78, 0.08, 0.98);
  z-index: 1;
  background-color: rgb(255 255 255 / 35%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.fixed .gHeader:before {
  pointer-events: all;
  height: 100vh;
}

.gHeader .u-inner {
  margin: initial;
  max-width: initial;
  display: flex;
  gap: 2vw;
  align-items: flex-end;
  padding: 3vw;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

.fixed .menu {
  position: relative;
  pointer-events: all;
  /* flex-direction: column-reverse; */
  display: block;
  width: 80%;
  position: absolute;
  top: 150%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.gHeader .menu .menu-list {
  display: flex;
  gap: 3vmax;
  align-items: center;
  font-weight: var(--w-b);
}

.menu {
  position: relative;
  margin-left: auto;
}

.gHeader .menu li a {
  transition: color .3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
}

.gHeader .menu li:not(:last-child) a::after {
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-01);
  background: currentColor;
  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;
}

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

.gHeader .menu li:not(:last-child) a:hover {
  opacity: 1;
  color: var(--c-logo);
}

.gHeader .menu ul li:last-child a {
  border-radius: 3em;
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  align-items: center;
  font-weight: var(--w-b);
  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);
  border: 1px solid var(--c-accent);
  background-color: var(--c-accent);
  color: initial;
  max-width: 160px;
  margin: 0 auto;
  color: #fff;
}

.gHeader .menu ul li:last-child a i:before {
  font-size: 1.2em;
  top: 1px;
  position: relative;
}

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

[class$="-list"] {
}

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

.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: 10px 8px;
  box-sizing: content-box;
  color: var(--c-dark);
  align-self: flex-start;
  z-index: 2;
  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.5%;
  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:not(.p-home) {
  /* font-size: var(--f-xxxl); */
  margin-bottom: var(--m-xl);
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
  flex-direction: column-reverse;
  flex-basis: 100%;
}

.section-title .title-jp {
  display: block;
  font-size: var(--f-s);
  font-weight: var(--w-b);
  color: var(--c-logotype);
  width: fit-content;
  position: relative;
  z-index: 1;
  text-indent: 3px;
}

.section-title .title-en {
  font-size: var(--f-xxxl);
  font-weight: var(--w-b);
  font-family: var(--f-en);
  /* color: var(--c-sub-dark); */
  color: var(--c-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.page-title {
  margin-bottom: var(--m-xl);
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
  flex-direction: column-reverse;
  /* width: 100%; */
}

.page-title .title-jp {
  display: block;
  font-size: var(--f-s);
  font-weight: var(--w-b);
  color: currentColor;
  text-indent: 3px;
}

.page-title .title-en {
  font-weight: var(--w-b);
  /* font-family: var(--f-cursive); */
  /* color: var(--c-accent); */
  /* transform: rotate(-5deg); */
  /* transform-origin: left bottom; */
  /* width: fit-content; */
  font-size: var(--f-xxxxl);
  /* text-indent: -0.5rem; */
}

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 a {
  /* width: 200px; */
  /* text-align: left; */
  /* line-height: 1.3; */
}

.gFooter_title svg {
  height: auto;
  width: 100%;
  display: block;
  border: none;
  margin: 0;
  --mark1: var(--c-logo);
  --mark2: #fff;
  --type: var(--c-logotype);
}

.gFooter_title b {
  font-size: 0.8em;
  width: 100%;
  line-height: 1;
  margin-top: .4em;
  text-align: right;
  flex-basis: 45%;
  margin-left: auto;
  text-align: center;
  white-space: nowrap;
  font-size: max(0.9vw, 0.7rem);
}

.section-news {
  overflow: hidden;
  /* border-top: 1px solid #aaa; */
  border-bottom: 1px solid #dcdcdc;
}

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

.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.section-title {
  flex-basis: initial;
}

.section-news .nav {
  list-style: none;
  display: flex;
  gap: 0.5vmax;
  flex-wrap: wrap;
  color: #fff;
  font-size: 10px;
  align-self: center;
  font-weight: var(--w-m);
  line-height: 1;
}

.section-news .nav li a {
  display: block;
  background-color: var(--c-gray);
  padding: 0.3rem 0.7rem;
  /* line-height: 1; */
  border-radius: var(--m-xxs);
  vertical-align: middle;
}

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

.section-news .splide {
  padding: var(--m-m) 0 var(--m-xl);
  width: 100%;
}

.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;
  color: var(--c-muted);
}

.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(150 150 150 / 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 1px rgb(0 0 0 / 6%);
}

.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;
  /* padding-top: 85%; */
  overflow: hidden;
}

.section-news .splide__slide a figure img {
  filter: brightness(1);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* position: absolute; */
  /* top: 0px; */
  /* left: 0px; */
  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;
  /* height: 100%; */
  justify-content: space-between;
}

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

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

.section-news .splide__slide a time {
  width: fit-content;
  font-size: 0.8em;
  margin-left: auto;
  color: var(--c-muted);
  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;
  padding: var(--m-xl) 0 var(--m-xl);
  overflow: hidden;
  background-color: rgb(240 245 255);
  min-height: 55vh;
}

.section-closing figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.section-closing figure img {
  object-fit: cover;
  height: 100%;
}

.section-closing > .u-inner {
  width: clamp(80%, 760px, 100%);
}

.section-closing .column {
  flex-direction: column;
}

.section-closing .text_box {
  position: relative;
  z-index: 1;
  /* margin: 0 auto; */
}

.section-closing h3 {
  font-size: var(--f-xl);
  margin-bottom: var(--m-s);
}

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

.section-closing dl.line dt {
  font-size: var(--f-l);
  line-height: 1.3;
  color: #00C300;
  margin-bottom: var(--m-xs);
}

.section-closing dl.line dd {
}

.section-closing dl.line dd a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00C300;
  width: fit-content;
  margin: 0 auto;
}

.section-closing dl.line dd img {
  width: 20px;
  margin: 0 0.3rem;
  height: auto;
}

.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 {
  width: fit-content;
  font-feature-settings: "palt";
}

.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 a.tel {
  margin: var(--m-r) auto 0;
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: var(--f-xxl);
  left: -3%;
  position: relative;
  color: var(--c-accent);
  font-weight: var(--w-m);
  font-family: var(--f-en);
}

.section-closing a.u-button {
  margin: var(--m-r) auto var(--m-m);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  line-height: 1.5;
  width: fit-content;
  font-size: var(--f-r);
  padding: 0.8em 1.6em 0.8em 1.2em;
}

.section-closing a.u-button i:before {
  font-size: 1.2em;
  top: 1px;
  position: relative;
}

.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 {
  position: relative;
  /* background: var(--c-dark); */
  background: #fff;
}

.gFooter a:hover {
  opacity: 1;
  color: var(--c-link);
  transition: color 0.2s var(--transition);
}

.gFootNav a {
  display: block;
  color: var(--c-subtext);
}

.gFooter .u-inner {
  display: flex;
  padding-top: var(--m-l);
  padding-bottom: var(--m-xxl);
  justify-content: space-around;
  align-items: baseline;
  flex-wrap: wrap;
}

.gFooter .amulet {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  margin-bottom: var(--m-l);
}

.gFootNav_list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  list-style: none;
  align-items: flex-start;
  /* z-index: 11; */
  gap: 0 0.7rem;
}

.gFootNav_list::before {
  content: "";
  /* display: block; */
  order: 7;
  flex-basis: 100%;
  /* height: 1px; */
  /* background: #fff; */
}

.gFootNav_list > li {
  /* margin-right: 3%; */
  flex-direction: column-reverse;
  display: flex;
}

.gFootNav_list > li:first-child {
  width: 100%;
}

.gFootNav_list > li:nth-child(7) {
  order: 7;
}

.gFootNav_list > li:nth-child(8) {
  order: 8;
  margin-right: auto;
}

.gFootNav_list > li > a {
  font-weight: bold;
  display: flex;
  padding: 0.5rem;
  justify-content: space-between;
}

.gFootNav_list > li > a:hover {
  opacity: 1;
  color: var(--c-03);
}

.gFootNav_list > li > ul {
  font-size: var(--f-xxs);
  list-style: none;
}

.gFootNav_list > li > ul li a {
  color: #ccc;
  display: block;
  /* align-items: center; */
}

.gFootNav_list > li > ul li a:before {
  content: "-";
  margin-right: 5px;
  display: inline-block;
  line-height: 1;
  top: -1px;
  /* vertical-align: baseline; */
}

.gFootNav .gNav_childList {
  /* all: initial; */
  position: static;
  opacity: initial;
  min-width: inherit;
  background: initial;
  transform: inherit;
  padding: inherit;
  pointer-events: all;
  margin-bottom: .5rem;
}

.gFooter dl.logo {
  margin-left: 0.5rem;
  margin-bottom: 3rem;
}

.gFooter dl dt {
  margin-bottom: 1em;
}

.gFooter dl dt svg {
  width: clamp(200px, 25vw, 250px);
  margin-left: -0.5em;
  margin-bottom: 0.5em;
}

.gFooter_title {
  display: block;
}

.gFooter_title .coname {
  display: block;
  font-size: var(--f-m);
  line-height: 1.5;
  margin-top: 1.5rem;
  font-weight: var(--w-m);
}

.gFooter_title .coname small {
  display: block;
  color: var(--c-subtext);
  font-size: 12px;
}

.gFooter dl dd {
  font-size: var(--f-s);
  width: fit-content;
  line-height: 1.5;
  font-family: var(--f-en);
  color: var(--c-subtext);
}

.gFooter dl dd .coname {
  color: #fff;
  font-weight: var(--w-b);
  margin-bottom: 0.5rem;
}

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

.gFooter .note {
  margin: initial;
  font-size: 0.8em;
  margin-left: auto;
  border: 1px solid #fff;
  padding: 0.5em 0.7em;
  line-height: 0.9;
  border-radius: 0.3em;
  width: fit-content;
}

.gFooter .gFootNav ul {
  display: flex;
  gap: 3vw;
  font-size: var(--f-s);
}

.gFootNav a i {
  display: none;
}

.gFooter .copyright {
  font-family: var(--f-en);
  padding: 2rem;
  line-height: 1;
  text-align: center;
  margin: 0;
  color: var(--c-gray);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--w-b);
}

/*
## コンテンツ
*/
.contents a.link {
  /* color: var(--c-link); */
  /* display: inline-block; */
}

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

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

.contents a.link:after {
  content: "\f1d8";
  font-family: var(--f-icon);
  /* font-size: 90%; */
  /* font-weight: bold; */
  margin: 0.2em;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
  color: currentColor;
  /* float: left; */
}

.contents figure {
}

.contents figure img {
  border-radius: var(--m-xxs);
  display: block;
  object-position: 40% center;
}

.gBody aside ul {
  width: 100%;
}

.gVisual {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 500px;
  padding-top: 25vmax;
  padding-bottom: 4vmax;
  align-items: flex-end;
}

.gVisual .u-inner {
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-end;
  min-width: 85vw;
  /* min-height: 500px; */
  flex-wrap: wrap;
}

.gVisual figure {
  position: absolute;
  /* padding-top: 60%; */
  overflow: hidden;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gVisual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
  -webkit-mask-image: linear-gradient(to top, rgb(255 255 255) 5%, rgb(255 255 255 / 1%) 50%);
}

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

.gVisual h1 {
  line-height: 1.3;
  display: flex;
  flex-direction: column-reverse;
  margin: initial;
  position: relative;
  color: #fff;
  margin-right: auto;
}

.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-left: 2px; */
  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;
  margin-top: 3rem;
  width: fit-content;
}

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

.pnkz > .list li {
}

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

.introduction {
  position: relative;
  padding: var(--m-xl) 0;
  display: block;
  width: 100%;
  font-size: var(--f-m);
  /* font-weight: var(--w-m); */
  overflow: hidden;
  color: var(--c-logotype);
  /* line-height: 1.5; */
}

.introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient(0deg, rgb(173 225 255 / 0%) 30%, rgb(173 225 255 / 50%) 100%);
  background-color: #fff;
}

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

.contents header {
  /* text-align: center; */
}

.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;
  /* list-style-position: initial; */
}

.contents section h4 {
  font-size: var(--f-l);
  font-weight: var(--w-m);
  margin: 0 0 var(--m-s);
  /* color: var(--c-sub-dark); */
}

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

/*
## ここまで 共通パーツ（仮）
*/
.contents > section > .column {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--m-m);
}

.contents > section > .column:not(:first-of-type) {
  margin-top: var(--m-xl);
}

section h3.title {
  width: 100%;
  font-size: var(--f-m);
  /* margin-bottom: var(--m-s); */
  /* color: var(--c-03); */
  /* margin-top: var(--m-xs); */
  /* align-items: center; */
  /* display: flex; */
  /* flex-wrap: wrap; */
}

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

section h4.title {
  /* margin-bottom: var(--m-s); */
  /* color: var(--c-02); */
  font-size: var(--f-m);
  /* line-height: 1.5; */
  font-weight: var(--w-m);
}

.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;
  }

  .menu {
    /* flex: 1; */
  }

  .fixed .gHeader .menu-list {
    animation: MenuIn 0.6s ease-in-out 0.3s forwards;
    flex-direction: column;
    opacity: 0;
    align-items: flex-start;
    font-size: 120%;
  }

  .fixed .gHeader .menu-list li {
    width: 100%;
    /* justify-content: center; */
  }

  .gHeader .menu li:not(:last-child) a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .gHeader .menu li:not(:last-child) a::after {
    all: initial;
    content: "\f31c";
    font-family: var(--f-icon);
    color: currentColor;
  }

  .gHeader .menu ul li:last-child a {
    max-width: initial;
    justify-content: center;
  }

  .menu {
    display: none;
  }

  .header {
    position: fixed;
  }

  body.on .header {
    /* mix-blend-mode: difference; */
  }

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

  .menu-trigger {
    /* position: fixed; */
    /* top: 25px; */
    /* right: 25px; */
    display: flex;
    /* opacity: 1; */
  }

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

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

  body.p-home .header_title {
    position: relative;
    top: 3%;
    left: initial;
    transform: initial;
  }

  body.on .header_title {
    opacity: 0;
    animation: none;
  }

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

  .header_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 ul {
    flex-direction: column;
    width: 100%;
    color: currentColor;
    gap: 7vw;
    align-items: stretch;
    justify-content: stretch;
  }

  .header .menu ul li {
  }

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

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

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

  .gVisual figure::after {
    -webkit-mask-image: linear-gradient(to top, rgb(255 255 255) 15%, rgb(255 255 255 / 1%) 50%);
  }

  .gVisual .u-inner .pnkz {
    /* margin-top: initial; */
    /* width: fit-content; */
  }

  section .column {
    flex-direction: column;
    /* margin: 0 auto; */
    /* align-items: center; */
  }

  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.section-closing {
    padding-top: 80%;
  }

  .section-closing figure {
    height: 45%;
    bottom: initial;
  }

  .section-closing figure::after {
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 0) 70%, rgb(240 245 255) 100%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }

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

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

  .section-closing .column {
    align-items: center;
  }

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

  .gFootNav {
    /* margin-left: 4%; */
    /* margin-top: 3rem; */
    width: 100%;
  }

  .gFootNav ul {
    flex-direction: column;
  }

  .gFootNav ul li {
    width: 100%;
    position: relative;
  }

  .gFootNav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-indent: 0.5rem;
  }

  .gFootNav ul li a:after {
    content: "\f31c";
    font-family: var(--f-icon);
    color: currentColor;
  }

  .gFootNav ul li a:hover {
    color: var(--c-link-hover);
    opacity: 1;
  }

  .gFootNav ul li:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1.5vw;
    width: 100%;
    height: 1px;
    background-color: rgb(225 225 225 / 50%);
  }

  .gFootNav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5vw;
    width: 100%;
    height: 1px;
    background-color: rgb(225 225 225 / 50%);
  }

  .gFootNav a i {
    display: inline-block;
    font-size: 10px !important;
  }

  .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;
  }
}
