*,*::after,*::before{box-sizing:border-box;word-wrap:break-word; /*transition:all .25s ease;*/}
html,body{margin:0}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.17rem}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,img,object,svg,video,picture{display:block;max-width:100%}canvas,img,svg,video{height:auto}audio{width:100%}
img{border-style:none;width:auto;height:auto;}svg{overflow:hidden}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}
p, dd, figure {margin: 0;}
h1,h2,h3 { margin: 0; }
ul { /*list-style: none;*/ padding: 0; margin: 0; }
a { text-decoration: none; }
a:hover { text-decoration: none; }
sup { line-height: 1; font-size: 65%; }
img { vertical-align: bottom; }
/* dl { margin: 0; } */
:root {
  --color01: #fff;
  --color02: rgba(15, 17, 16, 1);
  --color03: #dadada;
  --color04: #fdf24d;
  --color05: rgba(190, 190, 190, 1);

  --grad01: 219deg, #d533c3, #eb5045;
  --grad02: 180deg, #0d7e55, #0e6848;
  --grad03: 180deg, #0d7d55, #0e6747;
  --grad04: 180deg, #eec51d, #d9b10d;
  --grad05: 180deg, #edc41d, #d9b10d;

  --innerwidth: 1200px;
}

html {
  position: relative;
  min-height: 100%;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: calc((100vw - 320px) / 140 + 16px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  background: #fff;
  color: var(--color02);
  accent-color: var(--color04);
  
}




.btnWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 2rem 0;
}
.btnWrap p {
  font-weight: 700;
  font-size: min(4vw, 42px);
}
.btn {
  background: var(--color02);
  border: none;
  outline: none;
  color: #fff;
  font-size: min(4vw, 24px);
  line-height: 1;
  padding: .75em 2.5em;
  font-weight: 700;
  width: fit-content;
  margin: .25em auto;
  cursor: pointer;
}
.btn:hover {
  opacity: .5;
}



/* LAYOUT
__________________________________________________________________ */
.sec {
  position: relative;
  overflow: hidden;

  opacity: 0;
  transition: opacity 1s ease;
}
.wf-active .sec {
  opacity: 1;
}
:where([class*="Inner"]) {
  width: calc(100% - (4vw * 2));
  margin: 0 auto;
  max-width: var(--innerwidth);
  padding: 0 4vw;
}

/* FV
__________________________________________________________________ */
.fv {
  position: relative;
  height: 100vh;

  overflow: hidden;
  background: url(fv.webp) no-repeat center center;
  background-size: cover;
  display: grid;
  grid-template-rows: 1fr;
  will-change: animation;
}

@media (min-width: 860px) {
  .fv {
    min-height: 700px;
  }
}
@keyframes _blur {
  to {
    filter: blur(0px);
  }
}

.fvInner {
  position: relative;
  max-width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  padding: 8vw 4vw;
  background: rgba(0, 0, 0, .5);
  animation: _fvInner 1.5s cubic-bezier(1,0,0,1) .25s 1 normal forwards;
  will-change: transform, animation;
  transform: translate3d(0, 0, 0) scaleY(0.01) scaleX(0);

  width: calc(100% - 8vw);
  height: calc(100% - 8vw);
}
@media (min-width: 860px) {
  .fvInner {
    padding: 50px;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
  }
}
@keyframes _fvInner {
  50% {
    transform: translate3d(0, 0, 0) scaleY(1) scaleX(0.01);
  }
  100% {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
@media (min-width: 860px) {
  @keyframes _fvInner {
    50% {
      transform: translate3d(0, 0, 0) scaleY(0.01) scaleX(1);
    }
    100% {
      transform: translate3d(0, 0, 0) scaleY(1);
    }
  }
}

.fvInner .siteBrand {
  position: absolute;
  z-index: 110;
  display: flex;
  flex-direction: row;
  column-gap: 4vw;
  top: 6vw;
  left: 2vw;
  right: auto;
  color: #fff;
  bottom: auto;
  margin: auto;
  height: fit-content;
}
@media (min-width: 860px) {
  .fvInner .siteBrand {
    top: 0;
    left: auto;
    right: auto;
    bottom: 0;
    flex-direction: column;
  }
}

.fvInner h1 {
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: min(12vw, 78px);
  order: 2;
}
@media (min-width: 860px) {
  .fvInner h1 {
    writing-mode: horizontal-tb;
    order: 1;
  }
}

.slogan {
  writing-mode: vertical-rl;
  margin-top: .75em;
  order: 1;
}
@media (min-width: 860px) {
  .slogan {
    writing-mode: horizontal-tb;
    margin-top: 0;
    order: 2;
  }
}
.slogan > span {
  writing-mode: horizontal-tb;
}

.fvInner h1 p {
  opacity: 0;
  text-shadow: 0 0 .5rem rgba(0,0,0,.5);
  font-weight: 500;
}
.wf-active .fvInner h1 p {
  opacity: 1;
}

.fvInner h1 p:first-child {
  font-family: 'Outfit';
  font-weight: 700;
  writing-mode: horizontal-tb;
  font-size: 2em;
}
@media (min-width: 560px) {
  .fvInner h1 p:first-child {
    font-size: 1.25em;
  }
}

.fvInner .fv-person {
  position: absolute;
  z-index: 8;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  background: rgba(255,255,255,.2);
  padding: 0 0 0 0;
}
@media (min-width: 520px) {
  .fvInner .fv-person {
    width: auto;
  }
}
.fvInner .fv-person dl {
  color: #fff;
  max-width: 100%;
  width: fit-content;
  white-space: nowrap;

  z-index: 9;
  right: 1em;
  bottom: 1em;
  text-align: left;
  padding: 0 1.5rem;
  margin: 0;
}
.fvInner .fv-person dl dt {
  font-weight: 500;
  font-size: min(5vw, 19px);
  margin-bottom: .25em;
}
.fvInner .fv-person dl dd {
  font-size: min(3vw, 14px);
  font-weight: 400;
}

.fvInner .fv-person .thumb {
  position: relative;
  z-index: 0;
  width: 90px;
  max-width: none;
  background: rgba(255,255,255,.4);
  filter: drop-shadow(0 0 1rem rgba(0,0,0,.5));
  aspect-ratio: 1 / 1;
}
.fvInner .fv-person .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
}



.scroll-down {
  text-align: center;
  max-height: 104px;
  height: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin: auto;
  display: flex;
  width: fit-content;
}
.scroll-down > span {
	writing-mode: vertical-rl;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	font-size: 10px;
	color: #ADA29A;
	height: 104px;
}
.scroll-down > span::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 104px;
	background: #ADA29A;
	border-radius: 5px;
	animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.scroll-down > span::before {
  content: 'Scroll';

}


@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}





.secInner {
  position: relative;
  padding: 0 0 3vh 0;
}
.secInner::before {
  content: '';
  display: block;
  position: absolute;
  background: linear-gradient(180deg, var(--color04) 10%, #000 60%, transparent);
  width: 1px;
  left: calc(min(7vw, 3rem) / 2);
  top: min(7vw, 3rem);
  height: calc(100% - min(7vw, 3rem));
}

.secInner .secHeadline {
  font-size: min(8vw, 52px);
  color: var(--color02);
  font-family: 'Outfit';
  font-weight: 700;
  line-height: 1;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.secInner .secHeadline > span {
  z-index: 10;
  margin-right: .35em;
  display: block;
  width: min(7vw, 3rem);
  height: min(7vw, 3rem);
  border: .2em solid var(--color04);
  position: sticky;
  top: 0;
}

.secInner .secBody {
  padding-left: calc(min(7vw, 3rem) + 1em);
  text-align: justify;
}

.secInner .secBody > :where(p) {
  margin-bottom: 1em;
  line-height: 1.6;
}

.secInner .secBody .secSlogan {
  font-size: min(5vw, 24px);
  font-weight: 700;
  margin-bottom: 1em;
  background: var(--color02);
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: .5em 1em;
}

:where(.secInner .secBody dl) {
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  font-size: min(5vw, 32px);
}


.sec02 {
  background: var(--color01);
  padding: 5vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec02 {
    padding: 10vh 0 10vh 0;
  }
}
.sec02 .secInner .secHeadline > span {
  background: #fff;
}


.sec02 .secBody ul {
  list-style: none;
  padding: 1em;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: rgba(255,255,255,.75)
}
.sec02 .secBody ul li {
  width: 100%;
  text-align: left;
  padding: .5em 0 .75em 0;
  font-size: min(4vw, 40px);
  font-weight: 700;
}
.sec02 .secBody ul li > span {
  font-size: 60%;
  color: #999;
  display: block;
  font-weight: 400;
  font-style: oblique;
}
@media (min-width: 860px) {
  .sec02 .secBody ul li {
    text-align: center;
  }
}


.sec04 {
  background: var(--color03);
  padding: 5vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec04 {
    padding: 10vh 0 10vh 0;
  }
}
.sec04 .secInner .secHeadline > span {
  background: var(--color03);
}

.sec04 .secInner .secBody > .callout {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 860px) {
  .sec04 .secInner .secBody > .callout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2%;
  }
}
.sec04 .secInner .secBody > .callout dl {
  border: 1px solid var(--color02);
  background: #fff;
  margin: 0;
}
.sec04 .secInner .secBody > .callout dl dt {
  font-weight: 400;
  background: var(--color02);
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: .5em .75em .65em .75em;
  font-size: min(5vw, 28px);
}
.sec04 .secInner .secBody > .callout dl dd {
  font-size: min(5vw, 24px);
  padding:1em;
}



.sec05 {
  background: var(--color01);
  padding: 5vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec05 {
    padding: 10vh 0 10vh 0;
  }
}
.sec05 .secInner .secHeadline > span {
  background: var(--color01);
}
.sec05 .secBody ul {
  list-style: none;
  flex-wrap: wrap;
  gap: 2%;
}
.sec05 .secBody ul li {
  width: 100%;
  padding: .5em 0;
}




.sec06 {
  background: var(--color03);
  padding: 5vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec06 {
    padding: 10vh 0 10vh 0;
  }
}
.sec06 .secInner .secHeadline {
  /* color: var(--color01); */
}

.vid {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #888;
  color: #fff;
  width: 100%;
  margin: auto;
}
@media (min-width: 860px) {
  .vid {
    width: 70%;
  }
}

video {
  max-width: 100%;
  width: 100%;
  height: 100%;
}









.sec08 {
  background: #212121;
  padding: 10vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec08 {
    padding: 10vh 0 10vh 0;
  }
}
.sec08 .secInner .secHeadline {
  color: var(--color01);
}
.faqList {
  width: 100%;
}
.faqList dl {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0;
  margin: 0 0 1em 0;
  letter-spacing: 0;
  width: 100%;
}
@media (min-width: 860px) {
  .faqList dl {
    margin: 0 0 .5em 0;
  }
}


.faqList dl dt {
  display: grid;
  grid-template-columns: 93% 1fr;
  align-items: center;
  cursor: pointer;
  padding: 0 0;
}
.faqList dl dt p {
  color: var(--color01);
  font-weight: 700;
  font-size: min(4vw, 24px);
}
.faqList dl.faqOpen dt p {
  color: var(--color04);
}
@media (min-width: 860px) {
  .faqList dl dt p {
    width: calc(100% - min(5vw, 1.75em));
  }
}
.faqList dl dt::after {
  content: '';
  display: block;
  width: min(5vw, 1.75em);
  height: min(5vw, 1.75em);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path fill="%23fff" d="M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z"/></svg>');
}
.faqList dl.faqOpen dt::after {
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path fill="%23fdf24d" d="M200-440v-80h560v80H200Z"/></svg>');
}
.faqList dl dd {
  overflow: hidden;
  width: calc(100% - 1em);
  margin-left: 1em;
  padding: .5em 1em .5em 1em;
  display: none;
  border-left: 1px solid var(--color04);
}
.faqList dl dd p,
.faqList dl dd ul {
  line-height: 1.7;
  color: var(--color01);
  font-weight: 400;
  width: 100%;
  font-feature-settings: "palt" 1;
  font-size: min(4vw, 20px);
  padding: 0 1em 0 0;
}
@media (min-width: 860px) {
  .faqList dl dd p,
  .faqList dl dd ul {
    padding: 0 5em 0 0;
  }
}

.sec07 {
  background: #494949;
  padding: 6vh 0 5vh 0;
}
.sec07 .secInner::before {
  display: none;
}
.sec07 .secInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4%;
}
@media (min-width: 860px) {
  .sec07 .secInner {
    display: grid;
    grid-template-columns: 26% 1fr;
    align-items: center;
    padding: 0 4%;
  }
}

.sec07 .secInner dl {
  padding: 0 8% 0 8%;
  color: #fff;
}
.sec07 .secInner dl dt {
  font-size: min(5vw, 28px);
  font-weight: 700;
  line-height: 1;
  text-align: left;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--color01);
}
.sec07 .secInner dl dd {
  font-size: min(5vw, 20px);
  line-height: 1.6;
  text-align: justify;
}
.sec07 .secInner .thumb {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--color01);
  width: 36%;
}
@media (min-width: 860px) {
  .sec07 .secInner .thumb {
    width: 100%;
  }
}
.sec07 .secInner .thumb > img {
  width: 100%;
  height: 100%;
}





/* CONTACT
__________________________________________________________________ */
.sec23 {
  background: var(--color01);
  padding: 10vh 0 5vh 0;
}
@media (min-width: 860px) {
  .sec23 {
    padding: 10vh 0 10vh 0;
  }
}
.sec23 .secInner {
  background: var(--color03);
  padding: 4vw;
  max-width: 860px;
}
.sec23 .secInner::before {
  display: none;
}

.sec23 .secInner .secDesc {
  color: var(--color02);
  font-size: min(5vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  text-align: justify;
  margin-bottom: 1em;
}


.contactForm > form {
  visibility: visible;
  opacity: 1;
}
.contactForm > form.hide {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.contactForm > form .requireSign,
.error {
  color: red;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.contactForm > form > dl {
  width: 100%;
  padding-bottom: 1em;
  margin: 0;
}
.contactForm > form > dl dt {
  font-size: min(4vw, 16px);
  margin-bottom: .5em;
  color: var(--color02);
}
.contactForm > form > dl dd input,
.contactForm > form > dl dd textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e4e4e4;
  outline: none;
  font-size: 1.125rem;
}
.contactForm > form > dl dd input:focus,
.contactForm > form > dl dd textarea:focus {
  border: 1px solid #000;
}
.contactForm > form > dl dd input.require,
.contactForm > form > dl dd textarea.require {
  border: 1px solid var(--color02);
  background: rgba(217, 33, 33, 0.25);
}
.contactForm > form > dl dd textarea {
  field-sizing: content;
  min-height: 12em;
}
.contactForm > .finish {
  font-size: min(4vw, 18px);
  padding: 4vw 0;
}
.contactForm > .finish > p {
  color: var(--color02);
}




.loading {
  width: fit-content;
  line-height: 1;
  margin: auto;
  display: none;
}
.loading > img {
  display: inline-block;
  animation: loading 1s linear 0s infinite normal;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* FOOTER
__________________________________________________________________ */
.globalFooter {
  background: #3d3d3d;
  color: #fff;
}
.globalFooter .globalFooterInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vw 0;
  font-size: min(3.5vw, 18px);
}
.relationhead {
  text-align: center;
  line-height: 1;
  /* background: #222; */
  width: fit-content;
  color: #ccc;
  font-size: min(3vw, 12px);
  /* border-radius: 3px; */
  padding: .25em 1em .35em 1em;
}
.globalFooter .globalFooterInner .relation {
  display: flex;
  list-style: none;
  /* justify-content: space-between; */
  justify-content: center;
  width: 100%;
  padding: .5em 4vw 5vh 4vw;
}
.globalFooter .globalFooterInner .relation li img {
  height: min(5vw, 60px);
  width: auto;
}

.globalFooter .globalFooterInner .relation2 {
  display: flex;
  list-style: none;
  gap: 2vw;
  /* justify-content: space-between; */
  justify-content: center;
  width: 100%;
  padding: .5em 4vw 3vh 4vw;
}
.globalFooter .globalFooterInner .relation2 li img {
  height: min(5vw, 30px);
  width: auto;
}


.globalFooter .globalFooterInner .copy {
  line-height: 1;
  display: block;
  padding: 2em 0 0 0;
}
.globalFooter .globalFooterInner a {
  color: #fff;
  text-decoration: underline;
}








.lvSub {
  font-size: 65%;
}

.b { font-weight: 700; }
.c { text-align: center; justify-content: center; }
.r { text-align: right; justify-content: flex-end; }
.l { text-align: left; justify-content: flex-start; }

._sp { display: block!important; }
._pc { display: none!important; }
@media (min-width: 860px) {
  ._sp { display: none!important; }
  ._pc { display: block!important; }
}


.splide__pagination {
  gap: .5em;
}
.splide__pagination__page {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  opacity: .3;
  cursor: pointer;
  border: none;
}
.splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1.2)
}





.wow.wow-opacity {
  visibility: visible !important;
  transition: opacity 1s ease;
  opacity: .1;
}
.wow.wow-opacity.animated {
  opacity: 1;
}

.wow.wow-flickBg > * {
  background: linear-gradient(transparent 0%, #fff 0%);
  background-repeat: no-repeat;
  transition: background-size 1s ease;
  background-size: 0% 100%;
}
.wow.wow-flickBg.animated > *:nth-of-type(1) {
  transition: background-size .75s ease;
  background-size: 100% 100%;
}
.wow.wow-flickBg.animated > *:nth-of-type(2) {
  transition: background-size .75s ease .25s;
  background-size: 100% 100%;
}



@keyframes fadeInDown_custom{
  0%{
    opacity:0;
    transform:translate3d(0,-10%,0)
  }
  to{
    opacity:1;
    transform:none
  }
}
.fadeInDown_custom{
  animation-name:fadeInDown_custom;
}

@keyframes fadeInRight_custom{
  0%{
    opacity:0;
    transform:translate3d(10%,0,0)
  }
  to{
    opacity:1;
    transform:none
  }
}
.fadeInRight_custom{
  animation-name:fadeInRight_custom;
}

@keyframes fadeInLeft_custom{
  0%{
    opacity:0;
    transform:translate3d(-5%,0,0)
  }
  to{
    opacity:1;
    transform:none
  }
}
.fadeInLeft_custom{
  animation-name:fadeInLeft_custom;
}




