@charset "utf-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans+JP:wght@100..900&display=swap');

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

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #102c85;
  --color-brand02: #2644a6;
  --color-brand03: #0084ff;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #e4f2ff;



  --fv-padding: 20px;
  --header-height: 100px;
  --rounded-main: 15px;
  --rounded-sub: 10px;
  --rounded-min: 6px;

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

}


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

  :root {
    --fv-padding: 10px;
    --header-height: 70px;
    --rounded-main: 12px;
    --rounded-sub: 8px;
    --rounded-min: 5px;
  }

}


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

  :root {
    --fv-padding: 5px;
    --header-height: 60px;
    --rounded-main: 10px;
    --rounded-sub: 6px;


    --padding-main: min(14vw,7em);
    --padding-small: min(10vw,4em);
    --padding-large: min(18vw,10em);
  }



}

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

/*
約1500pxから800pxにかけて縮小
最大の場合

4px   0.2rem
6px   0.3rem
8px   0.4rem
10px  0.6rem
12px  0.7rem
14px  0.8rem
16px  0.9rem
18px  1.0rem
20px  1.1rem
24px  1.3rem
28px  1.6rem
32px  1.8rem
36px  2.0rem
40px  2.2rem
48px  2.7rem
56px  3.1rem
64px  3.6rem
*/

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

html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-main);
/*
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
*/
}

body.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(11px + 1.2vw), 16px);
  }
}


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

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

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

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

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

.l-contents{
}

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


}

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

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

.l-column-first{
  width: 68%;
}

.l-column-second{
  width: 25%;
}

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

  .l-column{
    display: block;
  }

  .l-column-first{
    width: auto;
  }

  .l-column-second{
    width: auto;
  }

}

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

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

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

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

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

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


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

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

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

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

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

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

}

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

.l-zoomHover{
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.l-zoomHover img{
  transform:scale(1) ;
  transition:all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
body.is-pc a:hover .l-zoomHover img{
  transform:scale(1.05) ;
  transition:all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/***********
rounded
************/

.l-rounded.-main {
  border-radius: var(--rounded-main);
}
.l-rounded.-sub {
  border-radius: var(--rounded-sub);
}
.l-rounded.-min {
  border-radius: var(--rounded-min);
}

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

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

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

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

.l-mask {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%); 左起点*/
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  vertical-align: middle;
}
.is-show .l-mask,
.is-show.l-mask {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
/*  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%);*/
}
.l-mask.-full {
  width: 100%;
}

.l-mask-down {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-up {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.l-mask-left {
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.is-show.l-mask-down{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-up{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.is-show.l-mask-left{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

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

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

.l-medium {
  font-weight: 500 !important;
}
.l-semibold {
  font-weight: 600 !important;
}
.l-bold {
  font-weight: 700 !important;
}

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

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

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

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

.l-list-asterisk {}

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

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

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

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

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

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

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


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

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

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

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

}

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

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

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

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

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

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

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

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

}



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

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


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

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

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


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

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

  .l-btn {
    min-width: 16em;
    min-height: 4em;
    padding: 1em 2.5em ;
  }

}



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

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

.l-header-inner {
  height: var(--header-height);
  padding-left: calc(var(--fv-padding) + 10px);
  padding-right: calc(var(--fv-padding) + 10px);
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
  position: relative;
}

.l-header-logo {
  display: flex;
  width: 440px;
  height: 100%;
  align-items: center;
  transition: 0.2s;
  white-space: nowrap;
}
.l-header-logo a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.l-header-block {
  display: flex;
  height: 100%;
  align-items: center;
  padding-right: var(--control-width);
}

/*
cv
*/

.l-header-cv {
}
.l-header-cv-btn {
  display: inline-block;
  padding: 0.5em 1.2em 0.6em 1.2em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  text-decoration: none;
  text-align: center;
  border-radius: 5em;
  line-height: 1.4;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.l-header-cv-btn i {
  margin-right: 0.5em;
  margin-left: 0.2em;
  scale: 1.1;
}
body.is-pc .l-header-cv-btn:hover {
  background-color: var(--color-brand03);
}

/*
navi
*/

.l-header-navi {
  padding-left: 1em;
  font-size: 0.95rem;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  height: 100%;
}
.l-header-navi button {
  display: none !important;
}

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

.l-header-navi-list > li {
  height: 100%;
  margin-right: 1.5em;
  position: relative;
}
.l-header-navi-list > li::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: calc(50% - 1.2em);
  background-color: var(--color-brand01);
  opacity: 0;
  transition: 0.2s;
}
body.is-pc .l-header-navi-list > li:hover::after {
  opacity: 1;
}

.l-header-navi-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-weight: 600;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

body.is-pc .l-header-navi-list > li > a:hover {
  color: var(--color-brand01);
  translate: 0 -2px;
}

/*
child
*/

.l-header-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 15em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  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 {
}
.l-header-navi-list ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.l-header-navi-list ul a {
  display: block;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 1em 1em 1em 2.5em;
}
.l-header-navi-list ul a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f061";
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -45%;
  transform: scale(0.8);
}
body.is-pc .l-header-navi-list ul a:hover {
  background-color: var(--color-brand02);
}

/*
fixed
*/

body.is-fixed .l-header{
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
body.is-fixed.is-pc .l-header:hover{
  background-color: rgba(255, 255, 255, 0.96);
}

body.is-fixed .l-header-inner {
  height: 60px;
}
body.is-fixed .l-header-logo {
  width: 340px;
}

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

  .l-header-inner {
    padding-left: var(--fv-padding);
    padding-right: var(--fv-padding);
  }


  .l-header-logo,
  body.is-fixed .l-header-logo  {
    width: 340px;
  }

  /*
  cv
  */

  .l-header-cv-btn {
    padding: 0.5em 0.8em;
    font-size: 0.8rem;
  }

  /*
  navi
  */

  .l-header-navi {
    font-size: 0.90rem;
    letter-spacing: 0.02em;
  }

  .l-header-navi-list > li {
    margin-right: 1.2em;
  }


}


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

  .l-header-logo {
    width: 200px;
    background: url(../../img/logo_sm.png) no-repeat 0 center / 100% auto;
  }
  .l-header-logo img{
    opacity: 0;
  }

  /*
  navi
  */

  .l-header-navi-list li {
    margin-right: 1em;
  }

}

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

  .l-header {
    position: absolute;
    left: 0;
    top: 0;
  }
  .l-header-logo {
    width: 220px;
  }
  .l-header-block {
    display: none;
  }

}

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

  .l-header-logo {
    width: 180px;
  }

}

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

.l-navi {
}

.l-navi-list {
}

.l-navi-list li {
}

.l-navi-list a {
}



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

.l-footer {
  background: url(../../img/pattern01.jpg) repeat center top;
  background-size: max(100%,1000px);
  padding-top: min(8vw,5em);
  padding-bottom: min(8vw,5em);
}


.l-footer-container {
  display: flex;
  justify-content: space-between;
}
.l-footer-info {
  width: 35%;
  max-width: 20em;
}
.l-footer-logo {
  max-width: 16em;
}
.l-footer-address {
  padding-top: 1em;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}


.l-footer-link {
  padding-top: 2em;
}
.l-footer-link-btn {
  display: inline-block;
  color: var(--color-brand01);
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  text-underline-offset: 0.1em;
}

.l-footer-inner {
  padding-left: 2em;
}


.l-footer-copyright {
  display: block;
  text-align: right;
  padding-top: 2em;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 0.7rem;
}


/*
navi
*/

.l-footer-navi {
  display: flex;
}
.l-footer-navi button {
  display: none !important;
}
.l-footer-navi-box {
}
.l-footer-navi-box:not(:last-child) {
  padding-right: 3em;
}

.l-footer-navi-list {
}
.l-footer-navi-list a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-footer-navi-list a:hover {
  text-decoration-color: inherit;
  color: var(--color-brand03);
}

.l-footer-navi-list > li {
  position: relative;
  padding-bottom: 0.2em;
}
.l-footer-navi-list > li > a {
  display: inline-block;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.3em 0 ;
  color: inherit;
  position: relative;
}
.l-footer-navi-list > li > a[target="_blank"]::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.5em;
  opacity: 0.7;
  scale: 0.9;
}

/*
child
*/

.l-footer-navi-list ul {
  padding-top: 0.4em;
}
.l-footer-navi-list ul li {
}
.l-footer-navi-list ul a {
  display: inline-block;
  color: inherit;
  font-size: 85%;
  font-weight: 500;
  position: relative;
  padding: 0.2em 0 0.2em 1em;
  line-height: 1.4;
}
.l-footer-navi-list ul a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.9em;
}
body.is-pc .l-footer-navi-list ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left ;
}


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

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


  .l-footer-container {
    display: block;
    text-align: center;
  }
  .l-footer-info {
    width: auto;
    max-width: initial;
    text-align: center;
    display: inline-block;
    text-align: left;
  }
  .l-footer-logo {
    max-width: 16em;
    margin: 0 auto;
  }
  .l-footer-address {
  }

  .l-footer-link {
    padding-top: 0.5em;
  }

  .l-footer-inner {
    padding-left: 0;
    margin-top: 3em;
    padding-top: 3em;
    border-top: 2px dotted rgba(16, 43, 133, 0.3);
  }


  .l-footer-copyright {
    text-align: center;
    padding-top: 4em;
    font-size: 0.6rem;
  }

  /*
  navi
  */

  /*
  navi
  */

  .l-footer-navi {
    display: block;
    text-align: left;
    padding-left: 5vw;
  }
  .l-footer-navi-box {
    min-width: initial;
  }
  .l-footer-navi-box:not(:last-child) {
    padding-right: 0;
  }

  .l-footer-navi-list {
    font-size: 0.9rem;
  }

  .l-footer-navi-list > li {
    padding-bottom: 0.4em;
  }
  .l-footer-navi-list > li > a {
  }

  /*
  child
  */

  .l-footer-navi-list ul {
    padding-left: 0.6em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-navi-list ul li {
  }
  .l-footer-navi-list ul a {
    margin-right: 1em;
  }



}

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

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


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

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

}


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


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

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


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



.l-menu-trigger {
  display: none;
  position: fixed;
  right: 12px;
  top: 5px;
  z-index: 9999;
  cursor: pointer;
  background: none;
  border: none;
  background-color: transparent;
}
@media screen and (max-width:1024px) {
  .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;
  background-color: var(--color-base);
}
.l-menu-btn span {
  display: inline-block;
  position: absolute;
  left: 30%;
  top: 48%;
  width: 40%;
  height: 2px;
  margin-top: -4px;
  background-color: var(--color-brand01);
  transition: 0.3s;
  transition: margin 0.3s ease 0.3s , transform 0.3s ease 0s , opacity 0.3s ease 0.3s;
}
.l-menu-btn span:nth-child(2) {
  margin-top: 4px;
}

.l-menu-btn p {
  font-size: 11px;
  font-family: var(--font-family-serif-en01);
  position: absolute;
  left: 0;
  bottom: 0;
  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-base);
  white-space: nowrap;
}

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



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

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


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

/*
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: 18px;
  padding: 0.5em 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: 16px;
  font-weight: 400;
  padding: 0.3em 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-base);
  position: absolute;
  left: 0;
  top: 1.1em;
}



/*
cv
*/


.l-menu-cv {
  border-top: 2px dotted rgba(255, 255, 255, 0.3);
  margin-top: 2em;
  padding-top: 2em;
  text-align: center;
}


.l-menu-cv-tel {
}
.l-menu-cv-num {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  font-size: 30px;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: 0;
}
.l-menu-cv-num::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f2a0";
  scale: 0.50;
  margin-left: -0.5em;
}
.l-menu-cv-text {
  padding-top: 0.5em;
  font-size: 13px;
}
.l-menu-cv-time {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  padding: 0 0.3em;
  font-size: 14px;
}


.l-menu-cv-link {
  padding: 0 1.5em 1em;
}
.l-menu-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  min-height: 3.2em;
  padding: 1em 1em;
  border: 1px solid var(--color-base);
  color: inherit;
  text-decoration: none;
  border-radius: 10em;
}

.l-menu-cv-btn span {
  display: inline-block;
}
.l-menu-cv-btn span::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: "\f658";
  margin-right: 1em;
  margin-left: -0.5em;
  scale: 1.3;
}

/*
sub
*/

.l-menu-subNavi {
  padding-left: 25px;
}

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

.l-menu-subNavi a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  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 {
  font-size: clamp(1.5em,3vw, 1.8em);
  display: flex;
  align-items: start;
  margin-bottom: 1em;
}

.l-heading-badge {
  padding-right: 1.2em;
  letter-spacing: 0;
}
.l-heading-badge-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.8em;
  height: 2.8em;
  font-size: 120%;
  color: var(--color-brand01);
  border-radius: 50%;
  border: 1px solid var(--color-brand01);
  white-space: nowrap;
  position: relative;
}
.l-heading-badge-container::after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  right: -0.4em;
  top: 50%;
}
.l-heading-badge-title {
  font-family: var(--font-family-gothic-en);
  font-size: 33%;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 0.5em;
}
.l-heading-badge-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 900;
  line-height: 1.1;
}
.l-heading-badge-symbol {
  width: 1em;
  height: 1em;
  margin: 0.1em auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

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

.l-heading.-small {
  font-size: clamp(1.2em,2.6vw, 1.5em);
}
.l-heading.-small .l-heading-badge-title {
  font-size: 40%;
  line-height: 1;
}

/*
v2
*/


.l-heading-badge.-v02 {
}
.l-heading-badge.-v02 .l-heading-badge-container {
  color: var(--color-base);
  background-color: var(--color-brand01);
  border: none;
  position: relative;
}
.l-heading-badge.-v02 .l-heading-badge-container::after {
  display: none;
}
.l-heading-badge.-v02 .l-heading-badge-container::before {
  content: "";
  display: block;
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  pointer-events: none;
  border: 2px dotted var(--color-brand01);
  border-radius: 50%;
  z-index: 2;
  animation: anim-headingBadge 60s linear infinite;
}
@keyframes anim-headingBadge {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}


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

  .l-heading {
    font-size: 1.2em;
  }
  .l-heading.-small {
    font-size: 1.1rem;
  }

  .l-heading-badge {
    font-size: 85%;
  }

  .l-heading-inner {
    min-height: 2.8em;
  }

  .l-heading-title.-large {
    font-size: 110%;
  }
}

/***********
subHeading
************/

.l-subHeading {
  font-size: clamp(1.15em,2.6vw, 1.3em);
  color: var(--color-brand01);
  display: flex;
  align-items: start;
  margin-bottom: 1em;
}

.l-subHeading-badge {
  padding-right: 0.8em;
  letter-spacing: 0;
}
.l-subHeading-badge-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.8em;
  height: 2.8em;
  font-size: 110%;
  color: var(--color-base);
  background-color: var(--color-brand01);
  border-radius: 50%;
  white-space: nowrap;
  position: relative;
}
.l-subHeading-badge-title {
  font-family: var(--font-family-gothic-en);
  font-size: 42%;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 0.4em;
}
.l-subHeading-badge-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 900;
  line-height: 1.1;
}

.l-subHeading-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3em;
}
.l-subHeading-title {
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0;
  line-height: 1.35;
}

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

  .l-subHeading {
    font-size: 1.1rem;
  }
  .l-subHeading-badge {
    font-size: 90%;
  }
  .l-subHeading-inner {
    min-height: 2.8em;
  }
}



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

.l-headline{
  text-align: center;
  padding-bottom: 1em;
  font-size: clamp(26px,3.6vw, 45px);
}
.l-headline-subTitle{
  color: var(--color-brand03);
  font-family: var(--font-family-gothic-en);
  font-size: max(30%,13px);
  font-weight: 600;
}
.l-headline-title{
  line-height: 1.4;
  font-feature-settings: "palt";
  font-weight: 900;
  letter-spacing: 0.04em;
}
.l-headline-title small {
  font-size: 70%;
}
.l-headline-text{
  padding-top: 1em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.l-headline-title.-small {
  font-size: 75%;
}

.l-headline.-large{
  font-size: clamp(26px,4vw, 55px);
}

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

  .l-headline,
  .l-headline.-large{
    text-align: center;
    padding-bottom: 1em;
    font-size: clamp(24px,7.6vw, 36px);
  }


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

}


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

.l-title{

}

.l-subTitle{
  font-size: clamp(1.2rem,2.2vw, 1.55rem);
  padding-bottom: 0.5em;
}
.l-subTitle.-large {
  font-size: clamp(1.4rem,3vw, 1.7rem);
}
.l-subTitle.-center {
  text-align: center;
}

.l-minTitle{
  font-size: clamp(1.2rem,2.6vw, 1.3rem);
  margin-bottom: 0.8em;
}
.l-minTitle.-symbol{
  background: url(../../img/symbol.png) no-repeat left 0.1em / 1.3em auto;
  padding-left: 1.7em;
}


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

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

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

/***********
largeBanner
************/

.l-largeBanner {
  border-radius: var(--rounded-sub);
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
}
.l-largeBanner a {
  display: block;
  position: relative;
  color: var(--color-base);
  text-decoration: none;
}
.l-largeBanner-img {
}
.l-largeBanner-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  aspect-ratio: 120 / 42;
  transition:all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.l-largeBanner a:has(.l-largeBanner-btn.l-btn:hover) .l-largeBanner-img img {
  transition:all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  scale: 1.05;
}

.l-largeBanner-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  z-index: 9;
}
.l-largeBanner-link {
  padding-bottom: 1.2em;
}
.l-largeBanner-btn.l-btn {
  min-height: 2.8em;
  padding: 0.5em 2.5em;
}
.l-largeBanner-lead {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}
.l-largeBanner-title {
  font-family: var(--font-family-gothic-en02);
  font-weight: 900;
  font-size: 800%;
  line-height: 1;
  white-space: nowrap;
  margin-top: -0.1em;
  margin-bottom: -0.2em;
}

.l-largeBanner-block {
  padding-top: 2.5em;
  text-align: center;
}
.l-largeBanner-block-title {
  font-size: 1.2rem;
  color: var(--color-brand01);
  padding-bottom: 0.8em;
}

.l-largeBanner-text {
  text-align: center;
  line-height: 1.8;
}

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

  .l-largeBanner-img img {
    min-height: 280px;
    max-height: 400px;
    object-fit: cover;
    aspect-ratio: 120 / 60;
  }

  .l-largeBanner a:has(.l-largeBanner-btn.l-btn:hover) .l-largeBanner-img img {
    transition:all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    scale: 1.05;
  }

  .l-largeBanner-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    z-index: 9;
  }
  .l-largeBanner-link {
    padding-bottom: 1.2em;
  }
  .l-largeBanner-btn.l-btn {
    min-height: 3.8em;
    font-size: 0.92rem;
  }
  .l-largeBanner-lead {
    font-size: 0.75rem;
    padding-bottom: 1em;
  }
  .l-largeBanner-title {
    font-size: clamp(20px,14vw, 100px);
    letter-spacing: -0.04em;
  }

}

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

  .l-largeBanner-block {
    padding-top: 1.5em;
    text-align: left;
  }
  .l-largeBanner-block-title {
    font-size: 1.2rem;
    color: var(--color-brand01);
    padding-bottom: 0.8em;
  }

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

}

/***********
voiceList
************/

.l-voiceList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
}
.l-voiceList li {
  width: 31.3%;
  margin-left: 2%;
}
.l-voiceList a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.l-voiceList-img {
  border-radius: var(--rounded-sub);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  margin-right: 1em;
}
.l-voiceList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 14 / 16;
}
.l-voiceList-inner {
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 9;
}
.l-voiceList-box {
  width: clamp(14em,60%, 16em);
  background-color: var(--color-base);
  border-radius: var(--rounded-sub);
  padding: 1.2em 5% 1.6em 7%;
  margin-top: -30%;
}
.l-voiceList-heading {
  padding-bottom: 0.6em ;
}
.l-voiceList-heading-pos {
  font-size: max(90%,13px);
  font-weight: 600;
  color: var(--color-brand03);
}
.l-voiceList-heading-title {
  display: inline-block;
  color: var(--color-brand01);
  font-size: 1.4rem;
  font-weight: 900;
  position: relative;
  line-height: 1;
}
.l-voiceList-heading-title::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: calc(100% + 0.2em);
  top: 50%;
  translate: 0 -50%;
  scale: 0.7;
  line-height: normal;
}
.l-voiceList-heading-name {
  font-family: var(--font-family-gothic-en);
  font-size: 160%;
  font-weight: 800;
  letter-spacing: 0;
  padding-right: 0.1em;
}


.l-voiceList-text {
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.6;
}

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

  .l-voiceList {
    display: block;
    width: auto;
    margin: 0 -4vw -1em;
    background: linear-gradient(to bottom, transparent 0%,#f0f0f0 50%, transparent 100%);
  }
  .l-voiceList li {
    width: auto;
    padding: 0 4vw;
    margin-bottom: 1em;
    margin-left: 0;
  }
  .l-voiceList a {
    display: flex;
    align-items: end;
  }

  .l-voiceList-img {
    width: 42%;
    margin: 0 auto 2em;
  }
  .l-voiceList-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .l-voiceList-inner {
    flex: 1;
    display: block;
  }
  .l-voiceList-box {
    width: auto;
    margin-top: 0;
    margin-left: -10%;
    padding: 1em 1em 1.2em 1em;
  }
  .l-voiceList-heading {
    padding-bottom: 0.4em ;
  }
  .l-voiceList-heading-pos {
    font-size: max(90%,12px);
  }
  .l-voiceList-heading-title {
    font-size: 1.1rem;
  }
  .l-voiceList-heading-title::after {
    scale: 0.9;
  }
  .l-voiceList-heading-name {
    font-size: 140%;
  }
  .l-voiceList-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

}


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

.l-cv {
  background: url(../../img/pattern02.jpg);
  background-size: max(100%,1000px);
  color: var(--color-base);
  padding-top: min(8vw,4em);
  padding-bottom: min(8vw,5em);
  text-align: center;
}
.l-cv-heading {
  font-size: 1.4rem;
  padding-bottom: 0.6em;
}
.l-cv-heading-title {
  font-weight: 500;
}
.l-cv-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-size: 60%;
  color: var(--color-brand03);
  padding-top: 0.5em;
}
.l-cv-heading-text {
  font-size: max(70%,14px);
  padding-top: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.l-cv-tel {
  font-size: 1.1rem;
}
.l-cv-tel-num {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  font-size: 420%;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: 0;
}
.l-cv-tel-num::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f2a0";
  scale: 0.50;
  margin-left: -0.5em;
}
.l-cv-tel-text {
  padding-top: 0.5em;
}
.l-cv-tel-time {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  padding: 0 0.3em;
  font-size: 105%;
}


.l-cv-link {
  padding-top: 2em;
}
.l-cv-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 500;
  min-height: 4.4em;
  min-width: 22em;
  padding: 1em 2em;
  background-color: var(--color-brand03);
  color: inherit;
  text-decoration: none;
  border-radius: 10em;
}

.l-cv-btn span {
  display: inline-block;
}
.l-cv-btn span::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: "\f658";
  margin-right: 1em;
  margin-left: -0.5em;
  scale: 1.3;
}
body.is-pc .l-cv-btn:hover {
  background-color: var(--color-base);
  color: var(--color-brand02);
}
body.is-pc .l-cv-btn:hover span::before{
}

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

  .l-cv {
    padding-top: min(12vw,4em);
    padding-bottom: min(12vw,5em);
  }
  .l-cv-heading {
    font-size: 1.4rem;
  }
  .l-cv-heading-subTitle {
    font-size: 70%;
  }

  .l-cv-tel {
    font-size: 0.75rem;
  }
  .l-cv-tel-num {
    font-size: clamp(30px,11vw, 50px);
  }

  .l-cv-link {
    padding-top: 1.5em;
  }
  .l-cv-btn {
    font-size: 1rem;
    font-weight: 500;
    min-width: 18em;
    padding: 1em 1em;
  }

}


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

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

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

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

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

}


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

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




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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }

}
