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

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #1a1a1a;
  --color-dark02: #464646;

  --color-brand01: #90876a;
  --color-brand02: #8D8465;

  --color-primary01: #009955;
  --color-secondary01: #e09810;
  --color-accent01: #e00;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #e6e6e6;
  --color-sub03: #ccc;

  --fv-padding: 30px;
  --control-width: 320px;

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

  --header-height: 120px;

}

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

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

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

body {
  background-color: var(--color-base);
}
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) {
  html {
    font-size: clamp(14px, calc(8px + 1vw), 16px);
  }
  body{
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:640px) {
  html {
    /* font-size: clamp(14px, calc(11px + 1.2vw), 16px); */
  }
}


a {
  color: var(--color-brand01);
  text-decoration: underline;
  transition: 0.4s;
}

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

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

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



body.is-pc a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

}

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

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

  .wp-caption-text {
    font-size: clamp(0.6rem,2vw, 0.8rem);
    line-height: 1.5;
  }

}

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

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

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

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

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

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

.l-wrapper{
  position: relative;
  z-index: 2;
  transition: 0.8s ease-in-out;
  background-color: var(--color-base);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

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

  .l-container {
    opacity: 0;
    transition: opacity .6s ease, margin-top .6s ease;
  }
  html.is-ready .l-container {
    opacity: 1;
  }
  html.is-leaving .l-container {
    opacity: 0;
    margin-top: -20px;
  }

.l-contents{
}

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

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

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

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

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

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5vw,12px);
  padding-right: min(5vw,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);
}


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

[class*="l-block"].-firstSection {
  padding-top: 0 !important;
}


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

}


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

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


/***********
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-markerLine {
  background: linear-gradient(to right ,rgba(138, 129, 99, 0.7), rgba(138, 129, 99, 0.7)) 0 100% / 0 0.3em no-repeat;
  text-decoration: none;
  padding-bottom: 0.2em;
}
.l-markerLine.is-inview {
  background-size: 100% 0.3em;
  transition: background 1s ease 0.8s;
}


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

.l-mask {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.8s;
  vertical-align: middle;
}
.is-show .l-mask,
.is-show.l-mask {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.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;
  font-size: 0.85rem;
}
.l-textLead{
  line-height: 2;
  text-align: center;
  font-size: 0.85rem;
}

.l-textEn {
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  opacity: 0.8;
}


.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-block;
  width: auto;
  min-width: 18em;
  padding: 0.8em 2em ;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font-family-gothic-en);
  border: 1px solid var(--color-main);
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none !important;
  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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.7;
  line-height: normal;
}

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

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

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

}

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

.l-btn02 {
  display: inline-block;
  width: auto;
  padding: 1em 4.5em 1rem 0;
  font-weight: 500;
  font-size: 1.3rem;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none !important;
  transition: 0.4s;
  position: relative;
}
.l-btn02::before {
  content: "";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3em;
  height: 3em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: url(../../img/icon/arrow.png) no-repeat center center / 30% auto;
  rotate: -45deg;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -45%;
  transition: 0.3s;
}
.l-btn02::after {
  content: "";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3em;
  height: 3em;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -45%;
  scale: 0.4;
  opacity: 0;
  filter: blur(1em);
  transition: 0.3s;
}

.l-btn02 span {
  display: inline-block;
  padding: 0.4em 0.2em;
  background: linear-gradient(var(--color-main),var(--color-main)) 100% 100%/100% 1px no-repeat;
}
body.is-pc .l-btn02:hover::before {
  border-color: rgba(0, 0, 0, 0.5);
  background-position: 56% center;
}
body.is-pc .l-btn02:hover::after {
  scale: 1;
  opacity: 1;
  filter: blur(0);
}
body.is-pc .l-btn02:hover span {
  animation: anim-hoverLine .5s cubic-bezier(.23, 1, .32, 1) 0s
}

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

/*
color
*/

.l-btn02.-white {
  color: var(--color-base);
}
.l-btn02.-white::before {
  border-color: rgba(255, 255, 255, 0.3);
  background-image: url(../../img/icon/arrow_wt.png) ;
}
.l-btn02.-white::after {
  background-color: rgba(255, 255, 255, 0.1);
}
.l-btn02.-white span {
  background: linear-gradient(var(--color-base),var(--color-base)) 100% 100%/100% 1px no-repeat;
}
body.is-pc .l-btn02.-white:hover::before {
  border-color: rgba(255, 255, 255, 0.5);
}


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


  .l-btn02 {
    padding-right: 3.2em;
    margin-left: 1em;
  }
  .l-btn02::before {
    width: 2.5em;
    height: 2.5em;
  }
  .l-btn02::after {
    width: 2.5em;
    height: 2.5em;
  }

}

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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  font-size: 1.1rem;
  padding-left: 3em;
  padding-right: 3em;
  transition: 0.4s;
}

.l-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.l-header-logo {
  width: 9em;
  transition: 0.4s;
}
.l-header-logo img {
  margin-top: -1em;
  transition: 0.4s;
}

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

/*
navi
*/

.l-header-navi {
}
.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: 2.5em;
}
.l-header-navi-list > li > a {
  display: inline-block;
  font-weight: 500;
  font-size: 110%;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0.2s;
  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.4s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list > li:hover > a {
  transform: translateY(-2px);
}
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: 1.2em 1em 1.2em 2em;
  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
}
.l-header-navi-list ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: max(75%,11px);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
}
.l-header-navi-list ul a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list ul a:hover::before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left ;
}

/*
home
*/

body.home:not(.is-fixed) .l-header-logo img {
  filter: invert(1);
}
body.home:not(.is-fixed) .l-header-navi-list > li > a {
  color: var(--color-base);
}
body.home:not(.is-fixed) .l-header-navi-list > li::before {
  background-color: var(--color-base);
}
body.home:not(.is-started) .l-header-inner {
  opacity: 0;
  translate: 0 -1em;
}
body.home.is-started .l-header-inner {
  opacity: 1;
  translate: 0 0;
  transition: 1s ease 2s;
}


/*
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:1024px) {

  .l-header {
    font-size: 1rem;
    padding-left: 2em;
    padding-right: 2em;
  }

  /*
  navi
  */

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

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

  .l-header,
  body.is-fixed .l-header {
    width: 100%;
    height: auto;
    padding: 0 0 0 15px;
    display: block;
    background: none;
    backdrop-filter:initial;
    -webkit-backdrop-filter: initial;
  }

  .l-header-inner {
    height: auto;
    display: block;
  }
  .l-header-logo {
    display: block;
    width: 8em;
    transition: 0.4s;
    padding-top: 1rem;
  }
  .l-header-logo img {
    margin-top: 0;
    transition: 0.4s;
  }

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

  /*
  home
  */

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

  /*
  fixed
  */

  body.is-fixed .l-header-logo {
    width: 6em;
    padding-top: 0.5rem;
  }

}

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

.l-jumpTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  transform: translateY(160px);
  transition: 1s;
  mix-blend-mode: difference;
}
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;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #eee;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 33% auto;
  rotate: -90deg;
  opacity: 0.5;
}
body.is-pc .l-jumpTop a:hover{
  opacity: 1;
}


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

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

}

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

.l-footer {
  background-color: var(--color-dark02);
  color: var(--color-base);
  padding: min(10vw,6em) 8vw 5em;
}

.l-footer-container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4em;
}
.l-footer-info {
  padding-right: 2em;
}
.l-footer-logo {
  width: 11em;
  filter: invert(1);
  padding-bottom: 2em;
}
.l-footer-title {
  font-weight: 600;
  padding-bottom: 0.5em;
}
.l-footer-address {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1.8;
  opacity: 0.7;
}


.l-footer-sitemap {
}
.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  width: 24em;
}
.l-footer-navi li {
  width: 50%;
  padding-bottom: 0.2em;
}
.l-footer-navi li a {
  display: inline-block;
  font-weight: 400;
  font-size: 115%;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0.2s;
  transition-delay: 0s !important;
}

.l-footer-navi li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.4em;
  background-color: var(--color-base);
  opacity: 0.6;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right ;
}
body.is-pc .l-footer-navi li a:hover > a {
  transform: translateY(-2px);
}
body.is-pc .l-footer-navi li a:hover::before {
  transform: scaleX(1);
  transform-origin: left ;
}



.l-footer-cv {
  display: flex;
  justify-content: end;
  padding-top: 2em;
  padding-bottom: 4em;
}
.l-footer-cv li {
  padding-left: 1em;
}
.l-footer-cv li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-base);
  width: 15em;
  height: 4em;
  border: 1px solid var(--color-brand01);
  border-radius: 5em;
  text-decoration: none;
}
.l-footer-cv-tel {
  font-family: var(--font-family-gothic-en);
  font-size: 110%;
  letter-spacing: 0.08em;
}
.l-footer-cv-tel img {
  width: 1em;
  margin-right: 1em;
  margin-left: -1em;
  scale: 1.8;
  translate: 0 -0.2em;
}
.l-footer-cv-mail {
}
.l-footer-cv-mail img{
  width: 1em;
  scale: 1.6;
  translate: 0 -0.2em;
}
body.is-pc .l-footer-cv li a:hover {
  background-color: rgba(255, 255, 255, 0.02);

}
body.is-pc .l-footer-cv li a:hover {
  box-shadow: 0 0 1em rgba(255, 255, 255, 0.2);
}




.l-footer-lower {
  padding-top: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.l-footer-copyright {
  display: block;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
}
.l-footer-subNavi {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.l-footer-subNavi li:not(:last-child) {
  padding-right: 4em;
}
.l-footer-subNavi li a {
  display: inline-block;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 0.6;
  transition-delay: 0s !important;
}
.l-footer-subNavi li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.4em;
  background-color: var(--color-base);
  opacity: 0.6;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right ;
}
body.is-pc .l-footer-subNavi li a:hover > a {
  transform: translateY(-2px);
}
body.is-pc .l-footer-subNavi li a:hover::before {
  transform: scaleX(1);
  transform-origin: left ;
}


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

  .l-footer-sitemap {
  }
  .l-footer-navi {
    font-size: 0.9rem;
    width: 16em;
  }
  .l-footer-navi li {
    padding-bottom: 0;
  }
  .l-footer-navi li a {
    padding: 0.3em 0;
  }


  .l-footer-cv {
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2em;
    padding-bottom: 4em;
  }
}

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

  .l-footer {
    padding: min(15vw,7em) 8vw 5em;
  }

  .l-footer-container {
    display: block;
    padding-bottom: 2em;
  }
  .l-footer-info {
    padding-right: 2em;
  }
  .l-footer-logo {
    width: 10em;
    padding-bottom: 1em;
  }


  .l-footer-sitemap {
    padding-top: 2em;
  }
  .l-footer-navi {
    display: block;
    width: auto;
    display: flex;
    margin-right: -8vw;
  }
  .l-footer-navi li {
    width: auto;
    min-width: 8em;
    padding-bottom: 0.2em;
  }
  .l-footer-navi li a {
    padding: 0.3em 0;
  }



  .l-footer-cv {
    padding-top: 1em;
    gap: 0.4em;
  }
  .l-footer-cv li {
    padding-left: 0;
  }
  .l-footer-cv li a {
    width: 10em;
    height: 3em;
  }
  .l-footer-cv-tel {
    font-family: var(--font-family-gothic-en);
    font-size: 110%;
    letter-spacing: 0.08em;
    letter-spacing: 0;
  }
  .l-footer-cv-tel img {
    margin-right: 0.5em;
    margin-left: -0.5em;
    scale: 1.6;
  }


  .l-footer-lower {
    display: block;
  }
  .l-footer-copyright {
    padding-top: 4em;
    text-align: center;
  }
  .l-footer-subNavi {
    justify-content: center;
    gap: 0 1.5em;
  }
  .l-footer-subNavi li:not(:last-child) {
    padding-right: 0;
  }
  .l-footer-subNavi li a {
    padding: 0.3em 0;
  }

}


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

.l-menu{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1;
  left: 0;
  top: 0;
  transition: visibility 0s linear 0.8s;
  background-color: var(--color-sub01);
  -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: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s ease-in-out;
  z-index: -1;
  /* background-color: rgba(0, 0, 0, 0.1); */
}
.is-menu-open .l-menu-close{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 9990;
  right: 300px;
}



.l-menu-trigger {
  display: none;
  position: fixed;
  right: 5px;
  top: 2px;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  background-color: transparent;
  mix-blend-mode: difference;
}

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

.l-menu-btn {
  display: block;
  position: relative;
  width: 56px;
  height: 54px;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color:transparent;
}
.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: 12px;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  position: absolute;
  line-height: 1;
  left: 0;
  bottom: 0.2em;
  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;
  letter-spacing: 0.1em;
  color: var(--color-main);
  white-space: nowrap;
}

.l-menu-btn.is-active {
  background-color: transparent;
}
.l-menu-btn.is-active span:nth-child(1) {
  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: -4px;
  transition: margin 0.3s ease , transform 0.3s ease 0.3s, background-color 0.3s ease 0s;
  transform: rotate(30deg);
}

/*
set
*/

body.home:not(.is-fixed) .l-menu-trigger,
body.is-menu-open .l-menu-trigger {
  mix-blend-mode: normal;
}
body.is-menu-open .l-menu-btn span {
  background-color: var(--color-main);
}

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

.l-menu-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: end;
}


.l-menu-container {
  width: 300px;
  padding-top: 20px;
  padding-bottom: 150px;
  color: var(--color-main);
}

/*
navi
*/

.l-menu-navi {
  text-align: left;
  position: relative;
  z-index: 9;
}

.l-menu-navi button {
  display: none;
}

.l-menu-navi-list {
}

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

.l-menu-navi-list > li > a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  font-family: var(--font-family-gothic-en);
  padding: 0.2em 1.5em;
}


/*
child1
*/

.l-menu-navi-list >li > ul {
  padding: 0.2em 0 0.5em 2.5em;
}

.l-menu-navi-list > li > ul > li > a {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  padding: 0.2em 0 0.3em 1em;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-menu-navi-list > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 1em;
}



/*
cv
*/

.l-menu-cv {
  padding-bottom: 1em;
}


/*
sub
*/

.l-menu-subNavi {
  display: flex;
  justify-content: center;
  gap: 0 1.5em;
  flex-wrap: wrap;
}

.l-menu-subNavi li {
}

.l-menu-subNavi a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 0 0.5em 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{
  padding-bottom: 4em;
  text-align: center;
}
.l-heading-subTitle{
  font-size: 5.5rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: -0.5em;
}
.l-heading-subTitle.-small{
  font-size: 3rem;
}
.l-heading-title{
  font-weight: 500;
  margin-top: 0.3em;
}
.l-heading-text{
  font-size: 0.85rem;
  line-height: 2;
  text-align: center;
  padding-top: 3em;
}


.l-heading-box {
  display: inline-block;
  position: relative;
}
.l-heading-object {
  position: absolute;
}
.l-heading-object.-no01 {
  width: clamp(90px,20vw, 250px);
  left: calc(100% + 4em);
  top: 50%;
  translate: 0 -55%;
}
.l-heading-object.-no02 {
  width: clamp(50px,14vw, 150px);
  right: calc(100% + 4em);
  bottom: 0;
}



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

  .l-heading{
    padding-bottom: 2em;
  }
  .l-heading-subTitle,
  .l-heading-subTitle.-small{
    font-size: clamp(2rem,14vw, 4rem);
  }
  .l-heading-title{
    font-size: 0.85rem;
  }

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




  .l-heading-box {
    display: block;
  }
  .l-heading-object {
  }
  .l-heading-object.-no01 {
    left: auto;
    right: 0;
    top:auto;
    bottom: 0;
    translate: 0 20%;
  }
  .l-heading-object.-no02 {
    right: auto;
    left: 8%;
    bottom: auto;
    top: 0;
    translate: 0 -50%;
  }

}

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

}


/***********
l-largeHeading
************/

.l-largeHeading {
  padding-bottom: 3em;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.l-largeHeading-subTitle {
  /* font-size: 5.4rem; */
  font-size: clamp(4.5rem,10vw, 12rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  margin-right: 0.4em;
}
.l-largeHeading-title {
  font-size: 0.9rem;
  font-weight: 500;
  translate: 0 -1.8em;
}

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

  .l-largeHeading {
    padding-bottom: 2em;
  }
  .l-largeHeading-subTitle {
    /* font-size: clamp(2rem,12vw, 4rem); */
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }

  .l-largeHeading-title {
    translate: 0 -1.2em;
  }
}

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

.l-title{
  font-size: min(1.5rem,28px);
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-brand01);
  padding-bottom: 0.8em;
  margin-bottom: 1.2em;
}
.l-subTitle{

}
.l-minTitle{
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 0.7em;
  letter-spacing: 0.06em;
}
.l-xminTitle{
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.7em;
  letter-spacing: 0.06em;
}

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

  .l-title{
    font-size: min(1.1rem,20px);
  }
  .l-minTitle{
    font-size: 1.15rem;
  }
}

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

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

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

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

.l-cv {
  background: url(../../img/bg01.jpg) no-repeat center center / cover ;
  padding: min(14vw,6em) 3vw min(18vw,10em);
  color: var(--color-base);
  text-align: center;
  position: relative;
}
.l-cv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
}

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

.l-cv-heading {
}
.l-cv-heading-title {
  font-size: 4.2rem;
  font-size: clamp(4.5rem,9vw, 11rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.l-cv-heading-text {
  font-size: 0.85rem;
  padding-top: 2.5em;
}

.l-cv-block {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding-top: 3em;
}
.l-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 26em;
  min-height: 6em;
  border-radius: 10em;
  background-color: var(--color-base);
  color: var(--color-main);
  text-decoration: none;
}
body.is-pc .l-cv-btn:hover {
  box-shadow: 0 0 1.5em #fff;
}
.l-cv-tel {
  padding-top: 0.15em;
}
.l-cv-tel .l-cv-icon {
  translate: 0 -0.08em;
  margin-right: 0.2em;
}
.l-cv-tel-num {
  font-family: var(--font-family-gothic-en);
  font-size: 135%;
  font-weight: 500;
  line-height: 1;
}
.l-cv-tel-text {
  font-size: 0.8rem;
  opacity: 0.7;
}
.l-cv-btn-text {
  font-weight: 500;
  font-size: 95%;
}

.l-cv-icon {
  width: 1.5rem;
  vertical-align: middle;
  margin-right: 0.5em;
  scale: 1.2;
}

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

  .l-cv {
    padding: min(12vw,5em) 5vw min(12vw,5em);
  }

  .l-cv-heading-title {
    font-size: 3.2rem;
  }
  .l-cv-heading-text {
    font-size: 0.85rem;
    padding-top: 1.5em;
    line-height: 1.8;
  }

  .l-cv-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    padding-top: 3em;
  }
  .l-cv-btn {
    width: 18em;
    min-height: 5em;
    font-feature-settings: "palt";
  }
  .l-cv-tel-num {
    font-size: 150%;
    margin-left: -0.5em;
  }
  .l-cv-btn-text {
    font-weight: 500;
    font-size: 100%;
  }

}
/***********
newsList
************/

.l-newsList {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.l-newsList li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.l-newsList li a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 2em 2em 2em 3em;
  min-height: 7.8em;
  position: relative;
}
.l-newsList li a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow.png) no-repeat center center / 100% auto;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.5em;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: 0.4s;
}
body.is-pc .l-newsList li a:hover {
  translate: 0.3em 0;
}
body.is-pc .l-newsList li a:hover::before {
  opacity: 1;
}
.l-newsList-data {
  display: flex;
}
.l-newsList-data-time {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  padding-right: 1.5em;
  margin-right: 1.5em;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
.l-newsList-data-time::after {
  content: "";
  display: block;
  width: 1px;
  height: 2em;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  background: rgba(0, 0, 0, 0.3);
}
.l-newsList-data-cat {
  display: inline-block;
  font-size: 0.75rem;
}

.l-newsList-title {
  flex: 1;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.4em;
  transition: 0.3s;
  padding-left: 4em;
}
body.is-pc .l-newsList li a:hover .l-newsList-title {
}

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

}

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

  .l-newsList li a {
    display: block;
    font-size: 0.9rem;
    padding: 2em 2em 2em 0.5em;
    min-height: initial;
  }
  .l-newsList li a::before {
    left: auto;
    right: 0;
    top: 50%;
    opacity: 1;
  }
  body.is-pc .l-newsList li a:hover::before {
    opacity: 1;
  }

  .l-newsList-title {
    padding-left: 0em;
    padding-top: 0.8em;
  }


}

/***********
l-pageContent
************/

.l-pageContent {
  overflow: hidden;
}
.l-pageContent-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: -4%;
}
.l-pageContent-list li {
  width: 48%;
  margin-bottom: 4%;
}


.l-pageContent-list li a {
  position: relative;
  display: block;
  color: var(--color-base);
  text-decoration: none;
}
.l-pageContent-list li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
  transition: 0.8s;
}
body.is-pc .l-pageContent-list li a:hover::after {
  opacity: 0.2;
}
.l-pageContent-img {
}
.l-pageContent-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.l-pageContent-block {
  position: absolute;
  left: 3em;
  bottom: 2em;
  z-index: 9;
  width: 100%;
  pointer-events: none;
}
.l-pageContent-subTitle {
  font-size: 1.7rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}
.l-pageContent-title {
  font-size: 0.85rem;
  padding-top: 1em;
}


.l-pageContent-list li.-wide {
  width: 100%;
}
.l-pageContent-list li.-wide .l-pageContent-img img{
  aspect-ratio: 16 / 5;
}

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

  .l-pageContent-list {
    margin-bottom: -2%;
  }
  .l-pageContent-list li {
    width: 49%;
    margin-bottom: 2%;
  }


  .l-pageContent-img img {
    aspect-ratio: 16 / 12;
  }
  .l-pageContent-block {
    left: min(3vw,1.5em);
    bottom: min(3vw,1.5em);
  }
  .l-pageContent-subTitle {
    font-size: 1.4rem;
  }
  .l-pageContent-title {
    font-size: clamp(0.6em,2.6vw, 0.8em);
    padding-top: 0.5em;
  }


  .l-pageContent-list li.-wide .l-pageContent-img img{
    aspect-ratio: 16 / 6;
  }

}

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

  .l-pageContent-img img {
    aspect-ratio: 16 / 14;
  }

  .l-pageContent-list li.-wide .l-pageContent-img img{
    aspect-ratio: 16 / 7;
  }

}


/***********
areaSummary
************/

.l-areaSummary {
  background-color: var(--color-sub02);
  padding: min(12vw,10em) 0;
  overflow: hidden;
  position: relative;
}
.l-areaSummary::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/bg02.png) no-repeat right center;
  z-index: 2;
  mix-blend-mode: multiply;
}
.l-areaSummary-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
}
.l-areaSummary-heading {
  width: 3.5em;
  font-size: clamp(4.5rem,10vw, 7rem);
}
.l-areaSummary-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}
.l-areaSummary-heading-subTitle::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-main);
  margin-bottom: 0.2em;
}
.l-areaSummary-heading-title {
  font-size: 0.85rem;
  font-weight: 500;
  padding-top: 1em;
}
.l-areaSummary-inner {
  flex: 1;
}
.l-areaSummary-text {
  font-weight: 350;
  font-size: 0.85rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

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

  .l-areaSummary-container {
    width: clamp(1px,80vw, 1200px);
    margin: 0 auto;
  }
}


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

  .l-areaSummary {
    padding: min(14vw,5em) 0;
  }
  .l-areaSummary::after {
    width: 80%;
    height: 100%;
    background: url(../../img/bg02.png) no-repeat right bottom;
    background-size: 100% auto;
  }

  .l-areaSummary-container {
    width: 100%;
  }

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

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

  .l-areaSummary-container {
    display: block;
  }
  .l-areaSummary-heading {
    width: auto;
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }

}


/***********
l-card
************/

.l-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 4%;
}
.l-card li {
}
.l-card li a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.l-card-inner {
  padding-top: 1.5em;
}
.l-card-img {
}
.l-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.l-card-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.l-card-data-time {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  padding-right: 1em;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
/* .l-card-data-time::after {
  content: "";
  display: block;
  width: 1px;
  height: 2em;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  background: rgba(0, 0, 0, 0.3);
} */
.l-card-data-cat.l-catIcon {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.3;
}

.l-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.8;
  height: calc(3em * 1.8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.4s;
  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;
  color: var(--color-brand01);
}



.l-card-works {
  padding-top: 0.5em;
}
.l-card-works-data {
  display: flex;
  align-items: start;
  padding-top: 0.6em;
  border-bottom: 1px solid var(--color-sub02);
}
.l-card-works-data dt {
  width: 5.2em;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  letter-spacing: 0.04em;
  padding-bottom: 0.4em;
  line-height: 1.2;
}
.l-card-works-data dd {
  font-size: 85%;
  font-weight: 350;
  flex: 1;
  padding-bottom: 0.4em;
}

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

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

  .l-card-inner {
    padding-top: 1em;
  }

  .l-card-data {
    margin-bottom: 0.2em;
  }
  .l-card-data-time {
    font-size: 0.8rem;
    padding-right: 1em;
  }
  .l-card-data-cat {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1.3;
  }

}

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

  .l-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4em 0;
  }

  .l-card-data {
    margin-bottom: 0.5em;
  }

  .l-card-title {
    height: auto;
    max-height: calc(3em * 1.8);
  }

}


/***********
xxxx
************/

/*
slider
*/

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

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


.l-works-slide .slick-prev ,
.l-works-slide .slick-next{
  display: block;
  width: 100px;
  height: 36px;
  background: url(../../img/icon/arrow.png) no-repeat center center / 24px auto;
  background-color: #ccc;
  opacity: 0.5;
  border-radius: 5em;
  transition: 0.4s;
  cursor: pointer;
  position: absolute;
  bottom: 0;
}
.l-works-slide .slick-prev {
  left: calc(100vw - 10vw - 215px);
  rotate: 180deg;
}
.l-works-slide .slick-next {
  left: calc(100vw - 10vw - 100px);
}

body.is-pc .l-works-slide .slick-prev:hover ,
body.is-pc .l-works-slide .slick-next:hover{
  background-image: url(../../img/icon/arrow_wt.png);
  background-color: var(--color-dark01);
  opacity: 1;
}

/*
card
*/

.l-works-card {
  display: flex;
}
.l-works-card li {
  padding-right: 2rem;
}
.l-works-card li a {
  display: block;
  color: var(--color-base);
  text-decoration: none;
  width: clamp(380px,26vw, 580px);
  position: relative;
}

.l-works-card-img {
}
.l-works-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}
.l-works-card-block {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 0 1.5em 2em;
  color: var(--color-base);
  font-size: clamp(9px,0.85rem, 16px);
  opacity: 0;
  transition: 0.6s;
}
.l-works-card-inner {
}
.l-works-card-data {
  display: flex;
  padding-top: 0.2em;
  opacity: 0;
  translate: 1em 0;
  transition: 0s ease 0.5s;
}
.l-works-card-data dt {
  width: 5.2em;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.04em;
}
.l-works-card-data dd {
  font-size: 90%;
  font-weight: 350;
}


body.is-pc .l-works-card li a:hover .l-works-card-block,
.l-works-card li.is-active a .l-works-card-block {
  opacity: 1;
}
body.is-pc .l-works-card li a:hover .l-works-card-data,
.l-works-card li.is-active a .l-works-card-data {
  opacity: 1;
  translate: 0 0;
  transition: 0.5s;
}
body.is-pc .l-works-card li a:hover .l-works-card-data:nth-child(1),
.l-works-card li.is-active a .l-works-card-data:nth-child(1) { transition-delay: 0ms; }
body.is-pc .l-works-card li a:hover .l-works-card-data:nth-child(2),
.l-works-card li.is-active a .l-works-card-data:nth-child(2) { transition-delay: 100ms; }
body.is-pc .l-works-card li a:hover .l-works-card-data:nth-child(3),
.l-works-card li.is-active a .l-works-card-data:nth-child(3) { transition-delay: 200ms; }
body.is-pc .l-works-card li a:hover .l-works-card-data:nth-child(4),
.l-works-card li.is-active a .l-works-card-data:nth-child(4) { transition-delay: 300ms; }
body.is-pc .l-works-card li a:hover .l-works-card-data:nth-child(5),
.l-works-card li.is-active a .l-works-card-data:nth-child(5) { transition-delay: 400ms; }


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

  /*
  slider
  */

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

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


  /*
  card
  */

  .l-works-card {
    display: flex;
  }
  .l-works-card li {
    padding-right: 10px;
  }
  .l-works-card li a {
    width: clamp(200px,70vw, 320px);
  }

  .l-works-card-img {
  }
  .l-works-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 11;
  }




  .l-works-card-block {
    padding: 0 0 5% 5%;
    font-size: clamp(7px,0.75rem, 12px);
    font-feature-settings: "palt";
  }
  .l-works-card-inner {
  }
  .l-works-card-data {
    padding-top: 0;
  }
  .l-works-card-data dt {
    width: 4.5em;
  }
  .l-works-card-data dd {
    font-size: 90%;
    font-weight: 300;
  }


}

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

.l-columnList {
}

.l-columnList-card {
  display: flex;
  border: 1px solid var(--color-sub03);
  border-top: none;
  border-bottom: none;
}
.l-columnList-card li{
}
.l-columnList-card li a {
  display: block;
  padding: 0 min(10%,3em);
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--color-sub03);
}
.l-columnList-card-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.l-columnList-card-time {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  padding-right: 1em;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
/* .l-columnList-card-time::after {
  content: "";
  display: block;
  width: 1px;
  height: 2em;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  background: rgba(0, 0, 0, 0.3);
} */
.l-columnList-card-cat.l-catIcon {
  font-size: 0.75rem;
}
.l-columnList-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.8;
  height: calc(3em * 1.8);
  margin-bottom: 2em;
  padding-bottom: 0.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.4s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-columnList-card a:hover .l-columnList-card-title {
  text-decoration-color: inherit;
  color: var(--color-brand01);
}

.l-columnList-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}



.l-columnList-card .slick-prev ,
.l-columnList-card .slick-next{
  display: block;
  width: 60px;
  height: 80px;
  transition: 0.4s;
  cursor: pointer;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0.5;
}
.l-columnList-card .slick-prev span ,
.l-columnList-card .slick-next span{
  width: 35%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--color-dark01);
}
.l-columnList-card .slick-next {
  right: -60px;
}
.l-columnList-card .slick-next span{
  rotate: -45deg;
  border-left: none;
  border-top: none;
}
.l-columnList-card .slick-prev {
  left: -60px;
}
.l-columnList-card .slick-prev span{
  rotate: -45deg;
  border-right: none;
  border-bottom: none;
}

body.is-pc .l-columnList-card .slick-prev:hover ,
body.is-pc .l-columnList-card .slick-next:hover{
  opacity: 1;
}


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

  .l-columnList {
    padding-left: 40px;
    padding-right: 40px;
  }

}

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

  .l-columnList {
    padding: 0;
    margin-left: -5vw;
    margin-right: -5vw;
  }
  .l-columnList-card {
    border:none;
  }
  .l-columnList-card li{
  }
  .l-columnList-card li a {
    width: 240px;
    padding: 0 20px;
    border-right: 1px solid var(--color-sub03);
  }
  .l-columnList-card-data {
    margin-bottom: 1em;
  }
  .l-columnList-card-time {
    font-size: 0.7rem;
  }
  .l-columnList-card-cat {
    font-size: 0.65rem;
  }
  .l-columnList-card-title {
    font-size: 0.85rem;
    line-height: 1.6;
    height: calc(3em * 1.6);
    margin-bottom: 1.5em;
  }


  .l-columnList-card .slick-prev ,
  .l-columnList-card .slick-next{
    opacity: 1;
  }
  .l-columnList-card .slick-next {
    right: 0;
  }
  .l-columnList-card .slick-prev {
    left: 0;
  }
}

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

.l-catIcon {
  display: inline-block;
  background-color: var(--color-brand02);
  color: var(--color-base);
  border-radius: 3em;
  padding: 0.3em 1em;
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}


/***********
xxxx
************/




/***********
maskText
************/

.l-maskText {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.1);
}
.l-maskText::after {
  content: attr(data-text)"";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 0, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.8s;
}
.l-maskText.is-show::after {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}




.l-maskText.-white {
  color: rgba(255, 255, 255, 0.2);
}
.l-maskText.-white::after {
  color: rgba(255, 255, 255, 1);
}

.l-maskText.-brand01 {
  color: rgba(144, 135, 106, 0.2);
}
.l-maskText.-brand01::after {
  color: rgba(144, 135, 106, 1);
}




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

[data-fade] {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  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);
}

.l-stepFade-up > *{
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition-delay: 0.1s;
  transform: translateY(20px);
}
.l-stepFade-up.is-show > *{
  opacity: 1;
  transform: translateY(0);
}


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

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

}

/***********
hr
************/

hr {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0;
}

.l-borderBotton {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

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

.is-overflowHide {
  overflow: hidden;
}

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

}
