@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en:  'Montserrat','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #0F1419;

  --color-brand01: #034edd;
  --color-primary01: #009955;
  --color-secondary01: #e09810;
  --color-accent01: #f00;
  --color-highlight01: #fff200;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #eee;
  --color-sub04: #f4f5f8;
  --color-sub05: #c9e1ff;

  --header-height: 5.5em;

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

  --rounded-main: 0.6em;
  --rounded-small: 0.4em;
  --rounded-large: 0.8em;

  --lineheight-main: 2;
}

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

  :root {

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

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

  }

}

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

  :root {
    --header-height: 60px;
    --lineheight-main: 1.8;
  }

}

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

html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-dark01);
}
html {
  font-size: clamp(15px, calc(9px + 0.5vw), 16px);
}

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

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

}

body {
  background-color: var(--color-sub04);
}

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

}

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

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

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

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

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



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

.l-wrapper{
  overflow: hidden;
}

.l-contents{
}

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

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

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

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

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

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

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

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


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

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

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


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


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

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

}

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

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

}


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

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

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

}

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

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


/***********
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{
  transform:scale(1.04) ;
}

.l-zoomHover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-brand01);
  opacity: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: 0.3s;
  z-index: 2;
}
body.is-pc a:hover .l-zoomHover::after {
  opacity: 0.3;
}


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

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

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

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

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

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

.l-textMain{
  line-height: var(--lineheight-main);
  letter-spacing: 0.04em;
}
.l-textLead{
  line-height: var(--lineheight-main);
  text-align: center;
  letter-spacing: 0.04em;
}

.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: 1.8em;
}
.l-list-number li {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 0.5em;
}
.l-list-number li::marker {
  margin-right: 1em;
}

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

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

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

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

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

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

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

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

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

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

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


}

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

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

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

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

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

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

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

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

}

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

.l-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 17em;
  min-height: 3.4em;
  padding: 0.8em 3em ;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  text-decoration: none !important;
  border-radius: 3em;
  border: 1px solid var(--color-brand01);
  color: var(--color-brand01);
  transition: all 0.2s ease;
  position: relative;
}
.l-btn::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 1.5em;
  top: 50%;
  translate: 0 -50%;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-brand01);
  border-radius: 50%;
  transition:  0.3s;
}
.l-btn::after {
  content: "\003E";
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  z-index: 3;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  right: 1.7em;
  top: 50%;
  translate: 50% -50%;
  background-color: var(--color-brand01);
  color: var(--color-base);
  transition:  0.3s;
  opacity: 0;
}
body.is-pc .l-btn:hover::before {
  scale: 3;
  opacity: 0;
}
body.is-pc .l-btn:hover::after {
  opacity: 1;
  scale: 1;
}


.l-btn.-white {
  border-color: var(--color-base);
  background-color: var(--color-base);
}
.l-btn.-white02 {
  border-color: var(--color-base);
  background-color: var(--color-base);
  color: var(--color-dark01);
}

.l-btn.-ghost {
  border-color: var(--color-base);
  color: var(--color-base);
}
.l-btn.-ghost::before {
  background-color: var(--color-base);
}
.l-btn.-ghost::after {
  background-color: var(--color-base);
  color: var(--color-dark01);
}


.l-btn.-more {
  padding: 0 3.5em 0 0;
  margin-right: -0.5em;
  min-width: initial;
  min-height: initial;
  border: none !important
}

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


  .l-btn {
    min-width: 17em;
    min-height: 3.6em;
    padding: 0.8em 3.5em ;
    font-size: 0.9rem;
  }
  .l-btn::before {
    display: none;
  }
  .l-btn::after ,
  body.is-pc .l-btn:hover::after {
    opacity: 1;
    scale: 1.2;
  }

}


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

.l-header {
  --header-side: 3em;
  --header-padding: 0.4em;
  font-size: 0.95rem;
  padding: var(--header-padding);
  position: fixed;
  z-index: 999;
  border-radius: var(--header-height);
  left: var(--header-side);
  top: 15px;
  width: calc(100% - calc(var(--header-side) * 2));
  height: var(--header-height);
  background-color: #fffe;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header-logo {
}
.l-header-logo img {
  height: calc(var(--header-height) - calc(var(--header-padding) * 2));
}


/*
navi
*/

.l-header-navi {
  display: flex;
  font-family: var(--font-family-gothic-en);
  font-weight: 450;
  padding-right: 1em;
  letter-spacing: 0.08em;
  align-items: center;
}
.l-header-navi button {
  display: none !important;
}

.l-header-navi-list {
  display: flex;
  height: 100%;
  padding-right: 1em;
}

.l-header-navi-list > li {
  height: 100%;
  position: relative;
  margin-left: 2.2em;
}

.l-header-navi-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.6em 0;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.l-header-navi-list > li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-brand01);
  transform-origin: right;
  transition: scale 0.3s ease;
  scale: 0 1;
}

body.is-pc .l-header-navi-list > li:hover > a {
  translate: 0 -1px;
  color: var(--color-brand01);
}
body.is-pc .l-header-navi-list > li:hover::after {
  scale: 1 1;
  transform-origin: left;
}


/*
member
*/
.l-header-navi-member {
  padding-left: 1.5em;
  white-space: nowrap;
}
.l-header-navi-member a {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 95%;
  letter-spacing: 0.04em;
  background-color: var(--color-brand01);
  border: 1px solid var(--color-brand01);
  color: var(--color-base);
  padding: 0.4em 1em 0.2em;
  line-height: 1.3;
  border-radius: 2em;
  text-decoration: none;
}
body.is-pc .l-header-navi-member a:hover {
  background-color: var(--color-base);
  color: var(--color-brand01);
  font-weight: 600;
}

/*
lang
*/

.l-header-lang {
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.04em;
  padding-left: 1.5em;
  white-space: nowrap;
}
.l-header-lang .wpm-switcher-list {
  display: flex;
  align-items: center;
}
.l-header-lang .wpm-switcher-list li {
  position: relative;
  padding-right: 0.6em;
  margin-right: 0.6em;
  font-weight: 600;
}
.l-header-lang .wpm-switcher-list li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 1em;
  background-color: var(--color-dark01);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%) skewX(-20deg);
}
.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;
  padding: 0.2em 0.4em 0.3em;
}
.l-header-lang .wpm-switcher-list li a {
  opacity: 0.3;
}
.l-header-lang .wpm-switcher-list li > span {
}
body.is-pc .l-header-lang .wpm-switcher-list li a:hover {
  opacity: 1;
}


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

  .l-header {
    --header-side: 1em;
    font-size: 0.9rem;
    top: 10px;
  }

  /*
  navi
  */

  .l-header-navi {
    padding-right: 1em;
    letter-spacing: 0.04em;
  }
  .l-header-navi-list {
    padding-right: 0.5em;
  }

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

  /*
  member
  */

  .l-header-navi-member {
    padding-left: 1em;
  }
  .l-header-navi-member a {
    font-size: 95%;
  }

  /*
  lang
  */

  .l-header-lang {
    padding-left: 1em;
  }

}

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

  .l-header {
    --header-side: 3vw;
    --header-padding: 2px;
    border-radius: calc(var(--header-height) / 2);
    font-size: 1;
    height: auto;
    padding: var(--header-padding);
    top: 8px;
    transition: background 0.2s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  body.is-menu-open .l-header {
    background-color: var(--color-base);
  }


  .l-header-inner {
    display: block;
  }


  /*
  navi
  */

  .l-header-navi {
    /* display: block; */
    display: none;
    font-family: var(--font-family-gothic-en);
    font-weight: 450;
    padding-right: 0;
    padding-bottom: 40px;
    letter-spacing: 0.08em;
    max-height: calc(100svh - 120px);
    overflow: auto;
  }
  .l-header-navi-list {
    display: block;
    height: auto;
    padding: 20px 25px 0;
  }

  .l-header-navi-list > li {
    height: 100%;
    position: relative;
    margin-left: 0;
    border-bottom: 1px solid var(--color-sub02);
  }

  .l-header-navi-list > li > a {
    display: block;
    text-align: left;
    padding: 1em 3em 1em 0.2em;
    font-size: 17px;
    line-height: 1.5;
  }
  .l-header-navi-list > li::after {
    display: none;
  }
  .l-header-navi-list > li::before {
    content: "\003E";
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 1.8em;
    height: 1.8em;
    color: var(--color-brand01);
    border: 1px solid var(--color-brand01);
    border-radius: 50%;
    position: absolute;
    right: 0.2em;
    top: 50%;
    translate: 0 -50%;
  }


  /*
  member
  */
  .l-header-navi-member {
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
  }
  .l-header-navi-member a {
    font-size: 17px;
    padding: 1em 2em 0.8em;
  }

  /*
  lang
  */

  .l-header-lang {
    padding-left: 0;
    padding-top: 30px;
    font-size: 16px;
  }
  .l-header-lang .wpm-switcher-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header-lang .wpm-switcher-list li {
    padding-right: 0;
    margin-right: 0;
  }
  .l-header-lang .wpm-switcher-list li a ,
  .l-header-lang .wpm-switcher-list li > span{
    padding: 0.2em 1em 0.3em;
  }

}

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

.l-footer {
  background-color: var(--color-dark01);
  padding-bottom: 3em;
  color: var(--color-base);
}
.l-footer-upper {
  padding-block: min(10vw,7em) ;
}
.l-footer-link {
  display: flex;
  justify-content: space-between;
  gap: 1em 3%;
}
.l-footer-link li {
  flex: 1;
}
.l-footer-btn.l-btn {
  width: 100%;
  min-height: 3.8em;
  font-weight: 400;
  min-width: initial;
}

/*
container
*/

.l-footer-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 2em;
}
.l-footer-sitemap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

/*
navi
*/
.l-footer-navi {
  font-size: 0.9rem;
}
.l-footer-navi-list {
  display: flex;
  gap: 0 2em;
  padding-right: 2em;
}
.l-footer-navi-list a {
  display: inline-block;
  color: inherit;
  position: relative;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-footer-navi-list a:hover {
  text-decoration-color: inherit;
}
.l-footer-navi-list > li{
  min-width: 6em;
  white-space: nowrap;
}
.l-footer-navi-list > li:not(:last-child){
}
.l-footer-navi-list > li > a{
  padding: 0.2em 0 0.2em 1em;
}
.l-footer-navi-list > li > a::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  left: 0;
  top: 0.8em;
  background: var(--color-base);
  border-radius: 50%;
}

.l-footer-navi-list ul {
  padding: 0.5em 0 0.8em 0.5em;

}
.l-footer-navi-list ul > li{
}
.l-footer-navi-list ul > li a{
  padding: 0.1em 0 0.1em 1em;
  font-size: 90%;
}
.l-footer-navi-list ul > li a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0.8em;
  background: #fffa;
  border-radius: 50%;
}


/*
member
*/

.l-footer-box {
}

.l-footer-member {
  white-space: nowrap;
}
.l-footer-member a {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background-color: var(--color-brand01);
  border: 1px solid var(--color-brand01);
  color: var(--color-base);
  padding: 0.4em 1em 0.2em;
  line-height: 1.3;
  border-radius: 2em;
  text-decoration: none;
}
body.is-pc .l-footer-member a:hover {
  background-color: var(--color-base);
  color: var(--color-brand01);
  font-weight: 600;
}

.l-footer-logout a {
  display: inline-block;
  font-size: 0.8rem;
  padding-top: 0.5em;
  font-family: var(--font-family-gothic-en);
  color: var(--color-base)
}

/*
lang
*/

.l-footer-lang {
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-top: 2em;
}
.l-footer-lang .wpm-switcher-list {
  display: flex;
  align-items: center;
}
.l-footer-lang .wpm-switcher-list li {
  position: relative;
  padding-right: 0.6em;
  margin-right: 0.6em;
  font-weight: 600;
}
.l-footer-lang .wpm-switcher-list li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 1em;
  background-color: var(--color-base);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%) skewX(-20deg);
}
.l-footer-lang .wpm-switcher-list li.-active {
}


.l-footer-lang .wpm-switcher-list li a ,
.l-footer-lang .wpm-switcher-list li > span{
  color: inherit;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.2em 0.4em 0.3em;
}
.l-footer-lang .wpm-switcher-list li a {
  opacity: 0.3;
}
.l-footer-lang .wpm-switcher-list li > span {
}
body.is-pc .l-footer-lang .wpm-switcher-list li a:hover {
  opacity: 1;
}



.l-footer-info {
  width: clamp(200px,25%, 240px);
  border-right: 1px solid #fffc;
  padding-right: 1.5em;
}
.l-footer-info-name {
}
.l-footer-info-name svg {
  width: 100%;
  max-width: 100%;
}
.l-footer-copyright {
  display: block;
  text-align: center;
  padding-top: 5em;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.06em;
}

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

  .l-footer-container {
    gap: 0 1em;
  }

  /*
  navi
  */
  .l-footer-navi {
    font-size: 0.8rem;
  }

  /*
  member
  */

  .l-footer-box {
  }

  .l-footer-member {
    white-space: nowrap;
  }
  .l-footer-member a {
    font-size: 0.8rem;
  }

}


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

  .l-footer {
    padding-bottom: 2em;
  }
  .l-footer-upper {
    padding: min(14vw,5em) var(--padding-side) ;
    border-bottom: 1px solid #fffa;
  }
  .l-footer-link {
    display: block;
    text-align: center;
  }
  .l-footer-link li + li {
    margin-top: 15px;
  }
  .l-footer-btn.l-btn {
    width: 100%;
    max-width: 17rem;
    min-height: 3.8em;
    font-size: 1rem;
    white-space: nowrap;
  }

  /*
  container
  */

  .l-footer-container {
    display: block;
    text-align: center;
    padding-top: 3em;
  }
  .l-footer-sitemap {
    max-width: 17rem;
    display: block;
    margin: 0 auto;
    text-align: left;
  }

  /*
  navi
  */
  .l-footer-navi {
    font-size: 1.05rem;
  }
  .l-footer-navi-list {
    display: block;
    padding-right: 0;
  }
  .l-footer-navi-list ul {
    display: none;
  }

  /*
  member
  */

  .l-footer-box {
  }

  .l-footer-member {
    white-space: nowrap;
    padding-top: 2em;
  }
  .l-footer-member a {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 1em 1em 0.9em;
  }

  /*
  lang
  */

  .l-footer-lang {
    padding-top: 2em;
  }
  .l-footer-lang .wpm-switcher-list {
    justify-content: center;
  }
  .l-footer-lang .wpm-switcher-list li {
  }

  .l-footer-lang .wpm-switcher-list li a ,
  .l-footer-lang .wpm-switcher-list li > span{
    font-size: 1.1rem;
  }


  .l-footer-info {
    width: 100%;
    max-width: 17rem;
    border-right: none;
    padding-right: 0;
    padding-top: 3em;
    margin: 0 auto;
  }
  .l-footer-copyright {
    font-size: 0.65rem;
  }
}


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

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

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

  .l-menu{
    position: fixed;
    width: 300px;
    height: 100vh;
    z-index: 9998;
    right: -30px;
    top: 0;
    opacity: 0;
    transition:all 0.3s ease;
    background-color: #000;
    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: #fff3;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: -1;
  }
  .is-menu-open .l-menu-close{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 998;
  }

  .l-menu-trigger {
    display: block;
    position: fixed;
    right: 3vw;
    top: 8px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: calc(var(--header-height) + 10px);
    height: var(--header-height);
    padding: 10px 20px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
    -webkit-tap-highlight-color:transparent;
  }
  .l-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 50%;
    width: 40%;
    height: 2px;
    background-color: #888;
    border-radius: 3px;
    transition: 0.3s;
    transition: margin 0.3s ease 0.3s , transform 0.3s ease 0s , opacity 0.3s ease 0.3s;
  }
  .l-menu-btn span:nth-child(2) {
    margin-top: -8px;
  }
  .l-menu-btn span:nth-child(3) {
    margin-top: 8px;
  }

  .l-menu-btn.is-active {
  }
  .l-menu-btn.is-active span:nth-child(1) {
    opacity: 0;
    transition: opacity 0s ease 0.3s;
  }
  .l-menu-btn.is-active span:nth-child(2) {
    margin-top: 0;
    transition: margin 0.3s ease , transform 0.3s ease 0.3s;
    transform: rotate(-40deg);
  }
  .l-menu-btn.is-active span:nth-child(3) {
    margin-top: 0;
    transition: margin 0.3s ease , transform 0.3s ease 0.3s;
    transform: rotate(40deg);
  }

}

/***********
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(https://anc.qst.go.jp/moonshot-7/wp/wp-content/themes/ms7hproject/img/icon/play.png) no-repeat center center / 80px 80px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: 0.3s;
}
body.is-pc .l-movie a:hover::after {
  opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

.l-bgColor00{
  background-color: var(--color-base);
}
.l-bgColor01{
  background-color: var(--color-sub01);
}
.l-bgColor02{
  background-color: var(--color-sub02);
}
.l-bgColor03{
  background-color: var(--color-sub03);
}
.l-bgColor04{
  background-color: var(--color-sub04);
}
.l-bgColor05{
  background-color: var(--color-sub05);
}
.l-bgColor06{
  background-color: var(--color-brand01);
}
.l-bgColor07{
  background: linear-gradient(to right, #188FF8 0%, #5EEFAC 55%, #B6F444 100%);

}


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

.l-catIcon {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 0.8em 0.15em;
  line-height: 1;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}
.l-pickIcon {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 0.8em 0.15em;
  line-height: 1;
  background-color: var(--color-base);
  color: var(--color-brand01);
  box-shadow: 0 0 0 1px var(--color-brand01) inset;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  border-radius: 2em;
}

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

.l-heading{
  padding-bottom: 3rem;
  text-align: center;
}
.l-heading-title{
  font-size: clamp(1.25rem,3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-brand01);
}
.l-heading-title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background-color: var(--color-brand01);
  margin: 1.2em auto 0;
}
.l-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1.1rem;
  padding-top: 0.8em;
}


.l-heading-lead{
  padding-top: 2em;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}


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

  .l-heading{
    padding-bottom: 2rem;
  }
  .l-heading-title{
    font-size: clamp(1.25rem,5.5vw, 1.5rem);
    letter-spacing: 0.05em;
  }
  .l-heading-title::after {
    width: 2.5em;
  }
  .l-heading-lead{
    padding-top: 2em;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
  }

}

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

.l-headline{

}
.l-headline-title{

}
.l-headline-subTitle{

}

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

.l-title {
  font-size: clamp(1.2rem,5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
  position: relative;
}
.l-title::before {
  content: "";
  display: block;
  width: 5em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  right: calc(100% + 0.8em);
  top: 0.8em;
}

.l-subTitle {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  min-height: 5em;
  position: relative;
  padding: 1em 0 1.5em 1em;
}
.l-subTitle::after {
  content: "";
  display: block;
  width: 3.5em;
  height: 3.5em;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--color-brand01);
  opacity: 0.1;
  pointer-events: none;
}


.l-xminTitle {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 1em;
}

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

  .l-subTitle {
    line-height: 1.6;
    min-height: 4em;
  }

  .l-title {
    display: inline-block;
    margin-bottom: 0.8em;
  }
  .l-title::before {
    position: absolute;
    right: auto;
    left: calc(100% + 0.8em);
  }

}

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


}

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

.l-figure {
}
.l-figure figcaption {
  text-align: right;
  font-size: 0.8rem;
  padding-top: 0.8em;
}
.l-figure figcaption a {
  text-decoration: none;
  color: inherit;
}

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

  .l-figure figcaption {
    font-size: 0.6rem;
  }

}

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

.l-rounded-large {
  border-radius: var(--rounded-large);
}


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



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

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

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

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

}

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


[data-fade] {
  opacity: 0;
  transition: opacity 0.8s ease, translate 0.8s ease;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

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

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




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

.slick-slider.-infinite div {
  /* infiniteの場合 safari逆再生防止 */
  transition: none;
 }
.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;
  }

}
