@charset "utf-8";

/* CSS Document */


:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en:  'Montserrat','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en02:  'Montserrat','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #356eb2;
  --color-brand02: #3275bb;
  --color-primary01: #ff5400;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #e9eaed;
  --color-sub02: #ccc;

  --top-padding: 30px;

  --padding-main: min(10vw,7em);
  --padding-small: min(8vw,4em);
  --padding-large: min(14vw,12em);

}

/***********
base
************/

html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-main);
}
html {
  font-size: clamp(15px, calc(10px + 0.5vw), 18px);
}
body {
  background-color: white;
}

body.is-menu-open {
  overflow: hidden;
}
h1,h2,h3,h4,h5,h6,strong,th,em{
  font-weight: 700;
  font-style: normal;
}


@media screen and (max-width:834px) {
  body{
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(14px, calc(10.5px + 1.2vw), 15px);
  }
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(0, 144, 202, 0.5); /* Safari */
}
::-moz-selection {
  background: rgba(0, 144, 202, 0.5); /* Firefox */
}

@media screen and (min-width:835px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/***********************
layout
************************/

/***********
common
************/

.l-relative {  position: relative !important; }

.l-textAlign-center {  text-align: center !important; }
.l-textAlign-right  {  text-align: right !important; }
.l-textAlign-left   {  text-align: left !important; }

.l-bottom-xxsmall {  margin-bottom: 0.3rem  !important; }
.l-bottom-xsmall  {  margin-bottom: 0.6rem !important; }
.l-bottom-small   {  margin-bottom: 0.9rem !important; }
.l-bottom         {  margin-bottom: 1.2rem !important; }
.l-bottom-large   {  margin-bottom: 1.8rem !important; }
.l-bottom-xlarge  {  margin-bottom: 2.4rem !important; }
.l-bottom-xxlarge {  margin-bottom: 3.3rem !important; }

.l-top-xxsmall {  margin-top: 0.3rem !important; }
.l-top-xsmall  {  margin-top: 0.6rem !important; }
.l-top-small   {  margin-top: 0.9rem !important; }
.l-top         {  margin-top: 1.2rem !important; }
.l-top-large   {  margin-top: 1.8rem !important; }
.l-top-xlarge  {  margin-top: 2.4rem !important; }
.l-top-xxlarge {  margin-top: 3.3rem !important; }

/***********
layout
************/

.l-wrapper{
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: 0.2s linear;
  background-color: var(--color-base);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

body.is-menu-open .l-wrapper {
  translate: -310px 0;
}

.l-contents{
  position: relative;
  z-index: 2;
}

/***********
base
************/

.l-base {
  width: auto;
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: min(3vw,30px);
}

.l-base-wide {
  width: auto;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: min(3vw,30px);
}

.l-base-xwide {
  width: auto;
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: min(3vw,30px);
}

.l-base-xxwide {
  width: auto;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: min(3vw,30px);
}

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: min(3vw,12px);
}

.l-block {
  padding-block: var(--padding-main);
}
.l-block-small {
  padding-block: var(--padding-small);
}
.l-block-large {
  padding-block: var(--padding-large);
}

.l-block-top {
  padding-top: var(--padding-main);
}
.l-block-top-small {
  padding-top: var(--padding-small);
}
.l-block-top-large {
  padding-top: var(--padding-large);
}

.l-block-bottom {
  padding-bottom: var(--padding-main);
}
.l-block-bottom-small {
  padding-bottom: var(--padding-small);
}
.l-block-bottom-large {
  padding-bottom: var(--padding-large);
}


@media screen and (min-width:1921px) {

  .l-base {
    max-width: calc(1060px + 4vw);
  }
  .l-base-wide {
    max-width: calc(1260px + 4vw);
  }
  .l-base-xwide {
    max-width: calc(1460px + 4vw);
  }
  .l-base-xxwide {
    max-width: calc(1660px + 4vw);
  }
  .l-base-small {
    max-width: calc(824px + 4vw);
  }

}

@media screen and (max-width:834px) {

  [class^="l-base"].-noOffset {
    padding-inline: 0;
  }

  [class^="l-base"] [class^="l-base"] {
    padding-inline: 0;
  }

}

/***********
imgHover
************/

body.is-pc a:hover .l-imgHover img {
  box-shadow: 0 0 0 1px white ,  0 0 0 3px var(--color-main);
}
body.is-pc a.l-imgHover:hover img {
  box-shadow: 0 0 0 1px white ,  0 0 0 3px var(--color-main);
}

/***********
font
************/

.l-fontColor-accent01 {
  color: var(--color-accent01);
}
.l-fontColor-brand01 {
  color: var(--color-brand01);
}
.l-fontColor-primary01 {
  color: var(--color-primary01);
}


.l-fontFamily-gothic-en {
  font-family: var(--font-family-gothic-en);
}
.l-fontFamily-gothic-en02 {
  font-family: var(--font-family-gothic-en02) !important;
  font-weight: 400 !important;
}

/***********
text
************/

.l-textMain{
  line-height: 1.8;
}
.l-textLead{
  line-height: 1.8;
  text-align: center;
}

.l-list-circle {}
.l-list-circle li {
  padding-left: 1em;
  position: relative;
}
.l-list-circle li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.8em;
  background: var(--color-main);
  border-radius: 50%;
}

.l-list-dot {}
.l-list-dot li {
  margin-left: 1em;
}
.l-list-dot li::before {
  content: "・";
  margin-left: -1em;
}

.l-list-asterisk {}

.l-list-asterisk li {
  margin-left: 1em;
}
.l-list-asterisk li::before {
  content: "※";
  margin-left: -1em;
}

.l-list-number {
  padding-left: 2em;
}
.l-list-number li {
  list-style: decimal;
}

@media screen and (max-width:834px) {

  .l-textMain,
  .l-textLead{
    line-height: 1.8;
  }

}

@media screen and (max-width:520px) {

  .l-textLead{
    text-align: left;
  }

}


/***********
linkWrap
************/

.l-linkWrap{
  text-align: center;
}
.l-linkWrap.-left{
  text-align: left;
}
.l-linkWrap.-right{
  text-align: right;
}


.l-linkSeparate {
  display: flex;
  justify-content: center;
  padding-top: 2em;
}
.l-linkSeparate-item {
  padding: 0 1%;
  min-width: 30%;
}

@media screen and (max-width:834px) {

  .l-linkWrap.-left ,
  .l-linkWrap.-right{
    text-align: center;
  }

  .l-linkSeparate {
    display: block;
    text-align: center;
  }
  .l-linkSeparate-item {
    padding: 0;
    min-width: initial;
  }
  .l-linkSeparate-item + .l-linkSeparate-item {
    padding-top: 10px;
  }
  .l-linkSeparate-item .l-btn {
    width: 100%;
    max-width: 480px;
  }

}

/***********
linkCard
************/

.l-linkCard {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -2%;
}
.l-linkCard li {
  margin-left: 2%;
  margin-bottom: 2%;
}
.l-linkCard.-half li {
  width: 48%;
}
.l-linkCard.-trisect li {
  width: 31.3%;
}

.l-linkCard .l-btn {
  width: 100%;
  min-width: initial;
  max-width: initial;
}

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

  .l-linkCard.-trisect li {
    width: 48%;
  }

}
@media screen and (max-width:640px) {

  .l-linkCard {
    display: block;
    margin-left: 0;
    margin-bottom: -5px;
  }
  .l-linkCard li {
    margin-left: 0;
    margin-bottom: 5px;
  }
  .l-linkCard.-half li ,
  .l-linkCard.-trisect li {
    width: 100%;
  }

  .l-linkCard .l-btn {
    width: 100%;
    min-width: initial;
    max-width: initial;
  }

}

/***********
btn
************/

.l-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 20em;
  min-height: 4em;
  padding: 1em 3em ;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--font-family-gothic);
  color: var(--color-base);
  background-color: var(--color-brand01);
  border-radius: 5px;
  position: relative;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
}

.l-btn::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1 / 1;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
}
.l-btn[target="_blank"]::after {
  width: 22px;
  aspect-ratio: 1 / 1;
  background: url(../../img/icon/external_wt.svg) no-repeat center center / 100% auto;
  right: 0.8em !important;
}

body.is-pc .l-btn:hover {
  text-decoration-color: inherit;
  background-color: var(--color-primary01);
}
body.is-pc .l-btn:hover::after {
  right: 0.8em;
}


.l-btn.-primary01 {
  background-color: var(--color-primary01);
}
body.is-pc .l-btn.-primary01:hover {
  background-color: var(--color-brand01);
}


@media screen and (max-width:834px) {

  .l-btn {
    min-width: 16em;
    font-size: 1rem;
  }

  .l-btn::after {
    right: 0.5em;
  }

}

/***********
logo
************/

.l-logo {
  position: absolute;
  left: 0;
  top: var(--top-padding);
  z-index: 990;
  padding-left: 2em;
}

.l-logo-text {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0;
}
.l-logo-text a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.l-logo-text br {
  display: none;
}


@media screen and (max-width:834px) {

  .l-logo {
    top: 15px;
    padding-left: 15px;
  }

  .l-logo-text {
    font-size: 1.3rem;
  }
  .l-logo-text a {
  }

}


@media screen and (max-width:520px) {

  .l-logo-text br {
    display: inline;
  }

}

/***********
navi
************/

.l-navi {
  position: absolute;
  right: 2em;
  top: var(--top-padding);
  z-index: 999;
  height: 3.2em;
  padding: 0 2em;
  background-color: var(--color-base);
  border-radius: 10em;
}

.l-navi-list {
  display: flex;
  height: 100%;
}
.l-navi-list button {
  display: none !important;
}

.l-navi-list > li {
  position: relative;
  height: 100%;
}
.l-navi-list > li:not(:last-child) {
  padding: 0 0.5em;
}
.l-navi-list > li > a {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding: 0 1em 0 1em;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.l-navi-list > li > a::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 45%;
  background-color: var(--color-brand01);
  opacity: 0;
}
body.is-pc .l-navi-list > li:hover > a::before {
  opacity: 1;
}

.l-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  margin-left: -1em;
  min-width: 14em;
  color: var(--color-main);
  background: var(--color-base);
  padding: 0.5em 2em 1.2em 1em;
  visibility: hidden;
  opacity: 0;
}
.l-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
}

.l-navi-list ul li {
  padding: 0.2em 0 0.2em 1.4em;
  position: relative;
}
.l-navi-list ul li::before{
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_bl.png) no-repeat center center / 0.6em auto;
  position: absolute;
  left: 0;
  top: 0.6em;
}

.l-navi-list ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: max(90%,12px);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.4em;
}
body.is-pc .l-navi-list ul a:hover {
  text-decoration-color: inherit;
}

body.is-fixed .l-navi:not(:hover) {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@media screen and (max-width:1280px) {

  .l-navi {
    right: 1em;
    padding: 0 1.5em;
  }
  .l-navi-list > li:not(:last-child) {
    padding: 0 0.2em;
  }
  .l-navi-list > li > a {
    padding: 0 0.8em;
  }

}

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

  .l-navi {
    display: none;
  }

}

/***********
footer
************/

.l-footer {
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding-top: min(15vw,6em);
  text-align: center;
  position: relative;
  z-index: 9;
}

.l-footer-info {
  padding-bottom: 3em;
}

.l-footer-logo {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.l-footer-logo-title {
}
.l-footer-logo-title br {
  display: none;
}
.l-footer-logo-title a {
  color: inherit;
  text-decoration: none;
}
.l-footer-logo-text {
  font-size: max(10px,55%);
  font-weight: 600;
  opacity: 0.6;
}
.l-footer-address {
  font-style: normal;
  font-size: 0.9rem;
  padding-top: 1.5em;
  line-height: 1.8;
}

.l-footer-navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-block: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.5em 0;
  text-align: left;
  font-size: 0.9rem;
}
.l-footer-navi button {
  display: none !important;
}
.l-footer-navi > li {
  position: relative;
}
.l-footer-navi > li:not(:last-child) {
  padding: 0 0.5em;
}
.l-footer-navi > li > a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 1em;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.l-footer-navi > li > a::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 40%;
  background-color: var(--color-base);
  opacity: 0;
}
body.is-pc .l-footer-navi > li:hover > a::before {
  opacity: 1;
}

.l-footer-navi ul {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-left: -1em;
  min-width: 14em;
  color: var(--color-main);
  background: var(--color-base);
  padding: 1em 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
}
.l-footer-navi li:hover ul {
  visibility: visible;
  opacity: 1;
}

.l-footer-navi ul li {
  padding: 0.2em 0 0.2em 1.4em;
  position: relative;
}
.l-footer-navi ul li::before{
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_bl.png) no-repeat center center / 0.6em auto;
  position: absolute;
  left: 0;
  top: 0.6em;
}

.l-footer-navi ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: max(90%,12px);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.4em;
}
body.is-pc .l-footer-navi ul a:hover {
  text-decoration-color: inherit;
}


.l-footer-subNavi {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  padding-block: 2.5em;
}
.l-footer-subNavi li {
}
.l-footer-subNavi li:not(:last-child)::after {
  content: "|";
  padding: 0 0.8em;
  opacity: 0.5;
}
.l-footer-subNavi li a {
  display: inline-block;
  padding: 0.2em 0;
  color: var(--color-dark01);
  text-decoration: none;
}
body.is-pc .l-footer-subNavi li a:hover {
  text-decoration: underline;
}
.l-footer-subNavi li a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  opacity: 0.7;
  scale: 0.9;
}


.l-footer-copyright {
  display: block;
  padding-block: min(8vw,4em);
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 0.8rem;
}


@media screen and (max-width:834px) {

  .l-footer {
  }

  .l-footer-info {
    padding-bottom: 3em;
  }



}

@media screen and (max-width:520px) {

  .l-footer-navi {
    display: block;
    padding: 2.5em 0 ;
  }
  .l-footer-navi > li {
  }
  .l-footer-navi > li:not(:last-child) {
    padding: 0 0;
  }
  .l-footer-navi > li > a {
    display: inline-block;
    text-align: left;
    font-size: 1.1rem;
    padding: 0.5em 0 0.5em 1.5em;
  }
  .l-footer-navi > li > a::before {
    display: none;
  }
  .l-footer-navi > li > a::after{
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(../../img/icon/arrow_wt.png) no-repeat center center / 0.7em auto;
    position: absolute;
    left: 0;
    top: 0.75em;
  }
  body.is-pc .l-footer-navi > li:hover > a::before {
    opacity: 1;
  }

  .l-footer-navi ul {
    position: static;
    margin-left: 0;
    min-width: initial;
    background: none;
    padding: 0 2em 1em 0.5em;
    visibility: visible;
    opacity: 1;
    display: flex;
  }

  .l-footer-navi ul li {
    padding: 0.2em 0 0.2em 1.4em;
    position: relative;
  }
  .l-footer-navi ul li::before{
    display: none;
  }

  .l-footer-navi ul a {
    color: var(--color-base);
    padding: 0.2em 0;
    font-size: 0.9rem;
  }

  .l-footer-logo {
    line-height: 1.2;
  }
  .l-footer-logo-title br {
    display: inline;
  }
  .l-footer-logo-text {
    display: block;
    padding-top: 0.5em;
  }

}


/***********
jump
************/

.l-jumpTop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 999;
  transform: translateY(160px);
  transition: 0.2s;
  mix-blend-mode: difference;
}
body.is-fixed .l-jumpTop {
  transform: translateY(0);
}
.l-jumpTop a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 50px;
  height: 50px;
  position: relative;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 100% auto;
  opacity: 0.5;
  rotate: -90deg;
}
body.is-pc .l-jumpTop a:hover{
  opacity: 1;
}


@media screen and (max-width:834px) {

  .l-jumpTop{
    display: none !important;
  }

}

/***********
menu
************/

.l-menu{
  position: fixed;
  width: 100%;
  height: 100lvh;
  z-index: 1;
  left: 0;
  top: 0;
  transition: visibility 0s linear 0.2s;
  background-color: var(--color-main);
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  visibility: hidden;
}

.is-menu-open .l-menu{
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s;
}


.l-menu-close{
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 300px;
  top: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: -1;
}
.is-menu-open .l-menu-close{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 9990;
}



.l-menu-trigger {
  display: none;
  position: fixed;
  right: 12px;
  top: 10px;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  background-color: transparent;
  mix-blend-mode: difference;
}
body.is-menu-open .l-menu-trigger {
  mix-blend-mode: normal;
}

@media screen and (max-width:1024px) {
  .l-menu-trigger {
    display: block;
  }
}

.l-menu-btn {
  display: block;
  position: relative;
  width: 54px;
  height: 50px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 5px;
  -webkit-tap-highlight-color:transparent;
  border: 2px solid var(--color-base);
}
.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 30%;
  top: 48%;
  width: 40%;
  height: 2px;
  margin-top: -4px;
  background-color: var(--color-base);
  transition: 0.3s;
  transition: margin 0.3s ease 0.3s , transform 0.3s ease 0s , opacity 0.3s ease 0.3s;
}
.l-menu-btn span:nth-child(2) {
  margin-top: 4px;
}

.l-menu-btn p {
  font-size: 11px;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s 0.3s;
}
.l-menu-btn.is-active p {
  opacity: 1;
}
.l-menu-btn.is-active p::after {
  content: "CLOSE";
  display: block;
  color: var(--color-base);
  white-space: nowrap;
}

.l-menu-btn.is-active {
  background-color: transparent;
}
.l-menu-btn.is-active span:nth-child(1) {
  margin-top: -6px;
  background-color: var(--color-base);
  transition: margin 0.3s ease , transform 0.3s ease 0.3s, background-color 0.3s ease 0s;
  transform: rotate(-30deg);
}
.l-menu-btn.is-active span:nth-child(2) {
  margin-top: -6px;
  background-color: var(--color-base);
  transition: margin 0.3s ease , transform 0.3s ease 0.3s, background-color 0.3s ease 0s;
  transform: rotate(30deg);
}

/***********
menu
************/

.l-menu-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: end;
  background-color: var(--color-main);
  color: var(--color-base);
}

.l-menu-container {
  width: 310px;
  padding: 70px 20px 120px;
  color: var(--color-base);
  position: relative;
  z-index: 9;
}


/*
navi
*/

.l-menu-navi-list button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  position: absolute;
  right: -15px;
  top: 4px;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 14px auto;
  rotate: 90deg;
}
.l-menu-navi-list button::after {
}
.l-menu-navi-list button.is-active {
  rotate: 270deg;
}

.l-menu-navi-list {
}
.l-menu-navi-list a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

/*
1
*/

.l-menu-navi-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.l-menu-navi-list > li > a {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  white-space: nowrap;
  padding: 1em 0 1em 1.6em;
  position: relative;
}
.l-menu-navi-list > li > a::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  position: absolute;
  left: 0.3em;
  top: 45%;
  background-color: var(--color-base);
}

/*
2
*/

.l-menu-navi-list > li > ul {
  padding-bottom: 2em;
  padding-left: 0.6em;
  display: none;
}
.l-menu-navi-list > li > ul > li {
}
.l-menu-navi-list > li > ul > li > a{
  padding: 0.3em 0 0.3em 1.2em;
  font-feature-settings: "palt";
  font-size: 15px;
  letter-spacing: 0.04em;
  position: relative;
}
.l-menu-navi-list > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 100% auto;
  position: absolute;
  left: 0;
  top: 0.7em;
}


/*
sub
*/

.l-menu-subNavi {
  padding-top: 20px;
}
.l-menu-subNavi li {
  padding-right: 2em;
}
.l-menu-subNavi a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  padding: 0.3em 0 0.3em 0;
  transition: 0.4s;
}
.l-menu-subNavi a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  opacity: 0.7;
  scale: 0.9;
}



/***********
movie
************/

.l-movie {
  max-width: 800px;
  margin: 0 auto;
}
.l-movie a {
  display: block;
  position: relative;
}
.l-movie a img {
  margin: 0 !important;
}
.l-movie a::before {
  content: "Play Movie";
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-base);
  transform: translate(-50%, 50px);
}
.l-movie a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../../img/icon/play.png) no-repeat center center / 80px 80px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: 0s;
}
body.is-pc .l-movie a:hover::after {
  opacity: 0.9;
}

@media screen and (max-width:834px) {

  .l-movie a::before {
    transform: translate(-50%, 35px);
  }
  .l-movie a::after {
    background-size: 60px 60px;
  }
}

/***********
heading
************/

.l-heading{
  padding-bottom: 2em;
}
.l-heading-title{
  font-size: 2rem;
  font-weight: 700;
}
.l-heading-subTitle{
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  position: relative;
  margin-top: 0.2em;
}
.l-heading:not(.-center) .l-heading-subTitle {
  padding-left: 3.8em;
}
.l-heading:not(.-center) .l-heading-subTitle::after {
  content: "";
  display: block;
  width: 3em;
  height: 0.4em;
  background-color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.5em;
}

.l-heading.-center{
  text-align: center;
}

/***********
headline
************/

.l-headline{

}
.l-headline-title{

}
.l-headline-subTitle{

}

/***********
title
************/

.l-largeTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: clamp(3rem,5vw, 4.4rem);
  line-height: 1;
  padding-bottom: 0.8em;
}
.l-leadTitle {
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 0.8em;
}


.l-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  line-height: 1.4;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 5px;
}

.l-subTitle{
  font-size: 1.5rem;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-brand01);
}

.l-minTitle{
  font-size: 1.2rem;
  margin-bottom: 1em;
  border-left: 4px solid var(--color-brand01);
  padding: 0.5em 0em 0.5em 1em;
}


@media screen and (max-width:834px) {

  .l-largeTitle {
    font-size: clamp(2.4rem,6.4vw, 3rem);
  }

  .l-leadTitle {
    font-size: 1.3rem;
  }

  .l-title{
    font-size: 1.25rem;
  }

  .l-subTitle{
    font-size: 1.2rem;
  }

  .l-minTitle{
    font-size: 1.15rem;
  }

}

/***********
l-bgColor
************/

.l-pageSection.l-bgColor00 + .l-pageSection.l-bgColor00.l-block{
  padding-top: 2em;
}

.l-bgColor00{
  background-color: var(--color-base);
}
.l-bgColor01{
  background-color: var(--color-sub01);
}
.l-bgColor02{
  background-color: var(--color-sub02);
}
.l-bgColor03{
  background-color: var(--color-sub03);
}


/***********
spRatio
************/

@media screen and (max-width:640px) {

  .l-spRatio-16_9{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  [class^="l-spRatio"].-ct {
    object-position: center top;
  }
  [class^="l-spRatio"].-cb {
    object-position: center bottom;
  }

}

/***********
split
************/

.l-split {
  display: flex;
}
.l-split-visual {
  width: 50%;
}
.l-split-img {
}
.l-split-inner {
  flex: 1;
}

.l-split:not(.-reverse) {
}
.l-split:not(.-reverse) .l-split-inner {
  padding-left: 7%;
}
.l-split:not(.-reverse) .l-split-img {
  margin-left: -12vw;
}

.l-split.-reverse {
  flex-direction: row-reverse;
}
.l-split.-reverse .l-split-inner {
  padding-right: 5%;
}
.l-split.-reverse .l-split-img {
  margin-right: -12vw;
}

@media screen and (max-width:834px) {

  .l-split {
    display: block;
  }
  .l-split-visual {
    width: auto;
  }
  .l-split-img ,
  .l-split:not(.-reverse) .l-split-img,
  .l-split.-reverse .l-split-img{
    margin: 0;
  }
  .l-split-inner,
  .l-split:not(.-reverse) .l-split-inner,
  .l-split.-reverse .l-split-inner {
    padding: 2em 0 0;
  }


}


/***********
newsList
************/

.l-newsList {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.l-newsList li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.l-newsList li a{
  padding: 1.8em 0 2em 36px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
body.is-pc .l-newsList li a:hover {
  background: url(../../img/icon/arrow_bl.png) no-repeat left center / 1em auto;
}
.l-newsList-img {
  width: clamp(180px,35%, 360px);
  padding-left: 1.5em;
}
.l-newsList-inner {
  flex: 1;
}
.l-newsList-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 1em;
}

.l-newsList-time {
  display: inline-block;
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  background-color: var(--color-main);
  color: var(--color-base);
  line-height: 1;
  padding: 0 0.5em 0.25em;
  margin-right: 1em;
}
.l-newsList-cat {
  display: inline-block;
  font-weight: 600;
}
.l-newsList-cat::before {
  content: "["
}
.l-newsList-cat::after {
  content: "]"
}
.l-newsList-title {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  line-height: 1.7;
}
body.is-pc .l-newsList li a:hover .l-newsList-title {
  text-decoration-color: inherit;
}

@media screen and (max-width:834px) {

  .l-newsList li a{
    padding: 1.5em 0 1.5em 0;
  }
  body.is-pc .l-newsList li a:hover {
    background: none;
  }
  .l-newsList-img {
    padding-left: 0.5em;
  }
  .l-newsList-data {
    padding-bottom: 0.5em;
    font-size: 0.8rem;
  }
  .l-newsList-title {
    line-height: 1.5;
  }

}

@media screen and (max-width:520px) {

  .l-newsList-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

}

/***********
card
************/

.l-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 2.5%;
}
.l-card.-half {
  grid-template-columns: repeat(2, 1fr);
}
.l-card.-quarter {
  grid-template-columns: repeat(4, 1fr);
  font-size: 0.9rem;
}

.l-card li {
}
.l-card li a {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.l-card-img {
}
.l-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.l-card-inner {
  padding-top: 1em;
  text-align: left;
}
.l-card-title {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-brand01);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.l-card-title::after {
  content: "\2009\203a";
  display: inline-block;
  margin-left: 0.2em;
  font-weight: bold;
}
.l-card-subTitle {
  text-align: center;
  font-family: var(--font-family-gothic);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.1;
}
.l-card-text {
  line-height: 1.6;
  padding-top: 1em;
}

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

  .l-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 5em 2%;
  }
  .l-card.-half {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-card.-quarter {
    grid-template-columns: repeat(2, 1fr);
    font-size: 1rem;
  }
}

@media screen and (max-width:640px) {

  .l-card {
    grid-template-columns: repeat(1, 1fr);
  }

}

@media screen and (max-width:520px) {

  .l-card ,
  .l-card.-half,
  .l-card.-quarter {
    grid-template-columns: repeat(1, 1fr);
    gap: 3em 2%;
    font-size: 1rem;
  }

  .l-card-img {
  }
  .l-card-inner {
    padding-top: 0.8em;
    text-align: left;
  }
  .l-card-title {
    font-size: 1.1rem;
  }
  .l-card-subTitle {
    font-size: 1.4rem;
  }
  .l-card-text {
    line-height: 1.8;
    padding-top: 0.8em;
  }

}




/***********
pageList
************/

.l-pageList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 5%;
}

.l-pageList li {
}
.l-pageList li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-pageList-img {
  border-radius: var(--rounded-sub);
}
.l-pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: var(--rounded-sub);
}
.l-pageList-inner {
  padding-top: 1em;
}
.l-pageList-heading {
}
.l-pageList-title {
  font-size: 1.5rem;
  font-family: var(--font-family-gothic);
  line-height: 1.4;
  position: relative;
  padding-left: 1.2em;
  color: var(--color-brand02);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}
body.is-pc .l-pageList li a:hover .l-pageList-title {
  color: var(--color-brand01);
  text-decoration-color: inherit;
}
.l-pageList-title::after {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  background: url(../../img/icon/arrow_bl.png) no-repeat center center / 100% auto;
  position: absolute;
  left: 0;
  top: 0.4em;
}

.l-pageList-text {
  line-height: 1.6;
  padding-top: 0.5em;
}


@media screen and (max-width:640px) {

  .l-pageList {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 5%;
  }
  .l-pageList-heading::after {
    scale: 0.9;
  }

  .l-pageList-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .l-pageList-text {
    line-height: 1.7;
  }
}


/***********
xxxxx
************/


/***********
fade
************/

[data-fade] {
  opacity: 0;
  transition: opacity 0.2s ease , transform 0.5s linear;
  transition-delay: 0.2s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(40px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}

.l-stepFade-up > *{
  opacity: 0;
  transition: opacity 0.2s ease , transform 0.5s linear;
  transition-delay: 0.2s;
  transform: translateY(20px);
}
.l-stepFade-up.is-show > *{
  opacity: 1;
  transform: translateY(0);
}

/***********
slick common
************/

.slick-slide li {
  vertical-align: bottom;
}

/***********
status
************/

.is-hide {
  display: none;
}
.is-readerHide {
  clip: rect(1px, 1px, 1px, 1px);
}

.is-inlineBlock{
  display: inline-block;
}

.is-out{
  position: absolute;
  left: -9999999px;
}


.is-pc-hide {
  display: none;
}

.is-pc-inline ,
.pc-br {
  display: inline;
}

.is-sp-inline ,
.sp-br,
.ssp-br {
  display: none;
}

.is-pc-noevent {
  pointer-events: none;
}

.is-step > *{
  opacity: 0;
  transition: opacity 1.2s ease;
}
.is-step.is-show > *{
  opacity: 1;
}

.is-gothic {
  font-family: var(--font-family-gothic);
}

@media screen and (max-width:834px) {

  .is-pc-hide {
    display: block;
  }

  .is-sp-hide {
    display: none;
  }

  .is-sp-inline ,
  .sp-br {
    display: inline;
  }

  .is-pc-inline ,
  .pc-br {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: auto;
  }

  .is-spGothic {
    font-family: var(--font-family-gothic);
  }

}

@media screen and (max-width:520px) {

  .ssp-br {
    display: inline;
  }

}

/* 2026-07 ロゴ更新: mainVisual テキスト追加分 */
.mainVisual-lead-text02b {
  color: var(--color-brand01);
}
.mainVisual-lead-sub {
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-brand01);
  text-align: center;
  letter-spacing: 0px;
  padding-top: 0.3em;
}

/* 2026-07 ロゴ更新: mainVisualの文字サイズを控えめに調整 */
.mainVisual-lead {
  font-size: clamp(14px, 2.6vw, 34px) !important;
}
.mainVisual-lead-sub {
  font-size: 0.45em !important;
}

/* 2026-07 ニュース一覧のサムネイルを大きめに表示 */
.l-newsList-img {
  width: clamp(180px, 35%, 360px);
}
.l-newsList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
}

/* 2026-07 メンバー名の下にローマ字名を改行表示 */
.memberCard-title-en,
.memberDetail-title-en {
  display: block;
  margin-top: 0.25em;
}

/* 2026-07 メンバー詳細ページの写真サイズ上限 */
.memberDetail .separate-item.-xxsmall img {
  max-width: 500px;
  max-height: 500px;
}

/* 2026-07 メンバー一覧カードの写真サイズ上限（写真なしのプレースホルダーも含む） */
.memberCard-img img {
  max-width: 300px;
  max-height: 300px;
}

/* ---- breadcrumb ---- */
.l-breadcrumb {
  padding: 1.2em var(--padding-main) 0;
}
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--color-sub02);
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.l-breadcrumb-item:not(:last-child)::after {
  content: "\203a";
}
.l-breadcrumb-item a {
  color: var(--color-brand01);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.l-breadcrumb-item a:hover {
  opacity: 0.7;
}
.l-breadcrumb-item span[aria-current] {
  color: var(--color-sub02);
}
