@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:  'Roboto','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en02:  'Roboto Condensed','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #333;
  --color-brand01: #FFA700;
  --color-brand02: #FFE693;
  --color-brand03: #FF8800;

  --color-primary01: #2991E9;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #E5E5E5;
  --color-sub02: #ccc;
  --color-sub03: #F5F4F0;
  --color-sub04: rgba(0, 0, 0, 0.03);


  --padding-main: min(12vw,8em);
  --padding-small: min(9vw,6em);
  --padding-large: min(16vw,12em);

  --header-height: 120px;
}


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

  :root {
    --padding-main: min(12vw,8em);
    --padding-small: min(9vw,6em);
    --padding-large: min(16vw,12em);

    --header-height: 60px;
  }

}


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

html {
  font-size: clamp(15px, calc(10px + 0.5vw), 18px);
}

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);
/*
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
*/
}

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


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


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; 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;
  position: relative;
  z-index: 2;
  transition: 0.5s cubic-bezier(0.83, 0, 0.17, 1);
  background-color: var(--color-base);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

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

.l-wrapper.-normal {
  overflow: visible;
  padding-top: 1px;
}

.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-left: auto;
  margin-right: auto;
  padding-left: min(3vw,30px);
  padding-right: min(3vw,30px);
}

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

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

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

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


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

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

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


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

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

}

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

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

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

}

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

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

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

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

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

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

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

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

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

.l-list-asterisk {}

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

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

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

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

@media screen and (max-width:520px) {
  .l-textLead{
    text-align: left;
  }
}


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

.l-linkWrap{
  padding-top: 2em;
  text-align: center;
}
.l-linkWrap.-left{
  text-align: left;
}
.l-linkWrap.-right{
  text-align: right;
}


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

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

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

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

}

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

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

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

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

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

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

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

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

}


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

.l-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 18em;
  min-height: 3.8em;
  padding: 1em 3em ;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  text-decoration: none !important;
  background-color: var(--color-brand01);
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
}
.l-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f061";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  transition: 0.2s;
}
body.is-pc .l-btn:hover {
  background-color: var(--color-brand03);
}
body.is-pc .l-btn:hover::after {
  right: 0.8em;
}



.l-btn.-back::after {
  content: "\f060";
  right: auto;
  left: 1em;
  top: 50%;
}
body.is-pc .l-btn.-back:hover::after {
  right: auto;
  left: 0.8em;
}

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

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

}

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

.l-logo {
  position: absolute;
  top: 1em;
  left: 2em;
  z-index: 1000;
  font-size: 1.1rem;
}
.l-logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-logo-img {
  width: 3.6em;
}
.l-logo-text {
  font-size: 75%;
  font-weight: 300;
  white-space: nowrap;
  position: absolute;
  left: 60%;
  bottom: 0;
  line-height: 1;
}

/*
top
*/

body:not(.is-fixed) .l-logo {
  color: var(--color-base);
}
body:not(.is-fixed) .l-logo img {
  filter: brightness(0) invert(1);
}


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

  .l-logo {
    top: 0.8em;
    left: 1em;
    font-size: 1rem;
  }

}


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

  .l-logo {
    top: 0.2em;
    left: 0.5em;
    font-size: 1rem;
  }

}


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

  .l-logo {
    font-size: 0.9rem;
  }
  .l-logo-text {
    left: 65%;
    bottom: auto;
    top: 17%;
  }

}


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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  transition: 0.2s;
}

.l-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}

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



/*
tel
*/

.l-header-tel {
  padding-left: 2em;
  padding-right: 1em;
  text-align: left;
  position: relative;
  white-space: nowrap;
  font-size: 1.3rem;
  font-feature-settings: "palt";
}
.l-header-tel-num {
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}
.l-header-tel-text {
  font-weight: 400;
  font-size: 52%;
  line-height: 1.2;
}

/*
cv
*/

.l-header-cv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.15rem;
  white-space: nowrap;
}
.l-header-cv-item {
  padding: 1px 0;
  height: 100%;
}
.l-header-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0.6em 1.5em 0.6em 1.5em;
  padding-left: 0.6em;
  text-decoration: none;
  background-color: var(--color-brand01);
  color: inherit;
  font-weight: 600;
  border-radius: 5px 0 0 5px;
  position: relative;
  transition: 0s;
  transition: background-color 0.2s ease;
}
.l-header-cv-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f061";
  position: absolute;
  right: 0.5em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
  transition: right 0.2s ease;
}
.l-header-cv-btn i {
  margin-right: 0.5em;
  scale: 1.1;
}
body.is-pc .l-header-cv-btn:hover {
  background-color: var(--color-brand03);
}
body.is-pc .l-header-cv-btn:hover::after {
  right: 0.2em;
}


/*
navi
*/

.l-header-navi {
  font-feature-settings: "palt";
}
.l-header-navi button {
  display: none !important;
}

.l-header-navi-list {
  display: flex;
}

.l-header-navi-list > li {
  padding: 0.2em 0;
  position: relative;
}
.l-header-navi-list > li:not(:last-child) {
  margin-right: 2em;
}
.l-header-navi-list > li > a {
  display: inline-block;
  font-weight: 400;
  font-family: var(--font-family-gothic);
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0s;
  transition-delay: 0s !important;
}
.l-header-navi-list > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.5em;
  background-color: var(--color-main);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list > li:hover > a {
  transform: translateY(-1px);
}
body.is-pc .l-header-navi-list > li:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

.l-header-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 13em;
  color: var(--color-main);
  background: var(--color-base);
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.05);
  padding: 1em 2em 1em 1.5em;
  margin-left: -2em;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.l-header-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
}

.l-header-navi-list ul li {
  padding: 0.2em 0 0.2em 1.4em;
  position: relative;
}
.l-header-navi-list ul li::before{
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f061";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.8;
  color: var(--color-brand01);
}

.l-header-navi-list ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: max(90%,12px);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
}
.l-header-navi-list ul a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-main);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list ul a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

/*
top
*/

body:not(.is-fixed) .l-header {
  color: var(--color-base);
}
body:not(.is-fixed) .l-header-navi-list > li::before {
  background-color: var(--color-base);
}

/*
fixed
*/

body.is-fixed .l-header {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}
body.is-fixed .l-header-logo {
  width: 7em;
}

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

  /*
  tel
  */

  .l-header-tel {
    font-size: 1.2rem;
  }

  /*
  cv
  */

  .l-header-cv {
    font-size: 1.05rem;
  }

  /*
  navi
  */

  .l-header-navi-list {
    display: flex;
  }

  .l-header-navi-list > li:not(:last-child) {
    margin-right: 1.2em;
  }

}

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

  .l-header,
  body.is-fixed .l-header,
  body:not(.is-fixed) .l-header {
    color: var(--color-base);
    position: absolute;
    height: var(--header-height);
    background-color: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    padding-right: 80px;
  }

  /*
  tel
  */

  .l-header-tel {
    font-size: 1.1rem;
  }

  /*
  cv
  */

  .l-header-cv {
    font-size: 1rem;
  }
  .l-header-cv-btn {
    border-radius: 4px;
  }

  /*
  navi
  */

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

}



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

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

}

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

.l-footer {
  position: relative;
  background-color: var(--color-main);
  color: var(--color-base);
  padding: min(12vw,5em) 3vw  min(22vw,12em);
}

.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.l-footer-bg {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/mv01.jpg) no-repeat center center / cover ;
  filter: grayscale(100%);
  opacity: 0.6;
}
.l-footer-bg img {
}
.l-footer-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/pattern01.jpg) repeat center center ;
  opacity: 1;
  mix-blend-mode: overlay;
}
.l-footer-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/pattern02.png) repeat center center / 317px auto;
  opacity: 0.5;
}


.l-footer-mark {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 50vw;
  opacity: 0.4;
  pointer-events: none;
}


.l-footer-container {
  position: relative;
  z-index: 8;
}
.l-footer-info {
  text-align: center;
}
.l-footer-logo {
  width: clamp(8em,50vw, 15em);
  margin: 0 auto;
}
.l-footer-logo a {
  display: inline-block;
  opacity: 0.7;
}
body.is-pc .l-footer-logo a:hover {
  opacity: 0.9;
}
.l-footer-name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.l-footer-corp {
  padding-bottom: 1.05em;
}
.l-footer-corp a {
  display: inline-block;
  padding: 0.2em 0.6em 0.2em 1.2em;
  color: inherit;
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  font-size: 0.75rem;
  position: relative;
}
.l-footer-corp 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: "\f061";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.8;
  opacity: 0.7;
}
body.is-pc .l-footer-corp a:hover {
  text-decoration-color: inherit;
}


.l-footer-address {
  font-style: normal;
  font-size: 0.9rem;
}

.l-footer-tel {
  text-align: center;
  position: relative;
  white-space: nowrap;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  padding-top: 0.5em;
}
.l-footer-tel-num {
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
}
.l-footer-tel-num a {
  color: inherit;
  text-decoration: none;
}
.l-footer-tel-text {
  font-weight: 400;
  font-size: 55%;
  line-height: 1.4;
}

/*
sitemap
*/

.l-footer-sitemap {
  padding-top: 5em;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.l-footer-navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -2em;
}
.l-footer-navi button{
  display: none;
}
.l-footer-navi a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  opacity: 0.8;
}
body.is-pc .l-footer-navi a:hover {
  text-decoration-color: inherit;
  opacity: 1;
}

.l-footer-navi > li {
  position: relative;
  padding-right: 2em;
  padding-bottom: 1em;
  min-width: 7em;
}
.l-footer-navi > li > a {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: 400;
  padding: 1em 0 0.5em;
  white-space: nowrap;
  transition: 0.4s;
}

/*
child1
*/

.l-footer-navi > li.menu-item-has-children > ul {
}
.l-footer-navi > li.menu-item-has-children > ul > li{
}
.l-footer-navi > li.menu-item-has-children > ul > li > a{
  display: inline-block;
  font-size: 90%;
  font-weight: 300;
  padding: 0.1em 0 0.2em 1.4em;
  color: inherit;
  position: relative;
}
.l-footer-navi > li.menu-item-has-children > ul > li > a::before {
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  background-color: var(--color-base);
  position: absolute;
  left: 0;
  top: 0.9em;
  opacity: 0.5;
}

/*
cv
*/

.l-footer-cv {
  padding-top: 5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.l-footer-cv-item {
  padding: 5px 10px;
}
.l-footer-cv-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  min-height: 4.8em;
  min-width: 22em;
}
.l-footer-cv-item a.-tel {
  border: 1px solid var(--color-brand01);
  color: var(--color-brand01);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.l-footer-cv-item a.-mail {
  border: 1px solid var(--color-brand01);
  background-color: var(--color-brand01);
  color: var(--color-dark01);
  font-weight: 500;
}

.l-footer-cv-num {
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 130%;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
}
.l-footer-cv-text {
  font-weight: 400;
  font-size: 80%;
  line-height: 1.4;
}

.l-footer-cv-mail {
  font-size: 110%;
}
.l-footer-cv-mail i {
  margin-right: 0.6em;
  scale: 1.2;
}
body.is-pc .l-footer-cv-item a.-mail:hover {
  background-color: var(--color-brand03);
}


.l-footer-copyright {
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  font-size: 0.8rem;
  white-space: nowrap;
  letter-spacing: 0;
  position: absolute;
  left: 2vw;
  bottom: 3vw;
  color: var(--color-base);
  rotate: 90deg;
  translate: 0 -14em;
  transform-origin: left bottom;
  pointer-events: none;
}

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

  .l-footer {
    padding: min(12vw,5em) 3vw  min(3vw,3em);
  }
  .l-footer-bg::after {
    background-size: 30vw auto;
  }


  .l-footer-mark {
    right: -5vw;
    top: auto;
    bottom: 0;
    translate: 0 0;
    width: 100vw;
  }


  .l-footer-logo {
    width: clamp(150px,60vw, 240px);
    margin: 0 auto;
  }

  .l-footer-corp {
    padding-bottom: 1.05em;
  }
  .l-footer-corp a {
    font-size: 0.9rem;
  }


  /*
  sitemap
  */

  .l-footer-sitemap {
    padding-top: 3em;
    padding-left: 1em;
    margin-top: 3em;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 0;
    font-size: 0.9rem;
  }

  .l-footer-navi {
    display: block;
    margin-right: 0;
  }

  .l-footer-navi > li {
    padding-right: 0;
    padding-bottom: 0.2em;
    min-width: initial;
  }
  .l-footer-navi > li > a {
    padding: 0.3em 0 ;
  }

  /*
  child1
  */

  .l-footer-navi > li.menu-item-has-children > ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.5em;
  }
  .l-footer-navi > li.menu-item-has-children > ul > li:not(:last-child){
    padding-right: 1.2em;
  }
  .l-footer-navi > li.menu-item-has-children > ul > li > a{
    font-size: 95%;
    padding: 0.3em 0 0.3em 1em;
  }
  .l-footer-navi > li.menu-item-has-children > ul > li > a::before {
    width: 0.4em;
    top: 1.1em;
  }

  /*
  cv
  */

  .l-footer-cv {
    padding: 3em 3vw;
  }
  .l-footer-cv-item {
  }
  .l-footer-cv-item a {
    min-height: 4.8em;
    min-width: 18em;
  }


  .l-footer-copyright {
    left: 2vw;
    bottom: 3em;
    opacity: 0.3;
  }


}

/***********
lower
************/

.l-lower {
  background-color: var(--color-base);
  padding: 3em 3vw;
  position: relative;
}
.l-lower-container {
}
.l-lower-navi {
  position: relative;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.l-lower-navi button {
  display: none;
}
.l-lower-navi li {
}
.l-lower-navi li:not(:last-child)::after {
  content: "|";
  padding: 0 0.8em;
  opacity: 0.5;
}
.l-lower-navi li a {
  display: inline-block;
  color: var(--color-dark01);
  text-decoration: none;
  transition: 0s;
}
body.is-pc .l-lower-navi li a:hover {
  text-decoration: underline;
}
.l-lower-navi li a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  opacity: 0.7;
  scale: 0.9;
}
.l-lower-copyright {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


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

  .l-lower {
    padding: 3em 3vw 8em;
  }
  .l-lower-container {
  }
  .l-lower-navi {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
  }
  .l-lower-copyright {
    position: static;
    padding-top: 2em;
    font-size: 0.8rem;
    display: block;
  }

}



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

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

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


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



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

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

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

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

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

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

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

.l-menu-bg {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: url(../../img/mv01.jpg) no-repeat center center / cover ;
  filter: grayscale(100%);
  opacity: 0.4;
  filter: blur(10px);
}

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


/*
navi
*/

.l-menu-navi-list button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  position: absolute;
  right: -15px;
  top: 4px;
  display: none;
}
.l-menu-navi-list li:has(ul) > button {
  display: block;
}
.l-menu-navi-list button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 45%;
  translate: -50% -50%;
  rotate: 45deg;
  border: 2px solid var(--color-base);
  border-top: none;
  border-left: none;
}
.l-menu-navi-list button.is-active {
  rotate: 180deg;
}

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

/*
1
*/

.l-menu-navi-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.l-menu-navi-list > li > a {
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  padding: 1em 60px 1em 0;
}

/*
2
*/

.l-menu-navi-list > li > ul {
  padding-bottom: 25px;
  display: none;
}
.l-menu-navi-list > li > ul > li {
}
.l-menu-navi-list > li > ul > li > a{
  padding: 0.3em 0 0.3em 1.2em;
  font-feature-settings: "palt";
  font-size: 15px;
  letter-spacing: 0.04em;
  position: relative;
}
.l-menu-navi-list > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: rgba(255, 255, 255, 0.8);
}

/*
cv
*/

.l-menu-cv {
  padding-left: 20px;
  padding: 30px 0 0;
}

.l-menu-cv .l-footer-cv {
  display: block;
  padding: 0;
  width: 100%;
}
.l-menu-cv .l-footer-cv-item {
  width: 100%;
  padding:  5px 0;
}
.l-menu-cv .l-footer-cv-item a {
  min-height: 4.8em;
  width: 100%;
  min-width: initial;
}

/*
sub
*/

.l-menu-subNavi {
  padding-top: 20px;
}
.l-menu-subNavi button {
  display: none;
}

.l-menu-subNavi li {
  padding-right: 2em;
}

.l-menu-subNavi a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  padding: 0.3em 0 0.3em 0;
  transition: 0.4s;
}

.l-menu-subNavi a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  opacity: 0.7;
  scale: 0.9;
}

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

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

.l-heading{
  font-size: clamp(0.9rem,1vw,1rem);
  padding-bottom: 2em;
}

.l-heading-subTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 3em;
  margin-bottom: 1em;
  position: relative;
}
.l-heading-subTitle::before {
  content: "";
  display: block;
  width: 2.5em;
  aspect-ratio: 1 / 1.6;
  background: url(../../img/logo_symbol_or.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 0;
  top: -1.7em;
}
.l-heading-title {
  font-weight: 600;
  font-size: 170%;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
.l-heading-text{
  line-height: 1.8;
  font-size: 1rem;
  padding-top: 1.6em;
}

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

.l-headline{
  font-size: clamp(0.9rem,1vw,1rem);
  padding-bottom: 1.2em;
}
.l-headline-title{
  font-weight: 500;
  font-size: 150%;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;

}
.l-headline-subTitle{
  font-family: var(--font-family-gothic-en02);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  padding-left: 1.2em;
  position: relative;
  color: var(--color-dark01);
  margin-top: 0.5em;
}
.l-headline-subTitle::before {
  content: "";
  display: block;
  width:  0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.3em;
  background: var(--color-brand01);
  border-radius: 50%;
}
/***********
title
************/

.l-title{

}
.l-subTitle{

}
.l-minTitle{

}

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

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

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

.l-bgColor00{
}
.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-bgColor11 {
  /* background-color: var(--color-base); */
  position: relative;
  padding-top: var(--padding-small);
}
.l-bgColor11::before {
  content: "";
  display: block;
  width: 18vw;
  min-width: 220px;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--color-brand01);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.l-bgColor11::after {
  content: "";
  display: block;
  width: 52%;
  height: 20vw;
  position: absolute;
  right: 0;
  top: calc(100% -  min(12vw,120px));
  z-index: 1;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  pointer-events: none;
}


.l-bgColor12 {
  /* background-color: var(--color-base); */
  position: relative;
  padding-top: var(--padding-small);
}
.l-bgColor12::before {
  content: "";
  display: block;
  width: 18vw;
  min-width: 220px;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--color-brand02);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.l-bgColor12::after {
  content: "";
  display: block;
  width: 52%;
  height: 20vw;
  position: absolute;
  right: 0;
  top: calc(100% -  min(12vw,120px));
  z-index: 1;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  pointer-events: none;
}




.l-bgColor13 {
  /* background-color: var(--color-base); */
  position: relative;
  padding-top: var(--padding-small);
}
.l-bgColor13::before {
  content: "";
  display: block;
  width: 70%;
  height: calc(100% - 400px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color-brand02);
  pointer-events: none;
}
.l-bgColor13::after {
  content: "";
  display: block;
  width: 30%;
  height: calc(100% - 650px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color-brand01);
  pointer-events: none;
}


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

  .l-bgColor11 {
  }
  .l-bgColor11::before {
    width: 25vw;
    min-width: 120px;
  }
  .l-bgColor11::after {
    width: 77%;
    height: clamp(100px,40vw, 150px);
    background: var(--color-brand02);
    opacity: 0.2;
  }

}

/***********
slider
************/

/*
slider
*/

.l-cardSlider {
  position: relative;
  padding-bottom: 70px;
}

.l-cardSlider-scroll {
}
.l-cardSlider-scroll-inner {
  translate: 25vw 0;
  opacity: 0;
}
.l-cardSlider-scroll-inner.is-show {
  translate: 0 0;
  opacity: 1;
  transition: translate 1s ease 0.2s , opacity 1s ease 0.2s;
}


.l-cardSlider .slick-prev ,
.l-cardSlider .slick-next{
  display: block;
  width: 60px;
  height: 36px;
  background: url(../../img/icon/arrow.png) no-repeat center center / 16px auto;
  background-color: var(--color-sub01);
  border: 1px solid #ddd;
  opacity: 0.5;
  border-radius: 6px;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  bottom: 0;
}
.l-cardSlider .slick-prev {
  left: calc(100vw - 5vw - 170px);
  rotate: 180deg;
}
.l-cardSlider .slick-next {
  left: calc(100vw - 5vw - 100px);
}

body.is-pc .l-cardSlider .slick-prev:hover ,
body.is-pc .l-cardSlider .slick-next:hover{
  background-color: var(--color-brand01);
  opacity: 1;
}

/*
card
*/

.l-cardSlider {
  display: flex;
}
.l-cardSlider li {
  padding-right: 2rem;
}
.l-cardSlider li a {
  display: block;
  color: var(--color-base);
  text-decoration: none;
  width: clamp(300px,20vw, 480px);
  position: relative;
}

.l-cardSlider-img {
}
.l-cardSlider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.l-cardSlider-inner {
  background-color: var(--color-dark01);
  color: var(--color-base);
  padding: 0.6em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-cardSlider-title {
  font-size: 0.9rem;
}


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

  /*
  slider
  */

  .l-cardSlider {
    position: relative;
    padding-bottom: 10px;
  }

  .l-cardSlider-scroll {
    width: auto;
    margin-left: -3vw;
    margin-right: -3vw;
    overflow: auto;
    padding-left: 5vw;
  }


  /*
  card
  */

  .l-cardSlider {
    display: flex;
  }
  .l-cardSlider li {
    padding-right: 10px;
  }
  .l-cardSlider li a {
    width: clamp(200px,65vw, 260px);
  }

  .l-cardSlider-img {
  }
  .l-cardSlider-img img {
    aspect-ratio: 16 / 10;
  }
  .l-cardSlider-inner {
    padding: 0.5em 0.6em;
  }
  .l-cardSlider-title {
    font-size: 0.9rem;
  }

}


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

.l-newsList {
}
.l-newsList li {
}
.l-newsList li + li {
  margin-top: 0.5em;
}
.l-newsList li:not(:last-child) {
}
.l-newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 2em;
  border: 1px solid var(--color-sub02);
  background-color: var(--color-base);
}
body.is-pc .l-newsList a:hover {
  translate: -2px -2px;
  box-shadow: 3px 3px 0 var(--color-brand01);
}
.l-newsList-time {
  display: inline-block;
  width: 9em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand04);
}
.l-newsList-cat {
  display: inline-block;
  min-width: 9em;
  padding: 0.4em 0.5em;
  background-color: var(--color-base);
  border:1px solid var(--color-dark01);
  border-radius: 3px;
  color: var(--color-dark01);
  font-weight: 400;
  font-size: 85%;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.l-newsList-title {
  flex: 1;
  padding-left: 2em;
}
body.is-pc .l-newsList-title:hover {
}

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


  .l-newsList {
  }
  .l-newsList li {
  }
  .l-newsList li + li {
    margin-top: 10px;
  }
  .l-newsList li:not(:last-child) {
  }
  .l-newsList a {
    display: block;
    padding: 1.2em 5vw;
  }
  body.is-pc .l-newsList a:hover {
  }
  .l-newsList-time {
    display: inline-block;
    width: initial;
    font-size: 85%;
    margin-right: 0.5em;
  }
  .l-newsList-cat {
    font-size: 85%;
    min-width: initial;
    padding: 0.1em 0.5em;
    border-radius: 3px;
  }
  .l-newsList-title {
    padding-left: 0;
    padding-top: 0.8em;
  }
  body.is-pc .l-newsList-title:hover {
  }

}


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

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

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

.l-pageList-img {
}
.l-pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}
.l-pageList-inner {
  padding-top: 1em;
}
.l-pageList-heading {
  padding-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.l-pageList-heading::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.6em;
  transition: 0.2s;
}
body.is-pc .l-pageList li a:hover .l-pageList-heading::after {
}

.l-pageList-subTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-brand01);
  padding-top: 0.3em;
}


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


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

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

  .l-pageList-inner {
    padding-top: 1em;
  }
  .l-pageList-heading {
    padding-bottom: 0.5em;
    padding-right: 0;
  }
  .l-pageList-heading::after {
    scale: 0.9;
    top: 0.4em;
  }


  .l-pageList-title {
    font-size: 1.2rem;
  }
  .l-pageList-subTitle {
    padding-bottom: 0.2em;
  }
  .l-pageList-title {
    line-height: 1.4;
  }
}



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

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

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

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

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




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


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

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

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



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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }

}
