*,*::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 !important; }
sup { line-height: 1; font-size: 65%; }
img { vertical-align: bottom; }
dl { margin: 0; }
:root {
  --color01: #fff;
  --color02: #0b1b47;
  --color03: #fffde2;
  --color04: #f8f8f8;
  --color05: #efe54a;

  --grad01: 219deg, #d533c3, #eb5045;
  --grad02: 180deg, #0d7e55, #0e6848;
  --grad03: 180deg, #0d7d55, #0e6747;
  --grad04: 180deg, #eec51d, #d9b10d;
  --grad05: 180deg, #edc41d, #d9b10d;

  --width-full: 1400px;
  --width-inner: 1200px;
  --width-content: 920px;
}

html {
  position: relative;
  min-height: 100%;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: calc((100vw - 320px) / 140 + 16px);
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  background: var(--color01);
  color: #000;
  accent-color: var(--color02);
  
}






/* FV
__________________________________________________________________ */
.fv {
  width: 100%;
  max-height: 750px;
  background: url('img/fv-bg.png') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.guideline-badge {
  display: none;
}

@media (min-width: 860px) {
  .guideline-badge {
    display: flex;
    position: absolute;
    top: 2vw;
    right: 2vw;
    background: var(--color05);
    color: var(--color02);
    font-weight: 700;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    border-radius: 50%;
    text-align: center;
    line-height: 1.3;
    border: 3px solid var(--color02);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: rotate(-10deg);
    z-index: 10;
    width: clamp(100px, 10vw, 150px);
    height: clamp(100px, 10vw, 150px);
    justify-content: center;
    align-items: center;
  }
}
.fv-content {
  display: flex;
  max-width: var(--width-full);
  width: 100%;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  gap: 20px;
  align-items: flex-end;
}
@media (min-width: 980px) {
  .fv-content {
    padding: 20px 0 0 0;
  }
}
.fv-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.fv-left img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.personalInfo {
  position: absolute;
  bottom: 1.5em;
  right: 10%;
  color: var(--color01);
  font-size: clamp(min(1vw,.7rem), 1.5vw, 1rem);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.personalInfo img {
  width: min(12vw, 120px);
}
.personalInfo p {
  flex: 1;
  font-weight: 400;
}
.personalInfo p span {
  font-size: 150%;
  font-weight: 700;
}

.fv-right {
  flex: 1;
  color: var(--color01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 0 1em 0 0;
  gap: .5rem;
}
.fv-right h1 {
  font-size: clamp(1.5rem, 7vw, 4rem);
  line-height: 1;
  display: block;
  white-space: nowrap;
  margin-bottom: .25em;
}
@media (min-width: 980px) {
  .fv-right {
    gap: 1rem;
  }
  .fv-right h1 {
    margin-bottom: 20px;
  }
}

.fv-right h1 span:nth-of-type(1) {
  display: block;
}
.fv-right h1 span:nth-of-type(2) {
  display: block;
  transition: padding-left .5s ease;
}
@media (min-width: 980px) {
  .fv-right h1 span:nth-of-type(2) {
    display: block;
    padding-left: 3em;
  } 
}

.fv-right .forAny {
  display: flex;
  flex-wrap: wrap;
  row-gap: .25rem;
}
.fv-right .forAny span {
  font-size: clamp(.65rem, 1.5vw, 1.25rem);
  line-height: 1;
  font-weight: 700;
  padding: .25em .75em .35em .75em;
  color: var(--color02);
  background: var(--color05);
  margin-right: .5em;
  border-radius: 2em;
}
.fv-right > p {
  font-size: clamp(0.5rem, 1.5vw, 1.5rem);
  line-height: 1.6;
}
.fv-right > p span {
  color: var(--color05);
  font-weight: 700;
}



/* LAYOUT
__________________________________________________________________ */
:where(.sec) {
  /* padding-bottom: 80px; */
  /* padding-top: 100px; */
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}
.wf-active .sec {
  opacity: 1;
}
:where([class*="Inner"]) {
  width: 100%;
  margin: 0 auto;
  max-width: var(--width-inner);
  padding: 0 4vw;
}
@media (min-width: 860px) {
  :where([class*="Inner"]) {
    padding: 1rem;
  }
}

.secHeadline {
  font-size: min(5vw, 38px);
  text-align: center;
  line-height: 1.4;
  color: var(--color02);
  margin-bottom: 1em;
  letter-spacing: .075em;
}
.secLead {
  font-size: min(4vw, 20px);
  text-align: left;
  line-height: 1.6;
  width: fit-content;
  margin: auto auto 2rem auto;
}
@media (min-width: 860px) {
  .secLead {
    text-align: center;
  }
}
:where(.secContent) {
  width: 100%;
  max-width: var(--width-content);
  margin: auto;
}


/* SEC01
__________________________________________________________________ */
.sec01 {
  padding: 2rem 0;
}
.risk {
  background: url(img/bg-risk.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
  margin: 5rem auto 0 auto;
  padding-bottom: 3px;
  width: 100%;
  max-width: 100%;
}
.risk h3 {
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  border: .11em solid var(--color02);
  background: var(--color01);
  line-height: 1;
  padding: .5em 1.5em;
  border-radius: 5px;
  font-size: min(4vw, 28px);
  color: var(--color02);
}
.risk ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 7% 5% 0 5%;
}
@media (min-width: 860px) {
  .risk ul {
    padding: 6% 10% 0 10%;
  }
}
.risk ul li {
  width: 50%;
  background: url(img/cloud.png) no-repeat center center;
  background-size: contain;
  font-size: min(2vw, 18px);
  color: var(--color01);
  padding-top: .25em;
  min-height: 9em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.risk .withRisk {
  display: block;
  margin: auto;
  width: 30%;
}


/* SEC02
__________________________________________________________________ */
.sec02 {
  background: url(img/star.png) no-repeat 97% 7%, url(img/star.png) no-repeat 93% 90%, url(img/star.png) no-repeat 6% 53%, var(--color03);
  padding: 7rem 0 4rem 0;
}
.sec02::before {
  content: '';
  width: min(13vw, 82px);
  height: min(12vw, 75px);
  display: block;
  background: url(img/downarrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  margin: auto;
}
.sec02 .secLead {
  display: flex;
  align-items: center;
  text-align: left;
  
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 5%;
  margin: 4rem auto 0 auto;
}
.feature dl {
  background: var(--color01);
  padding: 11% 1em 4% 1em;
  width: 100%;
  border: .11em solid var(--color02);
  border-radius: 5px;
  position: relative;
  margin-bottom: 4rem;
}
.feature dl:last-child {
  margin-bottom: 0;
}
@media (min-width: 860px) {
  .feature {
    flex-direction: row;
  }
  .feature dl {
    padding: 6% 1em 4% 1em;
    width: calc(100% / 3);
    margin-bottom: 0;
  }
}

.feature dl::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 50px;
  height: 50px;
  background: url(img/chk.svg) no-repeat center center var(--color02);
  border-radius: 50%;
}
.feature dl dt {
  text-align: center;
  font-weight: 700;
  font-size: min(4vw, 22px);
  line-height: 1.2;
  margin-bottom: 1em;
}
.feature dl dt img {
  display: block;
  margin: 0 auto 2rem auto;
  min-height: 87px;
}
.feature dl dd {
  text-align: center;
  font-size: min(4vw, 22px);
}
@media (min-width: 860px) {
  .feature dl dt {
    font-size: min(4vw, 16px);
  }
  .feature dl dd {
    text-align: justify;
    font-size: min(4vw, 16px);
  }
}

/* SEC03
__________________________________________________________________ */
.sec03 {
  background: var(--color04);
  padding: 2rem 0;
}
.specialist {
  display: flex;
  flex-direction: column;
  gap: 5%;
  margin: 0 auto 4rem auto;
}
.specialist .person {
  padding: 0;
  width: 100%;
  position: relative;
  margin-bottom: 4rem;
}
.specialist .person:last-child {
  margin-bottom: 0;
}
@media (min-width: 860px) {
  .specialist {
    flex-direction: row;
  }
  .specialist .person {
    width: calc(100% / 3);
    margin-bottom: 0;
  }
}
.person > img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.person dl dt {
  text-align: center;
  font-weight: 700;
  font-size: min(4vw, 22px);
  line-height: 1.2;
  margin-bottom: 1em;
}
.person dl dt img {
  display: block;
  margin: 0 auto 2rem auto;
  min-height: 87px;
}
.person dl dd {
  text-align: center;
  font-size: min(4vw, 22px);
}
@media (min-width: 860px) {
  .person dl dt {
    font-size: min(4vw, 16px);
  }
  .person dl dd {
    text-align: justify;
    font-size: min(4vw, 16px);
  }
}

/* SEC04
__________________________________________________________________ */
.sec04 {
  padding: 2rem 0;
}
.merits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.merits .merit {
  background: var(--color02);
  padding: 1.5em 1em 1.25em 1.5em;
  width: 100%;
  position: relative;
  border-radius: 5px;
}
@media (min-width: 860px) {
  .merits {
    flex-direction: row;
  }
  .merits .merit {
    width: calc(100% / 2 - .5rem);
    margin-bottom: 0;
  }
}
.merit dt {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.merit dt p {
  text-align: justify;
  font-size: min(4vw, 20px);
  color: var(--color01);
  font-weight: 400;
  line-height: 1.2;
}
.merit dt span {
  color: var(--color05);
}
.merit dt img {
  display: inline-block;
  margin-right: .5rem;
}
.merit dd {
  text-align: justify;
  color: var(--color01);
  font-size: min(3vw, 22px);
}
@media (min-width: 860px) {
  .merit dt {
    font-size: min(4vw, 16px);
  }
  .merit dd {
    text-align: justify;
    font-size: min(4vw, 16px);
  }
}

/* SEC05
__________________________________________________________________ */
.sec05 {
  background: var(--color04);
  padding: 2rem 0;
}
.sec05 .secInner {
  max-width: var(--width-full);
}
.sec05 .secInner .secContent {
  max-width: var(--width-full);
}
.process {
  display: flex;
  flex-direction: column;
  gap: 3%;
  margin: 4rem auto 0 auto;
  counter-reset: process 0;
}
@media (min-width: 860px) {
  .process {
    flex-direction: row;
  }
}
.process dl {
  background: var(--color01);
  padding: 11% 1em 2% 1em;
  width: 100%;
  border: .11em solid var(--color02);
  border-radius: 5px;
  position: relative;
  margin-bottom: 5rem;
}
.process dl:last-child {
  margin-bottom: 0;
}
.process dl:not(:last-child)::after {  
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(3vw, 18px);
  height: min(5vw, 28px);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf-8,<svg width="16" height="25" viewBox="0 0 16 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2463 12.5L0.758823 21.9875L3.46899 24.6977L15.6667 12.5L3.46899 0.302359L0.758823 3.01252L10.2463 12.5Z" fill="%232F2E2E"/></svg>');
  position: absolute;
  left: calc(50% - (min(3vw, 18px) / 2));
  top: calc(100% + 4.5%);
  transform: rotate(90deg);
}
@media (min-width: 860px) {
  .process dl {
    width: calc(100% / 4);
    margin-bottom: 0;
    padding: 4% 1em 2% 1em;
  }
  .process dl:not(:last-child)::after {
    left: calc(100% + 4.5%);
    top: calc(50% - 0.5em);
    transform: none;
  }
}
.process dl:nth-of-type(1) { background: rgba(239,229,74,.25); }
.process dl:nth-of-type(2) { background: rgba(239,229,74,.45); }
.process dl:nth-of-type(3) { background: rgba(239,229,74,.65); }
.process dl:nth-of-type(4) { background: rgba(239,229,74,.85); }


.process dl::before {
  counter-increment: process 1;
  content: counter(process) '';
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color01);
  line-height: 1;
  padding-bottom: .15em;
  width: 50px;
  height: 50px;
  background: var(--color02);
  border-radius: 50%;
}
.process dl dt {
  text-align: center;
  font-weight: 700;
  font-size: min(4vw, 20px);
  line-height: 1.2;
  margin-bottom: 1em;
  background: var(--color02);
  color: #fff;
  padding: .25em .5em;
  border-radius: 2em
}
.process dl dt img {
  display: block;
  margin: 0 auto 2rem auto;
  min-height: 87px;
}
.process dl dd {
  text-align: center;
  font-size: min(4vw, 22px);
}
@media (min-width: 860px) {
  .process dl dt {
    /* font-size: min(4vw, 16px); */
  }
  .process dl dd {
    font-size: min(4vw, 19px);
  }
}

/* SEC06 */
.sec06 {
  padding: 3rem 2rem;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(200, 200, 200, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 200, 0.4) 1px, transparent 1px);
  background-size: 25px 25px;
}
.supervisor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}


@media (min-width: 860px) {
  .supervisor {
    grid-template-columns: 480px 1fr;
    align-items: stretch;
    column-gap: 3rem;
    row-gap: 2.5rem;
  }
  .sv {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .comment {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .career-wrapper {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}
.career-wrapper { order: 3; }
.career-title {
  background-color: #6c757d;
  color: white;
  padding: 0.3rem 1rem;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0;
}
.career {
  background-color: #f8f9fa;
  padding: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.career p {
  font-size: 1.2rem;
}
.sv { order: 1; text-align: center; }
.sv img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 1.2rem;
}
.sv p:nth-of-type(1) {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .1em;
}
.sv p:nth-of-type(2) {
  font-size: 1rem;
  letter-spacing: .1em;
  color: #555;
  margin-top: 0.5rem;
}
.comment {
  order: 2;
  position: relative;
  background: #f7f7f7;
  border: 2px dotted #ccc;
  margin-bottom: 4rem;
  padding-left: 1.0rem;
  padding-right: 1.0rem;
  border-radius: 10px;
  line-height: 1.8;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.comment p {
  font-size: 1.3rem;
}

@media (min-width: 860px) {
  .comment::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #ccc transparent transparent;
  }
  .comment::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #f7f7f7 transparent transparent;
  }
}
/* SEC06_5
__________________________________________________________________ */
.sec06_5 {
  background: var(--color04);
  padding: 2rem 0;
}
.sec06_5 .industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.sec06_5 .industry-list span {
  font-size: min(4vw, 18px);
  font-weight: 700;
  padding: .5em 1.5em;
  color: var(--color02);
  background: var(--color01);
  border: 1px solid var(--color02);
  border-radius: 2em;
}

/* SEC07
__________________________________________________________________ */
.sec07 {
  background: var(--color03);
  padding: 2rem 0;
}
.faqList {
  width: 100%;
  margin: 0 auto 2em auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: .75em;
}
.faqList+p {
  font-size: min(3vw, 1rem);
  text-align: center;
}
.faqList dl {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0;
  background-color: var(--color01);
  letter-spacing: 0;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.faqList dl dt {
  display: grid;
  grid-template-columns: 1fr min(4vw, 1em);
  align-items: flex-start;
  padding: 1em 2vw;
  cursor: pointer;
}
.faqList dl dt::after {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(3vw, 12px);
  height: min(5vw, 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf-8,<svg width="16" height="25" viewBox="0 0 16 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2463 12.5L0.758823 21.9875L3.46899 24.6977L15.6667 12.5L3.46899 0.302359L0.758823 3.01252L10.2463 12.5Z" fill="%232F2E2E"/></svg>');
  transform: rotate(90deg) translate(5px, -5px);
  transition: all .1s ease;
}
.faqList dl.toggleOpen dt::after {
  transform: rotate(90deg) translate(5px, -5px) scale(-1, 1);
}
.faqList dl dt div {
  line-height: 1.4;
  user-select: none;
  letter-spacing: .05em;
  font-feature-settings: "palt" 1;
  font-size: min(4vw, 20px);
  font-weight: 400;
  padding: 0 2em 0 0;
  text-align: justify;
  color: #000;
  display: flex;
  align-items: center;
}
.faqList dl.toggleOpen dt div {
  font-weight: 700;
}
.faqList dl dd {
  display: none;
  padding: 0 2vw;
  width: 100%;
  font-size: min(3.75vmin, 1rem);
  background: var(--color04);
}
.faqList dl.toggleOpen dd {
  height: auto;
}
.faqList dl dd > div {
  line-height: 1.8;
  width: 100%;
  padding: 1em 1em 1em 0;

}
.faqList dl dd > div p {
  font-feature-settings: "palt" 1;
  font-size: min(5vw, 1rem);
  font-weight: 400;
}
.faqList dl dd > div p:empty {
  display: none !important;
}
.faqList dl dd > div p a {
  color: var(--color100);
  text-decoration: underline;
}
.faqList dl dd > div p a:hover {
  text-decoration: none;
}

/* SEC08
__________________________________________________________________ */
.sec08 {
  background: #e2e2e2;
  padding: 2rem 0;
}
.relatiionShip {
  display: flex;
  justify-content: center;
  gap: 5%;
}
.relatiionShip img {
  width: min(35vw, 240px);
}




/* CTA
__________________________________________________________________ */
.cta {
  width: 100%;
  background: url(img/bg-lines.png) repeat-y center center var(--color02);
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
.cta .secHeadline {
  font-size: min(6vw, 52px);
  font-weight: 700;
  color: var(--color01);
}
.cta .secLead {
  color: var(--color01);
}

.contactForm {
  background: var(--color01);
  border-radius: 20px;
  padding: 4vw;
  margin-bottom: 2rem;
}
.contactForm > form {
  visibility: visible;
  opacity: 1;
  text-align: left;
}
.contactForm > form.hide {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.contactForm > form .requireSign,
.error {
  color: #cc1939;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}
.contactForm > form > dl {
  width: 100%;
  padding-bottom: 1em;
}
.contactForm > form > dl dt {
  font-size: min(4vw, 16px);
  margin-bottom: .5em;
  text-align: left;
}
.contactForm > form > dl dd input,
.contactForm > form > dl dd textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e4e4e4;
  background: #fff;
  outline: none;
  font-size: 1.125rem;
  text-align: left;
}
.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 #cc1939;
  background: rgba(217, 33, 33, 0.25);
}
.contactForm > form > dl dd textarea {
  field-sizing: content;
  min-height: 6em;
}
.contactForm > .finish {
  font-size: min(4vw, 24px);
  padding: 0;
}
.contactForm > .finish p {
  margin-bottom: 3rem;
}


.btnWrap {
  display: flex;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.btnWrap .speechBubble {
  background: var(--color01);
  display: inline-block;
  width: fit-content;
  font-size: min(4vw, 18px);
  line-height: 1;
  padding: .35em 2em .45em 2em;
  border-radius: 2em;
  border: 1px solid #000;
  transform: translateY(.35em);
  position: relative;
}
.speechBubble::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #000 transparent transparent;
  translate: -50% 100%;
}
.speechBubble::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 8px 4px 0 4px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
}

.ctaInfo {
  text-align: center;
  color: var(--color01);
  font-size: min(4vw, 20px);
  letter-spacing: .05em;
}
.contactForm + .ctaInfo a {
  color: var(--color01);
  text-decoration: underline;
}
.contactForm + .ctaInfo a:hover {
  text-decoration: none;
}

.btn {
  background: linear-gradient(180deg, rgba(252,240,74,1), rgba(250,242,138,1));
  color: #000;
  font-size: min(4vw, 22px);
  font-weight: 700;
  padding: 1em 4em 1em 4em;
  border-radius: 10px;
  cursor: pointer;
}
.btn:hover {
  opacity: .75;
}
.btn.submit {
  display: flex;
  align-items: center;
  line-height: 1;
}
.sending {
  display: inline-block;
  margin-left: .5em;
  animation: sending .5s linear 0s infinite normal forwards;
  display: none;
}
@keyframes sending {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



.footer {
  background: #2f2e2e;
  color: var(--color01);
  text-align: center;
  font-size: min(4vw, 16px);
  padding: 3rem 0;
}
.footer .copyright {
  border-bottom: 1px solid #666;
  display: block;
  padding-bottom: 1em;
}
.footer .siteFuncs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  padding-top: 1em;
  row-gap: .5em;
}
@media (min-width: 860px) {
  .footer .siteFuncs {
    flex-direction: row;
    row-gap: 0;
  }
  .footer .siteFuncs li:not(:last-child)::after {
    content: '｜';
  }
}

.footer .siteFuncs a {
  padding: 0 .5em;
  color: var(--color01);
}







._sp { display: block!important; }
._pc { display: none!important; }
@media (min-width: 860px) {
  ._sp { display: none!important; }
  ._pc { display: block!important; }
}
