@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:  'Oswald','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en02:  'Poppins','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-serif:      'Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #002b8c;
  --color-brand02: #0c2255;
  --color-brand03: #7183ae;

  --color-primary01: #009955;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #f5f5f5;
  --color-sub02: #ccc;
  --color-sub03: #dee6f1;

  --side-padding: 3.5em;
  --header-height: 5.5em;

  --padding-main: min(10vw,7em);
  --padding-small: min(8vw,4em);
  --padding-large: min(12vw,10em);

}


@media screen and (max-width:1024px) {

  :root {
    --side-padding: 1em;
    --header-height: 4.5em;
  }

}

@media screen and (max-width:640px) {

  :root {
    --header-height: 56px;

    --padding-main: min(12vw,7em);
    --padding-small: min(10vw,4em);
    --padding-large: min(16vw,10em);
  }

}

/***********
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: var(--color-base);
}


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);
  }
}


a {
  text-decoration: underline;
  transition: 0.2s;
}

a:visited{}
a:hover,
a:active {
  color: ;
  text-decoration: none;
}

img {
  /* width: auto; */
  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; z-index: 2;}

.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;
}
body.is-menu-open .l-wrapper{
  filter: blur(3px);
}

.l-contents{
}

/***********
base
************/

.l-fullwidth {
  width: 100dvw;
  margin-inline: calc(50% - 50dvw);
}

.l-base {
  width: auto;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw,30px);
  padding-right: min(3vw,30px);
}

.l-base-wide {
  width: auto;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw,30px);
  padding-right: min(3vw,30px);
}

.l-base-xwide {
  width: auto;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw,30px);
  padding-right: min(3vw,30px);
}

.l-base-xxwide {
  width: auto;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw,30px);
  padding-right: min(3vw,30px);
}

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw,12px);
  padding-right: min(3vw,12px);
}


.l-block {
  padding-top: var(--padding-main);
  padding-bottom: var(--padding-main);
}
.l-block-small {
  padding-top: var(--padding-small);
  padding-bottom: var(--padding-small);
}
.l-block-large {
  padding-top: var(--padding-large);
  padding-bottom: 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-left: 0;
    padding-right: 0;
  }

  [class^="l-base"] [class^="l-base"] {
    padding-left: 0;
    padding-right: 0;
  }

}

/***********
zoom
************/

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transition: scale 0.5s ease;
}
body.is-pc a:hover .l-zoomHover img{
  scale: 1.05;
}


/***********
imgBorder
************/

.l-imgBorder{
  border: 1px solid var(--color-sub02);
}

/***********
font
************/

.l-fontColor-accent01 {
  color: var(--color-accent01);
}
.l-fontColor-brand01 {
  color: var(--color-brand01);
}
.l-fontColor-brand02 {
  color: var(--color-brand02);
}
.l-fontColor-brand03 {
  color: var(--color-brand03);
}
.l-fontColor-primary01 {
  color: var(--color-primary01);
}

.l-fontMedium {
  font-weight: 500;
}
.l-fontSemiBold {
  font-weight: 600;
}
.l-fontBold {
  font-weight: 700;
}

.l-fontFamily-serif {
  font-family: var(--font-family-serif);
  letter-spacing: 0;
}
.l-fontFamily-gothic-en {
  font-family: var(--font-family-gothic-en);
}

/***********
text
************/

.l-textMain{
  font-size: 0.95rem;
  line-height: 2;
}
.l-textLead{
  font-size: 0.95rem;
  line-height: 2;
  text-align: center;
}

.l-textSmall{
  font-size: 0.85rem;
  line-height: 1.7;
}

.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: 1.8em;
}
.l-list-number li {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 0.5em;
}
.l-list-number li::marker {
  margin-right: 1em;
}

.l-list-paren {
  counter-reset: item;
  padding-left: 0.2em;
}
.l-list-paren li {
  counter-increment: item;
  list-style: none;
  position: relative;
  padding-left: 2.2em;
}
.l-list-paren li::before {
  content: "(" counter(item) ")";
  position: absolute;
  left: 0;
  width: 2em;
}

@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: 18em;
  min-height: 3.8em;
  padding: 1em 3em ;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family-gothic-en02);
  border-radius: 5px;
  text-decoration: none !important;
  background-color: var(--color-brand02);
  color: var(--color-base);
  line-height: 1.2;
  transition: all 0.2s ease;
  position: relative;
}
.l-btn::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: "\f061";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  transition: 0.2s;
}
body.is-pc .l-btn:hover {
  background-color: var(--color-brand01);
}
body.is-pc .l-btn:hover::after {
  right: 0.8em;
}



.l-btn.-back::after {
  content: "\f060";
  right: auto;
  left: 1em;
  top: 50%;
}
body.is-pc .l-btn.-back:hover::after {
  right: auto;
  left: 0.8em;
}

@media screen and (max-width:640px) {

  .l-btn {
    min-width: 16em;
    min-height: 3.8em;
    padding: 1em 2.5em ;
    font-size: 1.05rem;
  }
  .l-btn::after {
    right: 0.8em;
  }

}


/***********
header
************/

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-base);
  padding-left: var(--side-padding);
  transition: height 0.2s ease;
}
.l-header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header-heading {
  display: flex;
  align-items: center;
}
.l-header-logo {
  letter-spacing: 0;
  white-space: nowrap;
}
.l-header-logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-family-gothic-en02);
  font-size: 0.65rem;
  line-height: 1.3;
}
.l-header-logo-title {
  font-size: 220%;
  font-weight: 600;
}
.l-header-logo-text {
  font-weight: 600;
  color: var(--color-brand01);
}

.l-header-univ {
  display: flex;
  align-items: center;
  padding-left: 1em;
}
.l-header-univ-logo {
}
.l-header-univ-logo + .l-header-univ-logo {
  padding-left: 0.5em;
}
.l-header-univ-logo img {
  width: auto;
  height: 2.6em;
}

.l-header-block {
  display: flex;
  align-items: center;
  padding-right: 2em;
}
.l-header-lang {
  padding-left: 2.5em;
}
.l-header-lang a {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding: 0.2em 1.5em 0.2em 1.2em;
  white-space: nowrap;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: none;
  position: relative;
}
.l-header-lang a::after {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.4em;
  position: absolute;
  right: 0.4em;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-base);
  clip-path: polygon(0% 0%, 100% 50%,  0 100%);
}
body.is-pc .l-header-lang a:hover {
  background-color: var(--color-brand01);
}

/*
navi
*/

.l-header-navi {
  font-feature-settings: "palt";
}
.l-header-navi-list {
  display: flex;
}
.l-header-navi-list > li {
  padding: 0.2em 0;
  position: relative;
}
.l-header-navi-list > li:not(:last-child) {
  margin-right: 2em;
}
.l-header-navi-list > li > a {
  display: inline-block;
  font-weight: 600;
  font-family: var(--font-family-gothic);
  padding: 0.8em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0s;
  transition-delay: 0s !important;
}
.l-header-navi-list > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0.5em;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list > li:hover > a {
  transform: translateY(-1px);
  color: var(--color-brand01);
}
body.is-pc .l-header-navi-list > li:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

.l-header-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 13em;
  color: var(--color-main);
  background: var(--color-base);
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.05);
  padding: 1em 2em 1em 1.5em;
  margin-left: -2em;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.l-header-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
}

.l-header-navi-list ul li {
  padding: 0.2em 0 0.2em 1.4em;
  position: relative;
}
.l-header-navi-list ul li::before{
  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: "\f061";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.8;
  color: var(--color-brand01);
}

.l-header-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;
}
.l-header-navi-list ul a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-main);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list ul a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

/*
fixed
*/

body.is-fixed .l-header {
  height: 3.6em;
}


@media screen and (max-width:1440px) {

  .l-header-logo-text {
    font-size: 75%;
    padding-top: 0.2em;
  }

  .l-header-univ {
    padding-left: 0.5em;
  }
  .l-header-univ-logo + .l-header-univ-logo {
    padding-left: 0.2em;
  }
  .l-header-univ-logo img {
    height: 2em;
  }

  .l-header-block {
    padding-right: 1em;
  }
  .l-header-lang {
    padding-left: 1.5em;
  }
  .l-header-lang a {
    padding: 0.2em 1.2em 0.2em 1em;
  }

  /*
  navi
  */

  .l-header-navi {
    font-feature-settings: "palt";
    letter-spacing: 0;
  }
  .l-header-navi-list > li:not(:last-child) {
    margin-right: 1.2em;
  }

  /*
  fixed
  */

  body.is-fixed .l-header {
    height: 3.6em;
  }
}

@media screen and (max-width:1024px) {

  .l-header ,
  body.is-fixed .l-header{
    height: var(--header-height);
    background-color: var(--color-base);
    padding-left: var(--side-padding);
    transition: height 0.2s ease;
  }
  .l-header-logo a {
    font-size: 0.55rem;
  }

  .l-header-univ {
    display: flex;
    align-items: center;
    padding-left: 1em;
  }
  .l-header-block {
    display: none;
  }

}

@media screen and (max-width:520px) {

  .l-header-univ {
    display: none;
  }

}


/***********
footer
************/

.l-footer {
  background-color: var(--color-brand02);
  color: var(--color-base);
  padding: var(--padding-small) 3vw;
  text-align: center;
}

.l-footer-container {
}
.l-footer-logo {
  padding-bottom: 2em;
}
.l-footer-logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-family-gothic-en02);
  font-size: 0.65rem;
  line-height: 1.3;
}
.l-footer-logo-title {
  font-size: 220%;
  font-weight: 500;
}
.l-footer-logo-text {
  font-weight: 500;
  padding-top: 0.2em;
}

.l-footer-address {
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.8;
}

.l-footer-navi {
  padding-top: 4em;
  font-feature-settings: "palt";
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.l-footer-navi > li {
  padding: 0 0;
  position: relative;
}
.l-footer-navi > li:not(:last-child)::after {
  content: "|";
  margin: 0 1.5em;
  scale: 1 0.8;
  opacity: 0.5;
  pointer-events: none;
}
.l-footer-navi > li > a {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-family-gothic);
  padding: 0.8em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0s;
  transition-delay: 0s !important;
}
.l-footer-navi > li > a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.5em;
  background-color: var(--color-base);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-footer-navi > li:hover > a {
  transform: translateY(-1px);
}
body.is-pc .l-footer-navi > li > a:hover::before,
body.is-pc .l-footer-navi > li:has(ul:hover) > a::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

.l-footer-navi ul {
  position: absolute;
  left: 0;
  bottom: 100%;
  min-width: 13em;
  color: var(--color-main);
  background: var(--color-base);
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.05);
  padding: 1em 2em 1em 1.5em;
  margin-left: -2em;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.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{
  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: "\f061";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.8;
  color: var(--color-brand01);
}

.l-footer-navi ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: max(0.8rem,12px);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
}
.l-footer-navi ul a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-main);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-footer-navi ul a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}


.l-footer-copyright {
  display: block;
  text-align: center;
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: 0.75rem;
  padding-top: 4em;
}


@media screen and (max-width:640px) {


  .l-footer {
    padding: var(--padding-small) 3vw 0;
  }

  .l-footer-container {
  }
  .l-footer-logo {
    padding-bottom: 2em;
  }
  .l-footer-logo a {
    font-size: 0.6rem;
  }
  .l-footer-logo-title {
    font-size: 250%;
    font-weight: 500;
  }
  .l-footer-logo-text {
  }

  .l-footer-address {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .l-footer-navi {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2em 1em;
    margin-top: 3em;
    display: block;
  }

  .l-footer-navi > li {
    padding: 0 0;
    position: relative;
  }
  .l-footer-navi > li:not(:last-child)::after {
    display: none;
  }
  .l-footer-navi > li > a {
    font-size: 0.95rem;
    padding: 0.5em 0;
    white-space:inherit;
  }

  .l-footer-navi ul {
    position: static;
    min-width: initial;
    color: var(--color-base);
    background: none;
    box-shadow: none;
    padding: 0 0 0.5em 0.2em;
    margin-left: 0;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
  }

  .l-footer-navi ul li {
    padding: 0 1em 0 0.8em;
    position: relative;
  }
  .l-footer-navi ul li::before{
    top: 0.3em;
    scale: 0.6;
    color: var(--color-base);
    transform-origin: left;
  }

  .l-footer-navi ul a {
    color: var(--color-base);
    font-size: max(0.8rem,12px);
    padding: 0.2em 0;
  }


  .l-footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.65rem;
    padding-top: 2em;
    padding-bottom: 2em;
    margin-inline: -5vw;

  }



}


/***********
jump
************/

.l-jumpTop{
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  transform: translateY(200px);
  transition: 0.5s;
}
body.is-fixed .l-jumpTop {
  transform: translateY(0);
}
.l-jumpTop a{
  display: block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-base);
}

.l-jumpTop a i{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  color: var(--color-base);
  background-color: var(--color-brand01);
  font-size: 13px;
}
.l-jumpTop a span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0;
  padding-top: 0.4em;
}

@media screen and (max-width:834px) {

  .l-jumpTop{
    display: none !important;
  }

}



/***********
menu
************/

.l-menu{
  position: fixed;
  width: 100vw;
  max-height: 100lvh;
  z-index: 1;
  left: 0;
  top: 0;
  z-index: 990;
  translate: 0 -100%;
  background-color: var(--color-base);
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  transition: translate 0.5s ease;
}

.is-menu-open .l-menu{
  translate: 0 0;
}


.l-menu-close{
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 15, 30, 0.7);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: -1;
  mix-blend-mode: multiply;
}
.is-menu-open .l-menu-close{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 989;
}

.l-menu-trigger {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  background-color: transparent;
}

@media screen and (max-width:1024px) {
  .l-menu-trigger {
    display: block;
  }
}

.l-menu-btn {
  display: block;
  position: relative;
  width: var(--header-height);
  height: var(--header-height);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 5px;
  -webkit-tap-highlight-color:transparent;
}
.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 30%;
  top: 48%;
  width: 40%;
  height: 2px;
  margin-top: -4px;
  background-color: var(--color-brand02);
  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-en02);
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 6px;
  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-main);
  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-main);
  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-main);
  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;
}


.l-menu-container {
  padding: var(--header-height) 0 60px;
  position: relative;
  z-index: 9;
  max-width: 520px;
  margin: 0 auto;
}


/*
navi
*/

.l-menu-navi-list {
  border-top: 1px solid var(--color-sub03);
}
.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: 5px;
  top: 4px;
  display: none;
}
.l-menu-navi-list li:has(ul) > button {
  display: block;
}
.l-menu-navi-list button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 45%;
  translate: -50% -50%;
  rotate: 45deg;
  border: 2px solid var(--color-main);
  border-top: none;
  border-left: none;
}
.l-menu-navi-list button.is-active {
  rotate: 180deg;
}

.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 var(--color-sub03);
  position: relative;
}
.l-menu-navi-list > li > a {
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  padding: 1em 60px 1em 20px;
}

/*
2
*/

.l-menu-navi-list > li > ul {
  padding-bottom: 25px;
  padding-left: 20px;
  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: 16px;
  letter-spacing: 0.04em;
  position: relative;
}
.l-menu-navi-list > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: rgba(0, 0, 0, 0.8);
}


/*
lang
*/

.l-menu-lang {
  padding: 20px 20px 0 20px;
  text-align: center;
}
.l-menu-lang a {
  display: block;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  padding: 0.8em 5.5em 0.8em 5.2em;
  white-space: nowrap;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: none;
  text-align: center;
  position: relative;
}
.l-menu-lang a::after {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.4em;
  position: absolute;
  right: 0.4em;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-base);
  clip-path: polygon(0% 0%, 100% 50%,  0 100%);
}
body.is-pc .l-menu-lang a:hover {
  background-color: var(--color-brand01);
}


/*
sub
*/

.l-menu-subNavi {
  padding-top: 20px;
  padding-left: 20px;
}
.l-menu-subNavi button {
  display: none;
}

.l-menu-subNavi li {
  padding-right: 2em;
}

.l-menu-subNavi a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  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;
}

/*
univ
*/

.l-menu-univ {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 0 20px;
  max-width: 320px;
  margin: 0 auto;
}
.l-menu-univ-logo {
}
.l-menu-univ-logo + .l-menu-univ-logo {
  padding-left: 0.5em;
}
.l-menu-univ-logo a {
  display: inline-block;
}
.l-menu-univ-logo img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width:520px) {

  .l-menu-lang a {
    display: block;
    font-size: 16px;
    padding: 0.8em 2.5em 0.8em 2.2em;
  }

}

/***********
video
************/

.l-video {
  display: block;
  width: 100%;
}

/***********
movie
************/

.l-movie {
  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%;
  color: #fff;
  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: 0.3s;
}
body.is-pc .l-movie a:hover::after {
  opacity: 0.7;
}

@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: 3em;
}
.l-heading::before{
  content: "";
  display: block;
  width: 2.5em;
  height: 0.4em;
  margin-bottom: 1.5em;
  background-color: var(--color-brand01);
}
.l-heading-subTitle{
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand02);
  font-size: 2.4rem;
}
.l-heading-title{
  font-weight: 700;
  font-size: 1.3rem;
  font-feature-settings: "pkna";
  padding-top: 0.2em;
  color: var(--color-brand03);
}

.l-heading.-center{
  text-align: center;
}
.l-heading.-center::before{
  margin-inline: auto;
}

@media screen and (max-width:834px) {

  .l-heading{
    padding-bottom: 1.5em;
  }
  .l-heading::before{
    height: 0.2em;
    margin-bottom: 1.5em;
  }
  .l-heading-subTitle{
    font-size: clamp(1.5rem,6.6vw, 2.4rem);
    line-height: 1.2;
  }
  .l-heading-title{
    font-size: 1.1rem;
  }
}


/***********
headline
************/

.l-headline{
  padding-bottom: 2.5em;
}
.l-headline::before{
  content: "";
  display: block;
  width: 2.5em;
  height: 0.4em;
  margin-bottom: 1.2em;
  background-color: var(--color-brand01);
}
.l-headline-title{
  font-weight: 700;
  font-size: 2.1rem;
  font-feature-settings: "pkna";
  line-height: 1.35;
  padding-top: 0.2em;
  color: var(--color-brand02);
}
.l-headline-subTitle{
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  font-size: 1.1rem;
  color: var(--color-brand03);
  padding-top: 0.4em;
}

.l-headline.-center{
  text-align: center;
}
.l-headline.-center::before{
  margin-inline: auto;
}

@media screen and (max-width:834px) {

  .l-headline{
    padding-bottom: 1.5em;
  }
  .l-headline::before{
    height: 0.2em;
    margin-bottom: 1.5em;
  }
  .l-headline-title{
    font-size: clamp(1.4rem,6.2vw, 1.6rem);
  }
  .l-headline-subTitle{
    font-size: clamp(0.9rem,3vw, 1.1rem);
    line-height: 1.2;
  }
}


/***********
title
************/

.l-largeTitle {
  font-size: 1.5rem;
  margin-bottom: 1.2em;
  padding-block: 0.8em;
  border-block: 2px solid var(--color-main);
  border-bottom-width: 1px;
}
.l-leadTitle {
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 0.8em;
}

.l-title{
  font-size: 1.4rem;
  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.4rem;
  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;
}
.l-minTitle.-noOffset{
  margin-bottom: 0;
}


@media screen and (max-width:834px) {

  .l-largeTitle {
    font-size: 1.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);
}


.l-bgColor11 {
  background: url(../../img/bg01.png) no-repeat left bottom -10% / max(100%,834px) auto;
}

.l-bgColor12 {
  background: url(../../img/bg01.png) no-repeat left bottom -10% / max(100%,834px) auto;
  position: relative;
}
.l-bgColor12::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 42, 140, 0.1) 100%);
  pointer-events: none;
}


/***********
split
************/

.l-split {
  display: flex;
}
.l-split-visual {
  width: 45%;
}
.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: -10vw;
}

.l-split.-reverse {
  flex-direction: row-reverse;
}
.l-split.-reverse .l-split-inner {
  padding-right: 5%;
}
.l-split.-reverse .l-split-img {
  margin-right: -10vw;
}

@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;
  }

}

/***********
l-separate
************/

.l-separate {
  display: flex;
  justify-content: space-between;
}
.l-separate-item.-large {
  width: 50%;
}
.l-separate-item.-small {
  width: 45%;
}
.l-separate-item.-xlarge {
  width: 55%;
}
.l-separate-item.-xsmall {
  width: 40%;
}
.l-separate-item.-xxlarge {
  width: 60%;
}
.l-separate-item.-xxsmall {
  width: 35%;
}
.l-separate-item.-half {
  width: 47.5%;
}
.l-separate.-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width:834px) {

  .l-separate {
    display: block;
  }
  .l-separate-item {
    width: auto !important;
  }
  .l-separate-item:first-child {
    padding-bottom: 2em;
  }

}

/***********
card
************/

.l-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 4%;
}
.l-card li {
}
.l-card li a {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: var(--color-base);
}
.l-card-img{
}
.l-card-inner{
  padding: 1em 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.l-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand02);
}
.l-card-subTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: 0.8rem;
  padding-top: 0.2em;
}
.l-card-largeTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1.3rem;
}

@media screen and (max-width:834px) {

  .l-card {
    gap: 2em 2%; /* 行間/列間 */
  }
  .l-card-inner{
    padding: 1em 5%;
  }
  .l-card-title {
    font-size: 1.05rem;
  }
  .l-card-subTitle {
    font-size: 0.8rem;
  }
  .l-card-largeTitle {
    font-size: 1.2rem;
  }

}
@media screen and (max-width:640px) {

  .l-card {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 2%; /* 行間/列間 */
    padding: 0 5vw;
  }
  .l-card-inner{
    padding: 1em 5%;
  }
  .l-card-title {
    font-size: 1.05rem;
  }
  .l-card-subTitle {
    font-size: 0.8rem;
  }
  .l-card-largeTitle {
    font-size: 1.2rem;
  }

}

/***********
prof
************/

.l-prof {
  border: 2px solid var(--color-brand01);
  background-color: var(--color-base);
  padding: min(5vw,3.5em);
  border-radius: 5px;
  display: flex;
}
.l-prof-img {
  width: clamp(120px,25%, 210px);
}
.l-prof-inner {
  flex: 1;
  padding-left: 6%;
}

.l-prof-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5em;
}
.l-prof-heading-inner {
  display: flex;
  align-items: end;
}
.l-prof-heading-title {
  font-size: 1.35rem;
  font-weight: 600;
  padding-right: 1em;
}
.l-prof-heading-subTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: 0.9rem;
}
.l-prof-heading-link {
}
.l-prof-heading-link a {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.85rem;
  text-align: center;
  min-width: 11em;
  padding: 0.4em 1.5em 0.4em 1.2em;
  white-space: nowrap;
  background-color: var(--color-brand02);
  border-radius: 5px;
  color: var(--color-base);
  text-decoration: none;
  position: relative;
}
.l-prof-heading-link a::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: "\f061";
  position: absolute;
  right: 0.6em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
  transition: 0.2s;
}
.l-prof-heading-link a[target="_blank"]::after {
  rotate: -45deg;
}
body.is-pc .l-prof-heading-link a:hover {
  background-color: var(--color-brand01);
}
body.is-pc .l-prof-heading-link a[target="_blank"]:hover::after {
  translate: 15% -60%;
}

@media screen and (max-width:640px) {

  .l-prof {
    padding: min(7vw,2em) min(5vw,2em);
    display: block;
  }
  .l-prof-img {
    margin: 0 auto 1em;
    border-radius: 50%;
  }
  .l-prof-img img {
    border-radius: 50%;
  }
  .l-prof-inner {
    padding-left: 0;
  }

  .l-prof-heading {
    display: block;
    padding-bottom: 1em;
    text-align: center;
  }
  .l-prof-heading-inner {
    display: block;
  }
  .l-prof-heading-title {
    font-size: 1.2rem;
    padding-right: 0;
  }
  .l-prof-heading-subTitle {
    font-size: 0.8rem;
  }
  .l-prof-heading-link {
    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 {
}
.l-pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.l-pageList-inner {
  padding-top: 1em;
}
.l-pageList-heading {
}
.l-pageList-title {
  font-size: 1.4rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.4em;
  color: var(--color-brand02);
}
.l-pageList-title::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: "\f0a9";
  position: absolute;
  left: 0;
  top: 0.2em;
  scale: 0.8;
  transition: 0.2s;
}

.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;
  }
}
/***********
figure
************/

.l-figure {
  display: inline-block;
}
.l-figure img {
  vertical-align: bottom;
}
.l-figure figcaption {
  padding-top: 1em;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
}

/***********
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;
  }

}

/***********
xxxxx
************/


/***********
fade
************/


[data-fade] {
  opacity: 0;
  transition: opacity 0.8s ease, translate 0.8s ease;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  translate: 0 20px;
}
[data-fade="fade-up"].is-show {
  translate: 0 0;
}

[data-fade="step-up"] > *{
  opacity: 0;
  transition: opacity 0.8s ease, translate 0.8s ease;
  transition-delay: 0.1s;
  translate: 0 20px;
}
[data-fade="step-up"].is-show > *{
  opacity: 1;
  translate: 0 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;
  }

}
