@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Noto Sans JP',Meiryo,sans-serif; /* 300 600*/

  --font-family-gothic-en:  'Red Hat Display','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #ec6a1e;
  --color-brand02: #cc5d1d;
  --color-primary01: #0085ce;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #e5e5e5;
  --color-sub02: #f1f0ee;
  --color-sub03: #c4c4c4;
  --color-sub04: #fff7e3;
  --color-sub05: #fffbf1;
  --color-sub06: #ddd;

  --header-height: 100px;
  --fontSize-main: clamp(1.08rem,1.4vw, 1.39rem);
}


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

  :root {
    --header-height: 76px;
  }

}

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

  :root {
    --header-height: 56px;
  }

}
/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-family-gothic);
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--color-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

}

/***********
common
************/

.l-relative {  position: relative !important; }

.l-textAlign-center {  text-align: center !important; }
.l-textAlign-right  {  text-align: right !important; }
.l-textAlign-left   {  text-align: left !important; }

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

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

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

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

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

}

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

.l-wrapper{
}

body.home .l-wrapper {
  opacity: 0;
}
body.home.is-loaded .l-wrapper {
  opacity: 1;
}

.l-contents{
}

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

  .l-wrapper{
    overflow: hidden;
  }

}
/***********
column
************/

.l-column{
  display: flex;
  justify-content: space-between;
  padding-top: 4em;
}

.l-column {
  padding-top: 5em;
  padding-bottom: 2em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
.l-column-first {
  flex: 1;
  padding-right: 3%;
}
.l-column-second {
  width: 24.2%;
  min-width: 220px;
  position: sticky;
  bottom: 2em;
}

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

  .l-column {
    padding-top: 2em;
    padding-bottom: 3em;
    display: block;
  }
  .l-column-first {
    padding-right: 0;
    padding-bottom: 5em;
  }
  .l-column-second {
    width: auto;
    position: static;
    bottom: 2em;
  }

}

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

.l-firstBlock {
  padding-top: 5em;
}

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


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

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

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

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


  .l-firstBlock {
    padding-top: min(12vw,6em);
  }

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

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


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

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

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


}

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

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

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

.l-hoverLine {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}

body.is-pc a:hover .l-hoverLine {
  text-decoration-color: inherit;
}

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

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

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

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

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

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

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

.l-textMain{
  font-size: var(--fontSize-main);
  line-height: 1.8;
  text-align: justify;
}
.l-textLead{
  font-size: var(--fontSize-main);
  line-height: 1.8;
  text-align: center;
}

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

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

.l-list-asterisk {}

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

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

.l-list-brackets {
  list-style: none;
  counter-reset: bracket-counter;
  padding-left: 1em;
}
.l-list-brackets > li {
  counter-increment: bracket-counter;
  position: relative;
  padding-left: 2em;
}
.l-list-brackets > li::before {
  content: "（" counter(bracket-counter) "）";
  position: absolute;
  left: 0;
  font-feature-settings: "palt";
}


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

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

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

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


/***********
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;
  min-width: 20em;
  min-height: 4em;
  padding: 1em 3.5em ;
  font-feature-settings: "palt";
  font-size: clamp(1.24rem,1.4vw, 1.54rem);
  font-weight: 500;
  font-family: var(--font-family-gothic);
  letter-spacing: 0.06em;
  color: var(--color-base);
  text-decoration: none !important;
  background-color: var(--color-brand01);
  transition: all 0.2s ease;
  position: relative;
}
.l-btn:not(.-noicon)::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.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
  line-height: normal;
}
body.is-pc .l-btn:hover {
  background-color: var(--color-main);
}


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

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

.l-btn.-black {
  background-color: var(--color-main);
  color: var(--color-base);
}
body.is-pc .l-btn.-black:hover {
  background-color: var(--color-brand01);
  color: var(--color-base);
}


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

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

  .l-btn {
    min-width: 16em;
    min-height: 4em;
    padding: 1em 2.5em ;
    font-size: clamp(1.16rem,3vw, 1.31rem);
    letter-spacing: 0.04em;
  }
  .l-btn::after {
    right: 0.4em;
  }

}

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

.l-header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.l-header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.l-header-logo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.l-header-logo-brand {
  width: 164px;
}
.l-header-logo-ci {
  width: 134px;
  margin-left: 15px;
}


.l-header-block {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: var(--header-height);
  font-size: clamp(100%,1.1vw, 124%);
}
.l-header-support {
}
.l-header-support br {
  display: none;
}
.l-header-support a {
  display: inline-block;
  padding: 1em 1.5em;
  color: inherit;
  text-decoration: none;
  font-weight: 450;
  letter-spacing: 0.02em;
  position: relative;
}
.l-header-support 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: "\f35d";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
body.is-pc .l-header-support a:hover {
  color: var(--color-brand01);
}

.l-header-tel {
  padding: 0.2em 1.5em 0.2em 1.2em;
  border-left: 2px dotted var(--color-sub03);
  text-align: center;
}
.l-header-tel-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 170%;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}
.l-header-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: "\f590";
  margin-right: 0.2em;
  scale: 0.9;
  transform-origin: left;
}
.l-header-tel-text {
  font-size: 85%;
  font-feature-settings: "palt";
  padding-left: 2em;
}

.l-header-cv {
  height: 100%;
}
.l-header-cv a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  text-decoration: none;
  font-feature-settings: "palt";
  padding: 0.5em 1em 0.5em 1.2em;
  letter-spacing: 0;
  box-shadow: -1px 0 0 transparent inset;
}
.l-header-cv-box {
  text-align: left;
  position: relative;
  padding-left: 2.2em;
}
.l-header-cv-box::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: "\f0e0";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.4em;
}
.l-header-cv-text {
  font-weight: 600;
  font-size: 85%;
}
.l-header-cv-title {
  font-weight: 600;
  font-size: 108%;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.3s;
}

body.is-pc .l-header-cv a:hover {
  background-color: var(--color-main);
  color: var(--color-base);
  box-shadow: -1px 0 0 rgba(255, 255, 255, 0.4) inset;
}
body.is-pc .l-header-cv a:hover .l-header-cv-title {
  /* text-decoration-color: inherit; */
}


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

  .l-header-logo {
    padding-left: 10px;
  }
  .l-header-logo-brand {
    width: 130px;
  }
  .l-header-logo-ci {
    width: 110px;
    margin-left: 10px;
  }

  .l-header-support a {
    padding-right: 1em;
    padding-left: 1.5em;
    line-height: 1.3;
  }
  .l-header-support br {
    display: inline;
  }
  .l-header-support a::before {
    top: 1.2em;
    translate: 0 0;
  }
  .l-header-tel-num {
    font-size: 154%;
  }
  .l-header-tel-text {
    font-size: 77%;
  }

}


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

  .l-header-tel {
    display: none;
  }
  .l-header-logo-brand {
    width: 120px;
  }
  .l-header-logo-ci {
    width: 90px;
    margin-left: 7px;
  }

}

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

  .l-header-logo {
    padding-left: 5px;
  }
  .l-header-logo-brand {
    width: 100px;
  }
  .l-header-logo-ci {
    width: 90px;
    margin-left: 7px;
  }

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

}

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

.l-navi {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-base);
  z-index: 999;
  font-size: clamp(116%,1.2vw, 139%);
}
.l-navi::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid var(--color-sub02);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%,rgba(0, 0, 0, 0.02) 30%, transparent 100%);
  pointer-events: none;
}

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

.l-navi-list > li {
  flex-grow: 1;
  position: relative;
  text-align: center;
}
.l-navi-list > li:first-child::before ,
.l-navi-list > li::after {
  content: "";
  display: block;
  width: 0;
  height: 1.6em;
  border-right: 2px dotted var(--color-sub03);
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
}
.l-navi-list > li:first-child::before {
  left: 0;
}
.l-navi-list > li::after {
  right: -1px;
}
.l-navi-list > li > a {
  display: block;
  font-feature-settings: "palt";
  font-weight: 450;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
  padding: 1.2em 0 1em;
  position: relative;
}
body.is-pc .l-navi-list > li > a:hover{
  color: var(--color-brand01);
}

/*
child
*/


.l-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 13em;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.l-navi-list li:hover ul {
  opacity: 1;
  visibility: visible;
}
.l-navi-list ul li {
  margin-bottom: 1px;
}
.l-navi-list ul li a {
  display: block;
  color: var(--color-base);
  background-color: var(--color-main);
  text-align: left;
  padding: 1em 1em 1.1em 2.4em;
  font-size: 90%;
  position: relative;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
}
body.is-pc .l-navi-list ul li a:hover {
  text-decoration-color: inherit;
}
.l-navi-list ul 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: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
}

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

  .l-navi {
    display: none;
  }
}
/***********
footer
************/

.l-footer {
  padding-top: 5em;
  padding-bottom: 6em;
  font-size: clamp(100%,1.2vw, 124%);
}
.l-footer-container {
  display: flex;
}
.l-footer-info {
  font-feature-settings: "palt";
  font-weight: 450;
  letter-spacing: 0.08em;
}
.l-footer-brand {
  width: clamp(160px,50vw, 230px);
  padding-bottom: 2.5em;
}
.l-footer-ci {
  width: clamp(160px,50vw, 230px);
  padding-bottom: 1.5em;
}
.l-footer-credit {
  padding-bottom: 0.8em;
  line-height: 1.7;
}
.l-footer-address {
  font-style: normal;
  line-height: 1.7;
  padding-bottom: 1em;
}
.l-footer-url {
}
.l-footer-url a {
  color: var(--color-primary01);
  text-decoration: none;
  font-family: var(--font-family-gothic-en);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-footer-url a:hover {
  text-decoration-color: inherit;
}

.l-footer-sitemap {
  flex: 1;
  display: flex;
  justify-content: end;
}

.l-footer-copyright {
  display: block;
  text-decoration: none;
  font-family: var(--font-family-gothic-en);
  font-size: 85%;
  margin-top: -1.5em;
  text-align: right;
}

/*
navi
*/

.l-footer-navi {
  display: flex;
  font-weight: 450;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
.l-footer-navi .l-naviSection > ul {
  padding-left: 3em;
}
.l-footer-navi .l-naviSection > ul a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  position: relative;
}
body.is-pc .l-footer-navi .l-naviSection > ul a:hover {
  text-decoration-color: inherit;
}

.l-footer-navi .l-naviSection > ul > li {
  padding-bottom: 0.2em;
}
.l-footer-navi .l-naviSection > ul > li > a{
  padding: 0.3em 0 0.3em 1.4em;
}
.l-footer-navi .l-naviSection > ul > 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.65em;
  scale: 0.9;
  color: var(--color-brand01);
}

.l-footer-navi .l-naviSection > ul ul{
  padding: 0.2em 0 0.5em 1.4em
}
.l-footer-navi .l-naviSection > ul ul a{
  font-size: 85%;
  padding: 0.2em 0 0.2em 0;
}




.l-footer-navi .l-naviSection > ol {
  padding-left: 3em;
  padding-top: 1em;
  display: none;
}
.l-footer-navi .l-naviSection > ol a {
  display: inline-block;
  color: inherit;
  font-size: 85%;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  position: relative;
}
body.is-pc .l-footer-navi .l-naviSection > ol a:hover {
  text-decoration-color: inherit;
}

.l-footer-navi .l-naviSection > ol > li {
  padding-bottom: 0.2em;
}
.l-footer-navi .l-naviSection > ol > li > a{
  padding: 0.3em 0 0.3em 1.4em;
}
.l-footer-navi .l-naviSection > ol > 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: "\f35d";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.9;
  color: var(--color-brand01);
}



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

  .l-footer-brand {
    width: clamp(160px,30vw, 180px);
    padding-bottom: 3em;
  }
  .l-footer-ci {
    width: clamp(160px,30vw, 180px);
    padding-bottom: 1.5em;
  }
}

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


  .l-footer {
    padding-top: 3em;
    padding-bottom: 3em;
    font-size: clamp(100%,1.2vw, 124%);
    text-align: center;
  }
  .l-footer-container {
    display: block;
  }
  .l-footer-info {
    letter-spacing: 0.04em;
  }
  .l-footer-brand {
    padding-bottom: 1em;
    margin: 0 auto;
  }
  .l-footer-ci {
    padding-bottom: 1.5em;
    margin: 0 auto;
  }
  .l-footer-address {
    padding-bottom: 0.6em;
  }

  .l-footer-sitemap {
    display: none;
  }

  .l-footer-copyright {
    font-size: 85%;
    margin-top:4.5em;
    text-align: center;
  }


}

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

.l-jumpTop{
  position: fixed;
  right: 12px;
  bottom: 12px;
  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: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  color: var(--color-base);
  background-color: var(--color-brand01);
}

@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: var(--color-base);
  /* 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: absolute;
  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;
  background-color: var(--color-main);
  color: var(--color-base);
  border: none;
  -webkit-tap-highlight-color:transparent;
}
.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 32%;
  top: 45%;
  width: 36%;
  height: 2px;
  background-color: var(--color-base);
  border-radius: 3px;
  transition: 0.3s;
  transition: margin 0.3s ease 0.3s , transform 0.3s ease 0s , opacity 0.3s ease 0.3s;
}
.l-menu-btn span:nth-child(2) {
  margin-top: -8px;
}
.l-menu-btn span:nth-child(3) {
  margin-top: 8px;
}


.l-menu-btn p {
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}
.l-menu-btn p::after {
  content: "MENU";
  display: block;
  letter-spacing: 0.18em;
  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 0.3s;
}
.l-menu-btn.is-active span:nth-child(2) {
  margin-top: 0;
  transition: margin 0.3s ease , transform 0.3s ease 0.3s;
  transform: rotate(-30deg);
}
.l-menu-btn.is-active span:nth-child(3) {
  margin-top: 0;
  transition: margin 0.3s ease , transform 0.3s ease 0.3s;
  transform: rotate(30deg);
}

@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-container {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  font-size: clamp(139%,1vw, 200%);
}
.l-menu-inner {
  flex: 1;
  width: 55em;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: calc( var(--header-height) + 1em) min(8vw,8em) 80px;
}

.l-menu-visual {
  /* width: clamp(200px,44vw, 1000px); */
  width: calc(100svw - 55em);
}

/*
header
*/

.l-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2em;
}
.l-menu-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-menu-logo-brand {
  width: 12em;
}
.l-menu-logo-ci {
  width: 7em;
  margin-left: 1em;
}


.l-menu-tel {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.2em 1.5em 0.2em 1.2em;
  border-left: 2px dotted var(--color-sub03);
  border-right: 2px dotted var(--color-sub03);
  text-align: center;
  white-space: nowrap;
}
.l-menu-tel-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 139%;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}
.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: "\f590";
  margin-right: 0.2em;
  scale: 0.9;
  transform-origin: left;
}
.l-menu-tel-text {
  font-size: max(70%,11px);
  font-feature-settings: "palt";
  padding-left: 2em;
}

/*
navi
*/

.l-menu-navi {
  display: flex;
  justify-content: space-between;

  font-weight: 450;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  margin-left: -3em;
}
.l-menu-navi .l-naviSection > ul {
  padding-left: 3em;
}
.l-menu-navi .l-naviSection > ul a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  position: relative;
}
body.is-pc .l-menu-navi .l-naviSection > ul a:hover {
  text-decoration-color: inherit;
}

.l-menu-navi .l-naviSection > ul > li {
  padding-bottom: 0.2em;
}
.l-menu-navi .l-naviSection > ul > li > a{
  padding: 0.3em 0 0.3em 1.4em;
}
.l-menu-navi .l-naviSection > ul > 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.65em;
  scale: 0.9;
  color: var(--color-brand01);
}

.l-menu-navi .l-naviSection > ul ul{
  padding: 0.2em 0 0.5em 1.4em
}
.l-menu-navi .l-naviSection > ul ul a{
  font-size: 85%;
  padding: 0.2em 0 0.2em 0;
}



.l-menu-navi .l-naviSection > ol {
  padding-left: 3em;
  padding-top: 1em;
}
.l-menu-navi .l-naviSection > ol a {
  display: inline-block;
  color: inherit;
  font-size: 85%;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  position: relative;
}
body.is-pc .l-menu-navi .l-naviSection > ol a:hover {
  text-decoration-color: inherit;
}

.l-menu-navi .l-naviSection > ol > li {
  padding-bottom: 0.2em;
}
.l-menu-navi .l-naviSection > ol > li > a{
  padding: 0.3em 0 0.3em 1.4em;
}
.l-menu-navi .l-naviSection > ol > 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: "\f35d";
  position: absolute;
  left: 0;
  top: 0.6em;
  scale: 0.9;
  color: var(--color-brand01);
}




/*
cv
*/

.l-menu-cv {
  padding-top: 1.5em;
}
.l-menu-cv-link {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1%;
  margin-left: -1%;
}
.l-menu-cv-link br {
  display: none;
}
.l-menu-cv-link li {
  flex: 1;
  margin-left: 1%;
}
.l-menu-cv-link a {
  min-height: 4.6em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  font-feature-settings: "palt";
  font-size: 93%;
  position: relative;
}
.l-menu-cv-link 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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
  line-height: normal;
}
body.is-pc .l-menu-cv-link a:hover {
  text-decoration-color: inherit;
}

.l-menu-cv-list {
  display: flex;
  justify-content: space-between;
  margin-left: -1%;
}
.l-menu-cv-list li {
  flex: 1;
  margin-left: 1%;
}
.l-menu-cv-list a {
  min-height: 4.6em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  font-feature-settings: "palt";
  font-size: 93%;
  position: relative;
}
body.is-pc .l-menu-cv-list a:hover {
  text-decoration-color: inherit;
}
.l-menu-cv-list a i {
  margin-right: 0.8em;
  margin-left: -0.4em;
  scale: 1.4;
}

.l-menu-cv .l-menu-tel {
  display: none;
}


/*
slider
*/

.l-menu-slider{
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
  overflow: hidden;
  display: flex;
}

.l-menu-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  height: 100svh;
}
.l-menu-slider-img{
  width: 100%;
  height: 100svh;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.l-menu-slider-img > img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.l-menu-slider-img.-zoom{
  transform-origin: center center;
}
.slick-animation .l-menu-slider-img.-zoom{
  animation: amin-mainVisual-zoom 10s linear forwards;
}
.l-menu-slider-img.-left{
  width: 120%;
  transform-origin: left center;
}
.slick-animation .l-menu-slider-img.-left{
  animation: amin-mainVisual-left 10s linear forwards;
}
.l-menu-slider-img.-right{
  width: 120%;
  transform-origin: right center;
}
.slick-animation .l-menu-slider-img.-right{
  animation: amin-mainVisual-right 10s linear forwards;
}


@keyframes amin-mainVisual-zoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes amin-mainVisual-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes amin-mainVisual-right {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}


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

  .l-menu-inner {
    width: 46em;
    padding-top: 4em;
    padding-left:min(5vw,50px);
    padding-right:min(5vw,50px);
  }

  .l-menu-header {
    padding-right: 100px;
  }
  .l-menu-visual {
    width: calc(100svw - 46em);
  }

  .l-menu-logo-brand {
    width: 9em;
  }
  .l-menu-logo-ci {
    width: 6em;
  }

  .l-menu-navi {
    margin-left: -1.5em;
  }
  .l-menu-navi .l-naviSection > ul {
    padding-left: 1.5em;
  }

  .l-menu-navi .l-naviSection > ol {
    padding-left: 1.5em;
  }


}


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

  .l-menu-container {
    height: auto;
    min-height: 100lvh;
    display: block;
    font-size: clamp(116%,2.4vw, 154%);
  }
  .l-menu-inner {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 5vw 80px;
  }

  .l-menu-visual {
    width: 100%;
  }





  /*
  header
  */

  .l-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5em;
    padding-bottom: 2em;
    padding-right: var(--header-height) ;
  }
  .l-menu-logo {
    padding-top: 1em;
  }


  /*
  slider
  */

  .l-menu-slider,
  .l-menu-slider :not(.slick-dots) li,
  .l-menu-slider-img,
  .l-menu-slider-img > img {
    height: clamp(200px,70vw, 400px);
  }



}


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

  .l-menu-container {
    font-size: clamp(116%,4.5vw, 154%);
  }
  .l-menu-inner {
    padding: 0 10px 0;
  }


  /*
  header
  */

  .l-menu-header {
    display: block;
    padding-top: 0;
    padding-bottom: 1em;
    padding-right: 0;
  }
  .l-menu-logo {
    padding-top: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .l-menu-logo-brand {
    width: 100px;
  }
  .l-menu-logo-ci {
    width: 90px;
    margin-left: 7px;
  }
  .l-menu-header .l-menu-tel {
    display: none;
  }


  .l-menu-cv .l-menu-tel {
    display: block;
  }

  .l-menu-tel {
    margin: 1em 10px;
    border: none;
  }
  .l-menu-tel-num {
    font-size: 154%;
  }
  .l-menu-tel-text {
    font-size: max(85%,14px);
  }


  /*
  navi
  */

  .l-menu-navi {
    display: block;
    letter-spacing: 0.04em;
    margin-left: 1em;
  }
  .l-menu-navi .l-naviSection > ul {
    padding-left: 0;
  }
  .l-menu-navi .l-naviSection > ul a {
    font-weight: 550;
  }

  .l-menu-navi .l-naviSection > ul ul{
    padding: 0.2em 0 0.5em 1.4em;
    display: flex;
    flex-wrap: wrap;
  }
  .l-menu-navi .l-naviSection > ul ul li:not(:last-child) {
    padding-right: 1em;
  }
  .l-menu-navi .l-naviSection > ul ul a{
    font-size: 85%;
    padding: 0.2em 0 0.2em 1.2em;
  }
  .l-menu-navi .l-naviSection > ul ul a::before{
    content: "";
    display: block;
    width: 0.6em;
    height: 2px;
    background-color: var(--color-brand01);
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }


  .l-menu-navi .l-naviSection > ol {
    padding-left: 0;
  }
  .l-menu-navi .l-naviSection > ol br {
    display: none;
  }




  /*
  cv
  */

  .l-menu-cv {
    padding-top: 1.5em;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 1px;
  }
  .l-menu-cv-link {
    margin-bottom: 1px;
    margin-left:  -1px;
  }
  .l-menu-cv-link br {
    display: inline;
  }
  .l-menu-cv-link li {
    margin-left: 1px;
  }
  .l-menu-cv-link a {
    min-height: 6em;
    padding-bottom: 1em;
    font-size: 90%;
    line-height: 1.3;
  }
  .l-menu-cv-link a::before {
    right: 50%;
    top: auto;
    bottom: 0.8em;
    translate: 50% 0 ;
  }
  body.is-pc .l-menu-cv-link a:hover {
    text-decoration-color: inherit;
  }

  .l-menu-cv-list {
    display: flex;
    justify-content: space-between;
    margin-left: -1px;
  }
  .l-menu-cv-list li {
    flex: 1;
    margin-left: 1px;
  }
  .l-menu-cv-list a {
    font-size: 90%;
  }
  body.is-pc .l-menu-cv-list a:hover {
    text-decoration-color: inherit;
  }
  .l-menu-cv-list a i {
    margin-right: 0.4em;
    margin-left: -0.2em;
    scale: 1.2;
  }

  .l-menu-cv .l-menu-tel {
    display: block;
  }



}



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

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

/***********
movie
************/

.l-movie {
/*  max-width: 800px;*/
  margin: 0 auto;
}
.l-movie a {
  display: block;
  position: relative;
}
.l-movie a img {
  margin: 0 !important;
}
.l-movie a::before {
  content: "Play Movie";
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, 50px);
}
.l-movie a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../../img/icon/play.png) no-repeat center center / 80px 80px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: 0.3s;
}
body.is-pc .l-movie a:hover::after {
  opacity: 0.7;
}

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

  .l-movie a::before {
    font-size: 85%;
    transform: translate(-50%, 35px);
  }
  .l-movie a::after {
    background-size: 60px 60px;
  }
}

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

.l-headline{
  text-align: center;
  padding-bottom: 1.2em;
  font-size: clamp(170%,3vw, 270%);
}
.l-headline-title{
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.l-headline-subTitle{
  color: var(--color-brand01);
  font-family: var(--font-family-gothic-en);
  font-size: max(45%,13px);
  font-weight: 600;
  padding-top: 0.5em;
}
.l-headline-text{
  padding-top: 1em;
  font-size: var(--fontSize-main);
  line-height: 1.8;
}

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

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

}

/***********
introHeadline
************/

.l-introHeadline{
  text-align: center;
  padding-bottom: 1em;
  font-size: clamp(185%,3vw, 324%);
}
.l-introHeadline-subTitle{
  color: var(--color-brand01);
  font-size: max(48%,15px);
  font-weight: 600;
  padding-bottom: 0.3em;
}
.l-introHeadline-title{
  line-height: 1.4;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.l-introHeadline-title.-small {
  font-size: 85%;
}
.l-introHeadline-text{
  padding-top: 1em;
  font-size: var(--fontSize-main);
  line-height: 1.8;
}

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

  .l-introHeadline-text{
    text-align: justify;
  }

}

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

.l-heading {
  font-size: clamp(154%,3vw, 270%);
  display: flex;
  align-items: start;
  margin-bottom: 1em;
}
.l-heading-badge {
  padding-right: 1.2em;
  letter-spacing: 0;
}
.l-heading-badge-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.8em;
  height: 2.8em;
  color: var(--color-brand01);
  border-radius: 50%;
  border: 1px solid var(--color-brand01);
  white-space: nowrap;
  position: relative;
}
.l-heading-badge-container::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  right: -0.8em;
  top: 50%;
}
.l-heading-badge-title {
  font-family: var(--font-family-gothic-en);
  font-size: 30%;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-top: 0.5em;
}
.l-heading-badge-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 900;
  line-height: 1.1;
}

.l-heading-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.6em;
}
.l-heading-title {
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.35;
}



.l-contents {
  counter-reset : heading_num;
}
.l-heading.-count .l-heading-badge-num::after {
  display: inline;
  counter-increment:heading_num;
  content: '0'counter(heading_num) ;
}


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

.l-largeHeading {
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  padding-bottom: 3.5em;
}
.l-largeHeading-subTitle {
  font-size: clamp(1.08rem,1.2vw, 124%);
  font-weight: 500;
  color: var(--color-brand01);
  padding-bottom: 0.5em;
}
.l-largeHeading-title {
  font-size: clamp(170%,3vw, 300%);
  font-weight: 700;
  line-height: 1.4;
}


.l-largeHeading.-smallOffset {
  padding-bottom: 2em;
}

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

  .l-largeHeading {
    padding-bottom: 1.8em;
    letter-spacing: 0.02em;
  }
  .l-largeHeading-subTitle {
    line-height: 1.7;
    padding-bottom: 0.2em;
  }
  .l-largeHeading-title {
    line-height: 1.5;
  }
}


/***********
smallHeading
************/

.l-smallHeading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  font-size: clamp(139%,1.8vw, 200%);
  font-feature-settings: "palt";
  padding-bottom: 0.8em;
}
.l-smallHeading-title {
  font-weight: 700;
  padding-right: 0.8em;
}
.l-smallHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: max(50%,12px);
  padding-bottom: 0.2em;
  letter-spacing: 0.04em;
  color: var(--color-brand01);
}


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

.l-title{
  font-size: clamp(154%,2.8vw, 247%);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin-bottom: 0.8em;
  position: relative;
}
.l-title:has(>i) {
  padding-left: 1.4em;
}
.l-title i {
  position: absolute;
  left: 0;
  top: 0.3em;
}

.l-subTitle{
}

.l-minTitle{
  font-size: clamp(139%,2vw, 247%);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}
.l-minTitle.l-font-en {
  font-weight: 600;
}

.l-xminTitle {
  font-size: clamp(139%,1.8vw, 185%);
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}

.l-xxminTitle {
  font-size: clamp(139%,1.8vw, 185%);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  margin-bottom: 0.8em;
}


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

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

.l-bgColor00{
  background-color: var(--color-base);
}
.l-bgColor01{
  background-color: var(--color-sub02);
}
.l-bgColor02{
}


/***********
bg
************/


.l-bg01 {
  background: url(../../img/bg01.jpg) repeat center center ;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* animation: anim-bg01 100s linear infinite; */
  pointer-events: none;
}

@keyframes anim-bg01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2048px -1024px;
  }
}

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

  .l-bg01 {
    background-size: 1024px auto;
    /* animation: anim-bg01 50s linear infinite; */
  }

  @keyframes anim-bg01 {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1024px -512px;
    }
  }
}

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

.l-indexList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -4em;
}
.l-indexList li {
  width: 48.5%;
  margin-bottom: 4em;
}
.l-indexList-visual {
  position: relative;
  overflow: hidden;
}
.l-indexList-visual::after {
}
.l-indexList-visual a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.l-indexList-img {
}
.l-indexList-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: 0.3s;
}
body.is-pc .l-indexList-visual a:hover .l-indexList-img::after {
  opacity: 0;
}

.l-indexList-block {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 1.2em;
  width: 100%;
  font-size: clamp(170%,2vw, 270%);
  font-family: var(--font-family-gothic-en);
  z-index: 2;
  text-align: center;
  color: var(--color-base);
  line-height: 1.3;
}
.l-indexList-subTitle {
  font-weight: 900;
}
.l-indexList-minTitle {
  font-weight: 700;
  font-size: max(45%,10px);
}



.l-indexList-inner {
  padding-top: 1.8em;
}
.l-indexList-title {
  font-size: clamp(139%,1.6vw, 185%);
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.l-indexList-title a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding-left: 1.1em;
  position: relative;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: 0.3s;

}
.l-indexList-title 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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: 0;
  top: 0.7em;
  translate: 0 -50%;
  scale: 0.75;
  transform-origin: left;
  line-height: normal;
}
body.is-pc .l-indexList-title a:hover {
  text-decoration-color: inherit;
}
.l-indexList-text {
  font-size: var(--fontSize-main);
  line-height: 1.6;
  padding-top: 0.5em;
}

.l-indexList.-brand01 .l-indexList-title {
  color: var(--color-brand01);
}


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

  .l-indexList {
    display: block;
  }
  .l-indexList li {
    width: auto;
  }
  .l-indexList li:not(:last-child) {
    margin-bottom: 2.5em;
  }

  .l-indexList-block {
    font-size: clamp(139%,6.5vw, 254%);
  }

  .l-indexList-inner {
    padding-top: 1.5em;
  }
  .l-indexList-title {
    font-size: clamp(139%,1.6vw, 185%);
    letter-spacing: 0.02em;
  }

}

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

.l-pageList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5%;
  margin-bottom: -1.5%;
}
.l-pageList li{
  width: 23.5%;
  margin-left: 1.5%;
  margin-bottom: 1.5%;
}
.l-pageList li a{
  display: block;
  color: var(--color-base);
  text-align: none;
  position: relative;
}
.l-pageList-img {
  position: relative;
}
.l-pageList-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: 0.3s;
}
body.is-pc .l-pageList a:hover .l-pageList-img::after {
  opacity: 0;
}
.l-pageList-block {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
  height: auto;
  padding-bottom: 1em;
  font-size: clamp(139%,2.5vw, 154%);
  font-weight: 600;
  line-height: 1.4;
}
.l-pageList-title {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.l-pageList-subTitle {
  font-family: var(--font-family-gothic-en);
  font-size: max(66%,10px);
  font-weight: 450;
  padding-top: 0.2em;
}

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


  .l-pageList {
  }
  .l-pageList li{
    width: 48.5%;
  }
  .l-pageList-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }
}

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

  .l-pageList-img img {
    aspect-ratio: 16 / 14;
  }
  .l-pageList-block {
    font-size: clamp(100%,4.5vw, 154%);
  }
}

/***********
finder
************/

.l-finder {
}

.l-finder-trigger {
  display: flex;
  border-bottom: 3px solid var(--color-brand01);
  margin-bottom: 3em;
  font-size: clamp(77%,1.2vw, 100%);
}
.l-finder-trigger li {
  flex: 50%;
  cursor: pointer;
  background-color: var(--color-main);
  position: relative;
  margin-bottom: -1px;
}
.l-finder-trigger li.is-active {
  z-index: 9;
}
.l-finder-trigger-container {
  min-height: 5.5em;
  padding: 0.5em 2em;
  display: flex;
  align-items: center;
  color: var(--color-base);
}
.l-finder-trigger-icon {
  font-size: 200%;
  padding-right: 0.6em;
  border-right: 2px dotted rgba(255, 255, 255, 0.5);
}
.l-finder-trigger-block {
  display: flex;
  align-items: center;
  padding-left: 1.5em;
}
.l-finder-trigger-title {
  font-size: 170%;
  font-weight: 450;
  padding-right: 0.8em;
}
.l-finder-trigger-subTitle {
  font-family: var(--font-family-gothic-en);
  font-size: 108%;
  padding-top: 0.4em;
}

.l-finder-trigger li:first-child {
  background-color: var(--color-brand01);
  clip-path: polygon(0% 0%, calc(100% - 2em) 0%, 100% 100%, 0 100%);
}
.l-finder-trigger li:last-child {
  background-color: var(--color-main);
  clip-path: polygon(2em 0%, 100% 0%, 100% 100%, 0 100%);
  padding-left: 2em;
  margin-left: -2em;
}
.l-finder-trigger:has(li:last-child.is-active) {
  border-color: var(--color-main);
}



.l-tags.l-finder-tags {
  font-size: clamp(116%,1.2vw, 139%);
  font-weight: 500;
  font-feature-settings: "palt";
  justify-content: center;
}


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

  .l-finder {
    overflow: hidden;
    margin-left: -3vw;
    margin-right: -3vw;
  }

  .l-finder-trigger {
    font-size: clamp(85%,3vw, 116%);
    font-feature-settings: "palt";
    white-space: nowrap;
    padding: 0 3vw;
    margin-bottom: 2em;
  }
  .l-finder-trigger li {
    width: 50%;
    padding-right: 0;
  }
  .l-finder-trigger li.is-active {
  }
  .l-finder-trigger-container {
    min-height: 5.5em;
    padding: 0.5em 1em;
  }
  .l-finder-trigger-icon {
    font-size: 139%;
    padding-right: 0.4em;
  }
  .l-finder-trigger-block {
    display: block;
    padding-left: 1em;
  }
  .l-finder-trigger-title {
    font-size: 124%;
    font-weight: 450;
    padding-right: 0.8em;
  }
  .l-finder-trigger-subTitle {
    font-size: 77%;
    padding-top: 0em;
  }

  .l-finder-content {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .l-tags.l-finder-tags {
    font-size: clamp(116%,3vw, 116%);
  }
  .l-finder-trigger li:last-child {
    background-color: var(--color-main);
    clip-path: polygon(2em 0%, 100% 0%, 100% 100%, 0 100%);
    padding-left: 1em;
  }

}


/***********
catCard
************/

.l-catCard {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-bottom: -2em;
}
.l-catCard li {
  width: 24%;
  margin-left: 1%;
  margin-bottom: 2em;
}
.l-catCard li a {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
}
.l-catCard-img {
  border-radius: 5px;
}
.l-catCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}
.l-catCard-inner {
  padding-top: 0.8em;
  letter-spacing: 0.02em;
}
.l-catCard-title {
  font-size: clamp(124%,1.4vw, 170%);
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  font-weight: 450;
  line-height: 1.35;
}
.l-catCard-subTitle {
  font-weight: 450;
  font-family: var(--color-brand01);
  color: var(--color-brand01);
}

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

  .l-catCard {
    margin-left: -2%;
    margin-bottom: -1em;
  }
  .l-catCard li {
    width: 48%;
    margin-left: 2%;
    margin-bottom: 1em;
  }
  .l-catCard-inner {
    padding-top: 0.4em;
  }
  .l-catCard-title {
    font-size: clamp(116%,2.5vw, 139%);
    letter-spacing: 0.04em;
  }
  .l-catCard-subTitle {
    font-size: 85%;
  }
}
/***********
tags
************/

.l-tags {
  display: flex;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.l-tags a,
.l-tags span {
  background-color: var(--color-sub01);
  color: inherit;
  text-decoration: none;
  padding: 0.3em 1em 0.4em;
  margin: 0 0.15em 0.4em;
  border-radius: 10em;
  cursor: pointer;
  transition: 0.3s;
}
body.is-pc .l-tags a:hover ,
body.is-pc .l-tags span:hover {
  background-color: var(--color-brand01);
  color: var(--color-base);
}


/***********
card
************/

.l-card {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -3em;
  font-size: clamp(108%,1.2vw, 124%);
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.l-card li {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 3em;
}
.l-card li a {
  height: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: var(--color-base);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.l-card.-shadow li a {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.l-card-img {
  border-bottom: 2px solid var(--color-sub02);
}
.l-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 19 / 11;
}

.l-card-inner {
  padding: 1.2em 1.5em 1.5em;
  position: relative;
}
.l-card-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8em;
}
.l-card-cat {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-base);
  padding: 0.3em 0.8em 0.4em;
  font-size: 95%;
  font-feature-settings: "palt";
}
.l-card-cat i {
  margin-right: 0.4em;
}
.l-card-writer {
  font-size: 93%;
  opacity: 0.8;
}
.l-card-time {
  display: inline-block;
  font-size: 85%;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  white-space: nowrap;
}
.l-card-time::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: "\f017";
  transform-origin: left;
  scale: 0.9;
  margin-right: 0.1em;
}

.l-card-heading {
  font-size: 147%;
  line-height: 1.4;
  padding-bottom: 0.4em;
}

.l-card-title {
  font-size: 108%;
  font-weight: 450;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-card a:hover .l-card-title {
  text-decoration-color: inherit;
}
.l-card-tags.l-tags {
  font-size: max(85%,12px);
  font-weight: 500;
  padding-top: 1em;
}

.l-card-text {
  font-size: 100%;
  font-weight: 400;
  line-height: 1.6;
}

.l-card-summary {
  padding-top: 0.8em;
  padding-bottom: 0.4em;
  color: var(--color-brand01);
  font-size: 108%;
  font-weight: 450;
  line-height: 1.45;
}

.l-card-link {
  text-align: right;
  padding-top: 0.8em;
}
.l-card-link-btn {
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;

}
.l-card-link-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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  margin-left: 0.5em;
  scale: 1.1;
}
body.is-pc a:hover .l-card-link-btn {
  color: var(--color-brand01);
  text-decoration: underline;
  text-decoration-color: var(--color-brand01);
}


/*
small
*/

.l-card.-small .l-card-inner {
  padding: 0.8em 1.5em 1.5em;
  font-size: 90%;
}
.l-card.-small .l-card-cat {
  display: inline-block;
  background-color: transparent;
  color: var(--color-brand01);
  padding: 0 0 0.5em;
  font-size: 100%;
  font-weight: 500;
  font-feature-settings: "palt";
}

/*
carousel
*/

.carouselWrapper {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 15px;
}
.carouselWrapper-inner {
}

.l-card.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  margin-top: -2em;
}
.l-card.-carousel li {
  width: auto;
  flex: 1;
  padding: 2em 12px;
  margin-left: 0;
  margin-bottom: 0;
}
.l-card.-carousel li a {
}
.l-card.-carousel .l-card-title {
  max-height: calc(3em * 1.5);
  line-height: 1.5;
  padding-bottom: 0.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*
slick
*/

.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-sub01);
  cursor: pointer;
  transition: 0.2s;
}
.carouselWrapper .slick-prev{
  right: calc(100% + 30px);
}
.carouselWrapper .slick-next{
  left: calc(100% + 30px);
}

.carouselWrapper .slick-next span,
.carouselWrapper .slick-prev span{
  width: 14px;
  height: 14px;
  border: red;
  border: 1px solid var(--color-main);
  margin: 0 auto;
  rotate: 45deg;
  transition: 0.2s;
}
.carouselWrapper .slick-prev span {
  border-right: none;
  border-top: none;
  translate: 20% 0 ;
}
.carouselWrapper .slick-next span {
  border-left: none;
  border-bottom: none;
  translate: -20% 0 ;
}

body.is-pc .carouselWrapper .slick-next:hover,
body.is-pc .carouselWrapper .slick-prev:hover{
  background-color: var(--color-brand01);
}
body.is-pc .carouselWrapper .slick-next:hover span,
body.is-pc .carouselWrapper .slick-prev:hover span{
  border-color: var(--color-base);
}

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

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


}

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

  .l-card {
  }
  .l-card li {
    width: 48%;
  }
  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 3vw;
    margin-left: -3vw;
    margin-right: -3vw;
  }


  .l-card.-carousel {
    display: flex;
    padding-top: 30px;
  }
  .l-card.-carousel li {
    padding: 15px ;
    padding-left: 0;
  }
  .l-card.-carousel li a {
    width: 280px;
  }


  .l-card-inner,
  .l-card.-small .l-card-inner {
    padding: 1em 1em 1.2em;
    font-size: 100%;
  }


  .l-card-cat {
    font-size: 85%;
  }
  .l-card-writer {
    font-size: 85%;
  }
  .l-card-time {
    font-size: 85%;
  }

  .l-card-title {
    font-size: 100%;
  }


  .l-card-heading {
    font-size: 124%;
  }


  .l-card-summary {
    font-size: 100%;
  }
}

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

  .l-card {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
  }
  .l-card li {
    width: auto;
    margin-left: 0;
    margin-bottom: 1em;
  }
  .l-card-time {
    font-size: 85%;
  }

}

/***********
visual
************/

.l-visual {
  overflow: hidden;
  height: clamp(260px,24vw, 600px);
}
.l-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-visual.-small {
  height: clamp(240px,20vw, 500px);
}
.l-visual.-xsmall {
  height: clamp(220px,16vw, 440px);
}
.l-visual.-xxsmall {
  height: clamp(200px,13vw, 400px);
}

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

  .l-visual {
    height: clamp(160px,40vw, 400px);
  }
  .l-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .l-visual.-xsmall {
    height: clamp(200px,13vw, 400px);
  }
  .l-visual.-xxsmall {
    height: clamp(120px,33vw, 300px);
  }
}

/***********
banner
************/

.l-banner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -3%;
}
.l-banner li {
  width: 47%;
  margin-left: 3%;
  margin-bottom: 3%;
}
.l-banner li a {
  display: block;
  font-size: clamp(100%,1.2vw, 124%);
  font-feature-settings: "palt";
  min-height: 10.5em;
  position: relative;
  color: var(--color-base);
  text-decoration: none;
  overflow: hidden;
}
.l-banner li a .l-bg01 {
  animation-play-state: paused;
  animation-delay: -10s;
}
.l-banner li:nth-child(3n+2) a .l-bg01 {
  animation-play-state: paused;
  animation-delay: -30s;
}
.l-banner li:nth-child(3n) a .l-bg01 {
  animation-play-state: paused;
  animation-delay: -50s;
}
body.is-pc .l-banner li a:hover .l-bg01 {
  animation-play-state: running;
}
.l-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 40%;
  height: 100%;
}
.l-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-banner-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4em;
}
.l-banner-title {
  font-weight: 450;
  font-size: 154%;
  position: relative;
  margin-top: 0.2em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-banner li a:hover .l-banner-title {
  text-decoration-color: inherit;
}
.l-banner-title::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: calc(100% + 0.2em);
  top: 55%;
  translate: 0 -50%;
  scale: 0.7;
  line-height: normal;
}
.l-banner-subTitle {
  padding-top: 0.2em;
}


.l-banner.-small {
  margin-left: -1%;
  margin-bottom: -1%;
}
.l-banner.-small li {
  width: 32.3%;
  margin-left: 1%;
  margin-bottom: 1%;
}
.l-banner.-small li a {
  min-height: 9em;
}


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


  .l-banner {
    display: block;
    margin-bottom: -8px;
    margin-left: 0;
  }
  .l-banner li {
    width: auto;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .l-banner li a {
    display: block;
    font-size: clamp(100%,3.6vw, 154%);
    min-height: 8.5em;
  }

  .l-banner-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 35%;
    height: 100%;
  }
  .l-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-banner-block {
    padding-left: 2em;
  }
  .l-banner-title {
    font-size: 124%;
  }
  .l-banner-subTitle {
    font-size: max(85%,11px);
  }



  .l-banner.-small {
    display: flex;
    margin-left: -1%;
    margin-bottom: -1%;
  }
  .l-banner.-small li {
    width: 32.3%;
    margin-left: 1%;
    margin-bottom: 1%;
  }


  .l-banner.-small li a {
    min-height: 9em;
    font-size: clamp(100%,2vw, 124%);
    padding-right: 13em;
  }

}


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


  .l-banner.-small {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
  }
  .l-banner.-small li {
    width: auto;
    margin-left: 0;
    margin-bottom: 2px;
  }
  .l-banner.-small li a {
    display: block;
    font-size: clamp(100%,3.6vw, 154%);
    min-height: 6em;
  }

}


/***********
cv
************/

.l-cv {
  position: relative;
  overflow: hidden;
  color: var(--color-base);
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  background: url(../../img/bg01.jpg) repeat center center;
}
.l-cv-container {
  display: flex;
  position: relative;
  z-index: 2;
}
.l-cv-item {
  flex: 1;
  padding: 3.5em 0 4em;
  font-size: clamp(108%,1.2vw, 124%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.l-cv-item:first-child::after {
  content: "";
  display: block;
  width: 10;
  height: 60%;
  position: absolute;
  right: 0;
  top: 20%;
  border-right: 2px dotted rgba(255, 255, 255, 0.8);
}
.l-cv-box {
  margin: 0 auto;
}
.l-cv-title {
  font-weight: 450;
  padding-bottom: 0.8em;
}
.l-cv-link {
}
.l-cv-btn {
  display: inline-block;
  background-color: var(--color-base);
  color: var(--color-main);
  padding: 1.2em 3em 1.2em 4em;
  text-decoration: none;
  font-size: 116%;
  font-weight: 600;
  position: relative;
}
body.is-pc .l-cv-btn:hover {
  background-color: var(--color-main);
  color: var(--color-base);
}
.l-cv-btn::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: "\f0e0";
  position: absolute;
  left: 1.2em;
  top: 52%;
  translate: 0 -50%;
  font-size: 1.2em;
}
.l-cv-tel {
}
.l-cv-tel a {
  display: inline-block;
  color: var(--color-base);
  text-decoration: none;
}
.l-cv-tel-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 254%;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.l-cv-tel-text {
}
.l-cv-tel-text span {
  font-family: var(--font-family-gothic-en);
  font-weight: 450;
}

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

  .l-cv-tel-num {
    font-size: 185%;
  }
}

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

  .l-cv {
    letter-spacing: 0.04em;
    background-size: 1024px 512px;
  }
  .l-cv-container {
    display: block;
  }
  .l-cv-item {
    padding: 2.5em 0 3em;
    font-size: clamp(100%,3vw, 124%);
    display: block;
    text-align: center;
  }
  .l-cv-item:first-child::after {
    width: 100%;
    height: 0;
    right: 0;
    top: 100%;
    border-right: none;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.8);
  }
  .l-cv-title {
    font-size: 116%;
  }
  .l-cv-tel-num {
    font-size: 231%;
  }

}


/***********
figure
************/

.l-figure {
}
.l-figure figcaption {
  font-size: clamp(93%,1vw, 124%);
  padding-top: 0.8em;
  line-height: 1.7;
  text-align: justify;
  letter-spacing: 0;
}

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

}

/***********
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.-w480 {
    width: 100%;
    min-width: 480px;
  }
}

@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); }
  80%   {transform:translateX(-50px);  }
  100%  {transform:translateX(0);  }
}


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









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

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

[data-fade="fade-up"] {
  transform: translateY(20px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }

}
