@charset "UTF-8";

html{
  font-size: var(--font-size-root);
}
@media only screen and (max-width: 1024px) {
  html{
    font-size: 15px;
  }
}
body {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-body);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: var(--color-text);
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 1rem;
  letter-spacing: 0.05em;
  background: var(--color-bg);
}

.font-lato-bold-italic {
  font-family: var(--font-lato);
  font-weight: 700;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
a:hover {
  
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}


ul li,ol li {
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: var(--wrapper-max);
  width: var(--wrapper-width);
  margin: 0 auto;
}
.wrapper2 {
  max-width: var(--wrapper2-max);
  width: 84%;
  margin: 0 auto;
}
.wrapper::after,.wrapper2::after {
  content: "";
  display: block;
  clear: both;
}
/************************************

アニメーション

************************************/
/*ズームイン表示*/
.zoomin {
  -webkit-transition: var(--duration-slow);
  transition: var(--duration-slow);
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  -webkit-transition: var(--duration-slow);
  transition: var(--duration-slow);
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  -webkit-transition: var(--duration-slow);
  transition: var(--duration-slow);
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*写真：左からスライドして表示*/
.slidein {
  overflow: hidden;
}
.slidein > img,
.slidein picture > img {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.slidein.is-show > img,
.slidein.is-show picture > img {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*テキストなど：左からスライドして表示*/
.slideleft {
  opacity: 0;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.slideleft.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
  .slidein > img {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  .slideleft {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


/************************************

header

************************************/
header {
  position: relative;
  z-index: 1100;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0rem auto;
  position: relative;
  max-width: 1400px;
  width:96%;

}
header .logo {
  max-width: 240px;
  position: absolute;
  top: 2rem;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  header .logo {
    max-width: 160px;
  }
}
@media print {
  header {
    position: relative;
  }
}

/************************************

hamburger / global-menu

************************************/
header .humberger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: 80px;
  height: 80px;
  padding: 0;
  background: #111111;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
header .humberger:hover {
  opacity: 0.8;
}
header .humberger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
header .humberger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--color-white);
  -webkit-transition: -webkit-transform var(--duration), opacity var(--duration);
  transition: transform var(--duration), opacity var(--duration);
}
header .humberger span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) translateY(-0.35rem);
  transform: translate(-50%, -50%) translateY(-0.35rem);
}
header .humberger span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .humberger span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) translateY(0.35rem);
  transform: translate(-50%, -50%) translateY(0.35rem);
}
header .humberger.is-open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
header .humberger.is-open span:nth-child(2) {
  opacity: 0;
}
header .humberger.is-open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (max-width: 600px) {
  header .humberger {
    width: 2.8rem;
    height: 2.8rem;
  }
}

body.is-menu-open {
  overflow: hidden;
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
}
.global-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-color: rgba(253, 208, 2, 0.5);
  background-color: color-mix(in srgb, var(--color-accent2) 50%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-transition: opacity var(--duration);
  transition: opacity var(--duration);
}
.global-menu.is-open,
.global-menu.is-closing {
  pointer-events: auto;
}
.global-menu.is-open::before,
.global-menu.is-closing::before {
  opacity: 1;
}
.global-menu.is-closing::before {
  opacity: 0;
}
.global-menu ul {
  letter-spacing: 0;
}
.global-menu a {
  color: var(--color-text);
}

.global-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 1100px;
  width: 90%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  text-align: left;
  background: #ffffff;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
.global-menu__scroll {
  height: 100%;
  padding: 3rem 8%;
  padding-right: 10%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 1024px) {
  .global-menu__scroll {
    padding-right: 8%;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .global-menu__title{
  width:50vw;
  }
}
.global-menu.is-open .global-menu__inner {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.global-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.global-menu__title picture,
.global-menu__stamp picture {
  display: block;
  width: 100%;
}
.global-menu__stamp {
  flex-shrink: 0;
  width: 15vw;
max-width:300px;
}
@media only screen and (max-width: 1024px) {
  .global-menu__stamp {
    width: 25vw;
  }
}

.global-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 600px) {
  .global-menu__list {
    grid-template-columns: 1fr;
  }
}
.global-menu__list > li {
  border-bottom: 1px solid var(--color-border);
}
.global-menu__list > li > a,
.global-menu__depts-ttl {
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 1.2rem 0.4rem 1.2rem 0;
  font-family: var(--font-rounded);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}
.global-menu__list > li > a::before,
.global-menu__depts-ttl::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.7rem;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.global-menu__list > li > a:hover{
  color: var(--color-accent);
}
.global-menu__depts {
  grid-column: 1 / -1;
  padding-bottom: 1.2rem;
}
.global-menu__depts-ttl {
  margin: 0;
}
.global-menu__depts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media only screen and (max-width: 600px) {
  .global-menu__depts-list {
    grid-template-columns: 1fr;
  }
}
.global-menu__dept-img {
  display: block;
  width: 100%;
  aspect-ratio: 2.7 / 1;
  border-radius: 0.4rem;
  overflow: hidden;
}
.global-menu__dept-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.global-menu__depts-list li:hover .global-menu__dept-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}
.global-menu__dept-name {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-rounded);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.global-menu__depts-list li:hover .global-menu__dept-name {
  color: var(--color-accent);
}

.global-menu__foot {
  padding: 2.2rem 0 0.5rem;
  text-align: center;
}
.global-menu__univ {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  font-family: var(--font-rounded);
  font-size: 0.9rem;
  font-weight: 700;
}
.global-menu__sns {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 0.9rem;
}
.global-menu__sns li {
  width: 24px;
}

@media (prefers-reduced-motion: reduce) {
  header .humberger span {
    -webkit-transition: none;
    transition: none;
  }
}

/************************************

side-nav

************************************/
.side-nav {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 1100;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}
@media only screen and (max-width: 1024px) {
  .side-nav {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: calc(100% - 64px);
    -webkit-transform: none;
    transform: none;
  }
}
.side-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  letter-spacing: 0;
}
@media only screen and (max-width: 1024px) {
  .side-nav ul {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }
}
.side-nav li {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .side-nav li {
    flex: 1 1 0;
    min-width: 0;
  }
}
.side-nav a {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 80px;
  min-height: 110px;
  padding: 16px 6px 14px;
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  -webkit-transition: width 0.35s ease, padding 0.35s ease, height 0.35s ease;
  transition: width 0.35s ease, padding 0.35s ease, height 0.35s ease;
}
@media only screen and (max-width: 1024px) {
  .side-nav a {
    flex: 1;
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0.5rem 0.3rem 0.4rem;
    border-radius: 12px 12px 0 0;
    font-size: 10px;
    line-height: 1.1;
    gap: 4px;
  }
}
.side-nav a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  z-index: 1;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  pointer-events: none;
  opacity: 0;
}
.side-nav li:hover a {
  width: 90px;
}
@media only screen and (max-width: 1024px) {
  .side-nav li:hover a {
    width: 100%;
    height: auto;
    padding-top: calc(0.5rem + 8px);
  }
}
.side-nav li:hover a::after {
  -webkit-animation: side-nav-shine 0.65s ease;
  animation: side-nav-shine 0.65s ease;
}
@-webkit-keyframes side-nav-shine {
  0% {
    left: -70%;
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 1;
  }
}
@keyframes side-nav-shine {
  0% {
    left: -70%;
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 1;
  }
}
.side-nav a img {
  width: 28px;
  height: 28px;
  margin: 0;
  object-fit: contain;
}
@media only screen and (max-width: 1024px) {
  .side-nav a img {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.side-nav__shiryo a {
  background: var(--color-side-shiryo);
}
.side-nav__nyushi a {
  background: var(--color-side-nyushi);
}
.side-nav__open a {
  background: var(--color-side-open);
  color: #231815;
}
.side-nav__event a {
  background: var(--color-side-event);
}

/************************************

footer

************************************/
footer {
  padding: 6rem 0 3rem;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  footer {
    padding: 3rem 0 7rem;
  }
}
.footer-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem 2.4rem;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 1024px) {
  .footer-head {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer-head {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
.footer-logo {
  max-width: 380px;
}
@media only screen and (max-width: 1024px) {
  .footer-logo {
    max-width: 220px;
  }
}
@media only screen and (max-width: 600px) {
  .footer-logo {
    max-width: 200px;
  }
}
.footer-sns {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 600px) {
  .footer-sns {
    justify-content: center;
  }
}
.footer-sns li {
  width: 22px;
}
.footer-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 4rem;
  margin-bottom: 3.2rem;
}
@media only screen and (max-width: 600px) {
  .footer-body {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 2.4rem;
  }
}
.footer-info {
  font-size: 0.8rem;
  line-height: 1.9;
}
@media only screen and (max-width: 600px) {
  .footer-info {
    font-size: 0.75rem;
    text-align: center;
  }
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.45rem 2.4rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 1024px) {
  .footer-nav ul {
    grid-template-columns: repeat(2, max-content);
    gap: 0.4rem 1.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: max-content max-content;
    justify-content: center;
  }
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-nav a::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 1px;
  margin-right: 0.45em;
  background: currentColor;
}
.footer-copy {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: var(--color-text-muted);
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid var(--color-text-muted);
  border-left: 1px solid var(--color-text-muted);
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

/************************************

main

************************************/
main {
  display: block;
}

/************************************

#kv

************************************/
#kv {
  display: flex;
  flex-direction: column;
  width: 94%;
  max-width: 1400px;
  aspect-ratio: 3 / 2.2;

  margin: 0 auto 3rem;
  padding: 0 0 0;
  
}
@media only screen and (max-width: 600px) {
  #kv {
    display: block;
    height: auto;
    aspect-ratio: 2 / 3;
    margin: 0 auto 2rem;
  }
}
.kv-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
  height:100%;
  margin: 0 auto;
  container-type: inline-size;
}
@media only screen and (max-width: 600px) {
  .kv-inner {
    display: block;

  }
}
.kv-copy {
  
}
.kv-name1 {
  position: absolute;
  z-index: 2;
  bottom: 42cqw;
  left: 3%;
  width: 25%;
  
}
@media only screen and (max-width: 600px) {
  .kv-name1 {
    width: 42%;
    bottom: 57%;
  }
}
.kv-name2 {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 15%;
  width: 16%;
transition: 1s;
transition-delay: 0.5s;
}
@media only screen and (max-width: 600px) {
  .kv-name2 {
    width: 28%;
top: 10%;
  }
}
.kv-name1 picture,
.kv-name2 picture {
  display: block;
  width: 100%;
}
.kv-name1 img,
.kv-name2 img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.kv-visual {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 40cqw;
  transition: 1.5s;
}
@media only screen and (max-width: 600px) {
  .kv-visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 80cqw;
  }
}
.kv-visual > picture {
  display: block;
  width: 100%;
  height: 40cqw;
}
.kv-visual > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}
@media only screen and (max-width: 600px) {
  .kv-visual > picture,
  .kv-visual > picture img {
    height: 80cqw;
  }
  .kv-visual > picture img {
    border-radius: 32px;
  }
}
.kv-stamp {
  position: absolute;
  right: 1.5%;
  bottom: 3%;
  z-index: 3;
  width: 22%;
  max-width: 250px;
  transition: 1s;
  transition-delay: 0.8s;
}
@media only screen and (max-width: 600px) {
  .kv-stamp {
    right: 0;
    bottom: 2%;
    width: 38%;
    max-width: 160px;
  }
}
.kv-stamp picture {
  display: block;
  width: 100%;
}
.kv-stamp img {
  width: 100%;
  height: auto;
}
.kv-note {
  flex-shrink: 0;
  margin-top: 0.7rem;
  font-size: 0.65rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: right;
}
@media only screen and (max-width: 600px) {
  .kv-note {
    margin-top: 0.5rem;
    font-size: 0.55rem;
    text-align: left;
  }
}

/************************************

#lead

************************************/
#lead {
  padding: 5rem 0 6rem;
}
@media only screen and (max-width: 1024px) {
  #lead {
    padding: 3.5rem 0 4.5rem;
  }
}
.lead-inner {
  position: relative;
  min-height: 750px;
}
@media only screen and (max-width: 1024px) {
  .lead-inner {
    gap: 2rem 3%;
    min-height: 50vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
}
.lead-intro {
  width: 43%;
  flex-shrink: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .lead-intro {
    width: 100%;
  }
}
.lead-ttl {
  margin-bottom: 2rem;
  padding: 2rem 2rem 2rem;
  background: var(--color-accent);
  border-radius: 1.4rem ;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .lead-ttl {
    
  }
}
@media only screen and (max-width: 767px) {
  .lead-ttl {
    font-size:clamp(1rem, 4.5vw, 1.5rem);
    border-radius: 2rem;
    padding:5vw;
    text-align: center;
  }
}
.lead-text p {
  margin:0 3rem 3rem 1rem;
  font-size: 1rem;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .lead-text p {
  margin:0 1rem 2rem ;
  font-size: 1rem;
  line-height: 1.9;
}
}
.lead-text p:last-child {
  margin-bottom: 1.6rem;
}
.lead-photo {
  margin:3rem 3rem 0 1rem;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .lead-photo {
  margin:3rem 1rem 3rem ;
}
}
.lead-photo img {
  width: 100%;
  border-radius: 5px;
}
.lead-photo figcaption {
  margin-top: 0.45rem;
  font-size: 0.6rem;
  line-height: 1.6;
  color: var(--color-text);
  
}
.lead-ill {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  transition: 1s;
}
@media only screen and (max-width: 767px) {
  .lead-ill {
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
}
.lead-ill picture {
  display: block;
  width: 100%;
}
.lead-ill__base {
  width: 100%;
  height: auto;
}
.lead-ill__nums {
  position: absolute;
  inset: 0;
  letter-spacing: 0;
}
.lead-ill__nums li {
  position: absolute;
  width: 8.2%;
  max-width: 66px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
}
@media only screen and (max-width: 1024px) {
  .lead-ill__nums li {
    width: 10%;
  }
}
.lead-ill__nums li:hover {
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}
.lead-ill__nums .num01 { top: 48%; left: 9%; }
.lead-ill__nums .num02 { top: 88%; left: 30%; }
.lead-ill__nums .num03 { top: 7%; left: 48%; }
.lead-ill__nums .num04 { top: 28%; left: 88%; }
.lead-ill__nums .num05 { top: 58%; left: 91%; }
.lead-ill__nums .num06 { top: 80%; left: 78%; }
.lead-ill__nums li > * {
  display: block;
  -webkit-animation: lead-ill-float 3.6s ease-in-out infinite;
  animation: lead-ill-float 3.6s ease-in-out infinite;
}
.lead-ill__nums li img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-animation: lead-ill-pulse 3.8s ease-in-out infinite;
  animation: lead-ill-pulse 3.8s ease-in-out infinite;
}
.lead-ill__nums .num01 > * {
  -webkit-animation-duration: 3.4s;
  animation-duration: 3.4s;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.lead-ill__nums .num01 img {
  -webkit-animation-duration: 4.6s;
  animation-duration: 4.6s;
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
}
.lead-ill__nums .num02 > * {
  -webkit-animation-duration: 4.2s;
  animation-duration: 4.2s;
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
}
.lead-ill__nums .num02 img {
  -webkit-animation-duration: 3.3s;
  animation-duration: 3.3s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.lead-ill__nums .num03 > * {
  -webkit-animation-duration: 3.1s;
  animation-duration: 3.1s;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.lead-ill__nums .num03 img {
  -webkit-animation-duration: 4.9s;
  animation-duration: 4.9s;
  -webkit-animation-delay: -2.7s;
  animation-delay: -2.7s;
}
.lead-ill__nums .num04 > * {
  -webkit-animation-duration: 4.7s;
  animation-duration: 4.7s;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}
.lead-ill__nums .num04 img {
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.lead-ill__nums .num05 > * {
  -webkit-animation-duration: 3.8s;
  animation-duration: 3.8s;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.lead-ill__nums .num05 img {
  -webkit-animation-duration: 5.1s;
  animation-duration: 5.1s;
  -webkit-animation-delay: -3.3s;
  animation-delay: -3.3s;
}
.lead-ill__nums .num06 > * {
  -webkit-animation-duration: 4.4s;
  animation-duration: 4.4s;
  -webkit-animation-delay: -3.2s;
  animation-delay: -3.2s;
}
.lead-ill__nums .num06 img {
  -webkit-animation-duration: 3.2s;
  animation-duration: 3.2s;
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s;
}
@-webkit-keyframes lead-ill-float {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes lead-ill-float {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes lead-ill-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@keyframes lead-ill-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

.lead-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 1.6rem;
  margin-top: 7rem;
  padding-top: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .lead-content {
    grid-template-columns: 1fr ;
    gap: 3.2rem 0.9rem;
    margin-top: 3.5rem;
    padding-top: 1.8rem;
  }
}
.lead-card {
  position: relative;
  padding: 3rem 10% 2.5rem;
  background: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: visible;
  scroll-margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .lead-card {
    padding: 2.5rem 8% 2.5rem;
  }
}
.lead-card__num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 66px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .lead-card__num {
    width: 48px;
  }
}
.lead-card__num img,
.lead-card__ill img {
  width: 100%;
  height: auto;
  display: block;
}
.lead-card h3 {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  /*font-family: var(--font-rounded);*/
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .lead-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.lead-card p {
  font-size: 0.9rem;
  line-height: 1.85;
}
@media only screen and (max-width: 767px) {
  .lead-card p {
    font-size: 1rem;
  }
}
.lead-card__ill {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.lead-card--ill1 .lead-card__ill {
  top: -5.8rem;
  left: 4%;
  width: 98px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill1 .lead-card__ill {
    width: calc(98px * 0.8);
    top: calc(-5.8rem - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill1 .lead-card__ill {
    top: -4.2rem;
    left: 3%;
    width: 64px;
  }
}
.lead-card--ill2 {
  /*padding-top: 3.2rem;*/  
}
.lead-card--ill2 .lead-card__ill {
  top: -4.4rem;
  left: 14%;
  width: 66px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill2 .lead-card__ill {
    width: calc(66px * 0.8);
    top: calc(-4.4rem - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill2 .lead-card__ill {
    top: -3.4rem;
    left: 4%;
    width: 44px;
  }
}
.lead-card--ill3 {
  padding-bottom: 3.2rem;
}
.lead-card--ill3 .lead-card__ill {
  right: 5%;
  bottom: 3rem;
  width: 114px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill3 .lead-card__ill {
    width: calc(114px * 0.8);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill3 .lead-card__ill {
    width: 70px;
    right: 5%;
  bottom: -2rem;
  }
}
.lead-card--ill4 {
  padding-bottom: 4rem;
}
.lead-card--ill4 .lead-card__ill {
  left: 8%;
  bottom: -1.4rem;
  width: 105px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill4 .lead-card__ill {
    width: calc(105px * 0.8);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill4 .lead-card__ill {
    width: 68px;
    bottom: -2rem;
  }
}
.lead-card--ill5 {
  /*padding-top: 3.4rem;*/
}
.lead-card--ill5 .lead-card__ill {
  top: -4.2rem;
  left: 62%;
  width: 100px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill5 .lead-card__ill {
    width: calc(100px * 0.8);
    top: calc(-4.2rem - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill5 .lead-card__ill {
    top: -3.2rem;
    width: 64px;
  }
}
.lead-card--ill6 {
  padding-bottom: 4.2rem;
}
.lead-card--ill6 .lead-card__ill {
  right: 30%;
  bottom: -20px;
  width: 143px;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .lead-card--ill6 .lead-card__ill {
    width: calc(143px * 0.8);
  }
}
@media only screen and (max-width: 767px) {
  .lead-card--ill6 .lead-card__ill {
    width: 88px;
    bottom: -2rem;
  }
}

/************************************

.midashi（各セクション共通見出し）

************************************/
.midashi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .midashi {
    margin-bottom: 2.4rem;
  }
}
.midashi_eng {
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--color-midashi);
}
.midashi_ja {
  margin: 0.25rem 0 0.7rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .midashi_ja {
    margin: 0.15rem 0 0.55rem;
    font-size: 1.25rem;
  }
}
.midashi::after {
  content: "";
  display: block;
  width: 159px;
  height: 9px;
  background: url("../images/midashi_sen.svg") no-repeat center / contain;
}
@media only screen and (max-width: 767px) {
  .midashi::after {
    width: 130px;
    height: 7px;
  }
}
/************************************

#features

************************************/
#features {
  padding: 5rem 0 6rem;
}
@media only screen and (max-width: 767px) {
  #features {
    padding: 3rem 0 4rem;
  }
}
.features-item{
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .features-item{
    margin-bottom: 5rem;
  }
}
.features-item:nth-child(even) .features-item__main,
.features-item:nth-child(even) .features-item__sub {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .features-item:nth-child(even) .features-item__main,
  .features-item:nth-child(even) .features-item__sub {
    flex-direction: column;
  }
}
.features-item__main {
  display: flex;
  align-items: stretch;
  gap: 3.2rem;
  margin-bottom:2rem;
}
@media only screen and (max-width: 767px) {
  .features-item__main {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.features-item__main_text {
  width: 40%;
  flex-shrink: 0;
  padding-top: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .features-item__main_text {
    width: 100%;
    padding-top: 0;
  }
}
.features-item__main_num {
  position: relative;
  z-index: 1;
  margin:0 0 -0.15em 1rem;
  font-family: var(--font-lato);
  font-size: 2.3rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--color-midashi);
}
@media only screen and (max-width: 767px) {
  .features-item__main_num {
    font-size: 1.5rem;
  }
}
.features-item__main_catch {
  position: relative;
  display: inline-block;
  z-index: 0;
  margin-bottom: 1rem;
  padding: 0.45em 1em 0.5em;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .features-item__main_catch {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}
.features-item__main_catch::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0.15em;
  bottom: 0;
  left: 0.15em;
  background: var(--color-midashi);
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
.features-item__main_ttl {
  margin-bottom: 1.4rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .features-item__main_ttl {
    font-size: 1.6rem;
  }
  .features-item__main_ttl br{
    display: none;
  }
}

.features-item__main_txt {
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .features-item__main_txt {
    font-size: 1rem;
  }
}
.features-item__main_image {
  flex: 1;
  min-width: 0;
}
.features-item__main_image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.features-item__main_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 18%;
  border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .features-item__main_image img {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 1.6rem;
  }
}
.features-item__sub {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 3.2rem;
  width:100%;
  justify-content: space-between;
  
}
@media only screen and (max-width: 767px) {
  .features-item__sub {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.features-item__sub_image {
  position: relative;
  width: 55%;
  aspect-ratio: 7 / 6;
  container-type: inline-size;
}
.features-item__sub_image.slidein {
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .features-item__sub_image {
    width: 100%;
  }
}
.features-item2 .features-item__sub_image {
  aspect-ratio: 7 / 5;
}
.features-item__sub_image picture {
  display: contents;
}
.features-item__sub_image img {
  position: absolute;
  display: block;
  height: auto;
}
.feature_ph12 {
  top: 0;
    right: 46%;
    width: 52%;
    border-radius: 1.6rem;
    z-index: 2;
}
.feature_ph13 {
  top: 25%;
    right: 0;
    width: 41%;
    border-radius: 1.6rem;
    z-index: 2;
}
.feature_ph14 {
  top: 53cqw;
    right: 46%;
    width: 34%;
    border-radius: 1.4rem;
    z-index: 2;
}
.feature_ill11 {
  top: 44cqw;
  left: 0;
  width: 17%;
  z-index: 3;
}
.feature_ill12 {
  top: 65cqw;
  right: 4%;
  width: 22%;
  z-index: 3;
}
.feature_nami1 {
  top: -12%;
    right: 4%;
    width: 38%;
    z-index: 1;
    pointer-events: none;
}
.slidein .feature_ph12 {
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.slidein .feature_ph13 {
  -webkit-transition-delay: 0.15s, 0.15s;
  transition-delay: 0.15s, 0.15s;
}
.slidein .feature_ph14 {
  -webkit-transition-delay: 0.3s, 0.3s;
  transition-delay: 0.3s, 0.3s;
}
.slidein > .feature_nami1 {
  -webkit-transition-delay: 0.45s, 0.45s;
  transition-delay: 0.45s, 0.45s;
}
.slidein > .feature_ill11 {
  -webkit-transition-delay: 0.6s, 0.6s;
  transition-delay: 0.6s, 0.6s;
}
.slidein > .feature_ill12 {
  -webkit-transition-delay: 0.75s, 0.75s;
  transition-delay: 0.75s, 0.75s;
}
.feature_ph22 {
  top: 0;
    right: 0%;
    width: 52%;
    border-radius: 1.6rem;
    z-index: 2;
}
.feature_ph23 {
  top: 23cqw;
    right: 60%;
    width: 38%;
    border-radius: 1.4rem;
    z-index: 2;
}
.feature_ill22 {
  top: 10cqw;
  right: 55%;
  width: 15%;
  z-index: 4;
}
.feature_ill23 {
  top: 50cqw;
  left: -20%;
  width: 15%;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .feature_ill23 {
    top: 50cqw;
    left: -15%;
    width: 15%;
    z-index: 4;
  }
}
@media only screen and (max-width: 767px) {
  .feature_ill23 {
    top: 50cqw;
    left: 45%;
  }
}
.feature_nami2 {
  top: -12%;
    left: -10%;
    width: 38%;
    z-index: 3;
    pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .feature_nami2 {
      left: 0%;
  }
}
.features-item__comment {
  width: 40%;
  padding-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .features-item__comment {
    width: 100%;
    padding-top: 0;
  }
}
.features-item__comment_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .features-item__comment_ttl {
    font-size: 1rem;
    gap: 0.4rem;
  }
}
.features-item__comment_ttl::before,
.features-item__comment_ttl::after {
  content: "";
  display: block;
  width: 25px;
  height: 30px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .features-item__comment_ttl::before,
  .features-item__comment_ttl::after {
    width: 28px;
    height: 34px;
  }
}
.features-item__comment_ttl::before {
  background-image: url("../images/feature_com_ttl_l.svg");
}
.features-item__comment_ttl::after {
  background-image: url("../images/feature_com_ttl_r.svg");
}
.features-item__comment_ttl span{
  

}
.features-item__comment_list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.features-item__comment_list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1.1rem 0.25rem 0.25rem;
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .features-item__comment_list li {
    gap: 0.5rem;
    padding: 0.3rem 0.9rem 0.3rem 0.3rem;
  }
}
.features-item__comment_list img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .features-item__comment_list img {
    width: 48px;
    height: 48px;
  }
}
.features-item__comment_list p {

  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .features-item__comment_list p {
    font-size: 0.9rem;
  }
}
.features-item__comment_list em {
  font-weight: 700;
  font-style: normal;
  font-size:1rem;
  color: var(--color-midashi);
}
.features-campus{
  margin-top: 4rem;
}
.features-campus__ttl{
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .features-campus__ttl{
    font-size: clamp(1.2rem,6vw, 1.4rem);
  }
}
.features-campus__image{
  position: relative;
  container-type: inline-size;
}
.features-campus__image.slidein {
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .features-campus__image{
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;  

  }
}
.feature_ph_c1{
  width:65%;
  border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .feature_ph_c1{
    border-radius: 1.5rem;
    width:100%;
    margin:0 0 4%;
  }
}
.feature_ph_c2{
  position: absolute;
  top: 15cqw;
  left: 70%;
  width: 30%;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .feature_ph_c2{
    position:relative;
    width: 48%;
    top:auto;
    left:auto;
    border-radius: 1rem;
  }
}
.feature_ph_c3{
  position: absolute;
  top: 35cqw;
  left: 70%;
  width: 23%;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .feature_ph_c3{
    position:relative;
    top:auto;
    left:auto;
    width:48%;
    border-radius: 1rem;
  }
}
.feature_ill_c1{
  position: absolute;
  top: 5cqw;
  right: 5%;
  width: 8%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .feature_ill_c1{
    top:-10%;
    width:15%;
  }
}
.feature_ill_c2{
  position: absolute;
  top: 48cqw;
  right: 0;
  width: 8%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .feature_ill_c2{
    top:auto;
    bottom:-10%;
    width:20%;
  }
}
.feature_ill_c3{
  position: absolute;
  top: 52cqw;
  right: 23%;
  width: 8%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .feature_ill_c3{
    top:auto;
    bottom:26%;
    width:20%;
    right:auto;
    left:5%;
  }
}
.slidein > .feature_ill_c1 {
  -webkit-transition-delay: 0.8s, 0.8s;
  transition-delay: 0.8s, 0.8s;
}
.slidein > .feature_ill_c2 {
  -webkit-transition-delay: 1.1s, 1.1s;
  transition-delay: 1.1s, 1.1s;
}
.slidein > .feature_ill_c3 {
  -webkit-transition-delay: 1.3s, 1.3s;
  transition-delay: 1.3s, 1.3s;
}
.features-campus__text{
  width:65%;
  margin-top:3rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .features-campus__text{
    width:100%;
  }
}
.features-campus__text small{
  font-size: 0.85rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}


/************************************

#message

************************************/
.message-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem 5%;
}
@media only screen and (max-width: 767px) {
  .message-inner {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.message-text {
  width: 65%;
  flex: 1;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .message-text {
    width: 100%;
  }
}
.message-ttl {
  margin-bottom: 1.8rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .message-ttl {
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
  }
}
.message-body p {
  margin-bottom: 1.6rem;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .message-body p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}
.message-body p:last-child {
  margin-bottom: 0;
}
.message-photo {
  width: 28%;
  max-width: 320px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .message-photo {
    width: 62%;
    max-width: 260px;
  }
}
.message-photo img {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .message-photo img {
    border-radius: 1.2rem;
  }
}
.message-photo figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .message-photo figcaption {
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }
}

/************************************

#depts

************************************/
.depts-nav {
  margin: 0 0 4rem;
}
@media only screen and (max-width: 767px) {
  .depts-nav {
    margin: 0 0 2.4rem;
  }
}
.depts-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem 2%;
}
@media only screen and (max-width: 767px) {
  .depts-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.2rem 1.5%;
  }
}
.depts-nav__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 404px;
}
.depts-nav__list li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.depts-nav__list li:nth-child(3) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
@media only screen and (max-width: 767px) {
  .depts-nav__item {
    flex: none;
    width: 49%;
    max-width: none;
  }
}
@media only screen and (max-width: 767px) {
  .depts-nav__item:last-child {
    width: 58%;
  }
}
.depts-nav__item a {
  display: block;
  -webkit-transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
}
.depts-nav__item a:hover {
  -webkit-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
}
.depts-nav__item img {
  width: 100%;
  height: auto;
}

.depts-item__waku {
  --color-dept-back: var(--color-deps1-back);
  --color-dept-key: var(--color-deps1-key);
  --color-dept-keyword: var(--color-accent2);
  --color-dept-dot: #ee811f;
  scroll-margin-top: 2rem;
  margin-bottom: 5rem;
  &:last-child{
    margin-bottom: 0;
  }
}
#depts02 {
  --color-dept-back: var(--color-deps2-back);
  --color-dept-key: var(--color-deps2-key);
  --color-dept-keyword: var(--color-deps2-back);
  --color-dept-dot: var(--color-deps2-key);
}
#depts03 {
  --color-dept-back: var(--color-deps3-back);
  --color-dept-key: var(--color-deps3-key);
  --color-dept-keyword: var(--color-deps3-back);
  --color-dept-dot: var(--color-deps3-key);
}
@media only screen and (max-width: 767px) {
  .depts-item__waku {
    margin-bottom: 5rem;
  }
}
.depts-head {
  position: relative;
}
.depts-head__visual {
  border-radius: 50px 50px 50px 0;
  overflow: hidden;
  
}
@media only screen and (max-width: 1024px) {
  .depts-head__visual {
    border-radius: 30px 30px 30px 0;
  }
}

.depts-head__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1330 / 500;
  object-fit: cover;
  object-position: left center;
}
@media only screen and (max-width: 600px) {
  .depts-head__visual img {
    aspect-ratio: 3 / 2;
    object-position: center;
  }
}
.depts-head__label {
  position: absolute;
  width:65%;

  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.6rem 0 0.15rem;
  background: var(--color-beige);
  border-top-right-radius: 3rem;
}
@media only screen and (max-width: 1024px) {
  .depts-head__label {
    gap: 0.5rem;
    padding: 1rem 1.1rem 0 0.1rem;
    border-top-right-radius: 2.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-head__label {
    width:80%;
    gap: 0.3rem;
    padding: .7rem 0.7rem 0 0;
    border-top-right-radius: 1.4rem;
  }
}
.depts-head__label::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 50px;
  height:50px;
  background: url("../images/depts_ttl_parts.svg") no-repeat ;
  background-position: left bottom;
  background-size: contain;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .depts-head__label::before {
    width: 30px;
    height: 30px;
  }
}

.depts-head__label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 50px;
  background: url("../images/depts_ttl_parts.svg") no-repeat ;
  background-position: left bottom;
  background-size: contain;
/* background-color: aqua; */
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .depts-head__label::after {
    width: 30px;
  }
}

.depts-head__ill {
  display: block;
  width: 7rem;
  height: auto;
  position: relative;
  z-index: 3;
  margin-top: -2.2rem;
}
@media only screen and (max-width: 1024px) {
  .depts-head__ill {
    width: 5.4rem;
    margin-top: -1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-head__ill {
    width: 3.8rem;
    margin-top: -1.1rem;
  }
}
.depts-head__ttl {
  padding-bottom: 0.65rem;
}
@media only screen and (max-width: 1024px) {
  .depts-head__ttl {
    padding-bottom: 0.45rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-head__ttl {
    padding-bottom: 0.3rem;
  }
}
.depts-head__ja {
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-head__ja {
    font-size: 1.35rem;
    letter-spacing: 0.06em;
  }
}

.depts-head__teiin {
  margin-left: 0.55em;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .depts-head__teiin {
    margin: 3px 0;
    font-size: 0.7rem;
    display: block;
  }
}

.depts-head__eng {
  margin-top: 0.15rem;
  color: var(--color-midashi);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1024px) {
  .depts-head__eng {
    font-size: 0.75rem;
    
  }
}
@media only screen and (max-width: 600px) {
  .depts-head__eng {
    margin-top: 0.05rem;
    font-size: 0.58rem;
  }
}
.depts-body {
  overflow: visible;
}
@media only screen and (max-width: 1024px) {
.depts-body {
  
  width:100%;
}
}

.depts-body__lead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.4rem 4%;
  margin-top: 2.8rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__lead {
    gap: 1.8rem 3%;
    margin-top: 2.2rem;
    
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__lead {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.8rem;
  }
}
.depts-body__intro {
  width: 48%;
  flex-shrink: 0;
  padding-top: 0.4rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__intro {
    width: 46%;
    padding-top: 0.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__intro {
    width: 100%;
    padding-top: 0;
  }
}
.depts-body__ttl {
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ttl {
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ttl {
    margin-bottom: 0.9rem;
    font-size: 1.3rem;
  }
}
.depts-body__txt {
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__txt {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__txt {
    font-size: 0.85rem;
  }
}
.depts-body__keyword {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-top: 2.4rem;
  padding: 2.4rem 2rem 1.6rem 2rem;
  background: var(--color-dept-keyword);
  border-radius: 2rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__keyword {
    margin-top: 1.8rem;
    padding: 1.8rem 1.1rem 1.2rem 1.1rem;
    border-radius: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__keyword {
    margin-top: 2rem;
    padding: 1.6rem 1rem 1.2rem;
    border-radius: 1.2rem;
  }
}
.depts-body__keyword_ttl {
  position: absolute;
  top: 0;
  left: 1.3rem;
  z-index: 3;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-lato);
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
@media only screen and (max-width: 1024px) {
  .depts-body__keyword_ttl {
    left: 1rem;
    font-size: 2.2rem;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.depts-body__keyword_ill {
  position: absolute;
  top: -4rem;
  right: 0.8rem;
  width: 4.8rem;
  height: auto;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .depts-body__keyword_ill {
    top: -3.6rem;
    right: 0.4rem;
    width: 4.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__keyword_ill {
    right: 0.6rem;
    width: 4.2rem;
  }
}
.depts-body__keyword_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem .5rem;
  margin-top: 10px;
}
.depts-body__keyword_list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__keyword_list li {
    gap: 0.35rem;
    font-size: 0.85rem;
  }
}

.depts-body__keyword_list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-dept-dot);
}

.depts-body__ryoiki {
  margin-top: 2.8rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki {
    margin-top: 2.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki {
    margin-top: 1.8rem;
  }
}
.depts-body__ryoiki_ttl {
  margin-bottom: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--color-dept-key);
  border-radius: 0.55rem;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_ttl {
    margin-bottom: 0.55rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki_ttl {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
  }
}
.depts-body__ryoiki_ttl span {
  display: inline-block;
  margin: 0 0.1em;
  font-size: 1.35em;
  line-height: 1;
  vertical-align: -0.05em;
}
.depts-body__ryoiki_list {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_list {
    gap: 0.5rem;
    margin-bottom: 0.55rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki_list {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
  }
}
.depts-body__ryoiki_list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: 1.5rem 0.6rem;
  background: var(--color-dept-back);
  border-radius: 0.85rem;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: var(--font-rounded);
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_list li {
    padding: 0.9rem 0.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki_list li {
    padding: 0.85rem 0.8rem;
  }
}
.depts-body__ryoiki_list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_list strong {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki_list strong {
    font-size: 1.1rem;
  }
}
.depts-body__ryoiki_list span {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_list span {
    font-size: 0.95rem;
  }
}
.depts-body__ryoiki_note {
  padding: 1.5rem 1rem;
  background: var(--color-dept-back);
  border-radius: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: var(--font-rounded);
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  .depts-body__ryoiki_note {
    padding: 0.8rem 0.7rem;
    font-size: 0.82rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__ryoiki_note {
    padding: 0.85rem 0.9rem;
    font-size: 0.85rem;
    /* text-align: left; */
  }
}

.depts-body__cul {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__cul {
    margin-top: 2.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__cul {
    margin-top: 2.2rem;
  }
}
.depts-body__cul_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;

  margin: 0 auto 1.6rem;
  color: var(--color-midashi);
  font-family: var(--font-rounded);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__cul_ttl {
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__cul_ttl {
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
}
.depts-body__cul_ttl::before,
.depts-body__cul_ttl::after {
  content: "";
  display: block;
  flex: 1;
  min-width: 0;
  height: 1px;
  background: var(--color-midashi);
}
.depts-body__cul_fig {
  max-width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .depts-body__cul_fig {
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__cul_fig {
    max-width: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.depts-body__cul_note,
.sp-scroll-note {
  display: none;
  margin: -0.4rem 0 0.7rem;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .depts-body__cul_note {
    display: block;
  }
}
.depts-body__cul_fig img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .depts-body__cul_fig img {
    width: 620px;
    max-width: none;
  }
}

.depts-body__license {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  min-width: 0;
  margin-top: 3.2rem;
  margin-bottom: 1.8rem;
  padding: 2.5rem 8.5rem 2.5rem 2.2rem;
  overflow: visible;
  background: var(--color-dept-back);
  border-radius: 0.85rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__license {
    gap: 1.2rem;
    margin-top: 2.6rem;
    margin-bottom: 1.4rem;
    padding: 1.4rem 6.5rem 1.4rem 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__license {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 2.8rem;
    margin-bottom: 1.6rem;
    padding: 1.6rem 4.8rem 2.4rem 1.2rem;
  }
}
.depts-body__license_mark {
  position: absolute;
  top: 0;
  right: 1.4rem;
  z-index: 3;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-lato);
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.2em;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media only screen and (max-width: 1024px) {
  .depts-body__license_mark {
    right: 1rem;
    font-size: 2.2rem;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.depts-body__license_ttl {
  flex-shrink: 0;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__license_ttl {
    font-size: 1.1rem;
  }
}

.depts-body__license_body {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-left: 1.8rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__license_body {
    padding-left: 1.3rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__license_body {
    width: 100%;
    padding-top: 0.7rem;
    padding-left: 0;
  }
}
.depts-body__license_body::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  bottom: 0.15rem;
  left: 0;
  width: 2px;
  background: var(--color-white);
}
@media only screen and (max-width: 600px) {
  .depts-body__license_body::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 4.5rem;
    height: 2px;
  }
}
.depts-body__license_name {
  margin: 0.5rem 0 0.25rem;
  overflow-wrap: break-word;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__license_name {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__license_name {
    font-size: 0.95rem;
  }
}
.depts-body__license_txt {
  margin: 0 0 0.5rem;
  overflow-wrap: break-word;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}


.depts-body__license_ill {
  position: absolute;
  right: 1.2rem;
  bottom: -1.5rem;
  z-index: 2;
  width: 4rem;
  max-width: none;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .depts-body__license_ill {
    right: 0.8rem;
    bottom: -1.5rem;
    width: 4.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__license_ill {
    right: 0.5rem;
    bottom: -1.4rem;
    width: 3.6rem;
  }
}
.depts-body__license_name + .depts-body__license_txt + .depts-body__license_name {
  margin-top: 1rem;
}
#depts02 .depts-head__ill {
  width: 8.4rem;
}
@media only screen and (max-width: 1024px) {
  #depts02 .depts-head__ill {
    width: 6.4rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts02 .depts-head__ill {
    width: 4.6rem;
  }
}
#depts02 .depts-body__license {
  align-items: flex-start;
  padding: 2.2rem 2.4rem 2.2rem 2.2rem;
}
@media only screen and (max-width: 1024px) {
  #depts02 .depts-body__license {
    padding: 1.6rem 1.6rem 1.6rem 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts02 .depts-body__license {
    padding: 1.6rem 4.8rem 2.4rem 1.2rem;
  }
}
#depts02 .depts-body__license_ttl {
  padding-bottom: 5.8rem;
}
@media only screen and (max-width: 1024px) {
  #depts02 .depts-body__license_ttl {
    padding-bottom: 4.6rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts02 .depts-body__license_ttl {
    padding-bottom: 0;
  }
}
#depts02 .depts-body__license_ill {
  right: auto;
  left: 1.8rem;
  bottom: -1.3rem;
  width: 5.8rem;
}
@media only screen and (max-width: 1024px) {
  #depts02 .depts-body__license_ill {
    left: 1.2rem;
    bottom: -1.2rem;
    width: 4.8rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts02 .depts-body__license_ill {
    left: auto;
    right: 0.5rem;
    bottom: -1.4rem;
    width: 4rem;
  }
}
#depts02 .depts-body__keyword_ill {
  width: 3.5rem;
}
@media only screen and (max-width: 1024px) {
  #depts02 .depts-body__keyword_ill {
    width: 3rem;
  }
}
#depts03 .depts-head__ill {
  width: 8.4rem;
}
@media only screen and (max-width: 1024px) {
  #depts03 .depts-head__ill {
    width: 6.4rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts03 .depts-head__ill {
    width: 4.6rem;
  }
}
#depts03 .depts-body__keyword_ill {
  top: -2.2rem;
  width: 7.2rem;
}
@media only screen and (max-width: 1024px) {
  #depts03 .depts-body__keyword_ill {
    top: -1.8rem;
    width: 6rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts03 .depts-body__keyword_ill {
    top: -1.6rem;
    width: 5.4rem;
  }
}
#depts03 .depts-body__pickup_ill {
  width: 7.2rem;
}
@media only screen and (max-width: 1024px) {
  #depts03 .depts-body__pickup_ill {
    width: 6rem;
  }
}
@media only screen and (max-width: 600px) {
  #depts03 .depts-body__pickup_ill {
    width: 5.2rem;
  }
}

.depts-body__pickup {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup {
    margin-top: 2.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__pickup {
    margin-top: 2.4rem;
  }
}
.depts-body__pickup_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 0 1.8rem;
  color: var(--color-dept-key);
  font-family: var(--font-lato);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_ttl {
    gap: 0.9rem;
    margin-bottom: 1.4rem;
    font-size: 1.15rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__pickup_ttl {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}
.depts-body__pickup_ttl::before,
.depts-body__pickup_ttl::after {
  content: "";
  display: block;
  flex: 1;
  min-width: 0;
  height: 2px;
  background: var(--color-dept-key);
}
.depts-body__pickup_inner {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem 4%;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_inner {
    gap: 1.6rem 3%;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__pickup_inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
}
.depts-body__pickup_fig {
  width: 48%;
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_fig {
    width: 46%;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__pickup_fig {
    width: 100%;
    border-radius: 0.9rem;
  }
}
.depts-body__pickup_fig img {
  display: block;
  width: 100%;
  height: auto;
}
.depts-body__pickup_content {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}
.depts-body__pickup_content::after {
  content: "";
  display: block;
  clear: both;
}
.depts-body__pickup_ill {
  float: right;
  width: 5.8rem;
  max-width: none;
  height: auto;
  margin: -0.3rem 0 0.5rem 1.2rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_ill {
    width: 4.8rem;
    margin: -0.2rem 0 0.4rem 0.9rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__pickup_ill {
    width: 4.4rem;
    margin: -0.4rem 0.1rem 0.4rem 0.8rem;
  }
}
.depts-body__pickup_head {
  margin: 0 0 0.9rem;
  color: var(--color-midashi);
  font-family: var(--font-rounded);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_head {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
  }
}

.depts-body__pickup_sub {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_sub {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
  }
}

.depts-body__pickup_txt {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .depts-body__pickup_txt {
    font-size: 1rem;
  }
}


.depts-body__shinro {
  margin-top: 2.4rem;
  overflow: hidden;
  border-radius: 0.7rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__shinro {
    margin-top: 2rem;
    border-radius: 0.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__shinro {
    margin-top: 1.8rem;
    border-radius: 0.55rem;
  }
}
.depts-body__shinro_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 1.3rem 3.2rem;
  border: none;
  background: var(--color-dept-key);
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: background var(--duration);
  transition: background var(--duration);
}
#depts01 .depts-body__shinro_btn:hover {
  background: color-mix(in srgb, var(--color-dept-key) 82%, #ea1111);
}
#depts02 .depts-body__shinro_btn:hover {
  background: color-mix(in srgb, var(--color-dept-key) 82%, #025b17);
}
#depts03 .depts-body__shinro_btn:hover {
  background: color-mix(in srgb, var(--color-dept-key) 82%, #0350a2);
}
@media only screen and (max-width: 1024px) {
  .depts-body__shinro_btn {
    padding: 1.1rem 2.8rem;
    font-size: 1.2rem;
  }
}

.depts-body__shinro_ttl {
  display: block;
}
.depts-body__shinro_yaji {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 1.35rem;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
}
@media only screen and (max-width: 1024px) {
  .depts-body__shinro_yaji {
    right: 1rem;
    width: 1.15rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__shinro_yaji {
    right: 0.8rem;
    width: 1rem;
  }
}
.depts-body__shinro.is-open .depts-body__shinro_yaji {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.depts-body__shinro_btn:hover .depts-body__shinro_yaji {
  -webkit-animation: shinro-yaji-bounce 0.55s ease-in-out infinite;
  animation: shinro-yaji-bounce 0.55s ease-in-out infinite;
}
.depts-body__shinro.is-open .depts-body__shinro_btn:hover .depts-body__shinro_yaji {
  -webkit-animation-name: shinro-yaji-bounce-open;
  animation-name: shinro-yaji-bounce-open;
}
@-webkit-keyframes shinro-yaji-bounce {
  0%, 100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(calc(-50% + 5px));
    transform: translateY(calc(-50% + 5px));
  }
}
@keyframes shinro-yaji-bounce {
  0%, 100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(calc(-50% + 5px));
    transform: translateY(calc(-50% + 5px));
  }
}
@-webkit-keyframes shinro-yaji-bounce-open {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  50% {
    -webkit-transform: translateY(calc(-50% + 5px)) rotate(180deg);
    transform: translateY(calc(-50% + 5px)) rotate(180deg);
  }
}
@keyframes shinro-yaji-bounce-open {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  50% {
    -webkit-transform: translateY(calc(-50% + 5px)) rotate(180deg);
    transform: translateY(calc(-50% + 5px)) rotate(180deg);
  }
}
.depts-body__shinro_panel {
  display: none;
  background: var(--color-white);
}
.depts-body__shinro_list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 0.7rem 0.85rem;
  padding: 2rem 2rem 1.8rem;
}
@media only screen and (max-width: 1024px) {
  .depts-body__shinro_list {
    gap: 0.55rem 0.6rem;
    padding: 1.5rem 1.2rem 1.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__shinro_list {
    gap: 0.45rem 0.45rem;
    padding: 1.2rem 0.8rem 1.1rem;
  }
}
.depts-body__shinro_list li {
  padding: 0.4rem 1.35rem;
  border: 1px solid var(--color-dept-key);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .depts-body__shinro_list li {
    padding: 0.32rem 1rem;
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 600px) {
  .depts-body__shinro_list li {
    padding: 0.28rem 0.75rem;
    font-size: 0.75rem;
  }
}
.depts-body__shinro_photos {
  display: flex;
}
.depts-body__shinro_photos img {
  width: 33.333%;
  max-width: none;
  height: auto;
  aspect-ratio: 400 / 224;
  object-fit: cover;
}

/************************************

#faq

************************************/
#faq {
  scroll-margin-top: 2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .faq-list {
    gap: 0.9rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-list {
    gap: 0.7rem;
  }
}
.faq-item{
  margin: 0 0 1.5rem;
}
.faq-item__q {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  margin: 0;
  padding: 1.2rem 3.2rem 1.2rem 1.4rem;
  border: none;
  border-radius: 2rem;
  background: var(--color-midashi);
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 1024px) {
  .faq-item__q {
    gap: 0.7rem;
    padding: 0.75rem 2.8rem 0.75rem 1.1rem;
    border-radius: 1.6rem;
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-item__q {
    gap: 0.5rem;
    padding: 0.7rem 2.4rem 0.7rem 0.9rem;
    border-radius: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.faq-item__qmark {
  flex-shrink: 0;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 1024px) {
  .faq-item__qmark {
    font-size: 1.45rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-item__qmark {
    font-size: 1.25rem;
  }
}
.faq-item__qtxt {
  display: block;
  min-width: 0;
}
.faq-item__yaji {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 1.2rem;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform var(--duration);
  transition: transform var(--duration);
}
@media only screen and (max-width: 1024px) {
  .faq-item__yaji {
    right: 1rem;
    width: 1.05rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-item__yaji {
    right: 0.8rem;
    width: 0.9rem;
  }
}
.faq-item.is-open .faq-item__yaji {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item__a {
  display: none;
}
.faq-item__a_inner {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem 1.6rem 0.4rem 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .faq-item__a_inner {
    gap: 0.7rem;
    padding: 1.1rem 1.2rem 0.3rem 1.1rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-item__a_inner {
    gap: 0.5rem;
    padding: 0.95rem 0.6rem 0.2rem 0.9rem;
  }
}
.faq-item__amark {
  flex-shrink: 0;
  color: var(--color-midashi);
  font-family: var(--font-rounded);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(0.15rem);
}
@media only screen and (max-width: 1024px) {
  .faq-item__amark {
    font-size: 1.45rem;
  }
}
@media only screen and (max-width: 600px) {
  .faq-item__amark {
    font-size: 1.25rem;
  }
}
.faq-item__abody {
  min-width: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .faq-item__abody {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.faq-item__abody p + p {
  margin-top: 1em;
}

/************************************

#nyushi

************************************/
#nyushi {
  --nyushi-card1: var(--color-midashi);
  --nyushi-card2: #02bc8a;
  --nyushi-card3: #03a1b2;
  --nyushi-em: #e5ce30;
  scroll-margin-top: 2rem;
}
.nyushi-lead {
  margin: -1.2rem auto 2.4rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .nyushi-lead {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-lead {
    margin-bottom: 1.4rem;
  }
}
.nyushi-lead__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .nyushi-lead__catch {
    font-size: 0.95rem;
    gap: 0.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-lead__catch {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }
}
.nyushi-lead__catch::before,
.nyushi-lead__catch::after {
  content: "";
  display: block;
  width: 25px;
  height: 30px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .nyushi-lead__catch::before,
  .nyushi-lead__catch::after {
    width: 18px;
    height: 22px;
  }
}
.nyushi-lead__catch::before {
  background-image: url("../images/feature_com_ttl_l.svg");
}
.nyushi-lead__catch::after {
  background-image: url("../images/feature_com_ttl_r.svg");
}
.nyushi-lead__ttl {
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .nyushi-lead__ttl {
    font-size: 1.45rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-lead__ttl {
    font-size: 1.3rem;
  }
}
.nyushi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
@media only screen and (max-width: 1024px) {
  .nyushi-grid {
    gap: 0.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
.nyushi-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}
@media only screen and (max-width: 1024px) {
  .nyushi-side {
    gap: 0.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-side {
    gap: 0.7rem;
  }
}
.nyushi-card {
  position: relative;
  min-width: 0;
  padding: 1.7rem 2rem 1.6rem;
  border-radius: 1.8rem;
  color: var(--color-white);
  
}
@media only screen and (max-width: 1024px) {
  .nyushi-card {
    padding: 1.3rem 1.3rem 1.2rem;
    border-radius: 1.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card {
    padding: 1.2rem 1.1rem 1.1rem;
    border-radius: 1.2rem;
  }
}
.nyushi-card--ippan {
  display: flex;
  flex-direction: column;
  background: var(--nyushi-card1);
  overflow: visible;
  
}
@media only screen and (max-width: 1024px) {
  .nyushi-card--ippan {
    
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card--ippan {
    /* padding-bottom: 6rem; */
    padding-right: 9rem;
  }
}
.nyushi-card--suisen {
  background: var(--nyushi-card2);
  flex: 1;
  padding-right: 5.5rem;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card--suisen {
    padding-right: 4.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card--suisen {
    padding-right: 4.8rem;
  }
}
.nyushi-card--sogo {
  background: var(--nyushi-card3);
  flex: 1;
  padding-right: 5.5rem;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card--sogo {
    padding-right: 4.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card--sogo {
    padding-right: 4.8rem;
  }
}
.nyushi-card__ttl {
  margin: 0 0 0.7rem;
  font-family: var(--font-rounded);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card__ttl {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card__ttl {
    font-size: 1.15rem;
  }
}
.nyushi-card__tag {
  display: inline-block;
  margin-left: 0.55em;
  padding: 0.05em 0.45em 0.1em;
  border: 1px solid var(--color-white);
  border-radius: 0.2rem;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  .nyushi-card__tag {
    margin-left: 0.4em;
    font-size: 0.85em;
  }
}
.nyushi-card__txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card__txt {
    font-size: .95rem;
    line-height: 1.75;
  }
}

.nyushi-card__em {
  display: inline;
  border-bottom: 2px solid var(--nyushi-em);
  padding-bottom: 0.05em;
}
.nyushi-card__ill--1 {
  position: absolute;
  right: 0.4rem;
  bottom: -0.2rem;
  width: 11.5rem;
  max-width: 58%;
  height: auto;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card__ill--1 {
    width: 8.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card__ill--1 {
    width: 8rem;
    right: 0.2rem;
  }
}
.nyushi-card__ill--2 {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  z-index: 2;
  width: 4.2rem;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .nyushi-card__ill--2 {
    right: 0.3rem;
    width: 3.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi-card__ill--2 {
    width: 3.2rem;
    right: 0.4rem;
  }
}

.nyushi_guide {
  margin-top: 3.6rem;
}
@media only screen and (max-width: 1024px) {
  .nyushi_guide {
    margin-top: 2.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi_guide {
    margin-top: 2.2rem;
  }
}
.nyushi_guide__ttl {
  margin: 0 0 1.4rem;
  color: var(--color-accent);
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .nyushi_guide__ttl {
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 860px) {
  .nyushi_guide .sp-scroll-note {
    display: block;
  }
}

.nyushi_guide__tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nyushi_guide__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid #c8c8c8;
}
.nyushi_guide__table th,
.nyushi_guide__table td {
  padding: 0.85rem 0.7rem;
  border: 1px solid #c8c8c8;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .nyushi_guide__table th,
  .nyushi_guide__table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.95rem;
  }
}
.nyushi_guide__table thead th {
  background: var(--color-accent);
  color: var(--color-white);

  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nyushi_guide__table tbody th {
  width: 22%;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  background: var(--color-white);
}

.nyushi_guide__table tbody td {
  text-align: center;
}
.nyushi_guide__table tbody td:nth-child(2),
.nyushi_guide__table tbody th + td {
  /* width: 42%; */
}
.nyushi_guide__table tr.is-dot > th,
.nyushi_guide__table tr.is-dot > td:not([rowspan]) {
  border-bottom: 1px dotted #c8c8c8;
}
.nyushi_guide__table tr.is-dot + tr > th,
.nyushi_guide__table tr.is-dot + tr > td:not([rowspan]) {
  border-top: 1px dotted #c8c8c8;
}
.nyushi_guide__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  margin: 2.2rem auto 0;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: opacity var(--duration-slow), -webkit-transform var(--duration-slow), background var(--duration), color var(--duration);
  transition: opacity var(--duration-slow), transform var(--duration-slow), background var(--duration), color var(--duration);
}
.nyushi_guide__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
@media only screen and (max-width: 1024px) {
  .nyushi_guide__btn {
    margin-top: 1.8rem;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .nyushi_guide__btn {
    margin-top: 1.4rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }
}
.nyushi_guide__btn img {
  width: 1.2rem;
  height: auto;
  flex-shrink: 0;
  -webkit-transition: -webkit-filter var(--duration);
  transition: filter var(--duration);
}
.nyushi_guide__btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/************************************

#fee

************************************/
#fee {
  scroll-margin-top: 2rem;
}
@media only screen and (max-width: 710px) {
  #fee .sp-scroll-note {
    display: block;
  }
}
.fee-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fee-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid #c8c8c8;
}
.fee-table th,
.fee-table td {
  padding: 0.9rem 0.7rem;
  border: 1px solid #c8c8c8;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .fee-table th,
  .fee-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
  }
}
.fee-table thead th {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.fee-table tbody th {
  font-weight: 700;
  background: var(--color-white);
}
.fee-table tbody td:last-child {
  background: #d8e9e1;
  font-weight: 700;
}
.fee-notes {
  margin: 0.7rem 0 0;
}
.fee-notes li {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 600px) {
  .fee-notes li {
    font-size: 0.85rem;
  }
}
.fee-support {
  margin-top: 2.8rem;
  padding: 2.4rem 8% 2.6rem;
  background: #d8e9e1;
  border-radius: 2rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .fee-support {
    margin-top: 2.2rem;
    padding: 1.8rem 1.4rem 2rem;
    border-radius: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support {
    margin-top: 1.8rem;
    padding: 1.5rem 1rem 1.7rem;
    border-radius: 1.2rem;
  }
}
.fee-support__ttl {
  margin: 0 0 1.1rem;
  color: var(--color-accent);
  font-family: var(--font-rounded);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .fee-support__ttl {
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__ttl {
    letter-spacing: 0.04em;
  }
}
.fee-support__banner {
  position: relative;
  /* display: inline-block; */
  margin: 0 auto 1.8rem;
  padding: .8rem 2.2rem;
  background: var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1024px) {
  .fee-support__banner {
    margin-bottom: 1.4rem;
    padding: 0.5rem 1.6rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__banner {
    margin-bottom: 1.2rem;
    padding: 0.45rem 1.1rem 0.5rem;
    letter-spacing: 0.04em;
  }
}
.fee-support__banner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-top: 0.65rem solid var(--color-accent);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fee-support__txt {
  /* max-width: 46em; */
  margin: 0 auto 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .fee-support__txt {
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__txt {
    line-height: 1.8;
  }
}
.fee-support__em {
  color: var(--color-accent);
  font-weight: 700;
}
.fee-support__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 1024px) {
  .fee-support__points {
    gap: 0.7rem;
    margin-bottom: 1.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__points {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }
}
.fee-support__points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.2rem;
  padding: 1.1rem 1rem;
  background: var(--color-white);
  border-radius: 1rem;
  /* font-family: var(--font-rounded); */
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .fee-support__points li {
    min-height: 6.4rem;
    padding: 0.9rem 0.7rem;
    font-size: 1rem;
    border-radius: 0.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__points li {
    min-height: 0;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
}
.fee-support__check {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.fee-support__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: opacity var(--duration-slow), -webkit-transform var(--duration-slow), background var(--duration), color var(--duration);
  transition: opacity var(--duration-slow), transform var(--duration-slow), background var(--duration), color var(--duration);
}
.fee-support__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
@media only screen and (max-width: 1024px) {
  .fee-support__btn {
    padding: 0.75rem 1.6rem;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .fee-support__btn {
    padding: 0.7rem 1.2rem;
    letter-spacing: 0.04em;
  }
}
.fee-support__btn img {
  width: 1.2rem;
  height: auto;
  flex-shrink: 0;
  -webkit-transition: -webkit-filter var(--duration);
  transition: filter var(--duration);
}
.fee-support__btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/************************************

#numbers

************************************/
#numbers {
  scroll-margin-top: 2rem;
  padding-bottom: 0;
}
.numbers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 1.4rem;
}
@media only screen and (max-width: 1024px) {
  .numbers-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .numbers-list {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    max-width: 22rem;
    margin: 0 auto;
  }
}
.numbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2rem 1.5rem;
  background: var(--color-white);
  border-radius: 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .numbers-card {
    padding: 0 1rem 1.3rem;
    border-radius: 1rem;
  }
}
.numbers-card:nth-child(2),
.numbers-card:nth-child(5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.numbers-card:nth-child(3),
.numbers-card:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
@media only screen and (max-width: 1024px) {
  .numbers-card:nth-child(odd) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .numbers-card:nth-child(even) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
}
@media only screen and (max-width: 600px) {
  .numbers-card:nth-child(n) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
.numbers-card__ill {
  display: block;
  width: 100px;
  height: auto;
  margin: -40px auto 0.7rem;
}
@media only screen and (max-width: 1024px) {
  .numbers-card__ill {
    width: 70px;
    margin-top: -30px;
  }
}

.numbers-card__ttl {
  margin: 0 0 0.7rem;
  color: var(--color-text);
  font-family: var(--font-rounded);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.numbers-card__label {
  display: inline-block;
  margin: 0.15rem 0 0.25rem;
  padding: 0.15rem 0.9rem;
  border: 1px solid var(--color-midashi);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1024px) {
  .numbers-card__label {
    font-size: 0.9rem;
    padding: 0.12rem 0.7rem;
  }
}
.numbers-card__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  margin: 0.1rem 0 0.35rem;
  color: var(--color-midashi);
  line-height: 1;
}
.numbers-card__num strong {
  font-family: var(--font-garamond);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0em;
}
@media only screen and (max-width: 1024px) {
  .numbers-card__num strong {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 600px) {
  .numbers-card__num strong {
    font-size: 4rem;
  }
}
.numbers-card__num span {
 
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.numbers-card__pre {
 
  font-size: 1rem;
  font-weight: 700;
  margin-right: 0.15em;
}
.numbers-card__lead {
  margin: 0.15rem 0 0.35rem;
  color: var(--color-midashi);

  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.numbers-card__sub {
  margin-top: auto;
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.numbers-card__note {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 600px) {
  .numbers-card__note {
    font-size: 0.85rem;
  }
}

/************************************

.sec_white & sec_beige（各セクション背景）

************************************/
.sec_white{
  background: var(--color-white);
  position: relative;
  padding:70px 0 80px;
  &::before{
    content: "";
    display: block;
    width: 100%;
    height: 10vw;
    background: url("../images/section_nami_ue.webp") no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: -9vw;
    left: 0;
  }
}
.sec_beige{
  background: var(--color-beige);
  position: relative;
  padding:220px 0 ;
  &::before{
    content: "";
    display: block;
    width: 100%;
    height: 10vw;
    background: url("../images/section_nami_shita.webp") no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 600px) {
  .sec_beige{
    padding:100px 0 ;
  }
}