@charset "UTF-8";
/*
Theme Name: ueda
*/
/*-------------------------------

common

-------------------------------*/
.c-nav > * + * {
  margin-top: 46px;
}
.c-nav .nav__item {
  font-size: 20px;
  letter-spacing: 0.3em;
  font-weight: 300;
  text-align: right;
}
.c-nav .nav__item span {
  font-size: 13px;
  margin-top: 2px;
  margin-right: 8px;
  margin-left: auto;
  width: fit-content;
  display: block;
  font-family: var(--gaudy);
  letter-spacing: 1.04px;
}
.c-nav .nav__item--insta {
  width: 20px;
  margin-top: 57px;
  margin-left: auto;
  margin-right: 9px;
}
.c-a--underline {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}
.c-tag {
  font-size: 14px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.c-a-pager {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 17px;
  font-size: 18px;
  font-family: var(--gaudy);
}
.c-a-pager .pager__item {
  opacity: 0.5;
}
.c-a-pager .pager__item--current {
  opacity: 1;
}
.c-content-rule p + p:has(img, picture),
.c-content-rule p:has(img, picture) + p {
  margin-top: 6em;
}
.c-content-rule p:has(img, picture) + p:has(img, picture) {
  margin-top: 1em;
}
.c-content-rule p + p {
  margin-top: 2em;
}
.c-s-pager {
  display: flex;
  justify-content: space-between;
}
.c-s-pager .pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
}
.c-s-pager .pager__item--prev,
.c-s-pager .pager__item--next {
  width: 100px;
  position: relative;
}
.c-s-pager :is(.pager__item--prev, .pager__item--next)::before {
  content: "";
  height: 1px;
  width: 90px;
  bottom: -3px;
  position: absolute;
  display: block;
  margin: auto;
  background: #000;
}
.c-s-pager .pager__item--prev::before {
  left: 0;
}
.c-s-pager .pager__item--next::before {
  right: 0;
}
.c-s-pager :is(.pager__item--prev, .pager__item--next)::after {
  content: "";
  height: 1px;
  width: 10px;
  bottom: 1px;
  position: absolute;
  display: block;
  background: #000;
}
.c-s-pager .pager__item--prev::after {
  left: -1px;
  rotate: -45deg;
}
.c-s-pager .pager__item--next::after {
  right: -1px;
  rotate: 45deg;
}
.c-s-pager .pager__item--none {
  opacity: 0;
}

/*-------------------------------

hd

-------------------------------*/
:root {
  --logo-width: min(245px, 12.7vw);
  --logo-top: min(38px, 1.9vw);
  --hd-height: min(154px, 8vw);
  --logo-left: min(45px, 2.3vw);
  /* --hd-height: 133px;
  --logo-width: 200px;
  --logo-top: 17px;
  --logo-left: 24px; */
}
.hd {
  height: 180px;
  height: var(--hd-height);
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.hd.hd--top {
  display: contents;
}
.hd .logo {
  width: var(--logo-width);
  position: fixed;
  top: var(--logo-top);
  left: var(--logo-left);
}
.hd .ham {
  position: fixed;
  top: 64px;
  right: 40px;
  cursor: pointer;
  width: 56px;
  height: 20px;
  z-index: 12;
}

body.home .hd .ham {
  display: none;
}
.hd .ham__buns {
  display: inline-block;
  transition: 0.5s;
  position: absolute;
  height: 1px;
  background: #000;
  width: 100%;
}
.hd .ham__buns--1 {
  top: 0px;
}
.hd .ham__buns--2 {
  top: 10px;
}
.hd .ham__buns--3 {
  top: 20px;
}
.hd .ham-wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, mask-size 2s ease;
  mask-image: linear-gradient(
    to top left,
    rgb(0, 0, 0) 0%,
    rgb(0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-size: 0% 0%;
  mask-repeat: no-repeat;
  mask-position: bottom right;
}
.hd .ham-wrap--open {
  opacity: 1;
  pointer-events: auto;
  mask-size: 400% 400%;
}
.hd .ham--open .ham__buns--1 {
  rotate: -45deg;
  translate: 0 10px;
}
.hd .ham--open .ham__buns--2 {
  opacity: 0;
}
.hd .ham--open .ham__buns--3 {
  rotate: 45deg;
  translate: 0 -10px;
}
.hd .c-nav {
  margin-right: 123px;
}
.hd::after {
  /* ! .hd .btn の透過対策 */
  position: fixed;
  content: "";
  writing-mode: vertical-rl;
  width: 72px;
  height: 260px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  z-index: 1;
}
.hd--top::after {
  display: none;
}
.hd .btn {
  color: var(--yellow);
  writing-mode: vertical-rl;
  font-family: var(--gaudy);
  font-size: 19px;
  letter-spacing: 0.1em;
  width: 72px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--yellow);
  z-index: 2;
}

:is(html.wf-active, html.wfno-load, html.loading-delay) .hd .btn {
  color: #000;
}

/*-------------------------------

ft

-------------------------------*/
.ft {
  padding-bottom: 49px;
}
.ft .cr {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--ryumin);
  text-align: center;
}

/*-------------------------------

p-top

-------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
  animation: loading 2s 3.5s ease forwards;
  height: 100svh;
}
.loading__logo {
  width: var(--logo-width);
  position: absolute;
  height: fit-content;
  height: fit-content;
  inset: 0;
  margin: auto;
  z-index: 99999;
  animation: loading__logo 3s 0.5s ease forwards;
  opacity: 0;
}
.loading.loaded {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
}

/* @keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes loading__logo {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.p-top {
  /* height: 600vh;  */
  height: 200vh;
  overflow-x: hidden;
}
.p-top .fv,
.p-top .fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
}
.p-top .fv {
  z-index: 2;
  will-change: transform;
  background: #fff;
}
.p-top .fv .bg {
  background: #fff;
  height: var(--hd-height);
}
.p-top .fv .slider {
  opacity: 0;
  transition: 2s;
}
.p-top .fv .slider.active {
  opacity: 1;
}
.p-top .fv .slick-slider {
  height: calc(100svh - var(--hd-height)) !important;
  background: #fff;
}
.p-top .fv .slick-slide {
  height: calc(100svh - var(--hd-height)) !important;
  width: 100vw !important;
}
.p-top .fv .slick-slide :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top .fv .logo {
  position: absolute;
  top: var(--logo-top);
  left: var(--logo-left);
  z-index: 2;
  width: var(--logo-width);
  transition: 2s;
  opacity: 0;
}
.p-top .fv .logo.active {
  opacity: 1;
}
.p-top .fv .news {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  color: #fff;
  /* bottom: 58px;
  right: 96px; */
  bottom: 33px;
  right: 53px;
}
.p-top .fv .news__date {
  font-size: 16px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
}
.p-top .fv .news__ttl {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-top .info {
  z-index: 1;
}
.p-top .info .c-nav {
  position: fixed;
  top: 0;
  /* right: 236px; */
  right: 123px;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
  text-align: right;
  right: 4vw;
}
.p-top .info .logo {
  position: fixed;
  width: var(--logo-width);
  left: 85px;
  bottom: 41px;
  left: 3vw;
}
.p-top .info .cr {
  position: fixed;
  font-size: 12px;
  font-family: var(--ryumin);
  letter-spacing: 0.1em;
  bottom: 49px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

/*-------------------------------

p-concept

-------------------------------*/
.p-concept .lead {
  padding-top: 307px;
  padding-left: 5vw;
}
.p-concept .lead .wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 182px;
  margin-right: 42px;
}
.p-concept .lead .img {
  width: 770px;
}
.p-concept .lead .img :is(img, picture) {
  aspect-ratio: 770/704;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-concept .lead .heading {
  font-size: 50px;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.p-concept .lead .subheading {
  font-size: 16px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  margin-top: 13px;
  margin-left: 4px;
}
.p-concept .lead .txt {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2.5;
  margin-top: 53px;
}
.p-concept .content {
  padding-top: 200px;
}
.p-concept .content .wrap {
  display: flex;
  flex-direction: row;
  gap: 179px;
  align-items: center;
}
.p-concept .content > * + * {
  margin-top: 165px;
}
.p-concept .content .wrap:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.p-concept .content .img {
  width: 50vw;
  height: 720px;
}
.p-concept .content .img :is(img, picture) {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-concept .content .txt-wrap {
  width: 520px;
}
.p-concept .content .ttl {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-left: 6px;
}
.p-concept .content .txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 400;
  margin-top: 49px;
}
.p-concept .story {
  padding-top: 206px;
  padding-bottom: 268px;
}
.p-concept .story .container {
  width: 1200px;
}
.p-concept .story .wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 20px;
  position: relative;
  border: 1px solid #000;
  padding: 26px;
  gap: 125px;
  align-items: center;
}
.p-concept .story .img {
  width: 400px;
}
.p-concept .story .img :is(img, picture) {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.p-concept .story .ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-concept .story .txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2.1;
  margin-top: 33px;
}
.p-concept .story .btn {
  position: absolute;
  bottom: -34px;
  right: 35px;
  background: var(--yellow);
  font-size: 18px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  width: 200px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.p-concept .story .wrap::after {
  /* !.p-concept .story .btn の透過対策 */
  content: "";
  position: absolute;
  bottom: -34px;
  right: 35px;
  background: #fff;
  width: 200px;
  height: 75px;
}

/*-------------------------------

p-story

-------------------------------*/
.p-story .fv {
  height: 100svh;
}
.p-story .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-story .fv .heading {
  font-size: 24px;
  text-align: center;
  line-height: 2.9;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-story .lead .container {
  width: 615px;
}
.p-story .lead .txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2.1;
  font-weight: 40;
  margin-top: 439px;
}
.p-story .content {
  padding-top: 341px;
  overflow: hidden;
}
.p-story .content > * + * {
  margin-top: 207px;
}
.p-story .content .block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 200px;
  translate: -50px 0;
}
.p-story .content .block:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
  translate: 50px 0;
}
.p-story .content .block:nth-of-type(3n) .block__img,
.p-story .content .block:nth-of-type(4n) .block__img,
.p-story .content .block--matsuyama .block__img {
  width: 880px;
}
.p-story .content .block:nth-of-type(3n) .block__img :is(img, picture),
.p-story .content .block:nth-of-type(4n) .block__img :is(img, picture),
.p-story .content .block--matsuyama .block__img :is(img, picture) {
  aspect-ratio: 882/686;
}
.p-story .content .block:nth-of-type(7) {
  translate: 123px 0 !important;
}
.p-story .content .block:nth-of-type(3n) {
  justify-content: flex-start;
  translate: unset;
  gap: 280px;
}
.p-story .content .block:nth-of-type(4n) {
  translate: -150px 0;
  gap: 150px;
}
.p-story .content .block__img {
  width: 700px;
}
.p-story .content .block__img :is(img, picture) {
  aspect-ratio: 700/776;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-story .content .block__txt-wrap {
  width: 400px;
}
.p-story .content .block__ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2.2;
}
.p-story .content .block__txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-top: 47px;
}
.p-story .content .block__txt + .block__ttl {
  margin-top: 115px;
}
.p-story .last {
  padding-top: 182px;
  padding-bottom: 206px;
}
.p-story .last .container {
  width: 610px;
}
.p-story .last .block__img {
  aspect-ratio: 620/687;
}
.p-story .last .block__txt-wrap {
  margin-top: 81px;
}
.p-story .last .block__ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2.2;
}
.p-story .last .block__txt {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-top: 47px;
}

/*-------------------------------

p-people

-------------------------------*/
.p-people .fv {
  text-align: center;
  padding-top: 248px;
}
.p-people .fv .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
}
.p-people .fv .ttl {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.7;
  margin-top: 64px;
}
.p-people .fv .txt {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.7;
  margin-top: 51px;
}
.p-people .fv .c-tag {
  margin-top: 131px;
}
.p-people .people {
  padding-top: 124px;
  padding-bottom: 171px;
  overflow: hidden;
}
.p-people .people .slider__top {
  width: 102vw;
  margin-left: calc(1% - 2vw);
  margin-right: calc(1% - 2vw);
  rotate: 2.5deg;
}
.p-people .people .slider__top .slick-slide {
  width: 305px;
  margin-right: 30px;
}
.p-people .people .slider__top .slick-slide :is(img, picture) {
  object-fit: cover;
  aspect-ratio: 275/400;
  width: 100%;
  height: 100%;
}
.p-people .people .slider__bottom {
  width: 102vw;
  margin-left: calc(1% - 2vw);
  margin-right: calc(1% - 2vw);
  margin-top: 192px;
  rotate: 2.5deg;
}
.p-people .people .slider__bottom .slick-slide {
  width: 188px;
  margin-right: 30px;
}
.p-people .people .slider__bottom .slick-slide :is(img, picture) {
  object-fit: cover;
  aspect-ratio: 275/400;
  width: 100%;
  height: 100%;
}

/*-------------------------------

p-menu

-------------------------------*/
.p-menu .fv {
  padding-top: 248px;
}
.p-menu .fv .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.p-menu .fv .txt {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2.8;
  font-weight: 400;
  text-align: center;
  margin-top: 130px;
}
.p-menu .fv .bd {
  width: 80px;
  height: 1px;
  margin: 0 auto;
  background: #000;
  margin-top: 146px;
}
.p-menu .menu {
  padding-top: 146px;
}
.p-menu .menu .container > * + * {
  margin-top: 100px;
}
.p-menu .menu .course__heading {
  text-align: center;
  font-size: 40px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
}
.p-menu .menu .course__price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin-top: 37px;
  gap: 25px;
}
.p-menu .menu .course__price-ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
}
.p-menu .menu .course__price-num {
  font-size: 26px;
  letter-spacing: 0.1em;
}
.p-menu .menu .course__price-num span {
  font-size: 16px;
}
.p-menu .menu .course__txt {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.6;
  width: fit-content;
  margin: 46px auto 0;
}
.p-menu .last {
  padding-top: 157px;
  padding-bottom: 142px;
}
.p-menu .last .bd {
  width: 80px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
.p-menu .last .c-tag {
  margin-top: 155px;
}
.p-menu .last .slider .slick-slide {
  width: 410px;
  margin-right: 5px;
}
.p-menu .last .slider .slick-slide :is(img, picture) {
  object-fit: cover;
  aspect-ratio: 410/255;
  width: 100%;
  height: 100%;
}
.p-menu .last .slider {
  margin-top: 100px;
}
.p-menu .last .slider__bottom {
  margin-top: 5px;
}

/*-------------------------------

p-access

-------------------------------*/
.p-access .access {
  padding-top: 348px;
}
.p-access .access .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
}
.p-access .access .block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 172px;
  gap: 60px;
}
.p-access .access .block__contact {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.7;
}
.p-access .access .block__opening {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.7;
  margin-top: 32px;
}
.p-access .access .block__caution {
  margin-top: 37px;
  translate: 16px 0;
  font-size: 14px;
  line-height: 2.3;
}
.p-access .access .block__caution > * + * {
  margin-top: 15px;
}
.p-access .access .block__caution-item {
  position: relative;
}
.p-access .access .block__caution-item::before {
  content: "※";
  position: absolute;
  display: block;
  left: -15px;
}
.p-access .access .calendar {
  width: 541px;
  font-family: var(--gaudy);
  translate: 25px 0;
}
.p-access .access .calendar .arrow {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
.p-access .access .calendar .arrow__item {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
}
.p-access .access .calendar .arrow__item--none {
  opacity: 0.3;
  pointer-events: none;
}
.p-access .access .calendar .arrow__item--prev {
  border-left: 1px solid #000;
  rotate: -45deg;
}
.p-access .access .calendar .arrow__item--next {
  border-right: 1px solid #000;
  rotate: 45deg;
}
.p-access .access .calendar .calendar-hd {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
.p-access .access .calendar .date {
  display: flex;
  gap: 19px;
  align-items: flex-end;
  line-height: 1;
}
.p-access .access .calendar .date__year {
  font-size: 16px;
  letter-spacing: 0.04em;
}
.p-access .access .calendar .date__month {
  font-size: 40px;
  letter-spacing: 0.04em;
  translate: 0 4px;
}
.p-access .access .calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 21px;
}
.p-access .access .calendar :is(th, td) {
  width: 14.28%;
  height: 52px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.p-access .access .calendar .num {
  width: fit-content;
}
.p-access .access .calendar .day {
  position: relative;
  display: block;
}
.p-access .access .calendar .day::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.p-access .access .calendar .day--am-closed::before,
.p-access .access .calendar .day--pm-closed::before,
.p-access .access .calendar .day--closed::before {
  background: var(--gray);
}
.p-access .access .calendar .day--am-closed::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.p-access .access .calendar .day--pm-closed::before {
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
.p-access .access .calendar .day--event::before {
  background: var(--yellow);
}
.p-access .access .calendar .cap {
  margin: 33px auto 0;
  translate: 4px 0;
  margin-left: 24px;
}
.p-access .access .calendar .cap > * + * {
  margin-top: 8px;
}
.p-access .access .calendar .cap__item {
  position: relative;
  font-size: 15px;
}
.p-access .access .calendar .cap__item::before {
  width: 13px;
  height: 13px;
  content: "";
  display: block;
  top: 4px;
  left: -24px;
  position: absolute;
}
.p-access .access .calendar .cap__item--am-closed::before,
.p-access .access .calendar .cap__item--pm-closed::before,
.p-access .access .calendar .cap__item--closed::before {
  background: var(--gray);
}
.p-access .access .calendar .cap__item--am-closed::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.p-access .access .calendar .cap__item--pm-closed::before {
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
.p-access .access .calendar .cap__item--event::before {
  background: var(--yellow);
}
.p-access .access .calendar .cap__item a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-access .other {
  padding-top: 189px;
  padding-bottom: 128px;
}
.p-access .other .wrap {
  display: flex;
  flex-direction: row;
}
.p-access .other .map iframe {
  filter: grayscale(100%);
}
.p-access .other .map,
.p-access .other .slider {
  width: 50vw;
}
.p-access .other .map,
.p-access .other .slider__item {
  height: 667px;
}
.p-access .other :is(.map, .slider__item) :is(img, iframe) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-access .other .container {
  width: auto;
  max-width: 95%;
}
.p-access .other .link {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  margin-top: 30px;
  font-size: 13px;
}

/*-------------------------------

p-contact

-------------------------------*/
.p-contact .container {
  width: 800px;
}
.p-contact .contact {
  padding-top: 257px;
  /* .form__txt :is(input, textarea) {
    width: 100%;
    height: 100%;
  } */
}
.p-contact .contact .heading {
  font-size: 50px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.p-contact .contact .form {
  margin-top: 77px;
}
.p-contact .contact .form__lead {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.7;
}
.p-contact .contact .form-wrap {
  margin-top: 85px;
}
.p-contact .contact .form-wrap > * + * {
  margin-top: 36px;
}
.p-contact .contact .form__item {
  font-size: 16px;
}
.p-contact .contact .form__ttl {
  letter-spacing: 0.1em;
  position: relative;
  width: fit-content;
}
.p-contact .contact .form__ttl--required {
  position: absolute;
  color: #d11616;
  font-size: 13px;
  letter-spacing: 1.3px;
  width: fit-content;
  display: block;
  right: -47px;
  top: -4px;
}
.p-contact .contact .form__txt :is(input, textarea) {
  width: 100%;
  height: 46px;
  border: 1px solid #bbb;
  margin-top: 14px;
}
.p-contact
  .contact
  :is(.form__item--name, .form__item--tel)
  .form__txt
  :is(input, textarea) {
  width: 400px;
}
.p-contact .contact .form__item--detail .form__txt :is(input, textarea) {
  height: 320px;
}
.p-contact .contact .form__btn-wrap,
.p-contact .contact .form__btn {
  margin-top: 69px;
}
.p-contact .contact .form__btn {
  background: #000;
  width: 305px;
  height: 75px;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid #000;
}
.p-contact .contact .form__btn--back {
  background: #fff;
  color: #000;
}
.p-contact .contact .form__btn-wrap {
  gap: 20px;
}
.p-contact .policy {
  padding-top: 102px;
  padding-bottom: 128px;
}
.p-contact .policy .block {
  background: #f4f4f5;
  padding: 58px 63px 76px 63px;
}
.p-contact .policy .block__heading {
  font-size: 16px;
  font-weight: 500;
}
.p-contact .policy .block-wrap {
  margin-top: 42px;
}
.p-contact .policy .block-wrap > * + * {
  margin-top: 2em;
}
.p-contact .policy .block__item {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-contact .policy .block__ttl {
  font-weight: 500;
}
.p-contact .policy .block__txt {
  font-weight: 400;
}
.p-contact .js-cf7-confirm-wrap .form__txt {
  margin-top: 10px;
}

/*-------------------------------

p-notfound

-------------------------------*/
.p-notfound .notfound {
  /* padding-top: 248px;
  padding-bottom: 128px; */
  height: calc(100svh - 67px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-notfound .notfound .heading {
  font-size: 60px;
  font-family: var(--gaudy);
  text-align: center;
}
.p-notfound .notfound .txt {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.7;
  text-align: center;
  margin-top: 77px;
}

/*-------------------------------

a-people

-------------------------------*/
.a-people .people {
  padding-top: 246px;
  padding-bottom: 161px;
}
.a-people .people .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.a-people .people .ttl {
  font-size: 18px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  text-align: center;
  margin-top: 61px;
}
.a-people .people .block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 87px 109px;
  margin-top: 115px;
}
.a-people .people .block__img :is(img, picture) {
  aspect-ratio: 33/38;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.a-people .people .block__ttl {
  font-size: 16px;
  margin-top: 32px;
}
.a-people .people .c-a-pager {
  margin-top: 113px;
}
.a-people .people .c-tag {
  margin-top: 129px;
}

/*-------------------------------

s-people

-------------------------------*/
.s-people .people {
  padding-top: 267px;
}
.s-people .people .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.s-people .people .block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 112px;
  gap: 5%;
}
.s-people .people .block__img {
  width: 44%;
}
.s-people .people .block__img :is(img, picture) {
  aspect-ratio: 526/687;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.s-people .people .block__txt-wrap {
  width: 51%;
	margin-top:30px;
}
.s-people .people .block__organization {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.s-people .people .block__heading {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 17px;
}
.s-people .people .block__content {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2.6;
  margin-top: 48px;
}
.s-people .people .c-tag {
  margin-top: 154px;
}
.s-people .people .c-s-pager {
  margin-top: 120px;
}
.s-people .other {
  padding-top: 238px;
  padding-bottom: 168px;
}
.s-people .slider {
  margin-top: 105px;
}
.s-people .slider .slick-slide {
  width: 275px;
  margin-right: 30px;
}
.s-people .slider .slick-slide :is(img, picture) {
  object-fit: cover;
  aspect-ratio: 275/400;
  width: 100%;
  height: 100%;
}

/*-------------------------------

a-menu

-------------------------------*/
.a-menu .menu {
  padding-top: 246px;
  padding-bottom: 161px;
}
.a-menu .menu .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.a-menu .menu .ttl {
  font-size: 18px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  text-align: center;
  margin-top: 61px;
}
.a-menu .menu .block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 87px 109px;
  margin-top: 115px;
}
.a-menu .menu .block__img :is(img, picture) {
  aspect-ratio: 328/205;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.a-menu .menu .block__date {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-top: 20px;
}
.a-menu .menu .block__ttl {
  font-size: 16px;
  margin-top: 11px;
}
.a-menu .menu .c-a-pager {
  margin-top: 113px;
}
.a-menu .menu .c-tag {
  margin-top: 129px;
}

/*-------------------------------

s-menu

-------------------------------*/
.s-menu .menu {
  padding-top: 267px;
}
.s-menu .menu .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.s-menu .menu .block__ttl {
  font-size: 20px;
  text-align: center;
  margin-top: 85px;
  letter-spacing: 0.1em;
}
.s-menu .menu .block__content {
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: 0.1em;
  width: 550px;
  margin: 71px auto 0;
}
.s-menu .menu .block__content p:has(img, picture) {
  width: 1000px;
  margin-left: calc((100% - 1000px) / 2);
  margin-right: auto;
}
.s-menu .menu .block__content p :is(img, picture) {
  width: 100%;
}
.s-menu .menu .block__date {
  text-align: center;
  font-size: 15px;
  margin-top: 180px;
  letter-spacing: 0.08em;
}
.s-menu .menu .c-tag {
  margin-top: 47px;
}
.s-menu .menu .c-s-pager {
  margin-top: 120px;
}
.s-menu .other {
  padding-top: 238px;
  padding-bottom: 168px;
}
.s-menu .slider {
  margin-top: 105px;
}
.s-menu .slider .slick-slide {
  width: 410px;
  margin-right: 5px;
}
.s-menu .slider .slick-slide :is(img, picture) {
  object-fit: cover;
  aspect-ratio: 410/255;
  width: 100%;
  height: 100%;
}
.s-menu .slider__bottom {
  margin-top: 5px;
}

/*-------------------------------

a-news

-------------------------------*/
.a-news .news {
  padding-top: 258px;
  padding-bottom: 185px;
}
.a-news .news .heading {
  font-size: 60px;
  font-family: var(--gaudy);
  text-align: center;
}
.a-news .news .block {
  border-top: 1px solid #e6e4e4;
  margin-top: 82px;
}
.a-news .news .block__item {
  display: flex;
  border-bottom: 1px solid #e6e4e4;
  padding: 24px 55px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.5s;
}
.a-news .news .block__item:hover {
  background: #f8f8f8;
  opacity: 1;
}
.a-news .news .block__date {
  width: 164px;
  font-size: 16px;
  font-family: var(--gaudy);
}
.a-news .news .block__ttl {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.a-news .news .c-a-pager {
  margin-top: 86px;
}

/*-------------------------------

s-menu

-------------------------------*/
.s-news .news {
  padding-top: 267px;
  padding-bottom: 168px;
}
.s-news .news .heading {
  font-size: 60px;
  /* letter-spacing: 0.08em; 250709 gaudy */
  font-family: var(--gaudy);
  text-align: center;
}
.s-news .news .block__date {
  text-align: center;
  font-size: 15px;
  margin-top: 91px;
  letter-spacing: 0.08em;
}
.s-news .news .block__ttl {
  font-size: 20px;
  text-align: center;
  margin-top: 26px;
  letter-spacing: 0.1em;
}
.s-news .news .block__content {
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: 0.1em;
  width: 550px;
  margin: 71px auto 0;
}
.s-news .news .block__content p:has(img:not(.emoji), picture) {
  width: 800px;
  margin-left: calc((100% - 800px) / 2);
  margin-right: auto;
}
.s-news .news .block__content p :is(img, picture) {
  width: 100%;
}
.s-news .news .c-s-pager {
  margin-top: 177px;
}

/*-------------------------------

追加

-------------------------------*/
.p-people-demo .fv .heading {
  font-family: var(--noto), "游明朝", "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "MS P明朝", "MS Mincho", serif;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.p-people-demo .fv .subheading {
  font-family: var(--gaudy);
  letter-spacing: 1.04px;
  margin-top: 10px;
}
.p-access-demo .access .block__heading {
  font-family: var(--noto), "游明朝", "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "MS P明朝", "MS Mincho", serif;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.p-access-demo .access .block__subheading {
  font-family: var(--gaudy);
  letter-spacing: 1.04px;
  margin-top: 10px;
}

/*-------------------------------

otamesi

-------------------------------*/
.p-concept .lead .heading {
  font-size: 60px;
  font-family: var(--gaudy);
  letter-spacing: normal;
}
