@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:  'Poppins','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-serif-en:   'DM Serif Text','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;
  --font-family-accent:     'Abril Fatface',serif;

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #222;
  --color-brand01: #00d099;
  --color-primary01: #a87eff;
  --color-secondary01: #f4e090;
  --color-accent01: #f00;
  --color-highlight01: #fff200;

  --color-emerald: #00d099;
  --color-purple: #a87eff;
  --color-yellow: #f4e090;

  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #eee;
  --color-sub04: #fff9c9;

  --header-height: 4.6em;

  --padding-side: min(3vw,30px);
  --padding-main: min(18vw,9em);
  --padding-small: min(12vw,6em);
  --padding-large: min(25vw,12em);

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

  --lineheight-main: 2;
}

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

  :root {
    --header-height: 60px;

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

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

    --lineheight-main: 1.8;
  }

}


/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-main);
}
html {
  font-size: clamp(15px, calc(10px + 0.5vw), 18px);
}
body {
  background-color: var(--color-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:834px) {
  body{
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(13px, calc(10px + 1vw), 15px);
  }
}


a {
  text-decoration: underline;
  transition: 0.2s;
}

a:visited{}
a:hover,
a:active {
  color: ;
  text-decoration: none;
}

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

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

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

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

/***********
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;
  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(0.6rem,2vw, 0.8rem);
    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: 0.3rem  !important; }
.l-bottom-xsmall  {  margin-bottom: 0.6rem !important; }
.l-bottom-small   {  margin-bottom: 0.9rem !important; }
.l-bottom         {  margin-bottom: 1.2rem !important; }
.l-bottom-large   {  margin-bottom: 1.8rem !important; }
.l-bottom-xlarge  {  margin-bottom: 2.4rem !important; }
.l-bottom-xxlarge {  margin-bottom: 3.3rem !important; }

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



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

.l-wrapper{
  overflow: hidden;
  position: relative;
}

.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: 1460px;
  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);
}
.flexibleWrapper img{
  max-width: 100%;
  width: 100%;
}

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

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

}

@media screen and (max-width: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) ;
}

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


/***********
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;
  filter: invert()
}

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


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

.l-textMain{
  line-height: var(--lineheight-main);
}
.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 {
  margin-left: 1em;
}
.l-list-dot li::before {
  content: "・";
  margin-left: -1em;
}

.l-list-asterisk {}

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

.l-list-number {
  padding-left: 1.8em;
}
.l-list-number li {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 0.5em;
}
.l-list-number li::marker {
  margin-right: 1em;
}

@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-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: 18em;
  min-height: 4em;
  padding: 1em 3em ;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  text-decoration: none !important;
  background-color: var(--color-main);
  color: var(--color-base);
  transition: all 0.2s ease;
  position: relative;
}
.l-btn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  filter: invert(1);
}
body.is-pc .l-btn:hover {
  background-color: var(--color-main);
  box-shadow: -0.2em -0.2em 0 #00ffff , 0.2em 0.2em 0 #ff00ff;
  translate: 0.1em 0.1em;
}

.l-btn[target="_blank"]::after {
  rotate: -45deg
}

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

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

}


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

.l-logo {
  position: absolute;
  z-index: 999;
  left: 1.5em;
  top: 1.5em;
  width: clamp(120px,7vw, 360px);
}

body:not(.home) .l-logo img{
  filter: invert(1);
}

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

  .l-logo {
    width: 100px;
  }

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

  .l-logo {
    width: 100px;
    position: absolute;
    left: 5vw;
    top: 15px;
  }
}



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

.l-header {
}

.l-header-inner {
}

.l-header-logo {
}


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

.l-navi {
}

.l-navi-list {
}

.l-navi-list li {
}

.l-navi-list a {
}

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

.l-footer {
  background: url(../../img/visual01.jpg) repeat 0 0 / auto 100%;
  position: relative;
  padding-top: clamp(12em,20vw, 50em);
  padding-bottom: clamp(8em,10vw, 50em);
  text-align: center;
}
.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
}

.l-footer-logo {
  width: clamp(200px,15vw, 400px);
  margin: 0 auto;
}
.l-footer-container {
  display: block;
  position: relative;
  z-index: 9;
  font-size: 1.2rem;
  font-family: var(--font-family-gothic);
  font-weight: 400;
  color: var(--color-base);
  padding-top: 2em;
}

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

  .l-footer {
    background-position: right 15vw top 0;
  }

  .l-footer-logo {
    width: clamp(100px,40vw, 200px);
    margin: 0 auto;
  }
  .l-footer-container {
    font-size: 1rem;
  }

}


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

.l-jumpTop{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 990;
  translate: 0 120%;
  transition: translate 0.3s;
  font-size: clamp(2em,2.5vw, 3em);
  color: #fff;
  mix-blend-mode: difference;
}
body.is-fixed .l-jumpTop {
  translate: 0 0;
}
.l-jumpTop a{
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: right;
  line-height: 0.8;
  font-family: var(--font-family-serif-en);
  font-weight: 400;
  padding-left: 1em;
}
.l-jumpTop a::after{
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f0f;
}

.l-jumpTop a span {
  display: inline-block;
  scale: 1 1.4;
  position: relative;
  z-index: 2;
}

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

.l-menu{
  position: fixed;
  width: 100%;
  height: 100lvh;
  z-index: 9999;
  right: 0;
  top: 0;
  opacity: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}
.is-menu-open .l-menu{
  opacity: 1;
}

.l-menu-close{
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: -1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.is-menu-open .l-menu-close{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 900;
}


.l-menu-trigger {
  display: block;
  position: fixed;
  right: 0.5em;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  overflow: hidden;
}
.l-menu-btn {
  display: block;
  position: relative;
  font-size: 1.2rem;
  width: 12em;
  height: 4em;
  cursor: pointer;
  background: none;
  border: none;
  border-top: none;
  border-right: none;
  -webkit-tap-highlight-color:transparent;
  color: var(--color-base);
}

.l-menu-btn p {
  position: absolute;
  font-family: var(--font-family-serif-en);
  font-weight: 400;
  left: 4em;
  top: 50%;
  translate: 0 -50%;
  scale: 1 1.4;
}
.l-menu-btn p::after {
  content: "MENU";
  white-space: nworap;
  font-size: 240%;
}
.l-menu-btn.is-active p::after {
  content: "CLOSE";
  color: var(--color-main);
}

.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 50%;
  width: 2em;
  height: 3px;
  background-color: var(--color-yellow);
  border-radius: 3px;
}
.l-menu-btn span:nth-child(1) {
  display: none;
}
.l-menu-btn span:nth-child(2) {
  rotate: 90deg;
}
.l-menu-btn span:nth-child(3) {
}

.l-menu-btn.is-active {
}
.l-menu-btn.is-active span {
  width: 3.5em;
  left: 0;
  transition: rotate 0.6s ease ,scale 0.6s ease;
}
.l-menu-btn.is-active span:nth-child(2) {
  rotate: 45deg;
}
.l-menu-btn.is-active span:nth-child(3) {
  rotate: 135deg;
}

body.is-light .l-menu-btn p::after,
body:not(.home).is-fixed .l-menu-btn p::after {
  color: var(--color-main);
}
body.is-light .l-menu-btn span ,
body:not(.home).is-fixed .l-menu-btn span ,
.l-menu-btn.is-active span {
  background-color: var(--color-main) !important;
}

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

  .l-menu-trigger {
    right: 0;
    top: 0.8em;
  }
  .l-menu-btn {
    font-size: clamp(0.7rem,3.2vw, 1rem);
    width: 12em;
    height: 4em;
  }
  .l-menu-btn span {
    height: 2px;
  }
}


/*
overlay
*/

.l-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 150svh;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 200ms ease;
}
.l-menu-overlay.is-active {
  opacity: 1;
}

/*
container
*/

.l-menu-wrapper {
  --mv-font-size: clamp(14px,1vw, 9999px);
  padding: 5em 2em 10em;
  display: inline-block;
  text-align: left;
  min-width: 50em;
  max-width: 90vw;
  margin: 0 auto;
  color: var(--color-main);
  position: relative;
  opacity: 0;
  translate: 0 -50px;
  transition: opacity 1s ease ;
}
.l-menu-logo {
  width: 8em;
  position: absolute;
  filter: invert(1);
}

.l-menu-container {
  display: flex;
  flex-direction: row-reverse;
}
body.is-menu-open .l-menu-wrapper {
  translate: 0 0;
  opacity: 1;
  transition: translate 0.8s ease 0.3s , opacity 1s ease 0.3s;
}
.l-menu-inner {
  flex: 1;
}

/*
navi
*/

.l-menu-navi {
  font-size: 4em;
  margin-top: -0.4em;
}
.l-menu-navi button {
  display: none;
}
.l-menu-navi a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.l-menu-navi > li {
}
.l-menu-navi > li > a {
  display: inline-block;
  padding: 0.15em;
}
.l-menu-navi > li > a span {
  display: block;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  transition: 0.2s;
}
.l-menu-navi > li > a span span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.l-menu-navi > li > a small {
  display: block;
  font-size: 30%;
  font-weight: 700;
  line-height: 1;
}
body.is-pc .l-menu-navi > li > a:hover {
  background-color: #000;
}
body.is-pc .l-menu-navi > li > a:hover  {
  color: #fff;
}


.l-menu-navi > li > a span::before,
.l-menu-navi > li > a span::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.is-pc .l-menu-navi > li > a span::before {
  color: #ff0000;
}
body.is-pc .l-menu-navi > li > a span::after {
  color: #00ffff;
}
body.is-pc .l-menu-navi > li > a:hover span::before {
  transform: translate(3px, 2px);
  opacity: 1;
}
body.is-pc .l-menu-navi > li > a:hover span::after {
  transform: translate(-3px, -2px);
  opacity: 1;
}


/*
suv
*/

.l-menu-sub {
  width: 15em;
  padding-top: 9em;
}

.l-menu-sns {
  font-size: 1.6em;
  display: flex;
  gap: 0 0.5em;
  padding-bottom: 0.8em;
}
.l-menu-sns li {
}
.l-menu-sns li a {
  display: inline-block;
  width: 1em;
  text-align: center;
  color: inherit;
}

.l-menu-sub-navi {
}
.l-menu-sub-navi li  {
  padding-bottom: 0.3em;
}
.l-menu-sub-navi li a {
  display: inline-block;
  font-weight: 400;
  font-feature-settings: "palt";
  font-size: 90%;
  color: inherit;
  text-decoration: none;
  padding: 0.1em 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.2s;
}
body.is-pc .l-menu-sub-navi li a:hover {
  text-decoration-color: inherit;
}
.l-menu-sub-navi li a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow.png) no-repeat center center / 100% auto;
  vertical-align: middle;
  translate: 0 -5%;
  rotate: -45deg;
  scale: 0.8;
  margin-left: 0.2em;
}


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


  /*
  container
  */

  .l-menu-wrapper {
    font-size: clamp(14px,10vw, 50px);
    padding: 140px 0 10em;
    min-width: initial;
    max-width: 90vw;
  }
  .l-menu-logo {
    width: 100px;
    position: absolute;
    left: 0;
    top: 15px;
    filter: invert(1);
  }

  .l-menu-container {
    display: block;
  }
  .l-menu-inner {
    flex: 1;
  }

  /*
  navi
  */

  .l-menu-navi {
    font-size: 1em;
    margin-top: 0;
  }
  .l-menu-navi > li > a small {
    font-size: max(30%,9px);
    font-weight: 600;
  }

  /*
  suv
  */

  .l-menu-sub {
    width: auto;
    padding-top: 0.5EM;
  }
  .l-menu-sns {
    font-size: 0.6em;
  }


  .l-menu-sub-navi {
    padding-top: 0.5em;
  }
  .l-menu-sub-navi li  {
    padding: 0;
    margin: 0;
    font-size: max(45%,15px);
  }
  .l-menu-sub-navi li a {
    color: inherit;
    text-decoration: none;
    padding: 0.2em 0;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.5em;
    transition: 0.2s;
  }
  body.is-pc .l-menu-sub-navi li a:hover {
    text-decoration-color: inherit;
  }



}

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


/***********
l-bgPattern
************/

.l-bgPattern01 {
  position: relative;
  overflow: hidden;
}
.l-bgPattern01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/bg_dots.png) repeat 0 0 / 13vw auto;
  opacity: 0.35;
  /* filter: brightness(0) saturate(100%) invert(84%) sepia(54%) saturate(1234%) hue-rotate(354deg) brightness(98%) contrast(96%); */
  /* filter: brightness(0) saturate(100%) invert(67%) sepia(84%) saturate(1234%) hue-rotate(210deg) brightness(100%) contrast(105%); */
  /* filter: brightness(0) saturate(100%) invert(56%) sepia(100%) saturate(2000%) hue-rotate(135deg) brightness(100%) contrast(110%); */
  animation: anim-colorCycle 20s linear infinite;
}


@keyframes anim-colorCycle {
  0%, 27.777% {
    filter: brightness(0) saturate(100%)
            invert(84%) sepia(54%) saturate(1234%)
            hue-rotate(354deg) brightness(98%) contrast(96%);
  }
  33.333% {
    filter: brightness(0) saturate(100%)
            invert(67%) sepia(84%) saturate(1234%)
            hue-rotate(210deg) brightness(100%) contrast(105%);
  }
  33.334%, 61.111% {
    filter: brightness(0) saturate(100%)
            invert(67%) sepia(84%) saturate(1234%)
            hue-rotate(210deg) brightness(100%) contrast(105%);
  }
  66.666% {
    filter: brightness(0) saturate(100%)
            invert(56%) sepia(100%) saturate(2000%)
            hue-rotate(135deg) brightness(100%) contrast(110%);
  }
  66.667%, 94.444% {
    filter: brightness(0) saturate(100%)
            invert(56%) sepia(100%) saturate(2000%)
            hue-rotate(135deg) brightness(100%) contrast(110%);
  }
  100% {
    filter: brightness(0) saturate(100%)
            invert(84%) sepia(54%) saturate(1234%)
            hue-rotate(354deg) brightness(98%) contrast(96%);
  }
}


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

  .l-bgPattern01::before {
    background-size: 120px auto;
    opacity: 0.15;
  }
}

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

.l-pageSection {
  border-top: 1px solid #555;
}

/* .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-emerald);
}
.l-bgColor02{
  background-color: var(--color-purple);
}
.l-bgColor03{
  background-color: var(--color-yellow);
}
.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 1em;
  background-color: var(--color-main);
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-base);
}




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

.l-heading{
  padding-bottom: 3em;
}
.l-heading-subTitle{
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(1.8rem,8vw, 4rem);
  padding-block: 0.1em;
  line-height: 1;
}
.l-heading-title{
  font-weight: 600;
  font-size: clamp(1.1rem,4vw, 1.4rem);
  line-height: 1.4;
}

.l-heading-text{
  line-height: var(--lineheight-main);
  padding-top: 1.5em;
}

.l-heading.-center{
  text-align: center;
  padding-top: 4em;
  background: url(../../img/object01.png) no-repeat center top / 6em auto;
}
.l-heading.-center .l-heading-subTitle{
  padding-inline: 0.5em;
}

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

  .l-heading-text{
    line-height: 1.8;
    text-align: left;
  }

}

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

.l-headline {
  padding-bottom: 2.5em;
}
.l-headline-title {
  font-size: clamp(1.5rem,4.4vw, 1.9rem);
  font-weight: 700;
  position: relative;
}
.l-headline-subTitle {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: clamp(1rem,5vw, 1.4rem);
  line-height: 1;
  padding-top: 0.15em;
  position: relative;
}

.l-headline-text {
  padding-top: 2em;
  line-height: 2;
}


.l-headline:not(.-center) .l-headline-subTitle::after {
  content: "";
  display: block;
  width: 5em;
  height: 0.2em;
  margin-top: -2px;
  background-color: var(--color-main);
  position: absolute;
  left: calc(100% + 0.8em);
  top: 50%;
}

.l-headline.-center {
  text-align: center;
}
.l-headline.-center .l-headline-subTitle::before,
.l-headline.-center .l-headline-subTitle::after {
  content: "";
  display: block;
  width: 4em;
  height: 0.15em;
  background-color: var(--color-main);
  position: absolute;
  top: 50%;
}
.l-headline.-center .l-headline-subTitle::before {
  left: calc(100% + 0.8em);
}
.l-headline.-center .l-headline-subTitle::after {
  right: calc(100% + 0.8em);
}

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

  .l-headline-text{
    line-height: var(--lineheight-main);
    text-align: left;
  }

}


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

.l-borderTitle {
}

.l-largeTitle {
  font-size: clamp(1.2rem,2vw, 1.5rem);
  background-color: var(--color-main);
  color: var(--color-base);
  border-radius: 5px;
  margin: 0 0 0.8em 0;
  padding: 0.6em 1em;
  line-height: 1.4;
  position: relative;
}

.l-title {
  font-size: clamp(1.25rem,2.2vw, 1.6rem);
  border-block : 2px dashed var(--color-main);
  border-radius: 5px;
  margin: 0 0 0.8em 0;
  padding: 0.6em 0.2em;
  line-height: 1.4;
  position: relative;
}
.l-subTitle{
  font-size: clamp(1.15rem,1.6vw, 1.3rem);
  line-height: 1.4;
  border-left: 6px solid var(--color-main);
  padding: 0.5em 0 0.5em 0.8em;
  margin: 0 0 0.8em 0;
}
.l-minTitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}
.l-minTitle::before {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 100%);
  position: absolute;
  left: 0;
  top: 0.65em;
}

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

  .l-borderTitle {
    font-size: 1.2rem;
    margin-bottom: 1em;
    padding: 0.6em 0;
  }

}
/***********
glitch
************/



.l-glitch {
  display: inline-block;
  position: relative;
}
.l-glitch:before,
.l-glitch:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-glitch::before {
  left: 2px;
  text-shadow: -2px 0 #f00;
  animation: l-glitchTextSpike 2.17s infinite steps(1, end);
}

.l-glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00f;
  animation: l-glitchTextSpike2 3.83s infinite steps(1, end);
}

@keyframes l-glitchTextSpike {
  0%, 90% { clip: rect(0, 9999px, 0, 0); }
  91% { clip: rect(120px, 9999px, 322px, 0); }
  93% { clip: rect(30px, 9999px, 7px, 0); }
  95% { clip: rect(247px, 9999px, 620px, 0); }
  97% { clip: rect(15px, 9999px, 66px, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes l-glitchTextSpike2 {
  0%, 92% { clip: rect(0, 9999px, 0, 0); }
  93% { clip: rect(323px, 9999px, 234px, 0); }
  95% { clip: rect(8px, 9999px, 811px, 0); }
  97% { clip: rect(921px, 9999px, 147px, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

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

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

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

/***********
anim
************/


@keyframes anim-quake {
  0%   { transform: translate(0, 0); }
  0%   { transform: translate(0, 0); }
  0.8% { transform: translate( 2px, -1px); }
  1.6% { transform: translate(-2px,  1px); }
  2.4% { transform: translate( 1px,  2px); }
  3.2% { transform: translate(-1px, -2px); }
  4%   { transform: translate(0, 0); }
  100% { transform: translate(0, 0); }
}

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

/***********
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 0.8s ease, translate 0.8s ease;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  translate: 0 20px;
}
[data-fade="fade-up"].is-show {
  translate: 0 0;
}

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


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

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

}
