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

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #1f48b5;
  --color-brand02: #2a51b8;
  --color-brand03: #162159;
  --color-brand04: #4284bb;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #e3edf8;
  --color-sub04: #d2e3f3;
  --color-grad01: linear-gradient(to right, #63c2d7 0%, #1d35b0 100%);
  --color-grad02: linear-gradient(to left, #63c2d7 0%, #1d35b0 100%);
  --color-grad03: linear-gradient(135deg, #63c2d7 15%, #1d35b0 85%);

  --header-height: 100px;
  --side-padding: 80px;
}

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

  :root {
    --side-padding: 0;
  }

}



/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  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:1280px) {
  body{
    font-size: 12px;
  }
}
@media screen and (max-width:834px) {
  body{
    font-size: min(calc(9px + 0.7vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:520px) {
  body{
    font-size: min(calc(9px + 1vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}


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

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

img {
  /* 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; }
.left,.alignleft  {  float: left !important; }
.aligncenter  { display: block; margin-left:auto; margin-right:auto; }
.wp-caption {   max-width: 100%; }

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

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

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

}

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

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

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

.l-relative {  position: relative !important; z-index: 2; }

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

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

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

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

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

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

}

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

.l-wrapper{
  overflow: hidden;
}

.l-contents{
  overflow: hidden;
}

/***********
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: 30px;
  padding-right: 30px;
}

.l-base-wide {
  width: auto;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-xwide {
  width: auto;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-xxwide {
  width: auto;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.l-base-small {
  width: auto;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.l-block {
  padding-top: 9em;
  padding-bottom: 9em;
}
.l-block-small {
  padding-top: 5em;
  padding-bottom: 5em;
}
.l-block-large {
  padding-top: 15em;
  padding-bottom: 15em;
}

.l-block-top {
  padding-top: 9em;
}
.l-block-top-small {
  padding-top: 5em;
}
.l-block-top-large {
  padding-top: 15em;
}

.l-block-bottom {
  padding-bottom: 9em;
}
.l-block-bottom-small {
  padding-bottom: 5em;
}
.l-block-bottom-large {
  padding-bottom: 15em;
}

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

  .l-base ,
  .l-base-wide ,
  .l-base-xwide ,
  .l-base-xxwide ,
  .l-base-small {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .l-base:not(.-noOffset),
  .l-base-wide:not(.-noOffset),
  .l-base-xwide:not(.-noOffset),
  .l-base-xxwide:not(.-noOffset),
  .l-base-small:not(.-noOffset){
    padding-left: 4%;
    padding-right: 4%;
  }

  .l-base-wide .l-base,
  .l-base-wide .l-base-small,
  .l-base .l-base-small {
    padding-left: 0;
    padding-right: 0;
  }


  .l-block {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .l-block-small {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .l-block-large {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .l-block-top {
    padding-top: 5em;
  }
  .l-block-top-small {
    padding-top: 3em;
  }
  .l-block-top-large {
    padding-top: 8em;
  }

  .l-block-bottom {
    padding-bottom: 5em;
  }
  .l-block-bottom-small {
    padding-bottom: 3em;
  }
  .l-block-bottom-large {
    padding-bottom: 8em;
  }

}

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

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

/***********
l-hoverUnderline
************/

.l-hoverUnderline {
  padding-bottom: 0.2em;
  background: linear-gradient(#000, #000) 0 100% / 0 1px no-repeat;
  transition: background 0.3s;
  text-decoration: none;
}
body.is-pc .l-hoverUnderline:hover {
  background-size: 100% 1px;
}

/*
左から右に抜ける
.l-hoverLine {
  background: linear-gradient(0deg, #000, #000) no-repeat right bottom / 0 1px;
  transition: background-size 350ms;
}
.l-hoverLine:where(:hover, :focus-visible) {
  background-size: 100% 1px;
  background-position-x: left;
}

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

.l-hoverLine {
  background: linear-gradient(#000,#000) 100% 100%/100% 2px no-repeat;
  text-decoration: none;
  color: #000;
}
body.is-pc .l-hoverLine:hover {
 animation:anim-hoverLine .8s cubic-bezier(.23,1,.32,1) 0s
}

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

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

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

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

/***********
l-flip
************/

.l-flip{
  display: flex;
  position: relative;
  text-align: center;
  line-height: 1.2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.l-flip > span{
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 1.2;
}
.l-flip > span::after{
  content: attr(data-text)"";
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 100%;
}
a:hover .l-flip > span {
  transform: translateY(-100%);
  white-space: nowrap;
  transition: 0.3s;
}

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

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

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

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

.l-textMain{
  font-size: clamp(116%,1.4vw, 139%);
  line-height: 1.8;
}
.l-textLead{
  font-size: clamp(116%,1.4vw, 139%);
  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: left;
  }
}


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


/***********
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;
  width: auto;
  min-width: 17em;
  min-height: 4em;
  padding: 1em 3em ;
  font-size: clamp(1.24rem,1.2vw, 1.54rem);
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  color: var(--color-base);
  border-radius: 5px;
  background-color: var(--color-brand03);
  box-shadow: 0 3px 0 var(--color-sub01);
  text-decoration: none !important;
  line-height: 1.3;
  transition: 0.2s;
  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;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  font-size: 77%;
}
body.is-pc .l-btn:hover {
  translate: 0 3px;
  background-color: var(--color-brand02);
  box-shadow: 0 0 0 var(--color-sub01);
}


.l-btn.-white {
  background-color: var(--color-base);
  color: var(--color-brand03);
  box-shadow: 0 3px 0 var(--color-brand02);
}
body.is-pc .l-btn.-white:hover {
  background-color: var(--color-base);
}



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

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


}




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

.l-logo {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: clamp(200px,14vw, 280px);
  aspect-ratio: 100 / 60;
  background-color: var(--color-base);
  border-radius: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
}
.l-logo-img {
  width: 50%;
  margin: 0 auto;
}

/*
fixed
*/

body.is-fixed .l-logo {
  width: clamp(150px,9vw, 200px);
}

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


  .l-logo {
    width: clamp(125px,24vw, 180px);
    aspect-ratio: 100 / 70;
    border-radius: 0 0 20px 0;
    transition: 0.2s;
  }
  .l-logo-img {
    width: 55%;
    margin: 0 auto;
    transition: 0.2s;
  }

  /*
  fixed
  */

  body.is-fixed .l-logo {
    width: 80px;
  }
  .l-logo-img {
    width: 65%;
  }


}


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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  font-size: clamp(116%,1vw, 139%);
  padding-right: 2em;
  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;
}

/*
cv
*/

.l-header-cv {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.5em 0 0.5em 1em;
}
.l-header-cv-item {
  height: 100%;
}
.l-header-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 9em;
  text-decoration: none;
  border-radius: 5px;
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  position: relative;
}
.l-header-cv-btn.-contact {
  background-color: var(--color-brand03);
}
body.is-pc .l-header-cv-btn.-contact:hover {
  background-color: var(--color-brand01);
}

/*
navi
*/

.l-header-navi {
  padding-right: 2.5em;
}
.l-header-navi button {
  display: none !important;
}

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

.l-header-navi-list > li {
  padding: 0.2em 0;
  position: relative;
}
.l-header-navi-list > li:not(:last-child) {
  margin-right: 2.2em;
}
.l-header-navi-list > li > a {
  display: inline-block;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0.2s;
}
.l-header-navi-list > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0.5em;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list > li:hover > a {
  transform: translateY(-3px);
  color: var(--color-brand01);
}
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: 16em;
  color: var(--color-base);
  background: var(--color-brand02);
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.1);
  padding: 1em 1em 2em 1em;
  margin-left: -2em;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.l-header-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
}
.l-header-navi-list ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.l-header-navi-list ul li:not(:last-child) {
}
.l-header-navi-list ul a {
  width: 100%;
  display: block;
  color: var(--color-base);
  font-size: 90%;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.5em 0 0.5em 1.5em;
  white-space: nowrap;
}
.l-header-navi-list ul a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -55%;
  scale: 0.6;
}
body.is-pc .l-header-navi-list ul li:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
body.is-pc .l-header-navi-list ul a:hover {
  translate: 0.2em 0;
}
body.is-pc .l-header-navi-list ul a:hover::after {
  translate: 0.3em -50%;
}

.l-header-navi-list ul a span{
  display: inline-block;
  position: relative;
  padding: 0.2em 0 0.4em 0;
}

/*
home
*/

body:not(.is-fixed) .l-header {
  color: var(--color-base);
}
body:not(.is-fixed) .l-header-navi-list > li > a:hover {
  color: var(--color-base);
}
body:not(.is-fixed) .l-header-navi-list > li::before {
  background-color: var(--color-base);
}

/*
fixed
*/

body.is-fixed .l-header {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}



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

  .l-header {
    display: none;
  }

}


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

}


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

.l-footer {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: url(../../img/bg02.jpg) no-repeat center center / cover ;
  color: var(--color-base);
  padding: 8em 7vw;
}
.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #1f48b5;
  opacity: 0.7;
  mix-blend-mode: multiply;
}


.l-footer-cv {
  text-align: right;
  padding-top: 2em;
}
.l-btn.l-footer-cv-btn {
  font-size: clamp(139%,4vw, 154%);
}
.l-btn.l-footer-cv-btn i {
  margin-right: 0.8em;
  scale: 1.4;
}


.l-footer-subNavi {
  padding-top: 5em;
  display: flex;
  flex-wrap: wrap;
  font-size: 85%;
}
.l-footer-subNavi button{
  display:  none !important;
}
.l-footer-subNavi li:not(:last-child)::after{
  content: "｜";
  padding:  0 0.8em;
}
.l-footer-subNavi a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.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.8;
}





.l-footer-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.l-footer-info {
  padding-right: 5em;
}

.l-footer-logo {
  width: 100px;
}
.l-footer-lead {
  font-feature-settings: "palt";
  font-size: clamp(139%,2vw, 170%);
  font-weight: 600;
  padding-top: 1em;
  letter-spacing: 0.06em;
}

.l-footer-address {
  font-size: clamp(108%,1.6vw, 116%);
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.6;
  padding-top: 1em;
}


/*
navi
*/

.l-footer-sitemap {
  font-size: clamp(108%,2vw, 124%);
}


.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5em;
}
.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: 600;
  padding: 1em 0 0.5em;
  white-space: nowrap;
  transition: 0.4s;
}
body.is-pc .l-footer-navi a:hover{
  opacity: 0.8;
}

/*
child1
*/

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

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

  .l-footer {
    padding: 5em 4vw;
  }

  .l-footer-container {
    display: block;
    justify-content: space-between;
    position: relative;
    z-index: 9;
  }
  .l-footer-info {
    padding-right: 0;
    padding-bottom: 3em;
    margin-bottom: 3em;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .l-footer-logo {
    width: 60px;
    margin: 0 auto;
  }
  .l-footer-lead {
    font-size: clamp(108%,2vw, 170%);
  }

  .l-footer-cv {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 2em 5vw 0;
  }
  .l-btn.l-footer-cv-btn {
    min-width: initial;
    width: 100%;
  }
  .l-btn.l-footer-cv-btn i {
    margin-right: 0.8em;
    scale: 1.4;
  }


}

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




  .l-footer-subNavi {
    padding-top: 2em;
    padding-left: 5vw;
    display: block;
    font-size: 85%;
  }
  .l-footer-subNavi li:not(:last-child)::after{
    display: none;
  }
  .l-footer-subNavi a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    padding: 0.2em 0;
  }
  .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.8;
  }



  /*
  navi
  */
  .l-footer-sitemap {
    max-width: initial;
    font-size: clamp(108%,2vw, 124%);
  }


  .l-footer-navi {
    display: block;
    margin-right: 0;
    padding-left: 5vw;
  }

  .l-footer-navi > li {
    padding-right: 0;
    padding-bottom: 0;
    min-width: initial;
  }
  .l-footer-navi > li > a {
    padding: 0.3em 0 0.3em 0;
    font-size: 108%;
  }
  body.is-pc .l-footer-navi > li > a:hover{
    color: var(--color-accent);
  }

  /*
  child1
  */

  .l-footer-navi > li.menu-item-has-children > ul {
    padding-left: 0.5em;
    padding-bottom: 0.5em;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-navi > li.menu-item-has-children > ul > li > a{
    font-size: 85%;
    padding: 0.1em 1.5em 0.2em 0;
  }
  body.is-pc .l-footer-navi > li.menu-item-has-children > ul > li > a:hover{
  }
}


/***********
copyright
************/

.l-copyright {
  position: absolute;
  left: calc(var(--side-padding) / 2);
  top: 48%;
  translate: -50% 0 ;
  user-select: none;
  pointer-events: none;
}
.l-copyright-text {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: clamp(93%,1vw, 116%);
  letter-spacing: 0.08em;
  color: var(--color-brand01);
  white-space: nowrap;
  rotate: 90deg;
}

@media screen and (max-width:1440px) {
  .l-copyright {
    position: static;
    translate: 0 0 ;
    user-select: none;
    pointer-events: none;
    padding: 3em 0;
    background-color: var(--color-main);
    text-align: center;
  }
  .l-copyright-text {
    font-size: clamp(93%,1vw, 116%);
    letter-spacing: 0.02em;
    rotate: 0deg;
    color: var(--color-base);
  }

}

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

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

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

  .l-menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    left: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease,opacity 0.5s ease;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }

  .is-menu-open .l-menu{
    opacity: 1;
    transform: scale(1);
    transform-origin: bottom;
  }

  .l-menu-trigger {
    display: block;
    position: fixed;
    right: 3px;
    top: 3px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 52px;
    height: 48px;
    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-brand03);
    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-en);
    position: absolute;
    left: 0;
    bottom: 2px;
    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.02em;
    color: var(--color-brand03);
    white-space: nowrap;
  }

  .l-menu-btn.is-active {
    background-color: transparent;
  }
  .l-menu-btn.is-active span:nth-child(1) {
    background-color: var(--color-main);
    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-main);
    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;
}


.l-menu-container {
  opacity: 0;
  transition: opacity 0s ease 0s ,translate 0.3s ease 0.5s;
  translate: 0 20px;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 84px;
  padding-bottom: 150px;
}
body.is-menu-open .l-menu-container {
  opacity: 1;
  transition: all 0.5s ease 0.5s;
  translate: 0 0;
}

/*
navi
*/

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

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

.l-menu-navi-list {
  border-top: 1px solid var(--color-sub03);
}

.l-menu-navi-list>li {
  position: relative;
  border-bottom: 1px solid var(--color-sub03);
}

.l-menu-navi-list>li>a {
  min-width: 15em;
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-brand03);
  padding: 0.8em 50px 0.8em 35px;
  transition: 0.4s;
}
.l-menu-navi-list .menu-item-has-children>button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
  width: 80px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 99;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
  display: none !important;
}

.l-menu-navi-list .menu-item-has-children>button::before,
.l-menu-navi-list .menu-item-has-children>button::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: var(--color-brand01);
  position: absolute;
  right: 12px;
  top: 50%;
  opacity: 0.8;
}

.l-menu-navi-list .menu-item-has-children>button::after {
  transform: rotate(90deg);
  transition: 0.3s;
}

.l-menu-navi-list .menu-item-has-children>button.is-active::after {
  transform: rotate(120deg);
  opacity: 0;
}

/*
child1
*/

.l-menu-navi-list>li.menu-item-has-children>ul {
  padding: 0 20px 15px 35px;
}

.l-menu-navi-list>li.menu-item-has-children:hover>ul {}

.l-menu-navi-list>li.menu-item-has-children>ul>li {}

.l-menu-navi-list>li.menu-item-has-children>ul>li:not(:last-child) {}

.l-menu-navi-list>li.menu-item-has-children>ul>li>a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  padding: 0.3em 0 0.3em 35px;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.l-menu-navi-list>li.menu-item-has-children>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: "\f061";
  position: absolute;
  left: 10px;
  top: 0.55em;
  color: var(--color-brand01);
  transform: scale(0.8);
}


/*
cv
*/

.l-menu-cv {
  padding: 20px 25px 0;
}
.l-menu-cv a {
  display: block;
  padding: 1.5em 0;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-size: clamp(139%,4vw, 154%);
  font-weight: 600;
  text-decoration: none;
}
.l-menu-cv a i {
  margin-left: -0.6em;
  margin-right: 0.8em;
  scale: 1.5;
}



/*
sub
*/

.l-menu-subNavi {
  padding-top: 2em;
  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";
  color: var(--color-brand01);
  margin-left: 0.5em;
}



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

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

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

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

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

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

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

.l-largeHeading {
  font-size: clamp(116%,1.8vw, 170%);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin-bottom: 1.8em;
}
.l-largeHeading-lead {
  display: inline-block;
  padding: 0.3em 1.5em;
  background-color: var(--color-sub03);
  font-weight: 600;
  border-radius: 5em;
  margin-bottom: 1em;
}
.l-largeHeading-title {
  font-size: 185%;
  color: var(--color-brand03);
  line-height: 1.4;
}
.l-largeHeading-subTitle {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand02);
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-top: 0.4em;
}


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

  .l-largeHeading {
    font-size: clamp(116%,3vw, 154%);
  }
  .l-largeHeading-lead {
  }
  .l-largeHeading-title {
    font-size: 154%;
  }

}

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

.l-heading{
  text-align: center;
  font-size: clamp(139%,4vw, 224%);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  padding-bottom: 2em;
}
.l-heading-subTitle{
  font-weight: 700;
  color: var(--color-brand01);
}
.l-heading-title{
  display: inline-block;
  font-size: 154%;
  color: var(--color-brand03);
  position: relative;
}
.l-heading-title::before ,
.l-heading-title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  background-color: var(--color-brand01);
  position: absolute;
  top: 55%;
}
.l-heading-title::before {
  left: calc(100% + 0.5em);
}
.l-heading-title::after {
  right: calc(100% + 0.5em);
}

.l-heading-text {
  line-height: 1.8;
  font-size: clamp(1.16rem,1.4vw, 1.39rem);
  padding-top: 1.5em;
}


.l-heading.-white,
.l-heading.-white .l-heading-subTitle,
.l-heading.-white .l-heading-title {
  color: var(--color-base);
}
.l-heading.-white .l-heading-title::before ,
.l-heading.-white .l-heading-title::after {
  background-color: var(--color-base);
}

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

  .l-heading{
    font-size: clamp(124%,3vw, 170%);
  }
  .l-heading-title{
    font-size: 154%;
  }

}

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

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

}

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

.l-headline {
  font-size: clamp(139%,4vw, 224%);
  padding-bottom: 2em;
}
.l-headline-title {
  font-size: 139%;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.l-headline-subTitle {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 85%;
  color: var(--color-brand02);
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-top: 0.4em;
}
.l-headline-subTitle::after {
  content: "";
  display: block;
  width: 7em;
  height: 2px;
  background-color: var(--color-brand02);
  position: absolute;
  left: calc(100% + 0.5em);
  top: calc(50% - 1px);
}

.l-headline-text {
  line-height: 1.8;
  font-size: clamp(1.16rem,1.4vw, 1.39rem);
  padding-top: 1em;
}

.l-headline.-white,
.l-headline.-white .homeHeading-subTitle{
  color: var(--color-base);
}
.l-headline.-white .homeHeading-subTitle::after{
  background-color: var(--color-base);
}

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


}

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

.l-title{
  font-size: 1.85rem;
  font-size: clamp(1.31rem,2.5vw, 1.7rem);
  line-height: 1.4;
  font-weight: 700;
  background-color: var(--color-brand01);
  color: var(--color-base);
  margin-bottom: 1em;
  padding: 0.6em 1em ;
  position: relative;
}
.l-subTitle{
  font-size: clamp(1.31rem,2.5vw, 1.7rem);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--color-brand03);
  border-left: 4px solid var(--color-brand01);
  padding: 0.1em 0em 0.1em 0.8em;
  position: relative;

}
.l-minTitle{

}

/***********
l-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-brand03);
}
.l-bgColor06{
  background: var(--color-grad03);
  position: relative;
}
.l-bgColor06::after{
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transform: skewX(-30deg);
  transform-origin: left bottom;
}



.l-bgColor05 .l-headline,
.l-bgColor06 .l-headline,
.l-bgColor05 .l-headline-subTitle,
.l-headline.-white,
.l-headline.-white .homeHeading-subTitle{
  color: var(--color-base);
}
.l-bgColor05 .l-headline-subTitle::after,
.l-headline.-white .homeHeading-subTitle::after{
  background-color: var(--color-base);
}





.l-bgColor05 .l-heading,
.l-bgColor06 .l-heading,
.l-bgColor05 .l-heading .l-heading-subTitle,
.l-bgColor06 .l-heading .l-heading-subTitle,
.l-bgColor05 .l-heading .l-heading-title ,
.l-bgColor06 .l-heading .l-heading-title {
  color: var(--color-base);
}
.l-bgColor05 .l-heading .l-heading-title::before ,
.l-bgColor05 .l-heading .l-heading-title::after,
.l-bgColor06 .l-heading .l-heading-title::before ,
.l-bgColor06 .l-heading .l-heading-title::after {
  background-color: var(--color-base);
}
/***********
service
************/

.l-service {
  padding: 8em 7vw;
}

.l-service-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  font-size: clamp(124%,1vw, 200%);
}

/*
section
*/

.l-service-section {
  width: 98%;
  margin-left: 2%;
  margin-bottom: 2em;
  background-color: var(--color-base);
  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.l-service-section::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-base);
}
.l-service-section-visual {
  width: 50%;
  position: relative;
  z-index: 2;
}
.l-service-section-img {
  height: 100%;
  margin-right: -10%;
  translate: 5% -15%;
}
.l-service-section-img .simpleParallax {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}


.l-service-section-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-service-section-inner {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 5em 0 4em 5%;
}
.l-service-section-heading {
  padding-bottom: 2em;
}
.l-service-section-lead {
  display: inline-block;
  padding: 0.3em 1.5em;
  background-color: var(--color-sub03);
  font-weight: 600;
  font-size: 154%;
  border-radius: 5em;
  margin-bottom: 0.5em;
}
.l-service-section-title {
  font-size: 231%;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.l-service-section-title span{
  font-size: 154%;
  color: var(--color-brand03);
}
.l-service-section-title small{
}

.l-service-section-block {
  display: flex;
}
.l-service-section-text {
  line-height: 1.8;
  flex: 1;
}
.l-service-section-icon {
  width: 30%;
  padding-top: 2em;
}

/*
item
*/

.l-service-item {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 1.5em;
  background-color: var(--color-base);
  border-radius: 10px;
  padding: 1.5em 2em 1.5em;
}
.l-service-item-heading {
  padding-bottom: 1.5em;
  text-align: center;
}
.l-service-item-lead {
  display: inline-block;
  padding: 0.5em 1.5em;
  width: 100%;
  max-width: 16em;
  background-color: var(--color-sub03);
  font-weight: 600;
  font-size: 124%;
  border-radius: 5em;
  margin-bottom: 0.8em;
}
.l-service-item-title {
  font-size: 154%;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.l-service-item-title span{
  display: block;
  font-size: 139%;
  color: var(--color-brand03);
}
.l-service-item-title small{
  display: block;
  padding-top: 0.5em;
}
.l-service-item-text {
  line-height: 1.8;
  flex: 1;
}
.l-service-item-icon {
  width: max(50%,180px);
  margin: 0 auto 0;
}

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

  .l-service {
    padding: 6em 4vw;
  }

  .l-service-section-visual {
    width: 40%;
  }

}


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

  /*
  item
  */

  .l-service-item-lead {
    width: 100%;
    font-size: 100%;
  }
  .l-service-item-title {
    font-size: 124%;
  }
  .l-service-item-icon {
    width: max(50%,120px);
  }

}

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

  .l-service {
    padding: 4em 4vw 5em;
  }

  .l-service-container {
    display: block;
    margin-left: 0;
    font-size: clamp(116%,3vw, 139%);
  }

  /*
  section
  */

  .l-service-section {
    width: auto;
    margin-left: 0;
    margin-bottom: 1em;
    border-radius: 10px;
    display: block;
  }
  .l-service-section::after {
    display: none;
  }
  .l-service-section-visual {
    width: auto;
    padding: 2% 2% 0;
    border-radius: 5px;
  }
  .l-service-section-img {
    height: 100%;
    margin-right: 0;
    margin-left: 0;
    translate: 0 0;
    border-radius: 5px;
  }
  .l-service-section-img .simpleParallax {
  }
  .l-service-section-img img {
    border-radius: 5px;
    aspect-ratio: 16 / 10;
  }
  .l-service-section-inner {
    padding: 2em 5% 2em 5%;
  }
  .l-service-section-heading {
    padding-bottom: 1em;
    text-align: center;
  }
  .l-service-section-lead {
    padding: 0.3em 1.5em;
    font-size: 116%;
  }
  .l-service-section-title {
    font-size: 154%;
    line-height: 1.4;
    display: block;
  }
  .l-service-section-title span{
    font-size: 154%;
  }
  .l-service-section-title small{
    display: block;
  }
  .l-service-section-block {
    display: block;
  }
  .l-service-section-icon {
    width: clamp(100px,40%, 200px);
    padding-top: 1em;
    padding-left: 0;
    margin: 0 auto;
  }

  /*
  item
  */

  .l-service-item {
    width: auto;
    margin-left: 0;
    margin-bottom: 1em;
    padding: 2.5em 5% 1em;
  }
  .l-service-item-heading {
    padding-bottom: 1.5em;
    text-align: center;
  }
  .l-service-item-lead {
    padding: 0.3em 1.5em;
    width: auto;
    max-width: initial;
    min-width: 10em;
    font-size: 116%;
    margin-bottom: 0.5em;
  }
  .l-service-item-title {
    font-size: 139%;
    font-feature-settings: "palt";
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .l-service-item-title span{
    display: block;
    font-size: 139%;
    color: var(--color-brand03);
  }
  .l-service-item-title small{
    display: block;
    padding-top: 0.5em;
  }
  .l-service-item-icon {
    width: clamp(100px,40%, 200px);
    padding-top: 1em;
    margin: 0 auto;
  }

}

/***********
worksCard
************/

.l-worksCard {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -4em;
  font-size: clamp(108%,1.2vw, 124%);
}
.l-worksCard li {
  width: 30.3%;
  margin-left: 3%;
  margin-bottom: 4em;
}
.l-worksCard li a {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: var(--color-base);
  border-radius: 0.6em;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.l-worksCard li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 5;
  pointer-events: none;
}
.l-worksCard-img {
}
.l-worksCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 85 / 100;
}

.l-worksCard-inner {
  padding: 1.2em 2em 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  color: var(--color-base);
  pointer-events: none;
}
.l-worksCard-cat {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  font-weight: 500;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 0.4em 1.8em;
}

.l-worksCard-title {
  font-size: 124%;
  font-weight: 600;
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.l-worksCard-area {
  font-size: 85%;
  font-weight: 400;
  padding-top: 0.5em;
}


/*
carousel
*/

.carouselWrapper {
  width: 100vw;
}
.carouselWrapper-inner {
  translate: 10vw 0;
  transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
  opacity: 0;
}
.carouselWrapper-inner.is-show {
  translate: 0 0;
  opacity: 1;
}

.l-worksCard.-carousel .slick-list {
  overflow: visible !important;
}

.l-worksCard.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  padding-bottom: 140px;
}
.l-worksCard.-carousel li {
  width: auto;
  margin: 0;
}
.l-worksCard.-carousel li a {
  width: clamp(300px,22vw, 600px);
  margin-right: 2vw;
}
.l-worksCard.-carousel .l-worksCard-title {
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*
slick
*/


.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 76px;
  height: 76px;
  background-color: #e4e4e4;
  color: var(--color-brand03);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
}
.carouselWrapper .slick-next{
  left: 100px;
}
.carouselWrapper .slick-prev{
}

.carouselWrapper .slick-next:hover,
.carouselWrapper .slick-prev:hover{
  background-color: var(--color-brand01);
  color: var(--color-base);
}

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

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

}

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

  .l-worksCard {
  }
  .l-worksCard li {
    width: 47%;
  }
  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 4vw;
    margin-left: -4.2vw;
    margin-right: -4.2vw;

  }
  .carouselWrapper-inner {
    translate: 50vw 0;
    transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
    opacity: 0;
  }
  .carouselWrapper-inner.is-show {
    translate: 0 0;
    opacity: 1;
  }

  .l-worksCard.-carousel {
    display: flex;
    padding-bottom: 20px;
  }
  .l-worksCard.-carousel li {
  }
  .l-worksCard.-carousel li a {
    width: 220px;
    margin-right: 10px;
  }
  .l-worksCard.-carousel .l-worksCard-inner {
    padding: 1em 1em 1.2em;
  }

  .l-worksCard.-carousel .l-worksCard-cat {
    padding: 0.4em 1.4em;
    font-size: 85%;
  }
  .l-worksCard.-carousel .l-worksCard-title {
    font-size: 100%;
  }
  .l-worksCard.-carousel .l-worksCard-area {
    font-size: 77%;
  }

  .l-worksCard:not(.-carousel) .l-worksCard-inner {
    padding: 1em 1em 1.2em;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-cat {
    padding: 0.4em 1.4em;
    font-size: 100%;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-title {
    font-size: 116%;
  }
  .l-worksCard:not(.-carousel) .l-worksCard-area {
    font-size: 85%;
  }
}

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

  .l-worksCard {
    display: block;
    margin-left: 0;
    margin-bottom: -1em;
  }
  .l-worksCard li {
    width: auto;
    margin-left: 0;
    margin-bottom: 1em;
  }

  .l-worksCard:not(.-carousel) .l-worksCard-img img {
    aspect-ratio: 100 / 95;
  }

}


/***********
newsList
************/

.l-newsList {
  font-size: clamp(116%,1.6vw, 139%);
}
.l-newsList li {
}
.l-newsList li:not(:last-child) {
  margin-bottom: 10px;
}
.l-newsList a {
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 4%;
  border: 1px solid var(--color-main);
  background-color: var(--color-base);
}
.l-newsList-time {
  display: inline-block;
  width: 7em;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.2em;
}
.l-newsList-cat {
  display: inline-block;
  min-width: 8em;
  padding: 0.2em 0.8em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 10em;
  font-feature-settings: "palt";
  font-size: 85%;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.l-newsList-title {
  flex: 1;
  padding-left: 2em;
  font-weight: 600;
  color: var(--color-brand03);
}
body.is-pc .l-newsList a:hover {
  box-shadow: 5px 5px 0 var(--color-brand02);
  translate: -2px -2px;
}

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


  .l-newsList {
  }
  .l-newsList li {
  }
  .l-newsList li:not(:last-child) {
    margin-bottom: 10px;
  }
  .l-newsList a {
    padding: 1em 5% 1.5em;
    display: block;
  }
  .l-newsList-time {
    width: auto;
    font-size: 108%;
    padding-top: 0.1em;
    padding-right: 0.5em;
  }
  .l-newsList-cat {
    min-width: initial;
    padding: 0.1em 1em;
    font-size: 85%;
  }
  .l-newsList-title {
    padding-left: 0;
    padding-top: 0.5em;
    font-size: 108%;
  }

}


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

.l-pageList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: -5em;
}
.l-pageList li {
  width: 48%;
  padding-bottom: 5em;
}
.l-pageList li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-pageList-img {
}
.l-pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}
.l-pageList-inner {
  font-size: clamp(100%,1vw, 124%);
  padding-top: 1em;
}
.l-pageList-heading {
  padding-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.l-pageList-heading::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: "\f054";
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 1em;
  transition: 0.2s;
}
body.is-pc .l-pageList li a:hover .l-pageList-heading::after {
}

.l-pageList-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  color: var(--color-brand01);
}



.l-pageList-title {
  font-size: 200%;
  line-height: 1.35;
}
.l-pageList-text {
  line-height: 1.7;
}


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

  .l-pageList {
    display: block;
    padding-bottom: -4em;
  }
  .l-pageList li {
    width: auto;
    padding-bottom: 4em;
  }

  .l-pageList-inner {
    font-size: clamp(116%,3vw, 131%);
    padding-top: 1em;
  }
  .l-pageList-heading {
    padding-bottom: 1em;
    padding-right: 3em;
  }
  .l-pageList-heading::after {
    scale: 0.9;
  }

  .l-pageList-subTitle {
    font-size: 93%;
    padding-bottom: 0.2em;
  }
  .l-pageList-title {
    font-size: 154%;
    line-height: 1.4;
  }
  .l-pageList-text {
    line-height: 1.8;
  }
}
/***********
xxxxx
************/

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

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

[data-fade="fade-up-rotate"] {
  transform: translateY(40px) rotate(3deg);
  transform-origin: left top;
}
[data-fade="fade-up-rotate"].is-show {
  transform: translateY(0) rotate(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;
  }

}
