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

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #0d151e;
  --color-brand01: #004A99;
  --color-brand02: #00774d;
  --color-primary01: #3e74d8;
  --color-secondary01: #e7bd2d;
  --color-accent01: #f82f00;
  --color-highlight01: #fff200;
  --color-sub01: #f1f1f1;
  --color-sub02: #ccc;
  --color-sub03: #dbdbdb;
  --color-sub04: #ECF5FF;
  --color-sub05: #d7f7f8;

  --header-height: 4.6rem;

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

}

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

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

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

  }

}


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

}

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

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

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

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

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



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

.l-wrapper{
  overflow: hidden;
}

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


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

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

}

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

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

}


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

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

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

}

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

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

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

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transition:scale 0.3s ease;
}
body.is-pc a:hover .l-zoomHover img[src*="jpg"],
body.is-pc a:hover .l-zoomHover img[src*="jpeg"]{
  scale: 1.05;
}

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

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

.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: 1.8;
}
.l-textLead{
  line-height: 1.8;
  text-align: center;
}

.l-textSmall {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

.l-list-asterisk {}

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

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

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

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

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

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

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

.l-linkHalf {
  max-width: 834px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2em 0;
}
.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;
    padding: 20px 0;
  }
  .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%;
  }

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

}

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

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


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

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

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

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

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

}


/* カスタム */
/* ギャラリー画像の枠線を削除 */
.wp-block-gallery img,
.gallery-item img {
  border: none !important;
  box-shadow: none !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

/* ギャラリー全体の余白調整 */
.wp-block-gallery,
.gallery {
  margin-bottom: 0 !important;
}

/* 各画像周りの余白を最小化 */
.wp-block-gallery .blocks-gallery-item,
.gallery-item {
  margin: 0 !important;
  padding: 0 !important;
}


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

.l-logo {
  position: fixed;
  left: 2em;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: 0.2s;
  font-size: 1rem;
}
.l-logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-logo-img {
  width: 11em;
  transition: 0.2s;
}

/*
fixed
*/

body.is-fixed .l-logo {
  height: 3.5em;
}
body.is-fixed .l-logo-img {
  width: 8em;
}


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

  .l-logo {
    left: 1em;
  }
  .l-logo-img {
    width: 9em;
  }

  /*
  fixed
  */

  body.is-fixed .l-logo-img {
    width: 7em;
  }

}

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

  .l-logo {
    left: 1em;
    position: absolute;
  }
  .l-logo-img ,
  body.is-fixed .l-logo-img {
    width: 8em;
  }

  body.is-menu-open .l-logo {
    position: fixed;
  }
}

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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding-right: 1em;
  height: var(--header-height);
  /* background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px); */
  z-index: 999;
  transition: 0.2s;
}

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

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

/*
tel
*/

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

/*
cv
*/

.l-header-cv {
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  padding-left: 2em;
}
.l-header-cv-item {
  padding: 0 0.2em;
}
.l-header-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0.5em 1.2em;
  min-width: 7em;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 600;
  border-radius: 2em;
  position: relative;
  transition: opacity 0.1s;
}
.l-header-cv-btn.-main {
  background-color: var(--color-main);
}
.l-header-cv-btn.-dark {
  background-color: var(--color-dark01);
}
.l-header-cv-btn.-accent {
  background-color: var(--color-accent01);
}
.l-header-cv-btn.-brand {
  background-color: var(--color-brand01);
}
.l-header-cv-btn.-primary {
  background-color: var(--color-primary01);
}
.l-header-cv-btn.-secondary {
  background-color: var(--color-secondary01);
}
.l-header-cv-btn.-line {
  background-color: #41be05;
}
body.is-pc .l-header-cv-btn:hover {
  opacity: 0.8;
}


/*
navi
*/

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

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

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

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

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

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

/*
fixed
*/

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

/*
メインビジュアルがスライダーの場合
*/

body:has(.mainVisual-visual)  .l-header {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

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

  /*
  tel
  */

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

  /*
  cv
  */

  .l-header-cv {
    padding-left: 1em;
  }
  .l-header-cv-item {
    padding: 0 0.1em;
  }
  .l-header-cv-btn {
    padding: 0.5em 1em;
    min-width: 6em;
    font-size: 0.9rem;
  }

  /*
  navi
  */

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

}

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

  .l-header ,
  body.is-fixed .l-header {
    position: absolute;
    padding-right: 1em;
    height: var(--header-height);
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  /*
  navi
  */

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

  /*
  fixed
  */

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

}

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

  .l-header ,
  body.is-fixed .l-header {
    display: none;
  }

}



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

.l-footer {
  text-align: center;
  padding-top: var(--padding-main);
  padding-bottom: var(--padding-small);
  background-color: var(--color-sub01);
}
.l-footer-heading {
}
.l-footer-logo {
  max-width: 14em;
  margin-inline: auto;
}
.l-footer-lead {
  padding-top: 1em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
.l-footer-text {
  font-size: 0.9rem;
  font-weight: 500;
  padding-top: 0.5em;
  line-height: 1.6;
}
.l-footer-cv {
  padding-top: 2em;
}


.l-footer-info {
  padding-top: 4em;
  margin-top: 4em;
  border-top: 1px solid var(--color-sub02);
}
.l-footer-name {
  font-size: 1.1rem;
  font-weight: 600;
}
.l-footer-address {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  padding-top: 0.5em;
  line-height: 1.6;
}



.l-footer-sitemap {
  margin-top: 4em;
  background-color: rgba(255, 255, 255, 0.7);
  padding: min(5vw,2em) min(7vw,2em);
  text-align: left;
}


.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -3em;
}
.l-footer-navi button{
  display: none;
}
.l-footer-navi a > small{
  display: none;
}
.l-footer-navi {
}

.l-footer-navi > li {
  position: relative;
  padding-right: 3em;
  padding-bottom: 1em;
  min-width: 7em;
}
.l-footer-navi > li > a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1em 0 0.5em;
  white-space: nowrap;
}
body.is-pc .l-footer-navi a:hover{
  color: var(--color-brand01);
}

/*
child1
*/

.l-footer-navi > li > ul {
}
.l-footer-navi > li > ul > li{
}
.l-footer-navi > li > ul > li > a{
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.1em 0 0.2em 1em;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-footer-navi > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0.9em;
  opacity: 0.3;
}


/*
sub
*/

.l-footer-subNavi {
  padding-top: 4em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
}
.l-footer-subNavi button{
  display:  none !important;
}
.l-footer-subNavi li:not(:last-child)::after{
  content: "|";
  padding: 0 0.8em;
  opacity: 0.3;
}
.l-footer-subNavi a {
  display: inline-block;
  padding-block: 0.4em;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
}

.l-footer-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.6;
}
body.is-pc .l-footer-subNavi a:hover {
  color: var(--color-brand01);
}


.l-footer-copyright {
  display: block;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 2em 2vw;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
}

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

  .l-footer-logo {
    max-width: 12em;
  }
  .l-footer-lead {
    font-size: 1.2rem;
  }

  .l-footer-info {
    padding-top: 2em;
    margin-top: 2em;
  }
  .l-footer-name {
    font-size: 1.1rem;
  }

  .l-footer-sitemap {
    margin-top: 2em;
  }
  .l-footer-navi {
    display: block;
    margin-right: 0;
  }

  .l-footer-navi > li {
    padding-right: 0;
    padding-bottom: 0;
    min-width: initial;
  }
  .l-footer-navi > li > a {
    padding: 0.3em 0 0.3em;
    white-space: normal;
  }
  body.is-pc .l-footer-navi a:hover{
    color: var(--color-brand01);
  }

  /*
  child1
  */

  .l-footer-navi > li > ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.5em;
  }
  .l-footer-navi > li > ul > li:not(:last-child){
    padding-right: 1.5em;
  }
  .l-footer-navi > li > ul > li > a{
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.1em 0 0.2em 1em;
    color: inherit;
    text-decoration: none;
    position: relative;
  }
  .l-footer-navi > li > ul > li > a::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 1px;
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    top: 0.9em;
    opacity: 0.3;
  }

}


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

.l-jumpTop{
  position: fixed;
  right: 15px;
  bottom: 16px;
  z-index: 999;
  translate: 0 150px;
  transition: translate 0.5s;
}
body.is-fixed .l-jumpTop {
  translate: 0 0;
}
.l-jumpTop a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  position: relative;
  color: var(--color-base);
  background-color: var(--color-main);
}

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

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

}


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

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

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

  .l-menu{
    position: fixed;
    width: 100%;
    height: 100lvh;
    z-index: 980;
    left: 0;
    top: 0;
    transition: 0.2s;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
  }

  .is-menu-open .l-menu{
    opacity: 1;
  }

  .l-menu-trigger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.2s;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 62px;
    height: 55px;
    cursor: pointer;
    background: none;
    background-color: var(--color-brand01);
    border: none;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 10px;
    -webkit-tap-highlight-color:transparent;
  }
  .l-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 48%;
    width: 50%;
    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.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);
  }

}

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

.l-menu-container {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--header-height) 25px 120px;
  position: relative;
  z-index: 2;
}

.l-menu-navi {
  border-top: 1px solid var(--color-sub03);
  padding-bottom: 30px;
}
.l-menu-navi button {
  display: none;
}
.l-menu-navi > li {
  border-bottom: 1px solid var(--color-sub03);
  position: relative;
}
.l-menu-navi > li > a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  padding: 1em 60px 1em 0;
  color: inherit;
  text-decoration: none;
}
.l-menu-navi > li:has(ul)  >button {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
}
.l-menu-navi > li:has(ul) button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 45%;
  translate: -50% -50%;
  rotate: 45deg;
  border: 2px solid var(--color-dark01);
  border-top: none;
  border-left: none;
}
.l-menu-navi > li:has(ul) button.is-active {
  rotate: 180deg;
}

.l-menu-navi ul {
  padding-bottom: 1em;
  display: none;
}
.l-menu-navi ul > li{
}
.l-menu-navi ul > li > a{
  display: inline-block;
  padding: 0.4em 0 0.4em 1.2em;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.l-menu-navi 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: "\f054";
  position: absolute;
  left: 0;
  top: 0.7em;
  scale: 0.8;
  color: var(--color-brand01);
}

/*
cv
*/

.l-menu-cv {
}

/*
sub
*/

.l-menu-subNavi {
  font-size: 1rem;
  padding-top: 2em;
}
.l-menu-subNavi button {
  display: none !important;
}
.l-menu-subNavi li {
}
.l-menu-subNavi li a{
  display: inline-block;
  padding: 0.2em 0 0.2em 1.2em;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.l-menu-subNavi 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: "\f054";
  position: absolute;
  left: 0;
  top: 0.45em;
  scale: 0.7;
}


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

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

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



/***********
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: 3em;
}
.l-heading-subTitle{
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  font-size: 1.2rem;
  color: var(--color-brand01);
}
.l-heading-title{
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.l-heading-title::after {
  content: "";
  display: block;
  width: 2em;
  height: max(0.2em,3px);
  background-color: var(--color-brand01);
  border-radius: 1em;
  margin-top: 0.8em;
}

.l-heading-text{
  line-height: 1.8;
  padding-top: 2.5em;
}

.l-heading.-center{
  text-align: center;
}
.l-heading.-center .l-heading-title::after{
  margin-inline: auto;
}

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

  .l-heading{
    padding-bottom: 1.5em;
  }
  .l-heading-subTitle{
    font-size: 1.1rem;
  }
  .l-heading-title{
    font-size: 1.6rem;
  }

}

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

  .l-heading-text{
    text-align: left;
    padding-top: 2em;
  }
}

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

.l-headline {
  padding-bottom: 3em;
}
.l-headline::before {
  content: "";
  display: block;
  width: 3em;
  height: max(0.5em,5px);
  background-color: var(--color-brand01);
  border-radius: 1em;
  margin-bottom: 0.6em;
}
.l-headline-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: clamp(5rem,7vw, 8rem);
  letter-spacing: 0;
  line-height: 1.1;
}
.l-headline-title {
  font-size: 1.3rem;
}
.l-headline-text {
  padding-top: 2em;
  line-height: 1.8;
}


.l-headline.-small .l-headline-subTitle{
  font-size: clamp(5rem,7vw, 5rem);
}

.l-headline.-center {
  text-align: center;
}
.l-headline.-center::before {
  margin-inline: auto;
}


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

  .l-headline {
    padding-bottom: 2em;
  }
  .l-headline-subTitle,
  .l-headline.-small .l-headline-subTitle {
    font-size: clamp(2.7rem,9vw, 5rem);
  }
  .l-headline-title {
    font-size: 1.1rem;
  }
  .l-headline-text {
    padding-top: 1.5em;
    line-height: 1.8;
  }

}

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

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

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

.l-borderTitle {
  font-size: 1.5rem;
  line-height: 1.4;
  border-block: 2px solid var(--color-brand01);
  padding: 0.8em 0.2em;
  margin-bottom: 1.2em;
}

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

.l-title{
  font-size: clamp(1.25rem,1.8vw, 1.5rem);
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  line-height: 1.4;
  border-bottom: 2px solid var(--color-brand01);
  position: relative;
}
.l-subTitle{
  font-size: clamp(1.15rem,1.6vw, 1.3rem);
  line-height: 1.4;
  border-left: 5px solid var(--color-brand01);
  padding: 0.5em 0 0.5em 0.8em;
  margin-bottom: 1em;
}
.l-minTitle{
  font-size: 1.1rem;
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}
.l-minTitle:not([class])::before {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background-color: var(--color-brand01);
  border-radius: 1em;
  position: absolute;
  left: 0;
  top: 0.65em;
}



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

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

  .l-largeTitle {
    font-size: 1.2rem;
  }

}

/***********
bgPattern
************/

.l-bgPattern01 {
  background: url(../../img/pattern01.png) repeat center top ;
}

.l-bgPattern02 {
  background: url(../../img/pattern02.png) repeat center top ;
}

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

  .l-bgPattern01 {
    background-size: max(140%,600px);
  }

  .l-bgPattern02 {
    background-size: max(140%,600px);
  }

}


/***********
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;
  font-feature-settings: "palt";
}

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

.l-cv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:  0.5em;
}
.l-cv-item {
  flex-grow: 1;
  max-width: 500px;
  margin-inline: auto;
}
.l-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1em 3em 1em 3.5em;
  min-width: 15em;
  min-height: 5em;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 5em;
  border: 2px solid var(--color-base);
  box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.2);
  position: relative;
  transition: opacity 0.1s;
}
.l-cv-btn i {
  position: absolute;
  left: 2em;
  top: 50%;
  translate: 0 -50%;
  scale: 1.6;
}

.l-cv-btn.-main {
  background-color: var(--color-main);
}
.l-cv-btn.-dark {
  background-color: var(--color-dark01);
}
.l-cv-btn.-accent {
  background-color: var(--color-accent01);
}
.l-cv-btn.-brand {
  background-color: var(--color-brand01);
}
.l-cv-btn.-primary {
  background-color: var(--color-primary01);
}
.l-cv-btn.-secondary {
  background-color: var(--color-secondary01);
}
.l-cv-btn.-line {
  background-color: #41be05;
}


body.is-pc .l-cv-btn:hover {
  opacity: 0.8;
}

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

  .l-cv {
    display: block;
  }
  .l-cv-item {
    padding: 0 1em;
  }
  .l-cv-item + .l-cv-item {
    margin-top: 0.5em;
  }
  .l-cv-btn {
    padding: 1em 2.5em 1em 3em;
    min-height: 4.4em;
    min-width: 12em;
  }
  .l-cv-btn i {
    left: 1.5em;
    scale: 1.4;
  }

}

/***********
fixedBanner
************/

.l-fixedBanner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  white-space: nowrap;
  opacity: 0;
  width: clamp(120px,45vw, 360px);
}
body.is-loaded .l-fixedBanner {
  opacity: 1;
  transition: opacity 0.5s ease 0.5s;
}

.l-fixedBanner-close {
  position: absolute;
  left: 0;
  bottom: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 13px;
  font-family: Arial,sans-serif;
  cursor: pointer;
  background-color: #fff;
  color: #555;
  padding: 3px 10px 2px;
}
.l-fixedBanner-close::before {
  display: inline-block;
  content: "\00D7";
  scale: 2;
  margin-right: 0.5em;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }

}
