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

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #222;
  --color-brand01: #004aaf;
  --color-brand02: #0862df;
  --color-primary01: #009955;
  --color-secondary01: #e09810;
  --color-accent01: #ec0000;
  --color-accent02: #ff0000;
  --color-accent03: #cd0000;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #eee;
  --color-sub04: #d1e0f5;
  --color-sub05: #edf2f9;
  --color-sub06: #e5edf7;


  --header-height: 5.5em;
  --header-height-small: 3.5em;

  --padding-side: min(3vw,30px);
  --padding-main: min(12vw,7em);
  --padding-small: min(8vw,4em);
  --padding-large: min(15vw,10em);

  --rounded-main: 0.8em;
  --rounded-small: 0.5em;
  --rounded-large: 1.2em;

  --lineheight-main: 1.9;
}

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

  :root {
    --header-height: 4em;

    --padding-main: min(16vw,5em);
    --padding-small: min(12vw,3em);
    --padding-large: min(22vw,8em);

    --rounded-main: 0.6em;
    --rounded-small: 0.3em;
    --rounded-large: 1em;

    --lineheight-main: 1.8;

  }

}

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

  :root {
    --header-height: 52px;
    --header-height-small: 52px;
  }

}




/***********
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);
  font-feature-settings: "palt";
}
html {
  font-size: clamp(15px, calc(10px + 0.5vw), 18px);
}


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 (min-width:1921px) {
  html {
    font-size: clamp(15px, calc(3.23px + 0.769vw), 22px);
  }
}
@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 {
  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: 0.8rem;
  padding-bottom: 2em;
  clear: both;
}
.post .wp-caption img {
  margin-top: 0;
  margin-bottom: 0;
}
.post .wp-caption + .wp-caption {
  margin-top: 4em;
}
.wp-caption-text {
  padding-top: 0.8em;
  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(0.6rem,2vw, 0.8rem);
    line-height: 1.5;
  }

}

/***********
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;
  transition:
  translate 0.5s ease,
  filter 0.5s ease;
}

body.is-menu-open .l-wrapper {
  translate:  -20% 0;
}

.l-contents{
}

/***********
column
************/

.l-column{
  display: flex;
  justify-content: space-between;
}

.l-column-first{
  width: 68%;
}

.l-column-second{
  width: 25%;
}

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

  .l-column{
    display: block;
  }

  .l-column-first{
    width: auto;
  }

  .l-column-second{
    width: auto;
  }

}


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

.l-fullwidth {
  width: 100dvw;
  margin-inline: calc(50% - 50dvw);
}

.l-base {
  width: auto;
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}

.l-base-full {
  width: auto;
  padding-inline: var(--padding-side);
}

.l-base-wide {
  width: auto;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}

.l-base-xwide {
  width: auto;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}

.l-base-xxwide {
  width: auto;
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}

.l-base-small {
  width: auto;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}


.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);
}


.flexibleWrapper [class^="l-base"] {
  width: auto !important;
  max-width: initial !important;
  padding-inline: 0 !important;
}
.flexibleWrapper > section.l-block:first-child {
  padding-top: var(--padding-small);
}


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

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

}

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

  .l-base-full {
    padding-inline: var(--padding-side);
  }

}


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

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

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

}

/***********
l-section
************/

.l-section {
  padding-bottom: var(--padding-main);
}
.l-section.-small {
  padding-bottom: var(--padding-small);
}
.l-section:last-child {
  padding-bottom: 0;
}
.l-section:has(>.l-heading) ,
.l-section:has(>.l-headline) ,
.l-section:has(>.l-borderTitle) ,
.l-section:has(>.l-largeTitle) ,
.l-section:has(>.l-title) ,
.l-section:has(>.l-subTitle) ,
.l-section:has(>.l-minTitle) ,
.l-section:has(>.catNavi) {
  padding-bottom: 0;
}


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

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

/***********
l-hoverUnderline
************/

.l-hoverUnderline {
  padding-bottom: 0.2em;
  background: linear-gradient(#000, #000) 0 100% / 0 1px no-repeat;
  transition: background 0.3s;
  text-decoration: none;
}
body.is-pc .l-hoverUnderline:hover {
  background-size: 100% 1px;
}

/*
左から右に抜ける
.l-hoverLine {
  background: linear-gradient(0deg, #000, #000) no-repeat right bottom / 0 1px;
  transition: background-size 350ms;
}
.l-hoverLine:where(:hover, :focus-visible) {
  background-size: 100% 1px;
  background-position-x: left;
}

*/
/***********
l-hoverLine
************/

.l-hoverLine {
  background: linear-gradient(#000,#000) 100% 100%/100% 2px no-repeat;
  text-decoration: none;
  color: #000;
}
body.is-pc .l-hoverLine:hover {
 animation:anim-hoverLine .8s cubic-bezier(.23,1,.32,1) 0s
}

@keyframes anim-hoverLine {
 0% {
  background-size:100% 2px;
  background-position:100% 100%
 }
 50% {
  background-size:0 2px;
  background-position:100% 100%
 }
 51% {
  background-size:0 2px;
  background-position:0 100%
 }
 to {
  background-size:100% 2px;
  background-position:0 100%
 }
}

/***********
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%;
}

/***********
l-flip
************/
/*
<span class="l-flipUp" data-name="inview"><span>テキスト</span></span>
*/

.l-flipUp{
  display: inline-flex;
  overflow: hidden;
}
.l-flipUp > span{
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.5s;
  transition-delay: 0.2s;
  transform: translateY(100%);
  vertical-align: middle;
}
.l-flipUp.is-show > span{
  transform: translateY(0%);
}

/***********
l-flip
************/

.l-flip{
  display: flex;
  position: relative;
  text-align: center;
  overflow: hidden;
  line-height: 1;
}
.l-flip > span{
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.1s;
}
.l-flip > span::after{
  content: attr(data-text)"";
/*  font-size: 85%;*/
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 100%;
}
a:hover .l-flip > span {
  transform: translateY(-100%);
  white-space: nowrap;
}

/***********
l-mask
************/

.l-mask {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%); 左起点*/
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  vertical-align: middle;
}
.is-show .l-mask,
.is-show.l-mask {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%);*/
}
.l-mask.-full {
  width: 100%;
}

.l-mask-down {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-up {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-left {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.is-show.l-mask-down{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-up{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-left{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

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

.l-fontMedium {
  font-weight: 500;
}
.l-fontSemiBold {
  font-weight: 600;
}
.l-fontBold {
  font-weight: 700;
}
.l-fontBlack {
  font-weight: 900;
}

.l-fontFamily-gothic-en {
  font-family: var(--font-family-gothic-en);
}


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

.l-textMain{
  line-height: var(--lineheight-main);
}
.l-textMain.-large{
  font-size: 1.1rem;
}
.l-textMain.-small{
  font-size: 0.9rem;
}
.l-textLead{
  line-height: var(--lineheight-main);
  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 {
  padding-left: 1em;
  position: relative;
}
.l-list-dot li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
}

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

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

  .l-textLead,
  .l-textMain,
  .l-textMain.-small{
    font-size: 1rem;
    line-height: var(--lineheight-main);
  }
}

@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-linkHalf {
  max-width: 834px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}
.l-linkHalf-item {
  flex: 1;
  max-width: 50%;
  padding: 5px 10px;
}

.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-linkHalf {
    display: block;
  }
  .l-linkHalf-item {
    max-width: 100%;
    padding: 0 0 10px ;
  }

  .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%;
    text-align: center;
  }

  .l-linkCard .l-btn {
    display: inline-flex;
    width: auto;
    min-width: 16em;
    max-width: initial;
  }

}

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

.l-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 16em;
  min-height: 4em;
  padding: 1em 3.5em 1em 3em;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  text-decoration: none !important;
  background-color: var(--color-brand01);
  color: var(--color-base);
  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;
  color: var(--color-base);
  content: "\f35a";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  transition: color 0.2s ease;
}
body.is-pc .l-btn:hover {
  background-color: var(--color-brand02);
  color: var(--color-base);
}


.l-btn.-accent03 {
  background-color: var(--color-accent03);
  color: var(--color-base);
}
body.is-pc .l-btn.-accent03:hover {
  background-color: var(--color-accent02);
}


.l-btn.-white {
  background-color: var(--color-base);
  color: var(--color-main);
}

.l-btn.-back {
  padding-right: 3em;
}
.l-btn.-back::after {
  content: "\f359";
  right: auto;
  left: 1em;
  top: 50%;
}

.l-btn[target="_blank"]::after {
  content: "\f08e";
}

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

  .l-btn {
    min-width: 15em;
    min-height: 3.6em;
    padding: 1em 2.5em ;
    font-size: 1rem;
  }
  .l-btn::after {
    right: 0.8em;
  }

}




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

.l-more {
  color: var(--color-brand01);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}
.l-more-icon {
  font-size: 60%;
  width: 5.5em;
  height: 5.5em;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.l-more-icon i {
  position: relative;
  z-index: 2;
  font-size: 124%;
}
.l-more-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-brand01);
  transform: scale(0.9);
  transition: 0.2s;
}
body.is-pc .l-more:hover {
  color: var(--color-brand02);
}
body.is-pc .l-more:hover .l-more-icon::before {
  transform: scale(1);
  background-color: var(--color-brand02);
}
.l-more > span {
  display: inline-block;
  padding-left: 0.6em;
}



.l-more.-reverse {
  flex-direction: row-reverse;
}
.l-more.-reverse  > span {
  padding-left: 0;
  padding-right: 0.6em;
}

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

  .l-more-icon {
    width: 4.5em;
    height: 4.5em;
  }
  .l-more > span {
    padding-left: 0.3em;
  }
}


/***********
header
************/

.l-header {
  height: var(--header-height);
  background-color: #fffa;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 990;
  width: 100%;
  padding-left: 1.5em;
  padding-right: calc(var(--header-height) + 20px);
  transition:
    background-color 0.4s ease,
    height 0.4s ease;
}
body:not(.is-fixed) .l-header,
body.is-pc .l-header:hover {
  background-color: var(--color-base);
}
body.is-fixed .l-header {
  height: var(--header-height-small);
}

.l-header-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.l-header-logo {
  width: 16em;
}

.l-header-block {
  height: 100%;
  display: flex;
  align-items: center;
}

/*
navi
*/

.l-header-navi {
  font-size: 0.9rem;
  padding-right: 2em;
}
.l-header-navi button {
  display: none !important;
}

.l-header-navi-list {
  display: flex;
  align-items: center;
  gap: 0 1.8em;
}

.l-header-navi-list > li {
  position: relative;
}

.l-header-navi-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-feature-settings: "palt";
  padding: 1em 0;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.l-header-navi-list > li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.2em;
  background: var(--color-brand01);
  transform-origin: right;
  transition: scale 0.3s ease;
  scale: 0 1;
}

body.is-pc .l-header-navi-list > li:hover > a {
  translate: 0 -1px;
  color: var(--color-brand01);
}
body.is-pc .l-header-navi-list > li:hover::after {
  scale: 1 1;
  transform-origin: left;
}

/*
child
*/

.l-header-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9;
  min-width: 15em;
  margin-left: -1em;
  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-bottom: 1px;
}
.l-header-navi-list ul li:not(:last-child) {
}
.l-header-navi-list ul a {
  display: block;
  color: var(--color-brand01);
  font-size: 95%;
  font-weight: 500;
  background-color: #eaf1ff;
  text-decoration: none;
  position: relative;
  padding: 1em 2em 1em 2.5em;
  line-height: 1.4;
  white-space: nowrap;
}
.l-header-navi-list ul 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: "\f35a";
  position: absolute;
  left: 1.2em;
  top: 1.25em;
  scale: 0.9;
}
.l-header-navi-list ul a::after {
  content: "";
  display: block;
  width: calc(100% - 1.5em);
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-base);
  transform-origin: right;
  transition: scale 0.3s ease;
  scale: 0 1;
}

body.is-pc .l-header-navi-list ul a:hover::after {
  scale: 1 1;
  transform-origin: left;
}
body.is-pc .l-header-navi-list ul a:hover {
  background-color: var(--color-sub04);
}

/*
lang
*/

.l-header-lang {
  display: flex;
}
.l-header-lang-icon {
  padding-right: 0.3em;
}
.l-header-lang-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0;
  width: 7em;
  outline: none !important;
  cursor: pointer;
}

/*
search
*/

.l-header-search {
  background-color: var(--color-accent01);
  color: var(--color-base);
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 2.5em;
  padding: 0 1.2em;
  font-size: 0.9rem;
  margin-right: 0.6em;
}
.l-header-search-title {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 0.5em;
}
.l-header-search-form {
  position: relative;
}
.l-header-search-form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid var(--color-base);
  width: 9em;
  padding-right: 1.5em;
  color: var(--color-base);
  font-family: var(--font-family-gothic);
  outline: none !important;
}
.l-header-search-form input::placeholder {
  opacity: 0.6;
  color: var(--color-base);
}
.l-header-search-form button[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none !important;
  box-shadow: none;
  border-radius: 0;
  position: absolute;
  right: 0;
  cursor: pointer;
}

/*
cv
*/

.l-header-cv {
}
.l-header-cv-btn {
  display: flex;
  align-items: center;
  height: 2.5em;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 1.2em;
  text-decoration: none;
  border-radius: 4px;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.l-header-cv-btn i {
  padding-right: 0.5em;
  scale: 1.05;
  translate: 0 5%;
}
body.is-pc .l-header-cv-btn:hover {
  background-color: var(--color-brand02);
}


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

  .l-header {
    padding-left: 1em;
    padding-right: calc(var(--header-height) + 10px);
  }
  .l-header-logo {
    width: 14em;
  }

  /*
  navi
  */

  .l-header-navi {
    font-size: 0.85rem;
    padding-right: 2em;
  }
  .l-header-navi-list {
    gap: 0 1.2em;
  }

  /*
  lang
  */

  .l-header-lang-form select {
    font-size: 0.8rem;
  }

  /*
  search
  */

  .l-header-search {
    font-size: 0.8rem;
    padding: 0 1em;
  }
  .l-header-search-form input {
    width: 8em;
  }

  /*
  cv
  */

  .l-header-cv-btn {
    font-size: 0.8rem;
    padding: 0 1em;
  }

}

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

  .l-header-navi ,
  .l-header-lang  {
    display: none;
  }

}

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


  .l-header {
    height: var(--header-height);
    position: absolute;
  }

  .l-header-logo {
    width: 200px;
  }

  .l-header-search ,
  .l-header-cv  {
    display: none;
  }

}

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

.l-navi {
}

.l-navi-list {
}

.l-navi-list li {
}

.l-navi-list a {
}

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

.l-footer {
  padding-top: var(--padding-main);
  padding-bottom: var(--padding-small);
  overflow: hidden;
}

.l-footer-copyright {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding-top: var(--padding-small);
}

.l-footer-upper {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1em 2em;
  padding-bottom: 100px;
}
.l-footer-upper-inner {
}
.l-footer-heading {
  font-size: 1.1rem;
  color: var(--color-brand01);
}
.l-footer-heading-subTitle {
  letter-spacing: 0.12em;
  font-weight: 700;
}
.l-footer-heading-title {
  position: relative;
  font-size: 300%;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  letter-spacing: -0.02em;
  display: flex;
  gap: 0 0.2em;
  line-height: 1;
  position: relative;
}
.l-footer-heading-wheel {
  position: absolute;
  left: -0.5em;
  top: 0.5em;
}
.l-footer-heading-wheel .l-wheel {
  translate: -50% -50%;
}

.l-footer-upper-link {
}

.l-footer-external {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
.l-footer-external li {
}
.l-footer-external li a{
  display: inline-block;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 5px;
  padding: 1em 4em 1em 1.8em;
  text-decoration: none;
  line-height: 1.3;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.l-footer-external 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: "\f08e";
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
}
body.is-pc .l-footer-external li a:hover {
  background-color: var(--color-brand02);
}
.l-footer-external li a.-accent{
  background-color: var(--color-accent01);
}
body.is-pc .l-footer-external li a.-accent:hover {
  background-color: var(--color-accent02);
}

/*
container
*/

.l-footer-container {
  display: flex;
  justify-content: space-between;
  gap: 0 4%;
}
.l-footer-inner {
  width: 48%;
}
.l-footer-sitemap {
  max-width: 34em;
}


.l-footer-logo {
  max-width: 20em;
}
.l-footer-address {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  padding-top: 0.8em;
}
.l-footer-calendar {
  padding-top: 2em;
}

.l-footer-banner {
  padding-top: 3em;
  gap: 10px 10px;
  display: flex;
  flex-wrap: wrap;
}
.l-footer-banner li {
  max-width: 302px;
}
.l-footer-banner li a {
  display: inline-block;
  border: 1px solid var(--color-sub04);
  box-shadow: 0 0 8px #0862df22;
}
.l-footer-banner li img {
  vertical-align: bottom;
}
body.is-pc .l-footer-banner li a:hover {
  border-color: #0862df88;
}


/*
navi
*/

.l-footer-navi {
  font-size: 1.1rem;
  display: flex;
  gap: 0 2em;
}
.l-footer-navi-box {
}
.l-footer-navi-list {
}
.l-footer-navi-list a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  position: relative;
}
.l-footer-navi-list a:hover {
  text-decoration-color: inherit;
}
.l-footer-navi-list > li{
}
.l-footer-navi-list > li > a{
  font-weight: 500;
  color: var(--color-brand01);
  padding: 0.2em 0 0.2em 1.2em;
}
.l-footer-navi-list > 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: "\f35a";
  position: absolute;
  left: 0;
  top: 0.55em;
  scale: 0.75;
}
.l-footer-navi-list > li > a.-small {
  font-size: 90%;
}

.l-footer-navi-list ul{
  padding: 0.2em 0 1em 1em;
}
.l-footer-navi-list ul > li {
}
.l-footer-navi-list ul > li > a{
  display: inline-block;
  font-size: 80%;
  padding: 0.2em 0 0.2em 1em;
}
.l-footer-navi-list ul > li > a::before{
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 1.1em;
}

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

  .l-footer {
  }

  .l-footer-copyright {
    font-size: 0.65rem;
  }

  .l-footer-upper {
    display: block;
    padding-left: 1em;
    padding-bottom: 50px;
  }
  .l-footer-upper-inner {
  }
  .l-footer-heading {
    font-size: 1;
  }
  .l-footer-heading-subTitle {
  }
  .l-footer-heading-title {
    font-size: clamp(1.5rem,9.5vw, 4rem);
  }
  .l-footer-heading-wheel {
    position: absolute;
    left: -0.5em;
    top: 0.5em;
  }
  .l-footer-heading-wheel .l-wheel {
    translate: -50% -50%;
  }

  .l-footer-upper-link {
    padding-top: 1em;
  }

  .l-footer-external {
    display: flex;
    gap: 0.2em;
  }
  .l-footer-external li {
  }
  .l-footer-external li a{
    padding: 1em 2.5em 1em 0.8em;
    font-size: 0.75em;
  }

  /*
  container
  */

  .l-footer-container {
    display: block;
  }
  .l-footer-inner {
    width: auto;
  }
  .l-footer-sitemap {
    max-width: initial;
    padding-top: 4em;
  }


  .l-footer-logo {
    max-width: 20em;
  }
  .l-footer-address {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .l-footer-calendar {
    padding-top: 2em;
  }

  .l-footer-banner {
    padding-top: 2em;
    gap: 5px 5px;
  }
  .l-footer-banner li {
    max-width: calc(50% - 5px);
  }
  .l-footer-banner li a {
    display: inline-block;
    border: 1px solid var(--color-sub04);
    box-shadow: 0 0 8px #0862df22;
  }
  .l-footer-banner li img {
    vertical-align: bottom;
  }
  body.is-pc .l-footer-banner li a:hover {
    border-color: #0862df88;
  }


  /*
  navi
  */

  .l-footer-navi {
    font-size: 1rem;
    gap: 0 1em;
  }
  .l-footer-navi-box {
    max-width: 50%;
  }

}

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

.l-jumpTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  transform: translateY(200px);
  transition: 0.5s;
}
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;
  font-size: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  color: var(--color-base);
  background-color: var(--color-brand01);
}
body.is-pc .l-jumpTop a:hover{
  background-color: var(--color-brand02);
}


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

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

}


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

.l-menu{
  position: fixed;
  width: 100%;
  height: 100lvh;
  z-index: 9998;
  right: -100vw;
  top: 0;
  opacity: 0;
  transition: right 0.5s ease, opacity 0s linear 0.5s;
  background-color: var(--color-base);
  box-shadow: 0 0 10em #0002;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.is-menu-open .l-menu{
  opacity: 1;
  right: 0;
  transition: right 0.5s ease, opacity 0s linear 0s;
}
.is-menu-open .l-menu-close{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 9990;
}



.l-menu-trigger {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  transition: 0.2s;
}
.l-menu-btn {
  display: block;
  position: relative;
  width: var(--header-height);
  height: var(--header-height);
  cursor: pointer;
  background: none;
  color: var(--color-main);
  border: none;
  -webkit-tap-highlight-color:transparent;
  transition: height 0.4s ease;
}
body.is-fixed .l-menu-btn {
  height: var(--header-height-small);
}
.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 25%;
  top: 40%;
  width: 50%;
  height: 2px;
  background-color: var(--color-main);
  border-radius: 3px;
  transition: 0.3s;

  transition: margin 0.3s ease 0.3s, transform 0.3s ease 0s, width 0.3s ease 0s, left 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 p {
  position: absolute;
  left: 0;
  top: calc(50% + 5px);
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
}
.l-menu-btn p::after {
  content: "MENU";
  display: block;
  letter-spacing: 0.1em;
  margin-left: 0.08em;
}
.l-menu-btn.is-active p::after {
  content: "CLOSE";
}

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

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

  .l-menu{
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .l-menu-btn span {
    left: 30%;
    top: 40%;
    width: 40%;
  }
  .l-menu-btn span:nth-child(2) {
    margin-top: -7px;
  }
  .l-menu-btn span:nth-child(3) {
    margin-top: 7px;
  }

  .l-menu-btn p {
    bottom: 18%;
    font-size: 10px;
  }
  .l-menu-btn p::after {
    letter-spacing: 0.12em;
    margin-left: -0.12em;
  }

}

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

  .l-menu-trigger {
    position: fixed;
  }
}

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

  .l-menu-btn {
    width: calc( var(--header-height) + 4px);
  }
  .l-menu-btn span {
    left: 25%;
    width: 50%;
  }
  .l-menu-btn span:nth-child(2) {
    margin-top: -6px;
  }
  .l-menu-btn span:nth-child(3) {
    margin-top: 6px;
  }

  .l-menu-btn p {
    bottom: 12%;
    font-size: 10px;
  }
  .l-menu-btn p::after {
    letter-spacing: 0.08em;
    margin-left: -0.08em;
  }

}

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

.l-menu-wrapper {
  padding-top: calc(var(--header-height) + 0px);
  padding-bottom: 10em;
  background: url(../../img/bg_drawing07.png) no-repeat center bottom;  background-size: clamp(640px,100%, 110em);
}
.l-menu-container {
  position: relative;
}
.l-menu-logo {
  width: clamp(15em,40vw, 22em);
  padding-bottom: 2em;
}
.l-menu-heading {
  font-size: 0.9rem;
  color: var(--color-brand01);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em 1em;
  margin-bottom: 2em;
}

.l-menu-heading-subTitle {
  font-weight: 500;
  letter-spacing: 0.1em;
}
.l-menu-heading-title {
  position: relative;
  font-size: 200%;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  letter-spacing: -0.02em;
  display: flex;
  gap: 0 0.2em;
  line-height: 1;
  position: relative;
}
.l-menu-heading-wheel {
  position: absolute;
  left: -1em;
  top: 0.5em;
  pointer-events: none;
}
.l-menu-heading-wheel .l-wheel {
  translate: -50% -50%;
  scale: -1 1;
}



.l-menu-tel {
  position: absolute;
  right: 0;
  top: 0;
  border-left: 2px dotted #0008;
}
.l-menu-tel a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-left: 3rem;
}
.l-menu-tel-num {
  font-size: clamp(1.5rem,3vw, 2.2rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.l-menu-tel-num::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: "\f2a0";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 100%;
  top: 50%;
  translate: 0 -50%;
  scale: 0.55;
}
.l-menu-tel-text {
  font-size: 0.85rem;
  font-weight: 450;
  line-height: 1.25;
}
.l-menu-tel-text span {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 120%;
  padding-right: 0.2em;
  padding-left: 0.3em;
}


/*
search
*/

.l-menu-search {
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 4px;
  display: none;
  align-items: center;
  height: 2.5em;
  padding: 0 1.2em;
  font-size: 1.1rem;
  margin-bottom: 1em;
}
.l-menu-search-title {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1em;
}
.l-menu-search-form {
  position: relative;
}
.l-menu-search-form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid var(--color-base);
  width: 100%;
  padding-right: 1.5em;
  color: var(--color-base);
  font-family: var(--font-family-gothic);
  font-size: 16px;
  outline: none !important;
}
.l-menu-search-form input::placeholder {
  opacity: 0.6;
  color: var(--color-base);
}
.l-menu-search-form button[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none !important;
  box-shadow: none;
  border-radius: 0;
  position: absolute;
  right: 0;
  cursor: pointer;
}


/*
navi
*/

.l-menu-sitemap {
  display: flex;
  justify-content: space-between;
  gap: 0 1em;
}
.l-menu-sitema-box {
  flex-grow: 1;
}

.l-menu-navi {
  font-size: 1.1rem;
}
.l-menu-navi button {
  display: none;
}
.l-menu-navi a{
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-menu-navi a:hover{
  color: var(--color-brand01);
  text-decoration-color: inherit;
}

.l-menu-navi > li{
  min-width: clamp(10em,25vw, 14em);
}
.l-menu-navi > li > a{
  font-weight: 600;
  padding: 0.2em 0 0.4em 1.3em;
  position: relative;
}
.l-menu-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: "\f35a";
  position: absolute;
  left: 0;
  top: 0.5em;
  scale: 0.75;
  color: var(--color-brand01);
}

.l-menu-navi ul{
  font-size: 85%;
  padding-bottom: 1.5em;
}
.l-menu-navi ul li{
}
.l-menu-navi ul li a{
  font-weight: 450;
  padding: 0.2em 0 0.2em 1.6em;
  letter-spacing: 0.05em;
  position: relative;
}
.l-menu-navi ul li a::before{
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-dark01);
  position: absolute;
  left: 0.5em;
  top: 1em;
}

.l-menu-navi ul.-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 40em;
  gap: 0 1em;
}
.l-menu-navi ul.-grid li{
  min-width: 15em;
}

.l-menu-navi-child {
}


.l-menu-external {
  padding-top: 0.5em;
}
.l-menu-external li {
}
.l-menu-external li a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  font-weight: 450;
  font-size: 95%;
  padding: 0.2em 0 0.2em 1.6em;
  letter-spacing: 0.05em;
  position: relative;
}
.l-menu-external 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: "\f08e";
  position: absolute;
  left: 0.2em;
  top: 0.5em;
  scale: 0.75;
  color: var(--color-brand01);
}
body.is-pc .l-menu-external a:hover{
  color: var(--color-brand01);
  text-decoration-color: inherit;
}

/*
cvBanner
*/

.l-menu-cvBanner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 2%;
  padding-top: 1.5em;
}

.l-menu-cvBanner li {
}
.l-menu-cvBanner li a {
  background: url(../../img/bg_drawing01.png) repeat 0 -100px / 1200px auto;
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: relative;
  display: flex;
  justify-content: end;
}
.l-menu-cvBanner li:nth-child(even) a {
  background-position: -200px 100px
}
body.is-pc .l-menu-cvBanner li a:hover {
  background-color: var(--color-brand02);
}
.l-menu-cvBanner-img {
  width: 48%;
}
.l-menu-cvBanner-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-menu-cvBanner-text {
  font-size: clamp(0.9rem,2vw, 1.1rem);
  font-weight: 600;
  padding-left: 2.5em;
  letter-spacing: 0.05em;
}
.l-menu-cvBanner-text::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: 1.2em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
}


.l-menu-externalBanner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em 1.5%;
  padding-top: 1.5em;
}
.l-menu-externalBanner a:hover {
  filter: brightness(110%);
}

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

  .l-menu-wrapper {
    padding-top: 0;
    padding-bottom: 10em;
  }
  .l-menu-container {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
  }
  .l-menu-logo {
    height: var(--header-height);
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    margin-bottom: 1em;
  }
  .l-menu-heading {
    font-size: 0.9rem;
    margin-left: 1rem;
    margin-bottom: 1em;
  }
  .l-menu-heading-title {
    font-size: clamp(1.5rem,8vw, 2.5rem);
  }


  .l-header {
    height: var(--header-height);
    position: absolute;
  }

  .l-header-logo {
  }


  .l-menu-tel {
    position: static;
    border: none;
  }
  .l-menu-tel a {
    padding-left: 2em;
  }
  .l-menu-tel-num {
    font-size: clamp(2rem,4vw, 2.2rem);
  }
  .l-menu-tel-num::before {
    scale: 0.65;
  }
  .l-menu-tel-text {
    font-size: 0.8rem;
  }

  /*
  search
  */

  .l-menu-search {
    display: flex;
  }

  /*
  navi
  */

  .l-menu-sitemap {
    display: block;
    padding-bottom: 2em;
  }
  .l-menu-sitema-box {
  }

  .l-menu-navi {
    font-size: 1.2rem;
  }
  .l-menu-navi a{
    display: block;
  }

  .l-menu-navi li:has(ul) button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: inline-block;
    width: 50px;
    height: 2.8em;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
  }
  .l-menu-navi li:has(ul) button::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: "\f107";
    color: var(--color-brand01);
  }
  .l-menu-navi li:has(ul) button.is-active::after {
    content: "\f106";
  }

  .l-menu-navi > li{
    min-width: initial;
    border-bottom: 1px solid var(--color-sub03);
    position: relative;
  }
  .l-menu-navi > li > a{
    width: 100%;
    padding: 0.7em 0 0.7em 1.3em;
    position: relative;
  }
  .l-menu-navi > li > a::before{
    top: 1em;
  }

  .l-menu-navi ul{
    font-size: 90%;
    padding-bottom: 1.5em;
  }
  .l-menu-navi ul li{
  }
  .l-menu-navi ul li a{
    font-weight: 450;
    padding: 0.4em 0 0.4em 1.6em;
    letter-spacing: 0.05em;
    position: relative;
  }
  .l-menu-navi ul li a::before{
    content: "";
    display: block;
    width: 0.5em;
    height: 1px;
    background-color: var(--color-dark01);
    position: absolute;
    left: 0.5em;
    top: 1.2em;
  }


  .l-menu-navi ul.-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 40em;
    gap: 0 1em;
  }
  .l-menu-navi ul.-grid li{
    min-width: 15em;
  }

  .l-menu-navi-child {
    display: none;
    padding-left: 0.5em;
  }


  .l-menu-external {
    padding-top: 1.5em;
  }

  /*
  cvBanner
  */

  .l-menu-cvBanner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
    padding-top: 1.5em;
  }
  .l-menu-cvBanner-img {
    width: 42%;
  }
  .l-menu-cvBanner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    aspect-ratio: 16 / 12;
  }
  .l-menu-cvBanner-text {
    font-size: 1rem;
  }

  .l-menu-externalBanner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 5px;
    padding-top: 10px;
  }
  .l-menu-externalBanner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

}

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

/***********
googleMap
************/

.l-googleMap iframe{
  width: 100%;
  height: 600px;
}

/***********
youtube
************/

.l-youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.l-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********
bgObject
************/

.l-bgObject03 {
  background: url(../../img/bg_drawing03.png) no-repeat center bottom;
  background-size: clamp(640px,100%, 110em);
  padding-bottom: clamp(10em,22vw, 28em);
}

.l-bgObject04 {
  background: url(../../img/bg_drawing04.png) no-repeat center top;
  background-size: clamp(834px,100%, 110em);
}

.l-bgObject05 {
  background: url(../../img/bg_drawing05.png) no-repeat center top;
  background-size: clamp(834px,100%, 110em);
}

.l-bgObject08 {
  background: url(../../img/bg_drawing08.png) no-repeat center top;
  background-size: clamp(834px,100%, 110em);
}

.l-bgObject09 {
  background: url(../../img/bg_drawing09.png) no-repeat center top;
  background-size: clamp(834px,100%, 110em);
}


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

  .l-bgObject04 {
    background-position: 150px -950px;
    background-size: 834px;
  }

}

/***********
bgColor
************/

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

.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-sub04);
}
.l-bgColor05{
  background-color: var(--color-sub05);
}
.l-bgColor06{
  background-color: var(--color-brand01);
}

/***********
catIcon
************/

.l-catIcon {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 1.2em;
  color: var(--color-brand01);
  font-weight: 500;
  text-align: center;
  border-radius: 3em;
  border: 1px solid var(--color-brand01);
}



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

.l-largeHeading{
  padding-bottom: 3em;
  color: var(--color-brand01);
}
.l-largeHeading-title{
  font-weight: 700;
  font-size: clamp(1.5rem,9.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
}

.l-largeHeading-subTitle{
  font-size: clamp(0.8rem,3.2vw, 1rem);
  line-height: 1.35;
  letter-spacing: 0;
  padding-top: 0.4em;
}
.l-largeHeading-wheel {
  position: absolute;
  left: -0.5em;
  top: 0.65em;
}
.l-largeHeading-wheel .l-wheel {
  translate: -50% -50%;
}

.l-largeHeading.-offsetLeft {
  padding-left: clamp(1rem,8vw, 140px);
}

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

  .l-largeHeading{
    padding-bottom: 2em;
  }
  .l-largeHeading.-offsetLeft {
    padding-left: clamp(1rem,3vw, 120px);
  }
  .l-largeHeading:has(.l-largeHeading-wheel) {
    padding-left: 1rem;
  }

  .l-largeHeading-wheel {
    top: 0.5em;
  }

}

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

.l-heading{
  padding-bottom: 3em;
}
.l-heading-subTitle{
  color: var(--color-brand01);
  line-height: 1.35;
  font-weight: 700;
  padding-bottom: 0.5em;
}
.l-heading-title{
  font-size: clamp(1.6rem,5vw, 2.2rem);
  line-height: 1.25;
  position: relative;
  display: inline-block;
}
.l-heading-title.-large{
  font-size: clamp(1.6rem,5vw, 2.7rem);
}
.l-heading-title.-xlarge{
  font-size: clamp(1.8rem,6.5vw, 3.2rem);
  line-height: 1.1;
}

.l-heading-wheel {
  position: absolute;
  left: -0.5em;
  top: 0.7em;
}
.l-heading-wheel .l-wheel {
  translate: -50% -50%;
}

.l-heading-wheel.-right {
  position: absolute;
  left: calc(100% + 1.5em);
  top: 0.7em;
}
.l-heading-wheel.-right .l-wheel {
  translate: -50% -50%;
}


.l-heading.-offsetLeft {
  padding-left: clamp(1rem,8vw, 140px);
}

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

  .l-heading{
    padding-bottom: 2em;
  }
  .l-heading.-offsetLeft {
    padding-left: clamp(1rem,3vw, 120px);
  }

}

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

.l-headline {
  text-align: center;
  padding-bottom: 2.5em;
}
.l-headline-title {
  font-size: clamp(1.4rem,5vw, 2.2rem);
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.l-headline-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-brand01);
  padding-top: 0.5em;
}
.l-headline-text {
  padding-top: 1em;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: var(--lineheight-main);
}

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

  .l-headline-text {
    text-align: left;
    font-size: 1rem;
  }

}

/***********
subject
************/

.l-subjectParent {
  counter-reset : subject_num;
}

.l-subject {
  display: flex;
  align-items: start;
  gap: 0 0.8em;
  padding-bottom: 1.5em;
}
.l-subject-badge {
  font-size: 1rem;
  width: 3.8rem;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.l-subject-badge-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
}
.l-subject-badge-num::before {
  content: "#";
  display: inline-block;
  scale: 0.8 1;
  font-size:90%;
}
.l-subject-badge-num::after {
  display: inline-block;
  counter-increment:subject_num;
  content: counter(subject_num, decimal-leading-zero) ;
  font-size: 140%;
  scale: 1 0.85;

}
.l-subject-inner {
  flex: 1;
  min-height: 3.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-subject-subTitle {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-brand01);
  padding-bottom: 0.1em;
}
.l-subject-title {
  font-size: clamp(1.25rem,4.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.4;
}

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

  .l-subject {
    gap: 0 0.5em;
  }
  .l-subject-badge {
    font-size: 0.8rem;
    width: 3rem;
  }
  .l-subject-inner {
    min-height: 3rem;
  }
  .l-subject-subTitle {
    font-size: 0.8rem;
  }
}



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

.l-minTitle {
  font-size: clamp(1.25rem,5vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.6em;
}
.l-minTitle.-xsmall {
  font-size: clamp(1.25rem,4.4vw, 1.2rem);
}
.l-minTitle.-xxsmall {
  font-size: 1.1rem;
}
.l-xminTitle {
  font-size: clamp(1.1rem,4vw, 1.4rem);
  font-weight: 500;
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.8em;
  padding-bottom: 0.4em;
  position: relative;
}
.l-xminTitle:has(i) {
  padding-left: 1.2em;
}
.l-xminTitle:has(i) i{
  position: absolute;
  left: 0;
  top: 0.4em;
  font-size: 85%;
}

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

.l-newsList {
  border-top: 1px solid #ccc;
}
.l-newsList li {
  border-bottom: 1px solid #ccc;
}
.l-newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 8em 1.5em 1em;
  position: relative;
}
body.is-pc .l-newsList a:hover {
  translate: 2px 0;
}
.l-newsList-time {
  display: inline-block;
  width: 7em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
}
.l-newsList-cat.l-catIcon {
  min-width: 7em;
  font-size: 0.9rem;
}
.l-newsList-title {
  flex: 1;
  font-weight: 500;
  padding-left: 2em;
  transition: 0.2s;
}

.l-newsList-more {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  color: var(--color-brand01);
  letter-spacing: -0.02em;
  padding-right: 1.8em;
  white-space: nowrap;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  transition: 0.2s;
}
.l-newsList-more::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  scale: 1.1;
  line-height: normal;
}

body.is-pc .l-newsList a:hover .l-newsList-title {
  color: var(--color-brand02);
}
body.is-pc .l-newsList a:hover .l-newsList-more {
  color: var(--color-brand02);
}

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

  .l-newsList {
  }
  .l-newsList li {
  }
  .l-newsList a {
    display: block;
    position: relative;
    padding: 1.3em 2em 1.4em 0;
  }
  .l-newsList 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;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f35a";
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    scale: 0.8;
    line-height: normal;
    color: var(--color-brand01);
  }
  .l-newsList-time {
    width: 6.4em;
  }
  .l-newsList-cat.l-catIcon {
    font-size: 0.80rem;
    min-width: initial;
    padding: 0.1em 0.8em;
  }
  .l-newsList-title {
    font-size: 1rem;
    padding-left: 0;
    padding-top: 0.6em;
  }

  .l-newsList-more {
    display: none;
  }

}

/***********
cta
************/

.l-cta {
  background: url(../../img/bg_drawing01.png) repeat center top / 100% auto;
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: relative;
  z-index: 8;
}
.l-cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2em;
  justify-content: space-between;
  align-items: center;
}
.l-cta-inner {
}
.l-cta-title {
  text-align: left;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(3rem,7vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
}
.l-cta-text {
  padding-top: 2em;
  line-height: 1.7;
}
.l-cta-tel {
  margin-top: 1em;
  position: relative;
  padding-left: 4.8em;
}
.l-cta-tel::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: "\f2a0";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3.7em;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-base);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.l-cta-tel a {
  display: inline-block;
  color: var(--color-base);
  text-decoration: none;
}
.l-cta-tel-num {
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(2rem,7vw, 3rem);
  font-weight: 600;
  line-height: 1;
}
.l-cta-tel-text {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}

.l-cta-link {
  text-align: center;
}
.l-cta-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 17em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-base);
  text-decoration: none;
  border: 1px solid var(--color-base);
  position: relative;
  transition: scale 0.8s ease;
}
.l-cta-btn i {
  margin-right: 0.7em;
  scale: 1.2;
}
.l-cta-btn::before,
.l-cta-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid var(--color-base);
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.is-pc .l-cta-btn::before {
  animation: anim-cta-btn 8s ease-in-out infinite;
}
body.is-pc .l-cta-btn::after {
  animation: anim-cta-btn 5s ease-in-out infinite reverse;
  rotate: 180deg;
}
body.is-pc .l-cta-btn:hover {
  scale: 1.02;
}
body.is-pc .l-cta-btn:hover::before {
  animation-play-state: running;
  opacity: 1;
}
body.is-pc .l-cta-btn:hover::after {
  animation-play-state: running;
  opacity: 1;
}
@keyframes anim-cta-btn {
  0%   { transform: translate(0px, 0px); }
  10%  { transform: translate(3px, -2px); }
  20%  { transform: translate(6px, -5px); }
  30%  { transform: translate(2px, -1px); }
  40%  { transform: translate(-3px, 2px); }
  50%  { transform: translate(-6px, 4px); }
  60%  { transform: translate(-2px, 5px); }
  70%  { transform: translate(1px, 3px); }
  80%  { transform: translate(4px, 6px); }
  90%  { transform: translate(2px, 2px); }
  100% { transform: translate(0px, 0px); }
}



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

  .l-cta {
  }
  .l-cta-container {
    display: block;
    padding-inline: 1em;
  }
  .l-cta-title {
    font-size: clamp(1.5rem,9.5vw, 4rem);
  }
  .l-cta-text {
    padding-top: 1em;
    line-height: var(--lineheight-main);
  }

  .l-cta-link {
    padding-top: 2em;
    text-align: center;
  }
  .l-cta-btn {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 18em;
    min-height: 4em;
    aspect-ratio: initial;
    border-radius: 5px;
    font-size: 1.2rem;
    color: var(--color-brand01);
    background-color: var(--color-base);
    transition: scale 0.8s ease;
  }
  .l-cta-btn i {
    margin-right: 0.7em;
    scale: 1.2;
  }

}

/***********
wheel
************/

.l-wheel {
  pointer-events: none;
  user-select: none;
}
.l-wheel-object {
  width: 240px;
  height: 240px;
  position: relative;
}
.l-wheel-object.-rotate90 {
  rotate: 90deg;
}
.l-wheel-object.-scaleX {
  scale: -1 1;
}
.l-wheel-object.-scaleY {
  scale: 1 -1;
}
.l-wheel-object::before,
.l-wheel-object::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
}
.l-wheel-object::before{
  background: linear-gradient(to right,
    #0001 0%,  #0001 20%,
    #004aaf 25%, #004aaf 45%,
    #0001 50%, #0001 70%,
    #004aaf 75%, #004aaf 95%,
    #0001 100%
  );
  background-size: 30% 100%;
  animation: move-grad-X 20s linear infinite reverse -5s;
}
@keyframes move-grad-X{
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}

.l-wheel-object::after{
  background: linear-gradient(to bottom,
    #0001 0%,  #0001 20%,
    #004aaf 25%, #004aaf 45%,
    #0001 50%, #0001 70%,
    #004aaf 75%, #004aaf 95%,
    #0001 100%
  );
  background-size: 100% 30%;
  animation: move-grad-Y 20s linear infinite ;
}
@keyframes move-grad-Y{
  0%   { background-position: 0 0%; }
  100% { background-position: 0 200%; }
}


.l-wheel-object.-nh-lt::before {
  right: 50%;
  top: 0;
  width: 100vmax;
  height: 10px;
}
.l-wheel-object.-nh-rt::before {
  left: 50%;
  top: 0;
  width: 100vmax;
  height: 1px;
}
.l-wheel-object.-nh-lb::before {
  right: 50%;
  bottom: 0;
  width: 100vmax;
  height: 1px;
}
.l-wheel-object.-nh-rb::before {
  left: 50%;
  bottom: 0;
  width: 100vmax;
  height: 1px;
}

.l-wheel-object.-vt-rt::after {
  right: 0;
  bottom: 50%;
  width: 1px;
  height: 100vmax;
  mask: linear-gradient(to top, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
}
.l-wheel-object.-vt-lt::after {
  left: 0;
  bottom: 50%;
  width: 1px;
  height: 100vmax;
  mask: linear-gradient(to top, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
}
.l-wheel-object.-vt-rb::after {
  right: 0;
  top: 50%;
  width: 1px;
  height: 100vmax;
  mask: linear-gradient(to bottom, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
}
.l-wheel-object.-vt-lb::after {
  left: 0;
  top: 50%;
  width: 1px;
  height: 100vmax;
  mask: linear-gradient(to bottom, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
}


.l-wheel-item {
  width: 100%;
  height: 100%;
}
.l-wheel-item > img{
  animation: anim-wheel 6s linear infinite;
}
.l-wheel-item.-reverse {
  animation-direction: reverse;
}

/*
move line
*/


/*
vt
*/

.l-wheel-object.-vt::before {
  right: 0;
  bottom: 50%;
  width: 1px;
  height: 100vw;
  mask: linear-gradient(to top, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
  background: linear-gradient(to bottom,
    #0001 0%,  #0001 20%,
    #004aaf 25%, #004aaf 45%,
    #0001 50%, #0001 70%,
    #004aaf 75%, #004aaf 95%,
    #0001 100%
  );
  background-size: 100% 30%;
  animation: move-grad-Y 20s linear infinite reverse;
}
.l-wheel-object.-vt::after {
  left: 0;
  bottom: 50%;
  width: 1px;
  height: 100vw;
  mask: linear-gradient(to top, #000 50%, transparent 100%);
  mask-size: 100% 100%;
  overflow: hidden;
}



@keyframes anim-wheel {
  0% {rotate: 0;}
  100% {rotate: -360deg;}
}



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

  .l-wheel {
    scale: 0.7;
  }

  .l-wheel-object::before{
    background: linear-gradient(to right,
      #0001 0%,  #0001 20%,
      #004aaf 50%, #004aaf 70%,
      #0001 100%
    );
    background-size: 30% 100%;
    animation: move-grad-X 8s linear infinite reverse -2s;
  }
  .l-wheel-object::after{
    background: linear-gradient(to bottom,
      #0001 0%,  #0001 20%,
      #004aaf 50%, #004aaf 70%,
      #0001 100%
    );
    background-size: 100% 30%;
    animation: move-grad-Y 8s linear infinite ;
  }
  .l-wheel-object.-vt::before {
    background: linear-gradient(to bottom,
      #0001 0%,  #0001 20%,
      #004aaf 50%, #004aaf 70%,
      #0001 100%
    );
    background-size: 100% 30%;
    animation: move-grad-Y 8s linear infinite reverse;
  }

}

/***********
scrollable
************/

.scrollable {
  overflow: auto;
}

.scrollable-container {
  position: relative;
}

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

  .scrollable{
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .scrollable::-webkit-scrollbar {
    height: 10px;
  }
  .scrollable::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 5px;
  }
  .scrollable::-webkit-scrollbar-track-piece {
    background: #eee;
  }

  .scrollable {
    position: relative;
  }
  .scrollable::before{
    content: "SWIPEABLE";
    display: block;
    width: 80px;
    height: 70px;
    margin-left: -40px;
    padding-top: 50px;
    box-sizing: border-box;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 50%;
    top: 50px;
    z-index: 5;
    pointer-events: none;
  }
  .scrollable::after{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    background: url(../../img/icon/swipe.png) no-repeat 0 0 / 100% 100%;
    position: absolute;
    left: 50%;
    top: 60px;
    z-index: 5;
    pointer-events: none;
  }
  body.is-pc .scrollable-container::before,
  body.is-pc .timeTables-container::after{
    display: none !important;
  }
  .scrollable.is-show::after{
    animation:anim-scrollableArrow 1s infinite ease-in-out ;
  }
  .scrollable.is-show .scrollable-container{
    animation:anim-scrollabletranslateX 1s 1 ease-in-out ;
  }
  .scrollable.is-show::before,
  .scrollable.is-show::after{
    opacity: 0;
    transition: opacity ease 2s 2s;
  }

  /*
  size
  */

  .scrollable-container.-w1024 {
    width: 100%;
    min-width: 1024px;
  }
  .scrollable-container.-w834 {
    width: 100%;
    min-width: 834px;
  }
  .scrollable-container.-w640 {
    width: 100%;
    min-width: 640px;
  }
  .scrollable-container.-w560 {
    width: 100%;
    min-width: 560px;
  }
  .scrollable-container.-w480 {
    width: 100%;
    min-width: 480px;
  }
}

@media screen and (min-width:835px) {
  .scrollable:has(.-w834)::before,
  .scrollable:has(.-w834)::after{
    display: none;
  }
  .scrollable:has(.-w834) .scrollable-container{
    animation: none;
  }
}
@media screen and (min-width:641px) {
  .scrollable:has(.-w640)::before,
  .scrollable:has(.-w640)::after{
    display: none;
  }
  .scrollable:has(.-w640) .scrollable-container{
    animation: none;
  }
}
@media screen and (min-width:561px) {
  .scrollable:has(.-w560)::before,
  .scrollable:has(.-w560)::after{
    display: none;
  }
  .scrollable:has(.-w560) .scrollable-container{
    animation: none;
  }
}
@media screen and (min-width:481px) {
  .scrollable:has(.-w480)::before,
  .scrollable:has(.-w480)::after{
    display: none;
  }
  .scrollable:has(.-w480) .scrollable-container{
    animation: none;
  }
}

@keyframes anim-scrollableArrow {
  0%    {transform:translate(10px, 0); }
  60%   {transform:translate(-10px, 0) ;  }
  100%  {transform:translate(-10px, 0) ;  }
}
@keyframes anim-scrollabletranslateX {
  0%    {transform:translateX(0); }
  50%   {transform:translateX(-100px);  }
  100%  {transform:translateX(0);  }
}


/***********
tel
************/


.l-tel {
  position: relative;
  text-align: center;
}
.l-tel a {
  display: inline-block;
  color: var(--color-main);
  text-decoration: none;
}
.l-tel-num {
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(2rem,7vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}
.l-tel-text {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  padding-top: 0.5em;
}

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

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

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



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

}

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


[data-fade] {
  opacity: 0;
  transition: opacity 1s ease, translate 1s 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 1s ease, translate 1s ease;
  transition-delay: 0.1s;
  translate: 0 20px;
}
[data-fade="step-up"].is-show > *{
  opacity: 1;
  translate: 0 0;
}




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

.slick-slider.-infinite div {
  /* infiniteの場合 safari逆再生防止 */
  transition: none;
 }
.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-overflowHide {
  overflow: hidden;
}

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

}
