@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Zen Kaku Gothic New',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif; /* <weight>: 300 400 500 700 900 */
  --font-family-gothic-en01:  'Krona One','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif; /* <weight>: 400 */
  --font-family-gothic-en02:  'Unbounded','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif; /* <weight>: Variable from 200 to 900 */
  --font-family-gothic-en03:  'Oswald','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif; /* <weight>: Variable from 200 to 700 */
  --font-family-serif-en:   'DM Serif Display','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif; /* <weight>: 400 */

  --color-base: #fff;
  --color-main: #232323;
  --color-brand01: #3478b3;
  --color-brand02: #2f70af;
  --color-brand03: #2870af;
  --color-brand04: #1a2c66;


  --color-primary01: #009955;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #e0f0ff;
  --color-sub04: #eaf1f7;


  --header-height: 80px;
  --side-padding: 180px;
}

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

  :root {
    --side-padding: 60px;
  }
}

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

  :root {
  --header-height: 50px;
    --side-padding: 2vw;
  }

}

/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-main);
}

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:1280px) {
  body{
    font-size: 12px;
  }
}
@media screen and (max-width:834px) {
  body{
    font-size: min(calc(9px + 0.7vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:520px) {
  body{
    font-size: min(calc(9px + 1vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}


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
************************/

/***********
wp
************/

.right,
.alignright {
  float: right !important;
  padding-left: 2em;
  padding-bottom: 1em;
}

.left,
.alignleft {
  float: left !important;
  padding-right: 2em;
  padding-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
  font-size: 1rem;
  clear: both;
}
.post .wp-caption img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-caption-text {
  padding-top: 0.5em;
  opacity: 0.7;
}

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

  .right,
  .alignright {
    float: right !important;
    width: 35% !important;
    padding-left: 1em;
    padding-bottom: 1em;
  }

  .left,
  .alignleft {
    float: left !important;
    width: 35% !important;
    padding-right: 1em;
    padding-bottom: 1em;
  }

}

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

  .right,
  .alignright ,
  .left,
  .alignleft {
    display: block;
    width: 100% !important;
    padding: 0 0 2em;
    float: none !important;
  }

  .wp-caption-text {
    font-size: clamp(85%,2vw, 100%);
    line-height: 1.5;
  }

}

/***********
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: 5px  !important; }
.l-bottom-xsmall  {  margin-bottom: 10px !important; }
.l-bottom-small   {  margin-bottom: 15px !important; }
.l-bottom         {  margin-bottom: 20px !important; }
.l-bottom-large   {  margin-bottom: 30px !important; }
.l-bottom-xlarge  {  margin-bottom: 50px !important; }
.l-bottom-xxlarge {  margin-bottom: 80px !important; }

.l-top-xxsmall {  margin-top: 5px  !important; }
.l-top-xsmall  {  margin-top: 10px !important; }
.l-top-small   {  margin-top: 15px !important; }
.l-top         {  margin-top: 20px !important; }
.l-top-large   {  margin-top: 30px !important; }
.l-top-xlarge  {  margin-top: 50px !important; }
.l-top-xxlarge {  margin-top: 80px !important; }

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

  .l-bottom-xxsmall {  margin-bottom: 5px  !important; }
  .l-bottom-xsmall  {  margin-bottom: 7px !important; }
  .l-bottom-small   {  margin-bottom: 10px !important; }
  .l-bottom         {  margin-bottom: 15px !important; }
  .l-bottom-large   {  margin-bottom: 20px !important; }
  .l-bottom-xlarge  {  margin-bottom: 30px !important; }
  .l-bottom-xxlarge {  margin-bottom: 40px !important; }

  .l-top-xxsmall {  margin-top: 5px  !important; }
  .l-top-xsmall  {  margin-top: 7px !important; }
  .l-top-small   {  margin-top: 10px !important; }
  .l-top         {  margin-top: 15px !important; }
  .l-top-large   {  margin-top: 20px !important; }
  .l-top-xlarge  {  margin-top: 30px !important; }
  .l-top-xxlarge {  margin-top: 40px !important; }

}

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

.l-wrapper{
}

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

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

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

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

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

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

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


.l-block {
  padding-top: min(12vw,8em);
  padding-bottom: min(12vw,8em);
}
.l-block-small {
  padding-top: min(10vw,5em);
  padding-bottom: min(10vw,5em);
}
.l-block-large {
  padding-top: min(20vw,12em);
  padding-bottom: min(20vw,12em);
}

.l-block-top {
  padding-top: min(12vw,8em);
}
.l-block-top-small {
  padding-top: min(10vw,5em);
}
.l-block-top-large {
  padding-top: min(20vw,12em);
}

.l-block-bottom {
  padding-bottom: min(12vw,8em);
}
.l-block-bottom-small {
  padding-bottom: min(10vw,5em);
}
.l-block-bottom-large {
  padding-bottom: min(20vw,12em);
}

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


  .l-block {
    padding-top: min(15vw,5em);
    padding-bottom: min(15vw,5em);
  }
  .l-block-small {
    padding-top: min(12vw,4em);
    padding-bottom: min(12vw,4em);
  }
  .l-block-large {
    padding-top: min(25vw,8em);
    padding-bottom: min(25vw,8em);
  }

  .l-block-top {
    padding-top: min(15vw,5em);
  }
  .l-block-top-small {
    padding-top: min(12vw,4em);
  }
  .l-block-top-large {
    padding-top: min(25vw,8em);
  }

  .l-block-bottom {
    padding-bottom: min(15vw,5em);
  }
  .l-block-bottom-small {
    padding-bottom: min(12vw,4em);
  }
  .l-block-bottom-large {
    padding-bottom: min(25vw,8em);
  }

}

/***********
zoom
************/

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transform:scale(1) ;
  transition:all 0.3s ease;
}
body.is-pc a:hover .l-zoomHover img{
  transform:scale(1.08) ;
}


/***********
marker
************/

.l-marker {
  background: linear-gradient(to right ,#fff358, #fff358) 0 100% / 0 100% no-repeat;
  transition: background 1s cubic-bezier(0.83, 0, 0.17, 1);
  text-decoration: none;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.l-marker.is-inview {
  background-size: 100% 100%;
}


/***********
fontColor
************/

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

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

.l-textMain{
  font-size: clamp(1.08rem,1.4vw, 1.24rem);
  line-height: 1.8;
}
.l-textLead{
  font-size: clamp(1.08rem,1.4vw, 1.24rem);
  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: 17em;
  min-height: 3.4em;
  padding: 1em 3em ;
  font-size: clamp(1.24rem,1.2vw, 1.54rem);
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  color: var(--color-base);
  border-radius: 3em;
  background-color: var(--color-brand04);
  box-shadow: 0 3px 0 var(--color-sub01);
  text-decoration: none !important;
  line-height: 1.3;
  transition: 0.2s;
  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: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  font-size: 77%;
}
body.is-pc .l-btn:hover {
  translate: 0 3px;
  background-color: var(--color-brand03);
  box-shadow: 0 0 0 var(--color-sub01);
}


.l-btn.-white {
  background-color: var(--color-base);
  color: var(--color-brand03);
  box-shadow: 0 3px 0 var(--color-brand02);
}
body.is-pc .l-btn.-white:hover {
  background-color: var(--color-base);
}



.l-btn.-back::after {
  right: auto;
  left: 1em;
  content: "\f053";
}

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

  .l-btn {
    min-width: 15em;
  }

}


/***********
more
************/

.l-more {
  display: inline-block;
  font-size: clamp(124%,1.4vw, 154%);
  font-weight: 700;
  color: var(--color-brand02);
  text-decoration: none;
  text-align: center;
  padding: 0.4em 0.2em 0.8em;
  line-height: 1.35;
  position: relative;
}
.l-more::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: "\f35a";
  position: absolute;
  left: calc(100% + 0.5em);
  top: 50%;
  translate: -0.1em -50%;
  opacity: 0;
  transition: 0.3s;
}
.l-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: url(../../img/wave01.png) repeat-x 0 0 / auto 7px;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: anim-wave01 0.8s ease-in-out infinite;
  animation-play-state: paused;
}
body.is-pc .l-more:hover {
  filter: brightness(77%);
}
body.is-pc .l-more:hover::before {
  opacity: 1;
  translate: 0 -50%;
}
body.is-pc .l-more:hover::after {
  animation-play-state: running;
}

@keyframes anim-wave01 {
  0%   {
    background-position: 0 0;
  }
  100%   {
    background-position: 14px 0;
  }
}
/***********
header
************/

.l-logo {
  position: fixed;
  left: 50%;
  top: 15px;
  translate: -50% 0 ;
  z-index: 990;
  transform-origin: top;
}
.l-logo-container {
  transition: 0.5s;
}
.l-logo-container a {
  display: inline-block;
  text-decoration: none;
}
.l-logo-block {
  display: flex;
  align-items: center;
}
.l-logo-symbol {
  width: 50px;
  margin-right: 10px;
  transition: 0.5s;
}
.l-logo-text {
  width: 220px;
  transition: 0.5s;
}

/*
home
*/

body.home:not(.is-fixed) .l-logo-container {
  scale: 2;
  translate: 0 80px;
}
body.home:not(.is-fixed) .l-logo-symbol {
  translate: 117px 0;
  scale: 1.6;
}
body.home:not(.is-fixed) .l-logo-text {
  translate: -30px 62px;
}

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

  .l-logo {
    scale: 0.7;
    top: 5px;
  }
}
@media screen and (max-width:1024px) {

  .l-logo {
    scale: 0.6;
  }
}

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

  .l-logo {
    scale: 0.5;
    top: 13px;
  }
}

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

.l-navi {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row-reverse;
  transition: 0.5s;
}
.l-navi button {
  display: none;
}
.l-navi-heading {
  position: relative;
  font-size: clamp(93%,0.9vw, 116%);
  white-space: nowrap;
}
.l-navi-heading-title {
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  background-color: var(--color-brand04);
  color: var(--color-base);
  min-width: 12em;
  padding: 1.4em 1em 1.3em;
  line-height: 1;
  text-align: right;
  position: absolute;
  left: 100%;
  top: 0;
  transform-origin: left top;
  rotate: 90deg;
}
.l-navi-heading-sns {
  padding-top: 13em;
  width: 3.8em;
  text-align: center;
}
.l-navi-heading-sns li {
  font-size: 170%;
  padding-bottom: 0.2em;
}
.l-navi-heading-sns li a {
  color: var(--color-brand04);
  display: inline-block;
  transition: 0.1s;
}
body.is-pc .l-navi-heading-sns li a:hover {
  scale: 1.1;
}

.l-navi-list {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: clamp(116%,1vw, 131%);
  padding-right: 2.5em;
  padding-top: 3em;
}
.l-navi-list li {
  padding-left: 0.6em;
}
.l-navi-list li a{
  display: inline-block;
  font-weight: 700;
  color: var(--color-brand03);
  text-decoration: none;
  position: relative;
}
.l-navi-list li 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: "\f0d7";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -0.3em ;
  scale: 0.8;
  opacity: 0;
  transition: opacity 0.2s ease ;
}
.l-navi-list li a span{
  display: inline-block;
  padding: 0.1em 0.4em 0.6em;
  position: relative;
  transition: 0.3s;
}
.l-navi-list li a span::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-brand03);
}

body.is-pc .l-navi-list li a:hover::after {
  opacity: 1;
  color: var(--color-brand04);
}
body.is-pc .l-navi-list li a:hover span {
  margin-top: 1em;
  color: var(--color-brand04);
}

/*
hide
*/

body.is-fixed.is-scrollDown .l-navi {
  translate: 100% 0 ;
}

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

  .l-navi {
    display: none;
  }
}


/***********
fixedCv
************/

.l-fixedCv {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  transition: 0.4s;
}
.l-fixedCv-item {
  width: 130px;
  aspect-ratio: 100 / 90;
  margin-top: 1px;
  transition: 0.4s;
}
.l-fixedCv-item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: none;
  transition: 0.4s;
}
.l-fixedCv-img {
  width: 30%;
  margin: 0 auto;
}
.l-fixedCv-img img {
  transition: 0.1s;
}
.l-fixedCv-text {
  font-size: 12px;
  font-family: var(--font-family-gothic-en01);
  padding-top: 0.3em;
  transition: 0.4s;
}
.l-fixedCv-text span {
  display: inline-block;
  padding: 0.1em 0;
  position: relative;
}
.l-fixedCv-text span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-base);
  scale: 1 1;
  transform-origin: right;
}
body.is-pc .l-fixedCv-item a:hover .l-fixedCv-text span::after {
  animation:anim-fixedCv 0.7s ease 0s;
}
body.is-pc .l-fixedCv-item a:hover .l-fixedCv-img img {
  scale: 1.06;
}

.l-fixedCv-text small {
  display: none;
}
.l-fixedCv-item.-reserve a {
  background-color: var(--color-brand04);
}
.l-fixedCv-item.-access a {
  background-color: var(--color-brand01);
}

@keyframes anim-fixedCv {
  0%,100% {
    transform-origin: right;
    scale: 1 1;
  }
  40% {
    transform-origin: right;
    scale: 0 1;
  }
  41% {
    transform-origin: left;
    scale: 0 1;
  }
  80% {
    transform-origin: left;
    scale: 1 1;
  }
}

/*
fixed
*/

body.is-fixed .l-fixedCv {
  right: 0;
  bottom: -1px;
}
body.is-fixed .l-fixedCv-item {
  width: 80px;
  aspect-ratio: 100 / 90;
  margin-bottom: 1px;
}
body.is-fixed .l-fixedCv-text {
  font-size: 9px;
}


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

  .l-fixedCv {
    right: 10px;
    bottom: 10px;
  }
  .l-fixedCv-item {
    width: 100px;
  }
  .l-fixedCv-text {
    font-size: 10px;
  }
}


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

  .l-fixedCv ,
  body.is-fixed .l-fixedCv{
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
  }
  .l-fixedCv-item,
  body.is-fixed .l-fixedCv-item {
    width: auto;
    flex: 1;
    aspect-ratio: initial;
    margin: 0;
  }
  .l-fixedCv-item a {
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .l-fixedCv-img {
    width: 26px;
    margin-left: -10px;
    margin: 0;
    transition: 0.4s;
  }
  .l-fixedCv-img img {
    transition: 0.1s;
  }
  .l-fixedCv-text,
  body.is-fixed .l-fixedCv-text {
    font-size: 12px;
    margin-bottom: 0.3em;
    padding-left: 0.5em;
  }
  .l-fixedCv-text span {
  }

  .l-fixedCv-text small {
    display: block;
    padding-top: 0.5em;
    font-size: 10px;
    opacity: 0.8;
    height: 0;
    opacity: 0;
    transition: 0.4s;
  }

  /*
  fixed
  */

  body:not(.is-fixed) .l-fixedCv {
    translate: 0 100%;
  }
  body.is-menu-open .l-fixedCv {
    translate: 0 0;
  }
  body.is-menu-open .l-fixedCv .l-fixedCv-item a{
    height: 80px;
  }
  body.is-menu-open .l-fixedCv .l-fixedCv-img{
    width: 32px;
    margin-left: -13px;
  }
  body.is-menu-open .l-fixedCv .l-fixedCv-text{
    font-size: 14px;
  }
  body.is-menu-open .l-fixedCv .l-fixedCv-text small{
    height: 2em;
    opacity: 1;
  }

}

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

.l-footer {
  background: url(../../img/bg01.jpg) no-repeat center bottom / max(100%,834px) auto;
  background-color: #1a2c66;
  color: var(--color-base);
  padding: min(22vw,8em) 0 max(30vw,300px);
}

.l-footer-logo {
  width: clamp(180px,24%, 320px);
  margin: 0 auto 5em;
}
.l-footer-container {
  display: flex;
  flex-direction: row-reverse;
}
.l-footer-info {
  width: 50%;
}
.l-footer-map {
}
.l-footer-map iframe {
  width: 100%;
  height: 440px;
  vertical-align: bottom;
}
.l-footer-address {
  font-size: clamp(108%,1.2vw, 124%);
  font-style: normal;
  line-height: 1.8;
  padding-top: 1.5em;
}
.l-footer-text {
  font-size: clamp(108%,1.2vw, 124%);
  line-height: 1.8;
}
.l-footer-data {
  font-size: clamp(108%,1.2vw, 124%);
  line-height: 1.8;
  display: grid;
  grid-template-columns: minmax(4em, max-content) 1fr;
  column-gap: 1em;
  margin: 0;
  padding: 0;
}
.l-footer-data dt {
  margin-left: -0.5em;
  text-align-last: justify;
}

.l-footer-sitemap {
  flex: 1;
  padding-right: 7%;
}
.l-footer-heading {
  font-size: clamp(100%,1vw, 139%);
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--color-base);
}
.l-footer-heading-subTitle {
  font-weight: 700;
}
.l-footer-heading-title {
  font-size: 170%;
  font-weight: 700;
}

.l-footer-navi {
  font-size: clamp(116%,1.2vw, 139%);
}
.l-footer-navi button {
  display: none;
}
.l-footer-navi li {
  border-bottom: 1px solid var(--color-base);
}
.l-footer-navi li a{
  display: block;
  padding: 1em 0 1em 0.8em;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.l-footer-navi li a::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: "\f0da";
  position: absolute;
  left: 0.5em;
  top: 52%;
  translate: 0 -50%;
  scale: 0.88;
  opacity: 0;
  transition: 0.3s;
}
body.is-pc .l-footer-navi li a:hover {
  padding-left: 1.5em;
}
body.is-pc .l-footer-navi li a:hover::before {
  opacity: 1;
}

.l-footer-sub {
  font-size: clamp(93%,1vw, 116%);
  padding-top: 2em;
}
.l-footer-sub button {
  display: none;
}
.l-footer-sub li {
}
.l-footer-sub li a{
  display: block;
  padding: 0.5em 0 0.5em 1em;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.l-footer-sub li a::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: "\f0da";
  position: absolute;
  left: 0.5em;
  top: 52%;
  translate: 0 -50%;
  scale: 0.88;
  opacity: 0;
  transition: 0.3s;
}
.l-footer-sub 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.6em;
  opacity: 0.6;
  scale: 0.8;
}
body.is-pc .l-footer-sub li a:hover {
  padding-left: 1.5em;
}
body.is-pc .l-footer-sub li a:hover::before {
  opacity: 1;
}

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

  .l-footer {
    padding: min(22vw,4em) 0 250px;
  }

  .l-footer-logo {
    width: clamp(180px,24%, 320px);
    margin: 0 auto 3em;
  }
  .l-footer-container {
    display: block;
  }
  .l-footer-info {
    width: auto;
  }
  .l-footer-map iframe {
    width: 100%;
    height: 340px;
  }

  .l-footer-sitemap {
    padding-top: 4em;
    padding-right: 0;
  }
}

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

  .l-footer {
  }
  .l-footer-logo {
    width: clamp(140px,50%, 240px);
    margin: 0 auto 5em;
  }
  .l-footer-address {
    font-size: clamp(108%,1.2vw, 124%);
    font-style: normal;
    line-height: 1.8;
    padding-top: 1.5em;
  }
  .l-footer-text {
    font-size: clamp(108%,1.2vw, 124%);
    line-height: 1.8;
  }
  .l-footer-data {
    font-size: clamp(108%,1.2vw, 124%);
    line-height: 1.8;
    display: grid;
    grid-template-columns: minmax(4em, max-content) 1fr;
    column-gap: 1em;
    margin: 0;
    padding: 0;
  }
  .l-footer-data dt {
    text-align-last: justify;
  }

  .l-footer-sitemap {
  }
  .l-footer-heading {
    font-size: clamp(100%,4vw, 139%);
  }
  .l-footer-heading-title {
    font-size: 139%;
  }

  .l-footer-navi {
    font-size: clamp(116%,3vw, 139%);
  }
  .l-footer-navi li a{
    padding: 1em 0 1em 0.8em;
    line-height: 1.4;
  }
  .l-footer-navi li a::before {
    left: auto;
    right: 0.5em;
    top: 52%;
    translate: 0 -50%;
    scale: 0.88;
    opacity: 0.5;
    transition: 0.3s;
  }

}

/***********
fixedCv
************/

.l-lower {
  background-color: var(--color-sub03);
  padding: 3.5em 4vw;
  font-size: clamp(100%,1vw, 116%);
}
.l-lower button {
  display: none;
}
.l-lower-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.l-lower-navi li {
  padding: 0.3em 0;
}
.l-lower-navi li:not(:last-child)::after {
  content: "|";
  padding: 0 0.8em;
}
.l-lower-navi li a{
  display: inline-block;
  color: var(--color-brand04);
  text-decoration: none;
  padding: 0.3em 0;
  font-weight: 500;
}
.l-lower-navi 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.3em;
  opacity: 0.6;
  scale: 0.8;
}
body.is-pc .l-lower-navi li a:hover {
  text-decoration: underline;
}

.l-lower-navi.-external {
  padding-top: 1em;
}
.l-lower-navi.-external li:not(:last-child)::after {
  content: "";
}

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

  .l-lower {
    padding: 3em 8vw;
  }
  .l-lower-navi {
    display: block;
  }
  .l-lower-navi li {
    padding: 0 0;
  }
  .l-lower-navi li:not(:last-child)::after {
    display: none;
  }
  .l-lower-navi li a{
    display: inline-block;
    color: var(--color-brand04);
    text-decoration: none;
    padding: 0.3em 0 0.3em 1em;
    font-weight: 500;
    position: relative;
  }
  .l-lower-navi li a::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: "\f0da";
    position: absolute;
    left: 0;
    top: 0.6em;
    scale: 0.88;
    opacity: 0.5;
  }
}

/***********
copyright
************/

.l-copyright {
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding-top: 4em;
  padding-bottom: 4em;
}
.l-copyright-text {
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  font-size: 100%;
  display: block;
  text-align: center;
}

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

  .l-copyright {
    border-top: 1px solid var(--color-brand01);
    background-color: var(--color-sub03);
    color: var(--color-main);
    padding-top: 4em;
    padding-bottom: calc(4em + 40px);
  }
  .l-copyright-text {
    font-size: 77%;
  }

}

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

.l-menu-trigger {
  display: none;
}

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

  .l-menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999;
    left: 0;
    top: 0;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
  }

  .is-menu-open .l-menu{
    opacity: 1;
  }

  .l-menu-trigger {
    display: block;
    position: fixed;
    right: 5px;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.2s;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 60px;
    height: 52px;
    cursor: pointer;
    background: none;
    border: none;
    -webkit-tap-highlight-color:transparent;
  }
  .l-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 50%;
    width: 50%;
    height: 2px;
    background-color: var(--color-brand01);
    border-radius: 3px;
    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: -8px;
  }
  .l-menu-btn span:nth-child(3) {
    margin-top: 8px;
  }

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

}

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

.l-menu-container {
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 20px 220px;
  text-align: center;
}
.l-menu-logo {
  width: 160px;
  margin: 0 auto 2em;
}

.menu-block {
  display: inline-block;
  text-align: left;
}

.l-menu-navi {
  font-size: clamp(116%,4vw, 139%);
}
.l-menu-navi button {
  display: none;
}
.l-menu-navi > li {
  padding-bottom: 0.5em;
}
.l-menu-navi > li > a {
  display: inline-block;
  padding: 0.8em 0;
  border-bottom: 1px solid var(--color-brand01);
  color: inherit;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
}

/*
sns
*/

.l-menu-sns {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.l-menu-sns li {
  font-size: 24px;
  padding: 0 0.5em;
}
.l-menu-sns li a {
  color: var(--color-brand02);
  display: inline-block;
  width: 1em;
  text-align: center;
  text-decoration: none;
}

/*
cv
*/

.l-menu-cv {
}
.l-menu-cv-item {
  flex: 1;
  aspect-ratio: 100 / 60;
  margin-right: 1px;
}
.l-menu-cv-item a {
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: none;
}
.l-menu-cv-img {
  width: 30%;
  margin: 0 auto;
}
.l-menu-cv-img img {
  transition: 0.1s;
}
.l-menu-cv-text {
  font-size: 12px;
  font-family: var(--font-family-gothic-en01);
  padding-top: 0.3em;
  transition: 0.4s;
}
.l-menu-cv-text span {
  display: inline-block;
  padding: 0.1em 0;
  position: relative;
}
.l-menu-cv-text span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-base);
  scale: 1 1;
  transform-origin: right;
}

.l-menu-cv-item.-reserve a {
  background-color: var(--color-brand04);
}
.l-menu-cv-item.-access a {
  background-color: var(--color-brand01);
}


/***********
video
************/

.l-video {
  display: block;
  width: 100%;
}

/***********
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%;
  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 {
    font-size: 85%;
    transform: translate(-50%, 35px);
  }
  .l-movie a::after {
    background-size: 60px 60px;
  }
}

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

.l-heading{
  text-align: center;
  font-size: clamp(1.47rem,3vw, 2.39rem);
  padding-bottom: 1.5em;
}
.l-heading-subTitle{
  font-family: var(--font-family-gothic-en03);
  font-weight: 400;
  font-size: 170%;
  letter-spacing: 0.02em;
  color: var(--color-brand01);
}
.l-heading-subTitle span {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
}

.l-heading-subTitle span::before,
.l-heading-subTitle span::after {
  content: "";
  display: block;
  width: 3em;
  height: 1px;
  border-bottom: 1px dashed var(--color-brand01);
  position: absolute;
  top: 50%;
  translate: 0 -45%;
}
.l-heading-subTitle span::before {
  right: 100%;
}
.l-heading-subTitle span::after {
  left: 100%;
}

.l-heading-title{
  color: var(--color-brand01);
  font-size: max(60%,14px);
}

.l-heading-text{
  font-size: clamp(1.08rem,1.4vw, 1.31rem);
  line-height: 2;
  padding-top: 1.5em;
}

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

  .l-heading{
    font-size: clamp(1.31rem,5vw, 2rem);
  }
  .l-heading-subTitle span::before,
  .l-heading-subTitle span::after {
    width: 2em;
  }
}
@media screen and (max-width:520px) {

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

}

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

.l-headline{
  text-align: center;
  font-size: clamp(1.7rem,3vw, 2.39rem);
  padding-bottom: 1.5em;
  line-height: 1.4;
  position: relative;
}
.l-headline-title{
  color: var(--color-brand01);
}
.l-headline-subTitle{
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  color: var(--color-brand01);
  position: relative;
  line-height: 1.3;
  font-size: max(50%,10px);
  padding-top: 0.7em;
}
.l-headline-text{
  font-size: clamp(1.08rem,1.4vw, 1.31rem);
  line-height: 2;
  padding-top: 1.5em;
}

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

  .l-headline{
    font-size: clamp(1.54rem,5vw, 2rem);
  }
}

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

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

}

/***********
largeHeading
************/

.l-largeHeading {
  font-size: clamp(1.31rem,2.5vw, 2.39rem);
  margin-bottom: 1em;
}
.l-largeHeading-title {
  font-weight: 700;
  color: var(--color-brand04);
  line-height: 1.4;
}
.l-largeHeading-subTitle {
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  font-size: max(50%,10px);
  color: var(--color-brand01);
  position: relative;
  line-height: 1.3;
  margin-top: 0.4em;
}


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

  .l-largeHeading {
    font-size: clamp(1.39rem,5vw, 1.8rem);
    margin-bottom: 1em;
  }

}


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

.l-title{
  font-size: clamp(1.24rem,2.5vw, 1.85rem);
  line-height: 1.4;
  background-color: rgba(52, 120, 179, 0.08);
  border-left: 5px solid var(--color-brand04);
  color: var(--color-brand04);
  margin-bottom: 1.2em;
  padding: 0.7em 1em ;
  position: relative;
}
.l-subTitle{

}
.l-minTitle{

}

/***********
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-bgColor04{
  background-color: var(--color-brand01);
}
.l-bgColor05{
  background: linear-gradient(to bottom, #c1d9f3 0%, #fbe8ec 30% ,#fbe8ec 60% ,#3171af 100%);
}
.l-bgColor06{
  background: linear-gradient(to bottom, #001670 0%,#80529b 30%, #9d261e 90% ,#0d0a1d 100%);
}


/* エディタでは使わない */
.l-bgColor07{
  background: linear-gradient(to bottom, transparent 0%, #c1d9f3 50% ,#fbe8ec 100%);
}

.l-bgColor04 .l-heading,
.l-bgColor04 .l-heading-title,
.l-bgColor04 .l-heading-subTitle,
.l-bgColor06 .l-heading,
.l-bgColor06 .l-heading-title,
.l-bgColor06 .l-heading-subTitle{
  color: var(--color-base);
}
.l-bgColor04 .l-heading-subTitle span::before,
.l-bgColor04 .l-heading-subTitle span::after,
.l-bgColor06 .l-heading-subTitle span::before,
.l-bgColor06 .l-heading-subTitle span::after{
  border-color: var(--color-base);
}


.l-bgColor04 .l-headline,
.l-bgColor04 .l-headline-title,
.l-bgColor04 .l-headline-subTitle,
.l-bgColor06 .l-headline,
.l-bgColor06 .l-headline-title,
.l-bgColor06 .l-headline-subTitle{
  color: var(--color-base);
}
.l-bgColor04 .l-headline-subTitle,
.l-bgColor06 .l-headline-subTitle{
  opacity: 0.6;
}

/***********
newsCard
************/

.l-newsCard {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -6em;
  font-size: clamp(116%,1vw, 139%);
}
.l-newsCard li {
  width: 30.3%;
  margin-left: 3%;
  margin-bottom: 6em;
}
.l-newsCard li a {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: inherit;
  padding-left: 2em;
  position: relative;
}
.l-newsCard-img {
}
.l-newsCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.l-newsCard-inner {
  padding-top: 1em;
}
.l-newsCard-time {
  display: block;
  position: absolute;
  left: 1.2em;
  top: 0.2em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en02);
  font-weight: 700;
  font-size: 85%;
  line-height: 1;
  color: var(--color-brand03);
  transform-origin: left top;
  rotate: 90deg;
}

.l-newsCard-title {
  font-weight: 500;
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


/*
carousel
*/

.carouselWrapper {
  width: 100vw;
}
.carouselWrapper-inner {
  translate: 40vw 0;
  transition: translate 1s ease 0.2s , opacity 0.7s ease 0.2s;
  opacity: 0;
  overflow: hidden;
}
.carouselWrapper-inner.is-show {
  translate: 0 0;
  opacity: 1;
}

.l-newsCard.-carousel .slick-list {
  overflow: visible !important;
}

.l-newsCard.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  padding-bottom: 5em;
}
.l-newsCard.-carousel li {
  width: auto;
  margin: 0;
}
.l-newsCard.-carousel li a {
  width: clamp(300px,24vw, 600px);
  margin-right: 3vw;
}
.l-newsCard.-carousel .l-newsCard-title {
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*
slick
*/


.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 76px;
  height: 76px;
  background-color: #e4e4e4;
  color: var(--color-brand03);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
}
.carouselWrapper .slick-next{
  left: 100px;
}
.carouselWrapper .slick-prev{
}

.carouselWrapper .slick-next:hover,
.carouselWrapper .slick-prev:hover{
  background-color: var(--color-brand01);
  color: var(--color-base);
}

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

  .l-newsCard {
    font-size: clamp(1.08rem,1.2vw, 1.24rem);
  }

}

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

  .l-newsCard {
    margin-bottom: -4em;
  }
  .l-newsCard li {
    width: 47%;
    margin-bottom: 4em;
  }
  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 4vw;
    margin-left: -4.6vw;
    margin-right: -4.2vw;
  }
  .carouselWrapper-inner {
    translate: 50vw 0;
    transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
    opacity: 0;
    overflow: visible;
  }
  .carouselWrapper-inner.is-show {
    translate: 0 0;
    opacity: 1;
  }

  .l-newsCard.-carousel {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }
  .l-newsCard.-carousel li {
  }
  .l-newsCard.-carousel li a {
    width: 220px;
    margin-right: 30px;
  }
  .l-newsCard.-carousel .l-newsCard-inner {
  }

  .l-newsCard.-carousel .l-newsCard-title {
    font-size: 93%;
  }
  .l-newsCard.-carousel .l-newsCard-area {
    font-size: 77%;
  }

  .l-newsCard:not(.-carousel) .l-newsCard-inner {
  }
  .l-newsCard:not(.-carousel) .l-newsCard-cat {
    padding: 0.4em 1.4em;
    font-size: 100%;
  }
  .l-newsCard:not(.-carousel) .l-newsCard-title {
  }
}

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

  .l-newsCard {
    display: block;
    margin-left: 0;
    margin-bottom: -3em;
  }
  .l-newsCard li {
    width: auto;
    margin-left: 0;
    margin-bottom: 3em;
  }

  .l-newsCard:not(.-carousel) .l-newsCard-img img {
    aspect-ratio: 16 / 8;
  }
  .l-newsCard:not(.-carousel) .l-newsCard-title {
  }

}


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

.l-pageList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -5em;
}
.l-pageList li {
  width: 47%;
  margin-bottom: 5em;
}
.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 / 8;
}
.l-pageList-inner {
  font-size: clamp(100%,1vw, 124%);
  padding-top: 1em;
}
.l-pageList-heading {
  padding-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.l-pageList-heading::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: "\f35a";
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.6em;
  transition: 0.2s;
}
body.is-pc .l-pageList li a:hover .l-pageList-heading::after {
}

.l-pageList-subTitle {
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  font-size: max(85%,10px);
  color: var(--color-brand01);
  padding-top: 0.5em;
}



.l-pageList-title {
  font-size: 154%;
  line-height: 1.35;
}
.l-pageList-text {
  line-height: 1.7;
}


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

  .l-pageList {
    display: block;
    margin-bottom: -4em;
  }
  .l-pageList li {
    width: auto;
    margin-bottom: 4em;
  }

  .l-pageList-inner {
    font-size: clamp(116%,3vw, 131%);
    padding-top: 1em;
  }
  .l-pageList-heading {
    padding-bottom: 1em;
    padding-right: 3em;
  }
  .l-pageList-heading::after {
    scale: 0.9;
  }

  .l-pageList-subTitle {
    font-size: 93%;
    padding-bottom: 0.2em;
  }
  .l-pageList-title {
    font-size: 154%;
    line-height: 1.4;
  }
  .l-pageList-text {
    line-height: 1.8;
  }
}


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

[data-fade] {
  opacity: 0;
  transition: 1s;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(50px);
}
[data-fade="fade-up"].is-show {
  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;
  }

}
