@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:  'Oswald','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #002cb9;
  --color-brand02: #3e86f1;
  --color-brand03: #0000b9;
  --color-accent: #f00;
  --color-sub01: #f4f4f4;
  --color-sub02: #dadfee;
}

/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  color: var(--color-main);
}

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:calc(9px + 0.7vmin);
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:520px) {
  body{
    font-size:calc(9px + 1vmin);
    -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; }

@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; }

.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;
  transition:all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

body.is-menu-open .l-wrapper{
  transform: translateX(-100px);
}

.l-contents{
}



/***********
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: 8em;
  padding-bottom: 8em;
}
.l-block-small {
  padding-top: 5em;
  padding-bottom: 5em;
}
.l-block-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

.l-block-top {
  padding-top: 8em;
}
.l-block-top-small {
  padding-top: 5em;
}
.l-block-top-large {
  padding-top: 12em;
}

.l-block-bottom {
  padding-bottom: 8em;
}
.l-block-bottom-small {
  padding-bottom: 5em;
}
.l-block-bottom-large {
  padding-bottom: 12em;
}

@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: 3%;
    padding-right: 3%;
  }

  .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: 4em;
    padding-bottom: 4em;
  }
  .l-block-small {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .l-block-large {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .l-block-top {
    padding-top: 4em;
  }
  .l-block-top-small {
    padding-top: 3em;
  }
  .l-block-top-large {
    padding-top: 8em;
  }

  .l-block-bottom {
    padding-bottom: 4em;
  }
  .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.06) ;
}

/***********
l-hoverUnderline
************/


.l-hoverLine {
  background: linear-gradient(0deg, var(--color-brand01), var(--color-brand01)) no-repeat right bottom / 0 1px;
  transition: background-size 350ms;
}
.l-hoverLine:where(:hover, :focus-visible) {
  background-size: 100% 1px;
  background-position-x: left;
}

/***********
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-flipUp{
  display: inline-flex;
  overflow: hidden;
}
.l-flipUp > span{
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.5s;
  transition-delay: 0.2s;
  transform: translateY(100%);
  vertical-align: middle;
}
.l-flipUp.is-show > span{
  transform: translateY(0%);
}


/***********
l-flip
************/

.l-flip{
  display: flex;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.l-flip > span{
  display: inline-block;
  width: 100%;
  position: relative;
}
.l-flip > span::after{
  content: attr(data-text)"";
/*  font-size: 85%;*/
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 100%;
}
a:hover .l-flip > span {
  transform: translateY(-100%);
  white-space: nowrap;
  transition: 0.4s;
}

/***********
fontColor
************/

.l-fontColor-red {
  color: var(--color-accent);
}

/***********
text
************/

.l-textMain{
  font-size: 124%;
  line-height: 2;
}
.l-textLead{
  font-size: 124%;
  line-height: 2;
  text-align: center;
}

.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{
    font-size: 108%;
    line-height: 1.8;
  }
}

@media screen and (max-width:520px) {
  .l-textLead{
    text-align: left;
  }
}

/***********
linkWrap
************/

.l-linkWrap{
  padding-top: 2em;
  text-align: center;
}
.l-linkWrap.-left{
  text-align: left;
}
.l-linkWrap.-right{
  text-align: right;
}

@media screen and (max-width:834px) {

  .l-linkWrap.-left ,
  .l-linkWrap.-right{
    text-align: center;
  }

}

/***********
btn
************/

.l-btn {
  display: inline-block;
  width: auto;
  min-width: 16em;
  padding: 1.2em 3em 1.2em 2em ;
  font-size: 1.54rem;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  color: var(--color-base);
  text-decoration: none !important;
  text-align: center;
  background-color: var(--color-brand03);
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.l-btn::after {
  content: "";
  display: block;
  width: 1.8em;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 0.7em auto;
  border-left: 1px solid var(--color-base);
}
body.is-pc .l-btn:hover {
  background-color: var(--color-brand02);
}

.l-btn-en {
  display: inline-block;
  font-weight: 300;
  transform: scale(1.5) translateY(-0.1em);
}


.l-btn.-white {
  color: var(--color-brand01);
  background-color: var(--color-base);
}
.l-btn.-white::after {
  background-image: url(../../img/icon/arrow_bl.png);
  border-left: 1px solid var(--color-brand01);
}
body.is-pc .l-btn.-white:hover {
  background-color: var(--color-base);
}



.l-btn.-xsmall {
  min-width: 14em;
  padding: 0.8em 3em 0.8em 2em ;
  font-size: 1.08rem;
}

.l-btn.-back {
  padding-left: 3em;
  padding-right: 2em;
}
.l-btn.-back::after {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}

@media screen and (max-width:1280px) {

  .l-btn {
    font-size: 1.39rem;
  }
  .l-btn-en {
    transform: scale(1.5) translateY(-0.1em);
  }

}

@media screen and (max-width:834px) {

  .l-btn {
    min-width: 16em;
    padding: 1.2em 3em 1.2em 2em ;
    font-size: 1.24rem;
  }
  .l-btn.-xsmall {
    min-width: 12em;
    font-size: 1.08rem;
  }
  .l-btn::after {
    width: 1.5em;
    background-size: 0.6em auto;
  }

  .l-btn-en {
    font-weight: 300;
    transform: scale(1.5) translateY(-0.1em);
  }

  .l-btn.-back {
    padding-left: 3em;
    margin-right: 2em;
  }

}

/***********
header
************/

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.2s;
}
body:not(.home) .l-header {
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.05);
}

.l-header-inner {
  height: 100px;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
  position: relative;
}

.l-header-logo {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 20px;
  transition: 0.2s;
  white-space: nowrap;
}
.l-header-logo a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.l-header-title {
  font-weight: 700;
  line-height: 1.3;
}
.l-header-title small {
  font-size: 108%;
}
.l-header-title span {
  font-size: 185%;
}

.l-header-block {
  height: 100%;
  display: flex;
  align-items: center;
}

/*
cv
*/

.l-header-cv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  transition: 0.2s;
}
.l-header-cv-list {
  display: flex;
  align-items: center;
  transition: 0.2s;
  border: 1px solid var(--color-brand01);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.l-header-cv-list li {
}
.l-header-cv-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 3.5em;
  padding: 0 1.2em;
  font-size: 124%;
  font-weight: 600;
  color: var(--color-brand01);
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}
.l-header-cv-list a.-access {
  background-color: var(--color-base);
  color: var(--color-brand01);
}
.l-header-cv-list a.-contact {
  background-color: var(--color-brand01);
  color: var(--color-base);
}

.l-header-cv-list a span {
  display: inline-block;
  padding: 0.3em 0;
  position: relative;
}
.l-header-cv-list a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right ;
}
.l-header-cv-list a.-contact span::after {
  background-color: var(--color-base);
}
body.is-pc .l-header-cv-list a:hover span::after {
  transform: scaleX(1);
  transform-origin: left ;
}

/*
lang
*/

.l-header-lang {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-left: 0.5em;
}
.l-header-lang .wpm-switcher-list {
  display: flex;
  align-items: center;
}
.l-header-lang .wpm-switcher-list li {
  position: relative;
  padding-right: 0.2em;
  margin-right: 0.2em;
  font-size: 139%;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
}
.l-header-lang .wpm-switcher-list li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 0;
  translate: 0 50%;
}
.l-header-lang .wpm-switcher-list li.-active {
}


.l-header-lang .wpm-switcher-list li a ,
.l-header-lang .wpm-switcher-list li > span{
  color: inherit;
  text-decoration: none;
  margin: 0.2em 0.6em 0.3em;
  padding: 0.2em 0;
}
.l-header-lang .wpm-switcher-list li > span {
  border-bottom: 1px solid var(--color-brand01);
  color: var(--color-brand01);
}
body.is-pc .l-header-lang .wpm-switcher-list li a:hover {
  color: var(--color-brand01);
}


/*
navi
*/

.l-header-navi {
}
.l-header-navi button {
  display: none !important;
}

.l-header-navi-list {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
}

.l-header-navi-list li {
  margin-right: 3em;
  position: relative;
}
.l-header-navi-list > li > a {
  display: inline-block;
  font-size: 124%;
  font-weight: 600;
  padding: 0.6em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.l-header-navi-list > li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.4em;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
body.is-pc .l-header-navi-list > li > a:hover {
  color: var(--color-brand01);
}
body.is-pc .l-header-navi-list > li:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}



.l-header-navi-list ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  background-color: var(--color-sub01);
  padding: 2em 1em;
  margin-left: -3.5em;
  visibility: hidden;
  opacity: 0;
}
.l-header-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.l-header-navi-list ul li {
  padding: 0.2em 1em;
}
.l-header-navi-list ul a {
  display: inline-block;
  color: var(--color-main);
  font-size: 124%;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.2em 0 0.2em 1.2em;
  background: url(../../img/icon/arrow_bl.png) no-repeat left 0.7em / 0.6em auto;
}
.l-header-navi-list ul a::after {
  content: "";
  display: block;
  width: calc(100% - 1.2em);
  height: 1px;
  position: absolute;
  left: 1.2em;
  bottom: 0;
  background-color: var(--color-brand01);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right ;
}
body.is-pc .l-header-navi-list ul a:hover {
  color: var(--color-brand01);
}
body.is-pc .l-header-navi-list ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left ;
}

/*
home
*/

body.home:not(.is-fixed) .l-header-logo {
  opacity: 0;
  pointer-events: none;
}

body.home:not(.is-fixed) .l-header {
}
body.home:not(.is-fixed) .l-header-logo-img svg {
}

/*
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: 75px;
}
body.home .l-header-title,
body.is-fixed .l-header-title {
  font-size: 70%;
}

@media screen and (max-width:1560px) {

  .l-header-title small {
    font-size: 93%;
  }
  .l-header-title span {
    font-size: 139%;
  }

  /*
  cv
  */

  .l-header-cv-list a {
    height: 3em;
    padding: 0 0.8em;
    font-size: 108%;
  }

  /*
  lang
  */

  .l-header-lang .wpm-switcher-list li {
    font-size: 124%;
  }

  /*
  navi
  */

  .l-header-navi-list li {
    margin-right: 1.8em;
  }
  .l-header-navi-list > li > a {
    font-size: 108%;
  }

  .l-header-navi-list ul {
    min-width: 280px;
  }
  .l-header-navi-list ul a {
    font-size: 108%;
  }

}

@media screen and (max-width:1024px) {

  .l-header ,
  body.is-fixed .l-header,
  body.is-fixed.is-pc .l-header:hover{
    position: absolute;
    background:none !important;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  body:not(.home) .l-header {
    box-shadow: none;
  }

  body.home .l-header-logo {
    opacity: 0;
    pointer-events: none;
  }
  .l-header-logo {
    padding-left: 10px;
  }
  .l-header-title small {
    font-size: 85%;
  }
  .l-header-title span {
    font-size: 131%;
  }

  .l-header-block {
    display: none;
  }
  .l-header-inner ,
  body.is-fixed .l-header-inner {
    height: 60px;
  }

  body.home .l-header-title,
  body.is-fixed .l-header-title {
    font-size: 100%;
  }

}

@media screen and (max-width:834px) {

  .l-header ,
  body.is-fixed .l-header,
  body.is-fixed.is-pc .l-header:hover{
    position: absolute;
    background:none ;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  .l-header-inner ,
  body.is-fixed .l-header-inner {
    height: 60px;
    font-size: 100%;
  }

  .l-header-logo {
    padding-left: 10px;
  }

  .l-header-cv,
  .l-header-navi {
    display: none;
  }

  /*
  home
  */

  body.home .l-header {
    color: #fff;
  }
  body.home .l-header-logo-img svg {
    fill: #fff;
  }

}

@media screen and (max-width:520px) {

  .l-header-title small {
    font-size: clamp(77%,2.8vw, 100%);
  }
  .l-header-title span {
    font-size: clamp(77%,4.2vw, 154%);
  }

}


/***********
navi
************/

.l-navi {
}

.l-navi-list {
}

.l-navi-list li {
}

.l-navi-list a {
}

/***********
footer
************/

.l-footer {
  background: linear-gradient(-225deg, #3e86f1 10%, #002cb9 100%);
  padding-top: 6em;
  position: relative;
  color: var(--color-base);
  overflow: hidden;
}
.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/wave_bg02.png) no-repeat center center / cover ;
  pointer-events: none;
}


.l-footer-container {
  position: relative;
  z-index: 2;
  padding-bottom: 5em;
}
.l-footer-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto ;
  padding-bottom: 4em;
}
.l-footer-banner li {
  width: 48%;
  margin-bottom: 2em;
}
.l-footer-info {
  display: flex;
  justify-content: space-between;
}
.l-footer-info-inner {
  flex: 1;
}
.l-footer-info-address {
  font-style: normal;
  font-size: 124%;
  line-height: 1.7;
}
.l-footer-info-cv {
}

.l-footer-contect {
}
.l-footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 139%;
  font-weight: 600;
  height: 6em;
  padding: 1em 4em;
  border: 2px solid var(--color-base);
  color: var(--color-base);
  text-decoration: none;
}
.l-footer-contact-btn::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: "\f0e0";
  margin-right: 1.2em;
  margin-left: -1.0em;
  transform: scale(1.5) translateY(0.05em);
  vertical-align: middle;
}
body.is-pc .l-footer-contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}



.l-footer-link {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-link button {
  display: none;
}
.l-footer-link li {
  margin-right: 2.5em;
}
.l-footer-link a {
  display: inline-block;
  background: url(../../img/icon/arrow_wt.png) no-repeat left center / 0.7em auto;
  padding-left: 1em;
  color: inherit;
  text-decoration: none;
  font-size: 116%;
}
.l-footer-link a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/external_wt.svg) no-repeat center center / 100% auto;
  margin-left: 0.5em;
  opacity: 0.8;
}
body.is-pc .l-footer-link a:hover {
  text-decoration: underline;
}



.l-footer-copyright {
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 139%;
  display: block;
  padding: 3em 2vw 3em;
  text-align: center;
}

@media screen and (max-width:834px) {

  .l-footer {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .l-footer::after {
    background-size: 834px auto;
  }

  .l-footer-container {
  }
  .l-footer-banner {
    padding-bottom: 3em;
  }
  .l-footer-banner li {
    width: 48%;
    margin-bottom: 1em;
  }
  .l-footer-info {
    display: block;
  }
  .l-footer-info-inner {
    padding-bottom: 1.5em;
  }
  .l-footer-info-address {
    font-size: 100%;
    line-height: 1.7;
    text-align: center;
  }

  .l-footer-contect {
  }
  .l-footer-contact-btn {
    max-width: 20em;
    margin: 0 auto;
    font-size: 116%;
    height: 4.5em;
    padding: 1em 3em;
  }

  .l-footer-copyright {
    font-size: 85%;
    padding: 5em 2vw 0;
  }

}

@media screen and (max-width:834px) {

  .l-footer-banner {
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 3em;
  }
  .l-footer-banner li {
    width: auto;
    margin-bottom: 5px;
  }



  .l-footer-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1em;
  }
  .l-footer-link li {
    margin: 0 0.5em;;
  }
  .l-footer-link a {
    font-size: 93%;
  }
  body.is-pc .l-footer-link a:hover {
  }


}



/***********
jump
************/

.l-jumpTop{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 990;
  transform: translateY(100%);
  transition: 0.3s;
}
body.is-fixed .l-jumpTop {
  transform: translateY(0%);
}
.l-jumpTop a{
  display: block;
  width: 90px;
  height: 80px;
  z-index: 999;
  position: relative;
  color: var(--color-base);
  background: url(../../img/icon/arrow_up_wt.png) no-repeat center 20px / 26px auto;
  background-color: var(--color-brand03);
  clip-path: polygon(0% 33%, 33% 0%, 100% 0%,100% 100%, 0 100%);
  font-family: var(--font-family-gothic-en);
  text-align: center;
  text-decoration: none;
  padding-top: 50px;
}
.l-jumpTop a::after{
  content: "";
  display: block;
  border-left: 1px solid #0a365d;
  border-top: 1px solid #0a365d;
  transform:rotate(45deg);
  position: absolute;
  left: 19px;
  top: 22px;
  width: 10px;
  height: 10px;
  transition:all 0.4s ease;
}

@media screen and (max-width:834px) {

  .l-jumpTop{
    display: none !important;
  }

}

/***********
menu
************/

  .l-menu-trigger {
    display: none;
  }

@media screen and (max-width:1024px) {

  .l-menu{
    position: fixed;
    width: 80vw;
    max-width: 400px;
    min-width: 300px;
    height: 100vh;
    z-index: 9998;
    right: min(-80vw,400px);
    right: clamp(-400px,-80vw, -300px);
    top: 0;
    transition:all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    background-color: #000066;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .is-menu-open .l-menu{
    opacity: 1;
    right: 0;
  }

  .l-menu-close{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: -1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .is-menu-open .l-menu-close{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 9990;
  }

  .l-menu-trigger {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
    display: block;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 65px;
    height: 56px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
    background-color: var(--color-brand03);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%,25% 100%, 0 65%);
  }
  .l-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 30%;
    top: 18px;
    width: 50%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }
  .l-menu-btn span::before,
  .l-menu-btn span::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  .l-menu-btn span::before {
    top: -7px;
  }
  .l-menu-btn span::after {
    top: 7px;
  }

  .l-menu-btn p {
    letter-spacing: 0.1em;
    position: absolute;
    left: 5%;
    bottom: 5px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    font-family: var(--font-family-gothic-en);
  }
  .l-menu-btn p::after {
    content: "MENU";
  }
  body.is-menu-open .l-menu-btn p::after {
    content: "CLOSE";
  }

  .l-menu-btn.is-active {
    background-color: transparent;
  }
    .l-menu-btn.is-active span {
    background-color: transparent;
  }
  .l-menu-btn.is-active span::before {
    transform: translateY(7px) rotate(-25deg);
  }
  .l-menu-btn.is-active span::after {
    transform: translateY(-7px) rotate(25deg);
  }

}

/***********
menu
************/

.l-menu-block {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 0 200px;
  color: #fff;
}

/*
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 rgba(255, 255, 255, 0.1);
}

.l-menu-navi-list > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-menu-navi-list > li > a {
  min-width: 15em;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  padding: 1em 50px 1em 25px;
  letter-spacing: 0.04em;
  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: 8px;
  z-index: 99;
  text-align: right;
  background: none;
  border:none;
  cursor: pointer;
}
.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: #fff;
  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: 20px 20px 20px 35px;
  display: none;
  background-color: var(--color-brand03);
}
.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: 16px;
  font-weight: 500;
  padding: 0.6em 2em 0.6em 20px;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-menu-navi-list > li.menu-item-has-children > ul > li > a::before{
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: -35px;
  top: 1.3em;
}

/*
cv
*/


.l-menu-cv {
  padding-bottom: 1em;
  display: flex;
  padding: 20px 10px;
}
.l-menu-cv li {
  flex: 1;
  margin: 0.5px;
}
.l-menu-cv a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 1em 0;
  text-align: center;
  background-color: #fff;
  color: #000066;
  text-decoration: none;
  white-space: nowrap;
}
.l-menu-cv a i {
  margin-right: 0.5em;
  margin-left: -0.5em;
  transform: scale(1.4);
  color: var(--color-brand01);
}

/*
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 {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/external_wt.svg) no-repeat center center / 100% auto;
  margin-left: 0.5em;
  opacity: 0.6;
}

/***********
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;
  }
}

/***********
heading
************/

.l-heading {
  padding-bottom: 5em;
}
.l-heading-subTitle {
  font-weight: 300;
  font-size: 600%;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand03);
  line-height: 1.1;
}
.l-heading-title {
  font-size: 170%;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.3em;
}
.l-heading-title > span {
  display: inline-block;
  position: relative;
}
.l-heading-title > span::after {
  content: "";
  display: block;
  width: 6em;
  height: 1px;
  background-color: var(--color-brand03);
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5em);
  transform: scaleX(0);
  transform-origin: left;
}
.l-heading.is-show .l-heading-title > span::after {
  transform: scaleX(1);
  transition: 0.5s ease 0.3s;
}

.l-bgColor03 .l-heading .l-heading-subTitle{
  color: var(--color-base);
}
.l-bgColor03 .l-heading .l-heading-title > span::after {
  background-color: var(--color-base);
}

@media screen and (max-width:1280px) {

  .l-heading-subTitle {
    font-size: 470%;
  }
  .l-heading-title {
    font-size: 139%;
  }

}

@media screen and (max-width:834px) {

  .l-heading {
    padding-bottom: 2.5em;
  }
  .l-heading-subTitle {
    font-size: 300%;
  }
  .l-heading-title {
    font-size: 131%;
    margin-top: 0.8em;
  }
  .l-heading-title > span::after {
    width: 4em;
  }

}

/***********
title
************/

.l-title{

}
.l-subTitle{

}
.l-minTitle{

}

/***********
l-bgColor
************/


.l-pageSection.l-bgColor00 + .l-pageSection.l-bgColor00.l-block{
  padding-top: 2em;
}

.l-bgColor00{
}
.l-bgColor01{
  background: var(--color-sub01);
}
.l-bgColor02{
  background: var(--color-sub02);
}
.l-bgColor03{
  background: var(--color-brand01);
}
.l-bgColor04{
  background: url(../../img/bg01.jpg) no-repeat center bottom / 100% auto;
  position: relative;
}
.l-bgColor04::after{
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 119, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.l-bgColor03 {
  color: #fff;
}

@media screen and (max-width:834px) {

  .l-bgColor04{
    background-size: 834px auto;
  }
}


/***********
seminarList
************/

.l-seminarList {
  color: var(--color-main);
}
.l-seminarList li {
  border-radius: 10px;
  background-color: var(--color-base);
  padding: 2.5em 5%;
  display: flex;
}
.l-seminarList li:not(:last-child) {
  margin-bottom: 3em;
}
.l-seminarList-visual {
  width: 33%;
}
.l-seminarList-img {
}
.l-seminarList-inner {
  flex: 1;
  padding-left: 4%;
  padding-bottom: 3em;
  margin: 1.5em 0;
  position: relative;
}
.l-seminarList-date {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-sub02);
  color: var(--color-brand01);
  font-family: var(--font-family-gothic-en);
  font-size: 124%;
  font-weight: 500;
  padding: 0.2em 1em;
  border-radius: 10em;
  letter-spacing: 0.02em;
}
.l-seminarList-title {
  font-size: 154%;
  font-weight: 500;
  line-height: 1.7;
}
.l-seminarList-title a {
  color: var(--color-brand01);
  text-decoration: none;
}
.l-seminarList-summary {
  font-size: 124%;
  margin-top: 0.8em;
}

@media screen and (max-width:834px) {

  .l-seminarList {
  }
  .l-seminarList li {
    border-radius: 5px;
    padding: min(3vw,2em);
    display: flex;
  }
  .l-seminarList li:not(:last-child) {
    margin-bottom: 1em;
  }
  .l-seminarList-visual {
    width: 30%;
  }
  .l-seminarList-img {
  }
  .l-seminarList-inner {
    padding-left: 4%;
    padding-bottom: 0;
    margin:  0;
  }
  .l-seminarList-date {
    position: static;
    font-size: 85%;
    padding: 0.2em 1em;
    margin-bottom: 0.5em;
  }
  .l-seminarList-title {
    font-size: 116%;
    line-height: 1.5;
  }
  .l-seminarList-title a {
  }
  .l-seminarList-summary {
    font-size: 108%;
    margin-top: 0.4em;
  }

}

@media screen and (max-width:520px) {

  .l-seminarList {
  }
  .l-seminarList li {
    border-radius: 5px;
    display: block;
  }
  .l-seminarList li:not(:last-child) {
    margin-bottom: 1em;
  }
  .l-seminarList-visual {
    width: auto;
  }
  .l-seminarList-img img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
  }
  .l-seminarList-inner {
    padding:  0;
    padding-bottom: 1em;
  }
  .l-seminarList-date {
    font-size: 85%;
    transform: translate(-5px,-50%);
    margin-bottom: -1em;
    position: relative;
    z-index: 2;
  }
  .l-seminarList-title {
    font-size: 124%;
  }
  .l-seminarList-title a {
  }
  .l-seminarList-summary {
    font-size: 100%;
    margin-top: 0.4em;
  }

}

/***********
baseList
************/

.l-baseList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-baseList li {
  width: 47%;
  border-bottom: 1px solid var(--color-brand03);
}
.l-baseList li:nth-child(1),
.l-baseList li:nth-child(2) {
  border-top: 1px solid var(--color-brand03);
}
.l-baseList li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.5em;
  line-height: 1.3;
  padding: 0 3em 0 0.2em;
  font-size: clamp(200%,1.45vw, 300%);
  font-weight: 700;
  color: var(--color-brand01);
  text-decoration: none;
  position: relative;
}
.l-baseList li a::after {
  content: "";
  width: 2em;
  height: 2em;
  background: url(../../img/icon/arrow_bl.png) no-repeat center center / 0.5em auto;
  background-color: #fff;
  border: 1px solid var(--color-brand03);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  transition: 0.2s;
}
body.is-pc .l-baseList li a:hover {
  padding-left: 0.5em;
  padding-right: 2.7em;
}
body.is-pc .l-baseList li a:hover::after {
  background-image: url(../../img/icon/arrow_wt.png);
  background-color: var(--color-brand03);
}

@media screen and (max-width:834px) {

  .l-baseList li a {
    font-size: 131%;
  }
}

@media screen and (max-width:520px) {

  .l-baseList {
    display: block;
    border-top: 1px solid var(--color-brand03);
  }
  .l-baseList li {
    width: auto;
  }
  .l-baseList li:nth-child(1),
  .l-baseList li:nth-child(2) {
    border-top: none;
  }
  .l-baseList li a {
    display: block;
    min-height: initial;
    line-height: 1.3;
    padding: 1em 3em 1em 0.5em;
  }
  .l-baseList li a::after {
    background-size: 0.7em auto;
    transform: translateY(-50%) scale(0.7);
  }

}

/***********
stalker
************/

.l-stalker {
  opacity: 0;
}
body.is-pc.is-loaded .l-stalkerTarget:hover,
body.is-pc.is-loaded .l-stalkerTarget:hover a:hover {
  cursor: none;
}
body.is-pc.is-loaded.is-stalkerActive .l-stalker {
  pointer-events: none;
  position: fixed;
  top: -6px;
  left: -5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-brand03);
  clip-path: polygon(20% 0%, 90% 70%, 40% 100%, 20% 0%);
  opacity: 0.8;
  transition:
    width 0.1s ease,
    height 0.1s ease,
    top 0.1s ease,
    left 0.1s ease,
    transform 0.05s ease,
    opacity 0.3s ease 0.1s;
  transition-timing-function: ease-out;
  z-index: 9999;
}
body.is-pc.is-loaded.is-stalkerActive .l-stalker.is-active {
  width: 100px;
  height: 100px;
  clip-path: none;
  border-radius: 50%;
  top: -40px;
  left: -60px;
  background-image: url(../../img/stalker.png) ;
  background-size: 80% 80%;
  background-position: center center;
  mix-blend-mode: difference; /* 反転 */
}
body.is-pc.is-loaded.is-stalkerActive .l-stalker.is-active::after {
  content: "more";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-base);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width:834px) {

  .l-stalker {
    display: none !important;
  }

}

/***********
pageList
************/

.l-pageList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -3em;
}
.l-pageList li {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 3em;
}
.l-pageList a {
  display: block;
  position: relative;
  color: var(--color-base);
  text-decoration: none;
}
.l-pageList-img {
  position: relative;
}
.l-pageList-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-brand01);
  opacity: 0.3;
  pointer-events: none;
  transition: 0.6s;
}
.l-pageList-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.l-pageList-title {
  font-size: 231%;
  font-weight: 600;
  line-height: 1.35;
}
body.is-pc .l-pageList a:hover .l-pageList-img::after {
  opacity: 0.1;
}

.l-pageList li:nth-child(5n+1) {
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%,85% 100%, 0 100%, 15% 50%);
}
.l-pageList li:nth-child(5n+2) {
  clip-path: polygon(0% 0%, 80% 0%, 100% 25%,100% 100%, 20% 100%, 0% 75%);
}
.l-pageList li:nth-child(5n+3) {
  clip-path: polygon(0% 0%, 50% 20%, 100% 0%,100% 100%,0% 100%);
}
.l-pageList li:nth-child(5n+4) {
  clip-path: polygon(0% 0%, 25% 0%,25% 10%,75% 10%,75% 0%,75% 0%,100% 0%,100% 100%,75% 100%,75% 90%,25% 90%,25% 100%,0% 100% );
}
.l-pageList li:nth-child(5n  ) {
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%,0% 100%);
}

@media screen and (max-width:834px) {

  .l-pageList li {
    margin-bottom: 2em;
  }
  .l-pageList-img img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
  }
  .l-pageList-title {
    font-size: 124%;
  }

}

@media screen and (max-width:520px) {

  .l-pageList {
    display: block;
    padding: 0 3vw;
    margin: 0 auto;
  }
  .l-pageList li {
    width: auto;
    margin: 0 auto 0.5em;
    transition-delay: 0s !important;
  }
  .l-pageList-img {
  }
  .l-pageList-img img {
    width: 100%;
    height: 36vw;
    object-fit: cover;
  }
  .l-pageList-img::after {
  }
  .l-pageList-title {
    font-size: 139%;
  }

}

/***********
newsList
************/

.l-newsList {
  border-top: 1px solid var(--color-brand03);
}
.l-newsList li {
  border-bottom: 1px solid var(--color-brand03);
}
.l-newsList li:not(:last-child) {
}
.l-newsList a {
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 2.5em 4em 2.5em 0.2em;
  background: url(../../img/icon/arrow_bl.png) no-repeat right 0.5em center / 0.9em auto;
}
.l-newsList-time {
  display: inline-block;
  width: 6em;
  white-space: nowrap;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  font-size: 139%;
  padding-top: 0.3em;
  color: var(--color-brand03);
}
.l-newsList-cat {
  display: inline-block;
  min-width: 10em;
  padding: 0.5em 0.5em;
  border: 1px solid var(--color-brand03);
  color: var(--color-brand03);
  font-size: 116%;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.l-newsList-title {
  flex: 1;
  padding-left: 2em;
  padding-top: 0.2em;
  font-size: 139%;
}
body.is-pc .l-newsList-title:hover {
}

@media screen and (max-width:834px) {

  .l-newsList {
  }
  .l-newsList li {
  }
  .l-newsList li:not(:last-child) {
  }
  .l-newsList a {
    display: block;
    padding: 1.5em 2em 1.5em 0.2em;
    background-position: right center;
  }
  .l-newsList-time {
    width: auto;
    font-size: 116%;
    padding-top: 0.3em;
    margin-right: 0.5em;
  }
  .l-newsList-cat {
    min-width: 6em;
    padding: 0.1em 0.5em;
    font-size: 93%;
  }
  .l-newsList-title {
    padding-left: 0;
    padding-top: 0.8em;
    font-size: 116%;
  }
  body.is-pc .l-newsList-title:hover {
  }

}

/***********
xxxxx
************/


/***********
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 {
  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);
  }

}
