@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic: 'Noto Sans JP', 'Yu Gothic', Meiryo, sans-serif;
  --font-family-gothic-en: 'Roboto', 'Noto Sans JP', Arial, sans-serif;
  --font-family-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-family-serif-en: 'Noto Serif JP', 'Yu Mincho', serif;

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #232323;
  --color-brand01: #323264;
  --color-brand02: #5f5fa5;
  --color-primary01: #A38C56;
  --color-primary02: #8a7546;
  --color-secondary01: #C68B19;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #fafafa;
  --color-sub02: #C3C3C3;
  --color-sub03: #f5f5f5;

  --header-height: 7.2rem;
  --header-height-fixed: 4.2em;

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

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

  --lineheight-main: 1.9;
}

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

  :root {
    --header-height: 80px;
    --header-height-fixed: 80px;

    --padding-main: min(15vw,5em);
    --padding-small: min(12vw,3em);
    --padding-large: min(18vw,7em);

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

    --lineheight-main: 1.7;

  }

}


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

html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-serif);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-main);
}
html {
  font-size: clamp(15px, calc(10px + 0.5vw), 18px);
}

[id^="anchor-"] {
  scroll-margin-top: var(--header-height);
}


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

@media screen and (max-width:834px) {
  body{
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (min-width:1921px) {
  html {
    font-size: clamp(15px, calc(3.23px + 0.769vw), 22px);
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(14px, calc(10.5px + 1.2vw), 15px);
  }
}

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

a:not([class]) {
  text-underline-offset: 0.2em;
  color: var(--color-brand01);
}


a:visited{}
a:hover,
a:active {
  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 {
}
.wp-caption {
  max-width: 100%;
  font-size: 0.8rem;
  padding-bottom: 2em;
  clear: both;
}
.post p+.wp-caption {
  padding-top: 3rem;
}
.post .wp-caption img {
  margin-top: 0;
  margin-bottom: 0;
}
.post .wp-caption + .wp-caption {
  margin-top: 4em;
}
.wp-caption-text {
  padding-top: 0.8em;
  opacity: 0.7;
}

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

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

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

}

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

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

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

}

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

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

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

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

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



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

.l-wrapper{
  overflow: hidden;
}

.l-contents{
}


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

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

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

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

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

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

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

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


.l-blockAuto > section:not(:last-child){
  padding-bottom: var(--padding-main);
}
.l-blockAuto-small > section:not(:last-child){
  padding-bottom: var(--padding-small);
}
.l-blockAuto-large > section:not(:last-child){
  padding-bottom: var(--padding-large);
}


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

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

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


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


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

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

}

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

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

}


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

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

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

  .l-base-default [class^="l-base"] {
    padding-inline: var(--padding-side);
  }

}

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

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


/***********
imghover
************/

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transition: scale 0.4s ease;
}
body.is-pc a:hover .l-zoomHover img{
  scale: 1.03;
  transition: scale 0.8s ease;
}


.l-opacityHover{
  transition: opacity 0.4s ease;
}
body.is-pc a.l-opacityHover:hover{
  opacity: 0.85;
}



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

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

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

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


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

.l-textMain{
  line-height: var(--lineheight-main);
  font-size: 0.9rem;
}
.l-textLead{
  line-height: var(--lineheight-main);
  text-align: center;
  font-size: 0.9rem;
}

.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.5lh;
  translate: 0 -50%;
  background: var(--color-primary01);
  border-radius: 50%;
}

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

.l-list-asterisk {}

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

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

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

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

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

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

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

.l-linkHalf {
  max-width: 834px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}
.l-linkHalf-item {
  flex: 1;
  max-width: 50%;
  padding: 5px 10px;
}

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

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

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

  .l-linkHalf {
    display: block;
  }
  .l-linkHalf-item {
    max-width: 100%;
    padding: 0 0 10px ;
  }

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

}

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

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

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

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

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

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

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

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

}

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

.l-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 18em;
  min-height: 4em;
  padding: 1em 3em 1em 2em;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-family-serif);
  letter-spacing: 0.05em;
  text-decoration: none !important;
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: relative;
}
.l-btn:not(.-noicon)::after {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: var(--color-base);
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
}
body.is-pc .l-btn:hover {
  box-shadow: 0 0 4em 0 #fff5 inset;
}


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

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

.l-btn:not(.-noicon)[target="_blank"]::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/external_wt.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 0.8em !important;
  top: 50%;
  translate: 0 -50%;
}

.l-btn.-noicon {
  padding-right: 2em;
  min-width: 14em;
  text-align: center;
}

.l-btn.-small {
  min-height: 3.4em;
  font-size: 0.9rem;
}
.l-btn.-full {
  width: 100%;
}
.l-btn.-primary01 {
  background-color: var(--color-primary01);
}
.l-btn.-secondary01 {
  background-color: var(--color-secondary01);
}

.l-btn.i {
  margin-right: 0.4em;
  scale: 1.2;
}

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

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

}


/***********
btn02
************/

.l-btn02 {
  display: inline-block;
  width: auto;
  min-width: 15em;
  padding: 1.2em 3em 1.2em 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-family-serif);
  border-bottom: 1px solid #0008;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  text-align: left;
  color: inherit;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
}
.l-btn02::after {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: var(--color-primary01);
  content: "\f054";
  position: absolute;
  right: 0.2em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  transition: left 0.4s ease,right 0.4s ease;
}
body.is-pc .l-btn02:hover {
  border-color: var(--color-primary01);
  color: var(--color-primary01);
}
body.is-pc .l-btn02:hover::after {
  right: 0;
}


.l-btn02.-white {
  color: var(--color-base);
  border-color: #fff8;
}
.l-btn02.-white::after {
  color: var(--color-primary01);
}
body.is-pc .l-btn02.-white:hover {
  border-color: var(--color-base);
  color: var(--color-base);
}



.l-btn02.-back {
  padding: 1.2em 0 1.2em 3em;
  text-align: right;
  min-width: 12em;
}
.l-btn02.-back::after {
  rotate: 180deg;
  right: auto;
  left: 0.2em;
}
body.is-pc .l-btn02.-back:hover::after {
  right: auto;
  left: 0;
}

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

  .l-btn02 {
    min-width: 12em;
    padding: 1.2em 3em 1.2em 0;
    border-color: var(--color-dark01);
  }

  .l-btn02.-back {
    padding: 1.2em 0 1.2em 3em;
  }

}

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

.l-header {
  --header-logo-width: 13em;
  --header-logo-width-fixed: 10em;
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--color-main);
  letter-spacing: 0;
  transition: height 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
/* トップなど、初期状態のヘッダーをメインビジュアルへ重ねる場合 */
.l-wrapper.-header-overlay .l-header {
  color: var(--color-base);
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* 鯱市など、初期状態のヘッダーをメインビジュアルへ重ねる場合（背景あり） */
.l-wrapper.-header-translucent .l-header {
  background-color: #fffa;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

body.is-fixed .l-header,
body.is-fixed .l-wrapper.-header-overlay .l-header {
  height: var(--header-height-fixed);
  color: var(--color-main);
  background-color: #fffa;
  box-shadow: 0 0 1em #0001;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.l-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-inline: var(--padding-side);
}

.l-header-logo {
  position: relative;
  z-index: 2;
  width: var(--header-logo-width);
  transition: width 0.3s ease;
}
.l-header-logo a {
  display: block;
  position: relative;
  color: inherit;
}
.l-header-logo-img {
  display: block;
  width: 100%;
  filter: none;
  transition: filter 0.3s ease;
}
.l-wrapper.-header-overlay .l-header-logo-img ,
.l-wrapper.-header-translucent .l-header-logo-img {
  filter: brightness(0) invert(1);
}
body.is-fixed .l-wrapper.-header-overlay .l-header-logo-img {
  filter: none;
}
body.is-fixed .l-header-logo {
  width: var(--header-logo-width-fixed);
}

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

body.home:not(.is-fixed) .l-header-logo {
  opacity: 0;
  width: var(--header-logo-width-fixed);
}
body.home:not(.is-fixed) .l-header-logo .l-header-logo-img{
  filter: brightness(100%) invert(0);
  width: var(--header-logo-width-fixed);
}

/*
navi
*/

.l-header-navi {
  height: 100%;
  text-align: center;
  font-size: 0.9rem;
}

.l-header-navi-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0 2em;
}

.l-header-navi-list > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}

.l-header-navi-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--header-height-fixed);
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.08em;
  transition: translate 0.2s ease;
}
.l-header-navi-list > li > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
body.is-pc .l-header-navi-list > li:hover > a {
}
body.is-pc .l-header-navi-list > li:hover > a::after,
.l-header-navi-list > li:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*
child
*/

.l-header-navi-list ul {
  min-width: 14em;
  position: absolute;
  z-index: 9;
  top: calc(50% + var(--header-height-fixed) / 2);
  left: 50%;
  translate: -50% 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  color: var(--color-main);
  background-color: var(--color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.13);
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.l-header-navi-list li:hover > ul,
.l-header-navi-list li:focus-within > ul {
  visibility: visible;
  opacity: 1;
}
.l-header-navi-list ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-sub02);
}
.l-header-navi-list ul a {
  display: block;
  padding: 1em 2.5em;
  color: inherit;
  font-size: 90%;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
body.is-pc .l-header-navi-list ul a:hover,
.l-header-navi-list ul a:focus-visible {
  background-color: var(--color-sub01);
}

/*
cv
*/

.l-header-cv {
  height: 100%;
  margin-left: 2em;
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  white-space: nowrap;
}
.l-header-cv-item {
}
.l-header-cv-btn {
  display: inline-block;
  border: 1px solid #0004;
  padding: 0.5em 0.5em;
  min-width: 11em;
  border-radius: 4px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  transition: border 0.4s ease , background-color 0.4s ease, box-shadow 0.4s ease;
}
.l-header-cv-btn.-compact {
  letter-spacing: -0.04em;
}
body.is-pc .l-header-cv-btn:hover {
  border-color: var(--color-dark01);
  background: #00000007;
}

body:not(.is-fixed) .l-wrapper.-header-overlay .l-header-cv-btn {
  border-color: transparent !important;
  box-shadow: 0 0 2em 0 #fff4 inset;
}
body:not(.is-fixed).is-pc .l-wrapper.-header-overlay .l-header-cv-btn:hover {
  box-shadow: 0 0 4em 0 #fff7 inset;
}


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

  .l-header-navi-list {
    gap: 0 1.5em;
  }

  /*
  cv
  */

  .l-header-cv {
    margin-left: 1.5em;
  }
  .l-header-cv-item {
  }
  .l-header-cv-btn {
    padding: 0.5em 0.8em;
    min-width: initial;
  }
}


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

  .l-header {
    --header-logo-width: 10em;
    --header-logo-width-fixed: 8em;
  }

  .l-header-container {
    padding-inline: 10px;
  }
  .l-header-navi {
    font-size: 0.85rem;
  }
  .l-header-navi-list {
    gap: 0 1em;
  }
  .l-header-cv {
    margin-left: 1em;
    gap: 0 0.2em;
  }

}

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

  .l-header-block {
    display: none;
  }
  .l-header {
    --header-logo-width: 11em;
    --header-logo-width-fixed: 11em;
    position: absolute;
    background-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

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

.l-navi {
}

.l-navi-list {
}

.l-navi-list li {
}

.l-navi-list a {
}

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

.l-footer {
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding-block: min(12vw,5em);
  position: relative;
  z-index: 9;
}
.l-footer-container {
  display: flex;
  justify-content: space-between;
  gap: 0 3rem;
}
.l-footer-inner {
}
.l-footer-logo {
  width: 14em;
  filter: brightness(0%) invert(1) ;
  padding-bottom: 2rem;
}
.l-footer-logo.-sp {
  display: none;
}

.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5em;
  font-size: 0.8rem;
}
.l-footer-navi-box {
  min-width: 10em;
}

.l-footer-navi-list {
}
.l-footer-navi-list a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.3s;
}
body.is-pc .l-footer-navi-list a:hover {
  text-decoration-color: #fff8;
}
.l-footer-navi-list > li{
  padding-bottom: 1em;
}
.l-footer-navi-list > li > a {
  padding: 0.5em 0;
}
.l-footer-navi-list ul {
  padding-top: 0.2em;
  padding-bottom: 0.8em;
}
.l-footer-navi-list ul li {
  padding-bottom: 0.2em;
}
.l-footer-navi-list ul li a {
  opacity: 0.7;
  position: relative;
  padding-left: 1.2em;
  padding: 0.2em 0 0.2em 1.2em;
}
.l-footer-navi-list ul li a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: calc(0.2em + 0.5lh);
}

.l-footer-banner {
}
.l-footer-banner-list {
}
.l-footer-banner-list li{
  max-width: 14rem;
}
.l-footer-banner-list li + li{
  padding-top: 1rem;
}

.l-footer-lower {
  padding-top: min(15vw,6rem);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0 3rem;
}
.l-footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3em;
  font-size: 0.65rem;
}
.l-footer-utility li {
}
.l-footer-utility a {
  font-family: var(--font-family-gothic);
  display: inline-block;
  padding: 0.2em 0;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.3s;
}
body.is-pc .l-footer-utility a:hover {
  text-decoration-color: #fff8;
}

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


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

  .l-footer {
  }
  .l-footer-container {
    display: flex;
    gap: 0 1rem;
  }
  .l-footer-inner {
  }
  .l-footer-logo {
    width: clamp(8rem,45vw, 14em);
    padding-bottom: 0;
  }
  .l-footer-logo.-pc {
    display: none;
  }
  .l-footer-logo.-sp {
    display: block;
    padding-top: 3rem;
  }

  .l-footer-navi {
    gap: 0 2em;
    font-size: 0.9rem;
  }

  body.is-pc .l-footer-navi-list a:hover {
    text-decoration-color: #fff8;
  }
  .l-footer-navi-list > li{
    padding-bottom: 0;
  }
  .l-footer-navi-list > li > a {
    padding: 0.5em 0;
  }
  .l-footer-navi-list ul {
    display: none;
  }


  .l-footer-banner {
  }
  .l-footer-banner-list {
    width: clamp(6em,45vw, 12em);
  }
  .l-footer-banner-list li{
    max-width: initial;
  }
  .l-footer-banner-list li + li{
    padding-top: 1rem;
  }

  .l-footer-lower {
    padding-top: min(8vw,4rem);
    display: block;
  }
  .l-footer-utility {
    display: block;
  }
  .l-footer-utility li {
  }
  .l-footer-utility a {
    padding: 0.5em 0;
  }
  body.is-pc .l-footer-utility a:hover {
    text-decoration-color: #fff8;
  }

  .l-footer-copyright {
    padding-top: 1em;
    letter-spacing: 0;
  }


}


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

.l-menu-close,
.l-menu-trigger {
  display: none;
}

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


  .l-menu-close,
  .l-menu-trigger {
    display: revert;
  }

  .l-menu{
    position: fixed;
    width: clamp(300px,85vw, 420px);
    height: 100lvh;
    z-index: 9998;
    right: 0;
    top: 0;
    transition:all 0.3s ease;
    background-color: var(--color-brand01);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    translate: 100% 0;
  }

  .is-menu-open .l-menu{
    opacity: 1;
    right: 0;
    translate: 0 0;
    transition:all 0.5s ease;
  }

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

  .l-menu-trigger {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 56px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 3px 6px #0002;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
    -webkit-tap-highlight-color:transparent;
    background-color: var(--color-base);
  }
  .l-menu-btn-icon {
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 40%;
    width: 50%;
    height: 2px;
  }
  .l-menu-btn-icon::before,
  .l-menu-btn-icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: transform 0.2s, top 0.2s 0.2s;
  }
  .l-menu-btn-icon::before {
    top: -4px;
  }
  .l-menu-btn-icon::after {
    top: 4px;
  }

  .l-menu-btn-text {
    font-size: 11px;
    font-weight: 300;
    font-family: var(--font-family-gothic);
    position: absolute;
    left: 0;
    bottom: 17%;
    width: 100%;
    text-align: center;
    letter-spacing: 0.08em;
  }
  .l-menu-btn-text::after {
    content: "MENU";
  }
  .l-menu-btn.is-active  .l-menu-btn-text::after {
    content: "CLOSE";
  }

  .l-menu-btn.is-active .l-menu-btn-icon::before {
    top: 0;
    transform: rotate(30deg);
    transition: top 0.2s, transform 0.2s 0.2s;
  }
  .l-menu-btn.is-active .l-menu-btn-icon::after {
    top: 0;
    transform: rotate(-30deg);
    transition: top 0.2s, transform 0.2s 0.2s;
  }

  .l-menu-btn.is-active {
    background-color: transparent;
    color: var(--color-base);
    box-shadow: 0 3px 6px transparent;
  }
  .l-menu-btn.is-active .l-menu-btn-icon::before,
  .l-menu-btn.is-active .l-menu-btn-icon::after {
    background-color: var(--color-base);
  }

}

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

.l-menu-container {
  color: var(--color-base);
  padding: 1.5rem 2rem 10rem 2rem;
}
.l-menu-logo {
  filter: brightness(0%) invert(1);
  width: clamp(8rem,50vw, 12rem);
  padding-bottom: 2rem;
}
.l-menu-navi {
}
.l-menu-navi > li {
}
.l-menu-navi > li > a {
  display: inline-block;
  padding: 0.7em 0;
  color: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.3s;
}
.l-footer-navi-list a {
  display: inline-block;
  color: inherit;
}
body.is-pc .l-menu-navi > li > a:hover {
  text-decoration-color: #fff8;
}

.l-menu-utility {
  padding-top: 2rem;
}
.l-menu-utility li {
}
.l-menu-utility li a {
  display: inline-block;
  padding: 0.5em 0;
  font-size: 0.75rem;
  font-family: var(--font-family-gothic);
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  transition: 0.3s;
}
body.is-pc .l-menu-utility li a:hover {
  text-decoration-color: #fff8;
}

.l-menu-cv {
  padding-top: 2rem;
  max-width: 15rem;
  font-size: 0.9rem;
}
.l-menu-cv-item {
  padding-bottom: 0.5rem;
}
.l-menu-cv-btn {
  display: block;
  box-shadow: 0 0 4em 0 #fff4 inset;
  padding: 1em 2em;
  border-radius: 4px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: border 0.4s ease , background-color 0.4s ease, box-shadow 0.4s ease;
}
body.is-pc .l-menu-cv-btn:hover {
  box-shadow: 0 0 6em 0 #fff7 inset;
}


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

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

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

.l-movie {
  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 {
  background-color: rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

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

.l-bgColor00{
  background-color: var(--color-base);
}
.l-bgColor01{
  background-color: var(--color-sub01);
}
.l-bgColor02{
  background-color: var(--color-sub02);
}
.l-bgColor03{
  background-color: var(--color-sub03);
}
.l-bgColor04{
  background-color: var(--color-sub04);
}
.l-bgColor05{
  background-color: var(--color-sub05);
}
.l-bgColor06{
  background-color: var(--color-brand01);
}

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

.l-catIcon {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 1em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 3em;
}

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

.l-heading{

}
.l-heading-title{

}
.l-heading-subTitle{

}
.l-heading-lead{

}

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

.l-headline{
  text-align: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.l-headline-title{
  display: inline-block;
  font-size: clamp(1.3rem,5.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
}
.l-headline-title::before,
.l-headline-title::after{
  content: "";
  display: block;
  width: 20em;
  height: 1px;
  position: absolute;
  top: 50%;
  background: currentColor;
}
.l-headline-title::before{
  left: calc(100% + 1em);
}
.l-headline-title::after{
  right: calc(100% + 1em);
}

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

.l-title {
  font-size: clamp(1.6rem,7vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 1em;
}
.l-title.-largeOffset {
  padding-bottom: 2em;
}
.l-title.-smallOffset {
  padding-bottom: 0.6em;
}

.l-subTitle {
  font-size: clamp(1.3rem,5.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 1em;
  position: relative;
}
.l-subTitle::before {
  content: "";
  display: block;
  width: 0.7em;
  height: 4px;
  position: absolute;
  right: calc(100% + 0.5em);
  top: 0.5lh;
  translate: 0 -30%;
  background: var(--color-primary01);
}
.l-subTitle.-largeOffset {
  padding-bottom: 1.5em;
}


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


  .l-title {
    font-size: clamp(1.4rem,7vw, 1.6rem);
    letter-spacing: 0.05em;
  }

  .l-title.-largeOffset {
    padding-bottom: 1em;
  }

  .l-subTitle::before {
    right: calc(100% + 0.3em);
  }


  .l-subTitle.-largeOffset {
    padding-bottom: 1em;
  }
}

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


/***********
spRatio
************/

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

  .l-spRatio-16_9{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  [class^="l-spRatio"].-ct {
    object-position: center top;
  }
  [class^="l-spRatio"].-cb {
    object-position: center bottom;
  }

}

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


[data-fade] {
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1s ease, translate 1s ease, filter 1s ease;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
  filter: blur(0);
}

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

[data-fade="step-up"] > *{
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1s ease, translate 1s ease, filter 1s ease;
  transition-delay: 0.1s;
  translate: 0 10px;
}
[data-fade="step-up"].is-show > *{
  opacity: 1;
  filter: blur(0);
  translate: none;
}

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

  [data-fade] {
    filter: blur(1px);
    transition: opacity 0.5s ease, translate 0.5s ease, filter 0.5s ease;
  }
  [data-fade].is-show {
    filter: blur(0);
  }

  [data-fade="step-up"] > *{
    filter: blur(1px);
    transition: opacity 0.5s ease, translate 0.5s ease, filter 0.5s ease;
  }
  [data-fade="step-up"].is-show > *{
    filter: blur(0);
  }

}

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

.slick-slider.-infinite div {
  /* infiniteの場合 safari逆再生防止 */
  transition: none;
 }
.slick-slide li {
  vertical-align: bottom;
}

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

.is-hide {
  display: none;
}

.is-readerHide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-inlineBlock{
  display: inline-block;
}
.is-gothic {
  font-family: var(--font-family-gothic);
}

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }
  .ppc-br {
    display: none;
  }

}
