@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Zen Maru Gothic',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-default:     sans-serif;

  --color-base: #fff;
  --color-main: #000;
  --color-dark01: #33363f;
  --color-dark02: #888;
  --color-brand01: #3c67a7;
  --color-brand02: #2c8bba;
  --color-brand02-sub: #2c8bba;
  --color-brand03: #a2d6f3;
  --color-brand03-sub: #d3eaf7;
  --color-brand04: #55b0e2;
  --color-brand05: #bee5f9;


  --color-primary01: #ffc0aa;
  --color-primary01-sub: #ffded2;
  --color-primary02: #ff9b8b;
  --color-accent01: #e94f37;
  --color-accent01-sub: #fa9282;
  --color-accent02: #ee6853;
  --color-highlight01: #fed03c;
  --color-highlight01-sub: #fff9c3;
  --color-highlight02: #ffdb67;

  --color-sub01: #e8e8e8;
  --color-sub02: #ccc;
  --color-sub03: #f7f6f2;
  --color-sub04: #dfd9c0;
  --color-sub05: #d9dfe7;



  --header-height: 100px;
  --footer-offset-top: 190px;

  --rounded-main: 30px;
  --rounded-sub: 20px;
  --rounded-min: 10px;

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

}

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

  :root {
    --header-height: 80px;
    --footer-offset-top: 100px;
  }
}

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

  :root {
    --header-height: 60px;
    --footer-offset-top: 80px;

    --rounded-main: 15px;
    --rounded-sub: 12px;
    --rounded-min: 8px;
  }
}


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

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

html,
body {
  height: 100%;
  min-height: 100%;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-dark01);
}

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;
    font-family: var(--font-family-default);
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(14px, calc(11px + 1.2vw), 16px);
  }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

}

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

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

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

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

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



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

.l-wrapper{
}
.l-wrapper:not(.-normal){
  overflow: hidden;
}

.l-contents{
  padding-bottom: calc(var(--footer-offset-top) * 2.5);
}

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

.l-column {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.l-column-first {
  flex: 1;
  padding-right: 5%;
}
.l-column-second {
  width: 24.2%;
  min-width: 220px;
  position: sticky;
  top: 90px;
  align-self: flex-start;

}

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

  .l-column {
    display: block;
  }
  .l-column-first {
    padding-right: 0;
    padding-bottom: 5em;
  }
  .l-column-second {
    width: auto;
    position: static;
    bottom: 2em;
  }

}


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

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

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

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

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

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


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

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

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


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

@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:834px) {

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

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

}

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

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

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


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

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

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

.l-textMain{
  line-height: 1.8;
  font-weight: 500;
}
.l-textLead{
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}

.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;
    font-weight: 400;
  }
}

@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-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: 18em;
  min-height: 3.6em;
  padding: 1em 3em ;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  color: var(--color-dark01);
  border-radius: 3em;
  background-color: var(--color-brand05);
  box-shadow: 0 3px 0 var(--color-brand02);
  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 -40%;
  font-size: 77%;
}
body.is-pc .l-btn:hover {
  translate: 0 2px;
  box-shadow: 0 1px 0 var(--color-brand02);
}


.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) {

  .l-btn {
    min-width: 16em;
    font-size: 1.1rem;
  }
}


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

.l-logo {
  width: 10em;
  padding-top: 1.5em;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  transition: 0.2s;
}
.l-logo a {
  display: block;
  width: 4em;
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}
.l-logo-container {
}
.l-logo-symbol {
  transition: 0.2s;
}
.l-logo-block {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  padding-top: 1em;
  line-height: 1.4;
}
.l-logo-text {
  font-weight: 700;
}
.l-logo-title {
  font-weight: 700;
  font-size: 1.6rem;
}

/*
fixed
*/

body.is-fixed .l-logo {
  padding-top: 5px;
  width: 80px;
}
body.is-fixed .l-logo a {
  width: 60px;
  height: 60px;
}
body.is-fixed .l-logo-block {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

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

  .l-logo {
    width: 8em;
    padding-top: 1.5em;
  }
  .l-logo a {
    width: 3.5em;
  }
  .l-logo-title {
    font-size: 1.4rem;
  }

}

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

  .l-logo,
  body.is-fixed .l-logo {
    width: auto;
    height: var(--header-height);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 0;
    font-family: var(--font-family-gothic);
    font-size: clamp(10px,3.3vw, 16px);
  }
  body.is-menu-open .l-logo {
    position: fixed;
  }
  .l-logo a,
  body.is-fixed .l-logo a {
    width: auto;
    height: auto;
  }
  .l-logo-container {
    display: flex;
    align-items: center;
  }
  .l-logo-symbol {
    width: 3.5em;
    transition: 0.2s;
  }
  .l-logo-block ,
  body.is-fixed .l-logo-block{
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    padding-top: 0;
    padding-left: 0.8em;
    line-height: 1.4;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: block;
  }
  .l-logo-text {
    font-weight: 700;
  }
  .l-logo-title {
    font-weight: 700;
    font-size: 120%;
  }

}


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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  font-family: var(--font-family-gothic);
  z-index: 990;
  padding-right: 1.5em;
  transition: 0.2s;
  letter-spacing: 0;
}

.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;
  align-items: center;
}
.l-header-cv-item {
  padding-left: 0.5em;
}
.l-header-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 11em;
  height: 3.2em;
  text-decoration: none;
  border-radius: 10em;
  border: 1px solid var(--color-main);
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.l-header-cv-item.-dl .l-header-cv-btn {
  background-color: var(--color-accent01);
}
body.is-pc .l-header-cv-item.-dl .l-header-cv-btn:hover {
  background-color: var(--color-accent02);
}
.l-header-cv-item.-access .l-header-cv-btn {
  background-color: var(--color-highlight01);
  color: var(--color-main);
}
body.is-pc .l-header-cv-item.-access .l-header-cv-btn:hover {
  background-color: var(--color-highlight02);
}

/*
navi
*/

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

.l-header-navi-list {
  display: flex;
}
.l-header-navi-list button {
  display: none !important;
}

.l-header-navi-list > li {
  position: relative;
  padding: 0 0.1em;
}

.l-header-navi-list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  height: 3.2em;
  padding: 0 1.2em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10em;
  background-color: transparent;
  color: var(--color-dark01);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 999;
  transition: 0.3s ease;
}
.l-header-navi-list > li:has(ul) > a {
  border-radius: var(--rounded-sub) var(--rounded-sub) 0 0;
  border-bottom-color: transparent !important;
  transition: background-color 0s ease;
}
body.is-pc .l-header-navi-list > li:hover > a {
  background-color: var(--color-brand03-sub);
  border-color: var(--color-dark02);
}


.l-header-navi-list ul {
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 0 ;
  margin-top: -1px;
  min-width: 16em;
  color: var(--color-base);
  background: var(--color-brand03-sub);
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.1);
  border-radius: var(--rounded-sub);
  border: 1px solid var(--color-dark02);
  padding: 1.5em 2.5em 2em 2em;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s;
}
.l-header-navi-list li:hover ul {
  visibility: visible;
  opacity: 1;
}
.l-header-navi-list ul li {
}
.l-header-navi-list ul a {
  width: 100%;
  display: inline-block;
  color: var(--color-dark01);
  font-size: 95%;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding: 0.5em 0 0.5em 1em;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
  transition: 0.3s;
}
.l-header-navi-list ul a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: 0;
  top: 0.85em;
  color: var(--color-brand01);
  scale: 0.8;
  transform-origin: left;
}
body.is-pc .l-header-navi-list ul a:hover {
  color: var(--color-brand01);
  text-decoration-color: var(--color-brand01);
}

/*
fixed
*/

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

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

  .l-header {
    padding-right: 0.5em;
  }

  /*
  cv
  */

  .l-header-cv-item {
    padding-left: 0.2em;
  }
  .l-header-cv-btn {
    width: auto;
    padding: 1em 1.2em;
    font-size: 0.90rem;
  }

  /*
  navi
  */

  .l-header-navi {
    padding-right: 0.5em;
  }
  .l-header-navi-list > li {
    padding: 0 0.1em;
  }
  .l-header-navi-list > li > a {
    padding: 0 0.8em;
    font-size: 0.90rem;
  }

  .l-header-navi-list ul a {
    font-size: 90%;
  }

  /*
  fixed
  */

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

}

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

  /*
  cv
  */

  .l-header-cv {
    padding-right: 62px;
  }
  .l-header-cv-item {
    padding-left: 0.2em;
  }
  .l-header-cv-btn {
    width: auto;
    padding: 1em 1.2em;
    font-size: 0.90rem;
  }

  /*
  navi
  */

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

  /*
  fixed
  */

  .l-header,
  body.is-fixed .l-header {
    background-color: transparent;
    height: var(--header-height);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}

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

  /*
  cv
  */

  .l-header-cv {
  }
  .l-header-cv-item {
  }
  .l-header-cv-btn {
    width: auto;
    height: 50px;
    color: var(--color-base);
    font-weight: 500;
    font-size: clamp(10px,3.4vw, 14px);
    border-radius: 10px;
    padding: 0 0.8em;
  }
  .l-header-cv-item.-dl .l-header-cv-btn {
    display: none;
  }


}
/***********
footer
************/

.l-footer {
  position: relative;
  margin-top: calc(var(--footer-offset-top) * -1);
  z-index: 9;
  padding-bottom: 3em;
}
.l-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--footer-offset-top);
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/footer_upperbg.png) no-repeat center bottom / max(100%,1400px) 100%;
  pointer-events: none;
}
.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - var(--footer-offset-top));
  position: absolute;
  left: 0;
  top: var(--footer-offset-top);
  background: #dfd9c0;
  pointer-events: none;
}


.l-footer-container {
  position: relative;
  z-index: 10;
}
.l-footer-illust {
  display: flex;
  align-items: end;
  translate: 0 -12em;
  margin-bottom: -6em;
  user-select: none;
}
.l-footer-illust-item01 {
  padding-left: 5%;
  width: 60%;
  translate: 4% 0;
}
.l-footer-illust-item02 {
  flex: 1;
  padding-right: 3%;
}

.l-footer-collection {
  padding-bottom: 6em;
}


/*
banner
*/

.l-footer-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 3%;
  padding-bottom: 3em;
  font-family: var(--font-family-gothic);
}
.l-footer-banner li {
}
.l-footer-banner li a{
  display: flex;
  border: 1px solid var(--color-main);
  text-decoration: none;
  color: inherit;
  background-color: var(--color-base);
  border-radius: var(--rounded-min);
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  transition: 0.1s;
}
body.is-pc .l-footer-banner li a:hover {
  translate: 0 2px;
}
.l-footer-banner-img {
  flex: 1;
}
.l-footer-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.l-footer-banner-inner {
  width: max(48%,10em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.l-footer-banner-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5em;
  transition: 0.2s;
}
/* body.is-pc .l-footer-banner li a:hover .l-footer-banner-title {
  color: var(--color-primary02);
  text-decoration-color: var(--color-primary02);
} */

/*
facility
*/

.l-footer-facility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em 2%;
}
.l-footer-facility li {
}
.l-footer-facility li a{
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-footer-facility-img {
  border: 3px solid var(--color-base);
  border-radius: var(--rounded-sub);
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  transition: 0.1s
}
body.is-pc .l-footer-facility li a:hover .l-footer-facility-img {
  translate: 0 2px;
}

.l-footer-facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
  border-radius: var(--rounded-min);
}
.l-footer-facility-inner {
  padding-top: 0.6em;
}
.l-footer-facility-title {
  font-weight: 700;
}
.l-footer-facility-address {
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
}

/*
info
*/

.l-footer-info {
}
.l-footer-info-title {
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 0.5em;
}
.l-footer-info-address {
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
}

/*
cv
*/

.l-footer-cv {
  font-family: var(--font-family-gothic);
  display: flex;
  align-items: center;
  padding-top: 1em;
}
.l-footer-cv-item {
  padding-right: 0.5em;
}
.l-footer-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 3em;
  min-width: 10em;
  height: 3em;
  text-decoration: none;
  border-radius: 10em;
  border: 1px solid var(--color-main);
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
}
.l-footer-cv-btn i {
  margin-left: -0.5em;
  margin-right: 0.5em;
  scale: 1.2;
}
.l-footer-cv-item.-dl .l-footer-cv-btn {
  background-color: var(--color-accent01);
}
body.is-pc .l-footer-cv-item.-dl .l-footer-cv-btn:hover {
  background-color: var(--color-accent02);
}
.l-footer-cv-item.-access .l-footer-cv-btn {
  background-color: var(--color-highlight01);
  color: var(--color-main);
}
body.is-pc .l-footer-cv-item.-access .l-footer-cv-btn:hover {
  background-color: var(--color-highlight02);
}

/*
lower
*/

.l-footer-lower {
  padding-top: 2em;
}
.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  font-size: 0.85rem;
  font-weight: 500;
}
.l-footer-navi button {
  display: none !important;
}
.l-footer-navi li {
}
.l-footer-navi li:not(:last-child)::after {
  content: "|";
  padding: 0 0.8em;
}
.l-footer-navi li a{
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-footer-navi li a:hover{
  text-decoration-color: inherit;

}
.l-footer-copyright {
  padding-top: 2em;
  display: block;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 500;
}

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

  .l-footer {
    padding-bottom: 3em;
  }
  .l-footer::before {
    background-size: max(100%,834px) 100%;
  }

  .l-footer-illust {
    translate: 0 -4em;
    margin-bottom: -2em;
  }
  .l-footer-illust-item01 {
    padding-left: 0;
    width: 60%;
    translate: 4% 0;
  }
  .l-footer-illust-item02 {
    padding-right: 0;
  }

  .l-footer-collection {
    padding-bottom: 3em;
  }

}

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

  .l-footer {
    padding-right: 2vw;
    padding-left:  2vw;
  }

  .l-footer-collection {
    padding-bottom: 0;
  }

  .l-footer-illust {
    margin-left: -10vw;
    margin-right: -3vw;
  }
  .l-footer-illust-item01 {
    padding-left: 5%;
    width: 60%;
    translate: 4% 0;
  }
  .l-footer-illust-item02 {
    flex: 1;
    padding-right: 3%;
  }

  /*
  banner
  */

  .l-footer-banner {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 3%;
    padding: 0 0 3em;
    max-width: 520px;
    margin: 0 auto;
  }
  .l-footer-banner-title {
    font-size: 1.2rem;
  }

  /*
  facility
  */

  .l-footer-facility {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 2%;
    max-width: 520px;
    padding: 0 0 3em;
    margin: 0 auto;
  }
  .l-footer-facility li {
  }
  .l-footer-facility li a{
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .l-footer-facility-img {
    border-width: 6px;
    border-radius: var(--rounded-sub);
    isolation: isolate;
    transform: translateZ(0);
    overflow: hidden;
    transition: 0.1s
  }
  body.is-pc .l-footer-facility li a:hover .l-footer-facility-img {
    translate: 0 2px;
  }

  /*
  info
  */

  .l-footer-info {
    border-top: 1px solid var(--color-dark01);
    padding-top: 3em;
  }
  .l-footer-info-title {
    font-size: 1rem;
    padding-bottom: 0.5em;
  }
  .l-footer-info-address {
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /*
  lower
  */

  .l-footer-lower {
    padding-top: 2em;
  }
  .l-footer-navi {
    display: block;
    font-size: 0.9rem;
  }
  .l-footer-navi li {
  }
  .l-footer-navi li:not(:last-child)::after {
    display: none;
  }
  .l-footer-navi li a{
    display: inline-block;
    padding: 0.2em 0 0.2em 1.2em;
    position: relative;
  }
  .l-footer-navi li a::before{
    font-family: 'Font Awesome 6 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-weight: 900; /* fas */
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f054";
    position: absolute;
    left: 0;
    top: 0.5em;
    scale: 0.7;
  }
  body.is-pc .l-footer-navi li a:hover{
    text-decoration-color: inherit;
  }
  .l-footer-copyright {
    padding-top: 3em;
    text-align: left;
    font-size: 0.7rem;
  }



}


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

.l-jumpTop{
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 999;
  transform: translateY(200px);
  transition: 0.5s;
}
body.is-fixed .l-jumpTop {
  transform: translateY(0);
}
.l-jumpTop a{
  display: block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-dark01);
}

.l-jumpTop a i{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  color: var(--color-base);
  border: 1px solid var(--color-sub04);
  background-color: var(--color-base);
  color: #de5545;
}
.l-jumpTop a span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 0.4em;
}

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

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

}


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

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

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

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

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

  .l-menu-trigger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.2s;
  }
  .l-menu-btn {
    display: block;
    position: relative;
    width: 62px;
    height: 55px;
    cursor: pointer;
    background: none;
    background-color: var(--color-brand01);
    border: 1px solid var(--color-main);
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 10px;
    -webkit-tap-highlight-color:transparent;
  }
  .l-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 50%;
    width: 50%;
    height: 2px;
    background-color: var(--color-base);
    border-radius: 3px;
    transition: 0.3s;
    transition: margin 0.3s ease 0.3s , transform 0.3s ease 0s , opacity 0.3s ease 0.3s;
  }
  .l-menu-btn span:nth-child(2) {
    margin-top: -8px;
  }
  .l-menu-btn span:nth-child(3) {
    margin-top: 8px;
  }

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

}


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

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

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

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


/*
cv
*/


.l-menu-cv {
  font-family: var(--font-family-gothic);
  padding-bottom: 4em;
}
.l-menu-cv-item {
}
.l-menu-cv-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 30em;
  height: 4em;
  text-decoration: none;
  border-radius: 10em;
  border: 1px solid var(--color-main);
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 500;
  font-family: var(--font-family-gothic);
  font-size: 1.1rem;
  position: relative;
}
.l-menu-cv-btn i {
  margin-left: -0.5em;
  margin-right: 0.5em;
  scale: 1.2;
}
.l-menu-cv-item.-dl .l-menu-cv-btn {
  background-color: var(--color-accent01);
}
.l-menu-cv-item.-access .l-menu-cv-btn {
  background-color: var(--color-highlight01);
  color: var(--color-main);
}

/*
sub
*/

.l-menu-subNavi {
  font-size: 1rem;
  padding-top: 2em;
}
.l-menu-subNavi button {
  display: none !important;
}
.l-menu-subNavi li {
}
.l-menu-subNavi li a{
  display: inline-block;
  padding: 0.2em 0 0.2em 1.2em;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.l-menu-subNavi li a::before{
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: 0;
  top: 0.45em;
  scale: 0.7;
}

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

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

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

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

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

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

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

.l-heading{
  text-align: center;
  font-family: var(--font-family-gothic);
  padding-bottom: 3em;
  padding-top: 4.5em;
  background: url(../../img/object/sprout.png) no-repeat center top / auto 4em;
}
.l-heading.is-no01 {
  background-image: url(../../img/object/character_heart.png) ;
}
.l-heading.is-no02 {
  background-image: url(../../img/object/tree01.png) ;
}
.l-heading-title{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark01);
}
.l-heading-subTitle{
  font-size: 1.15rem;
  font-weight: 700;
  padding-top: 0.2em;
  color: var(--color-brand02);
}
.l-heading-text{
  padding-top: 1.5em;
  font-weight: 500;
  line-height: 1.8;
}

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

  .l-heading{
    padding-bottom: 2em;
  }
  .l-heading-title{
    font-size: 1.4rem;
  }
  .l-heading-subTitle{
    font-size: 1.0rem;
  }
  .l-heading-text{
    font-weight: 400;
  }

}

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

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

}


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

.l-headline{

}
.l-headline-title{

}
.l-headline-subTitle{

}


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

.l-largeHeading {
  margin-bottom: 1.5em;
}
.l-largeHeading-title {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1.2rem,1.5vw, 1.4rem);
  font-family: var(--font-family-gothic);
  line-height: 2em;
  background: url(../../img/hasen01.png) repeat 0 0 / auto 2em;
  padding-bottom: 2px;
}

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

  .l-largeHeading-title {
    font-size: 1.2rem;
  }

}


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

.l-title{
  font-size: 1.4rem;
  font-family: var(--font-family-gothic);
  border-radius: var(--rounded-min);
  border: 1px solid var(--color-main);
  background-color: var(--color-brand03-sub);
  margin-bottom: 1em;
  padding: 0.8em 1em;
  line-height: 1.4;
  position: relative;
}
.l-subTitle{
  font-size: 1.4rem;
  font-family: var(--font-family-gothic);
  border-left: 6px solid #7f8aaa;
  margin: 0 0 0.8em 0;
  padding: 0.2em 0 0.2em 0.8em;
  line-height: 1.4;
  position: relative;
}
.l-minTitle{

}

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

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

}



/***********
l-bgObject
************/

.l-bgObject {
  background-color: var(--color-sub03);
  position: relative;
  z-index: 1;
}
.l-bgObject::after {
  content: "";
  display: block;
  width: 100%;
  height: 50vw;
  position: absolute;
  left: 0;
  top: 200px;
  background: url(../../img/bg01.png) no-repeat center top / 100% 100%;
}
.l-bgObject-container {
  position: relative;
  z-index: 2;
}

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

  .l-bgObject::after {
    height: 50vw;
    top: -50vw;
    background: url(../../img/bg01.png) no-repeat center top / 200% 100%;
  }

}


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


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

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

.l-bgColor10 {
  background: url(../../img/bg01.png) no-repeat center bottom / 100% 100%;
  background-color: red;
}

.l-bgColor-sub01 {
  background-color: var(--color-sub01);
}
.l-bgColor-sub02 {
  background-color: var(--color-sub02);
}
.l-bgColor-sub03 {
  background-color: var(--color-sub03);
}
.l-bgColor-sub04 {
  background-color: var(--color-sub04);
}
.l-bgColor-sub05 {
  background-color: var(--color-sub05);
}


.l-bgColor-primary01 {
  background-color: var(--color-primary01);
}
.l-bgColor-brand03 {
  background-color: var(--color-brand03);
}
/***********
catIcon
************/

.l-catIcon {
  display: inline-block;
  background-color: var(--color-sub01);
  color: var(--color-dark01);
  border-radius: 3em;
  padding: 0.3em 1em;
  line-height: 1.2;
}


/***********
overflowHide
************/

.l-overflowHide {
  overflow: hidden;
}


/***********
explore
************/

.l-explore {
  background-color: var(--color-base);
  border: 1px solid var(--color-main);
  border-radius: var(--rounded-main);
}
.l-explore + .l-explore {
  margin-top: 5em;
}

.l-explore-heading {
  border-bottom: 1px solid var(--color-main);
  border-radius: var(--rounded-main) var(--rounded-main) 0 0;
  background-color: var(--color-sub01);
  text-align: center;
  position: relative;
  padding: 0.7em ;
  font-size: 1.7rem;
  font-family: var(--font-family-gothic);
}
.l-explore-heading-title {
  letter-spacing: 0.06em;
}

.l-explore-container {
  padding: min(6vw,3em) min(7%,3em);
}

.l-explore-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em 1.2%;
}
.l-explore-list li {
}
.l-explore-list li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-sub01);
  box-shadow: 0 3px 0 var(--color-sub02);
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
  min-height: 6em;
  line-height: 1.35;
  padding: 0.8em 1em 0.8em 3em;
  position: relative;
  transition: 0.1s;
}
.l-explore-list 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: "\f138";
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 1.1;
}
body.is-pc .l-explore-list li a:hover {
  box-shadow: 0 1px 0 currentColor;
  translate: 0 2px;
}



.l-explore.-pink .l-explore-heading {
  background-color: var(--color-primary01);
}
.l-explore.-pink .l-explore-heading::after {
  content: "";
  display: block;
  width: 7em;
  aspect-ratio: 5 / 6;
  background: url(../../img/object/character01.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: 1.5em;
  bottom: -1em;
  pointer-events: none;
}
.l-explore.-pink .l-explore-list li a {
  background-color: var(--color-primary01-sub);
  box-shadow: 0 3px 0 var(--color-primary02);
}
.l-explore.-pink .l-explore-list li a::before {
  color: var(--color-primary02);
}
body.is-pc .l-explore.-pink .l-explore-list li a:hover {
  box-shadow: 0 1px 0 var(--color-primary02);
}

.l-explore.-blue .l-explore-heading {
  background-color: var(--color-brand03);
}
.l-explore.-blue .l-explore-heading::after {
  content: "";
  display: block;
  width: 6em;
  aspect-ratio: 5 / 6;
  background: url(../../img/object/character02.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 2.5em;
  bottom: -1em;
  pointer-events: none;
}
.l-explore.-blue .l-explore-list li a {
  background-color: var(--color-brand03-sub);
  box-shadow: 0 3px 0 var(--color-brand04);
}
.l-explore.-blue .l-explore-list li a::before {
  color: var(--color-brand04);
}
body.is-pc .l-explore.-blue .l-explore-list li a:hover {
  box-shadow: 0 1px 0 var(--color-brand04);
}

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

  .l-explore {
    background-color: var(--color-base);
    border: 1px solid var(--color-main);
    border-radius: var(--rounded-main);
  }
  .l-explore + .l-explore {
    margin-top: 3em;
  }

  .l-explore-heading {
    font-size: 1.3rem;
    padding: 0.5em;
  }
  .l-explore-heading-title {
    letter-spacing: 0.06em;
  }

  .l-explore-container {
    padding: min(6vw,2em) min(3%,2em);
  }

  .l-explore-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7em 2%;
  }
  .l-explore-list li {
  }
  .l-explore-list li a{
    border-radius: 8px;
    font-size: clamp(0.8rem,4vw, 1.1rem);
    font-feature-settings: "palt";
    font-weight: 500;
    min-height: 5em;
    padding: 0.8em 0.5em 0.8em 2.2em;
  }
  .l-explore-list li a::before {
    left: 0.6em;
    scale: 1;
  }

  .l-explore.-pink .l-explore-heading {
  }
  .l-explore.-pink .l-explore-heading::after {
    width: 5em;
    right: 0.5em;
    bottom: -1em;
  }

  .l-explore.-blue .l-explore-heading {
    background-color: var(--color-brand03);
  }
  .l-explore.-blue .l-explore-heading::after {
    width: 5em;
    left: 0.5em;
    bottom: -1em;
  }

}


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

.l-newsList {
}
.l-newsList li {
}
.l-newsList li:not(:last-child) {
  border-bottom: 1px solid var(--color-sub04);
}
.l-newsList li a{
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 0.2em;
}
.l-newsList-data {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}

.l-newsList-data-time {
  display: inherit;
  width: 7.6em;
  font-size: 90%;
  font-weight: 500;
  white-space: nowrap;
}
.l-newsList-data-cat {
  font-size: 80%;
  font-weight: 500;
  margin: 1px;
}
.l-newsList-title {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
body.is-pc .l-newsList li a:hover .l-newsList-title{
  text-decoration-color: var(--color-brand01);
  color: var(--color-brand01);
}

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

  .l-newsList-data-time {
    width: auto;
    padding-right: 0.8em;
    font-size: 90%;
    font-weight: 400;
  }
  .l-newsList-data-cat {
    font-weight: 400;
  }
  .l-newsList-title {
    font-weight: 400;
  }
}

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

.l-largeBanner {
  position: relative;
  font-family: var(--font-family-gothic);
}
.l-largeBanner a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: var(--rounded-main);
  border: 1px solid var(--color-main);
  background-color: var(--color-sub01);
  box-shadow: 0 4px 0 var(--color-dark01);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: 0.1s;
}
body.is-pc .l-largeBanner a:hover {
  translate: 0 3px;
  box-shadow: 0 1px 0 var(--color-dark01);
}

.l-largeBanner-container {
  position: relative;
  padding: 2.5em 0 2.5em 5em;
}

.l-largeBanner-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-dark01);
  color: var(--color-base);
  rotate: -20deg;
  border-radius: 50%;
  width: 6em;
  aspect-ratio: 1 / 1;
  font-weight: 500;
  position: absolute;
  left: -1.5em;
  top: -1em;
  z-index: 2;
  pointer-events: none;
}

.l-largeBanner-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 15%);
  mask-size: 100% 100%;
}
.l-largeBanner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-largeBanner-block {
  position: relative;
  z-index: 9;
}
.l-largeBanner-title {
  font-size: 2.5rem;
  line-height: 1.2;
}
.l-largeBanner-lead {
  display: inline-block;
  padding: 0.3em 1em;
  margin-top: 1em;
  background-color: var(--color-base);
  border-radius: 3em;
  position: relative;
  font-weight: 700;
  font-size: 1.05rem;
}
.l-largeBanner-lead::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 0.6em;
  position: absolute;
  left: 2em;
  bottom: 100%;
  background: var(--color-base);
  clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
}
.l-largeBanner-text {
  font-weight: 700;
  padding-top: 0.8em;
  font-size: 1.1rem;
}

/*
color
*/

.l-largeBanner.-yellow a {
  border: 1px solid #f1b900;
  background-color: #fff38d;
  box-shadow: 0 4px 0 #f1b900;
}
.l-largeBanner.-yellow .l-largeBanner-badge {
  background-color: #f1764b;
}
.l-largeBanner.-yellow .l-largeBanner-title {
  color: #cd9100;
}
.l-largeBanner.-yellow .l-largeBanner-lead ,
.l-largeBanner.-yellow .l-largeBanner-text {
  color: #6e4714;
}
body.is-pc .l-largeBanner.-yellow a:hover {
  box-shadow: 0 1px 0 #f1b900;
}


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

  .l-largeBanner-container {
    padding: 0;
    text-align: center;
  }

  .l-largeBanner-badge {
    width: 5em;
    font-size: 0.9rem;
    rotate: -20deg;
    left: -2vw;
    top: -1em;
  }

  .l-largeBanner-img {
    position: static;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 15%);
  }
  .l-largeBanner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-largeBanner-block {
    padding: 2em 5% 1em;
  }
  .l-largeBanner-title {
    font-size: 1.7rem;
    text-align: center;
  }
  .l-largeBanner-lead {
    padding: 0.4em 2em;
    font-size: 0.9rem;
  }
  .l-largeBanner-lead::after {
    width: 1.5em;
    height: 0.6em;
    left: 50%;
    bottom: 100%;
    translate: -50% 0 ;
  }
  .l-largeBanner-text {
    font-size: 0.9rem;
  }

}

/***********
sns
************/

.l-sns {
  position: relative;
  border-radius: var(--rounded-main);
  border: 1px solid var(--color-main);
  background-color: var(--color-base);
  padding: min(7vw,2.5em) min(5vw,3em);
  display: flex;
  align-items: center;
  position: relative;
}
.l-sns::after {
  content: "";
  display: block;
  width: 4.5em;
  aspect-ratio: 25 / 60;
  background: url(../../img/object/character10.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 0.65em);
  bottom: 0;
  pointer-events: none;
}

.l-sns-heading {
  padding-right: 3em;
}
.l-sns-heading-title {
  display: inline-block;
  font-family: var(--font-family-gothic);
  font-size: 1.6rem;
  font-weight: 700;
  background: url(../../img/object/character_heart.png) no-repeat center top / 2.8em auto;
  padding-top: 2.8em;
  white-space: nowrap;
}
.l-sns-inner {
  flex: 1;
}

.l-sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.l-sns-list a {
  display: inline-block;
  transition: 0.1s;
}
body.is-pc .l-sns-list a:hover {
  translate: 0 2px;
}

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

  .l-sns {
    padding: min(7vw,1.5em) min(5vw,2em);
    display: block;
    margin-right: 40px;
  }
  .l-sns::after {
    width: 3.5em;
    left: calc(100% - 0.5em);
  }

  .l-sns-heading {
    padding-right: 0;
    padding-bottom: 1em;
    text-align: center;
  }
  .l-sns-heading-title {
    font-size: 1.3rem;
  }

  .l-sns-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em 2%;
  }

}

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

  .l-sns {
    margin-left: 40px;
  }
  .l-sns-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8em 2%;
  }
  .l-sns-list {
    max-width: 220px;
    margin: 0 auto;
  }

}



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

.l-pageList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 5%;
}

.l-pageList li {
}
.l-pageList li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-pageList-img {
  border-radius: var(--rounded-sub);
}
.l-pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
  border-radius: var(--rounded-sub);
}
.l-pageList-inner {
  padding-top: 1em;
}
.l-pageList-heading {
}
.l-pageList-title {
  font-size: 1.5rem;
  font-family: var(--font-family-gothic);
  line-height: 1.4;
  position: relative;
  padding-left: 1.2em;
  color: var(--color-brand02);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .l-pageList li a:hover .l-pageList-title {
  color: var(--color-brand01);
  text-decoration-color: inherit;
}
.l-pageList-title::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  position: absolute;
  left: 0;
  top: 0.25em;
  scale: 0.8;
}

.l-pageList-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  padding-top: 0.5em;
}


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

  .l-pageList {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 5%;
  }
  .l-pageList-heading::after {
    scale: 0.9;
  }

  .l-pageList-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .l-pageList-text {
    line-height: 1.7;
  }
}

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

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

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




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

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

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


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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

  .ssp-br {
    display: inline;
  }

}
