@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.fv {
  padding-top: 60px;
  box-sizing: border-box;
  position: relative;
}

.fv-cta {
  position: absolute;
  bottom: 12px;
  right: 20px;
  width: 36%;
}
@media screen and (max-width: 1024px) {
  .fv-cta {
    display: block;
    position: absolute;
    bottom: 12px;
    right: 20px;
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  .fv-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.fv-cta img {
  width: 100%;
  vertical-align: top;
}

.reason-01-2 {
  width: 100%;
}
.reason-01-2 img {
  width: 100%;
  vertical-align: top;
}

.fv-lineup {
  position: absolute;
  bottom: 0%;
  left: 5%;
}
@media screen and (max-width: 767px) {
  .fv-lineup {
    bottom: 15%;
    left: 3vw;
  }
}

.fv-lineup__list {
  display: flex;
  width: 100%;
}

.fv-lineup__item {
  width: auto;
}

.fv-lineup__link {
  display: block;
  height: clamp(1.75rem, -1.28rem + 4.73vw, 3.75rem);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .fv-lineup__link {
    height: 4.5vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-lineup__link {
    height: 7.9vw;
  }
}
.fv-lineup__link img {
  width: auto;
  height: 100%;
}

.fv-lineup__link:hover {
  opacity: 0.6;
}

.fixed-form__inner {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
}

.fixed-form__title {
  width: 100%;
  margin: auto;
}
.fixed-form__title img {
  width: 100%;
}

/* 追加のスタイルが必要な場合はここに記述 */
.form-container {
  border: 6px solid transparent; /* 初期状態では透明なボーダー */
  /*transition: border-color 0.3s ease-in-out; /* ボーダーの変化をアニメーション化 */
}

.cta {
  position: relative;
}

.cta__link {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .cta__link {
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .cta__link {
    bottom: 17%;
    left: 49%;
    width: 89%;
  }
}

.redBorder {
  border-color: red;
}

.cta__fixed {
  display: none;
}
@media screen and (max-width: 480px) {
  .cta__fixed {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(150px);
    z-index: 20;
  }
  .cta__fixed img {
    width: 100%;
    vertical-align: top;
  }
}

/*　上に上がる動き　*/
.cta__fixed.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.cta__fixed.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}
.cta__anime {
  overflow: hidden;
  transition: 0.3s;
}
.cta__anime ::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}

@keyframes shiny-btn1 {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.zisseki {
  position: relative;
}

.zisseki__slider {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
}
.zisseki__slider._01 {
  bottom: 54%;
}
@media screen and (max-width: 767px) {
  .zisseki__slider._01 {
    bottom: 55%;
  }
}

.zisseki__slider._02 {
  bottom: 20%;
}
@media screen and (max-width: 767px) {
  .zisseki__slider._02 {
    bottom: 16%;
  }
}

.zisseki__list {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .zisseki__list {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.zisseki__item {
  width: auto !important;
  height: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .zisseki__item {
    height: 30px;
  }
}
.zisseki__item img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .zisseki__item img {
    height: 30px;
  }
}

.contact {
  display: none;
}
@media screen and (max-width: 1024px) {
  .contact {
    display: block;
    background-color: #fcfcfc;
    width: 100%;
  }
}

.contact__inner {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 60px;
  padding-left: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.contact__title-wrap {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__title-wrap {
    width: 100%;
  }
}

.contact__title {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__title {
    width: 100%;
  }
}
.contact__title img {
  width: 100%;
}

.contact__txt {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .contact__txt {
    margin-top: 10px;
  }
}

/*hubspot*/
.inputs-list {
  display: flex;
}

.hs-form-required {
  color: #000;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  color: #333;
  background-color: #dcdcdc;
}

a {
  text-decoration: none;
  color: #333;
}

li {
  list-style: none;
}

.contents__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .contents__wrap {
    flex-direction: column;
  }
}

.main {
  width: calc(100% - 410px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main {
    width: 100%;
  }
}

.fixed-form {
  position: fixed;
  top: 60px;
  right: 0;
  width: 410px;
  height: calc(100% - 60px);
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  .fixed-form {
    display: none;
  }
}

.section__inner {
  width: 100%;
  margin: auto;
}
picture {
  width: 100%;
  display: block;
}
picture img {
  width: 100%;
  vertical-align: top;
}
picture source {
  width: 100%;
  vertical-align: top;
}

section, picture, img, source {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
.footer {
  width: 100%;
  background-color: #dcdcdc;
}

.footer__inner {
  padding-top: 25px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .footer__inner {
    padding-bottom: 140px;
    padding-top: 40px;
  }
}

.footer__link {
  font-size: 10px;
  color: #000;
  text-align: center;
  display: inline-block;
}

.footer__copyright {
  padding-top: 20px;
  font-size: 10px;
  color: #000;
  text-align: center;
  display: inline-block;
}

.header {
  width: 100%;
  height: 60px;
  background-color: gainsboro;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    display: flex;
    align-items: center;
  }
}

.header__inner {
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__logo {
  width: 180px;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__logo img {
  width: 100%;
}

.header__list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__list {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: unset;
    width: 80%;
  }
}

.header__item {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1024px) {
  .header__item {
    padding-bottom: 20px;
  }
}

.header__item._hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__item._hidden {
    display: block;
    padding-top: 0px;
    padding-bottom: 5px;
    padding-right: 5px;
    padding-left: 5px;
    width: 162px;
    background-color: #efd20c;
  }
}

.header__link {
  font-weight: bold;
  transition: 0.3s;
  font-size: clamp(0.75rem, 0.371rem + 0.59vw, 1rem);
}
@media screen and (max-width: 1024px) {
  .header__link {
    left: 10px;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .header__link::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    left: -30px;
    transform: translate(0%, -50%);
    z-index: 1;
    width: 15px;
    height: 1px;
    background-color: #000;
  }
}

@media screen and (max-width: 1024px) {
  .header__link._check::before {
    background-color: #efd20c;
  }
}

.header__link:hover {
  opacity: 0.7;
}

/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 1024px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 10;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 50%;
    height: 100vh; /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }
}
@media screen and (max-width: 767px) {
  #g-nav {
    width: 80%;
  }
}

/*アクティブクラスがついたら位置を0に*/
@media screen and (max-width: 1024px) {
  #g-nav.panelactive {
    right: 0;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .openbtn {
    display: block;
    position: fixed;
    z-index: 10; /*ボタンを最前面に*/
    top: 7px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
  }
}

/*×に変化*/
@media screen and (max-width: 1024px) {
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    right: 13px;
    height: 1px;
    border-radius: 0px;
    background-color: #000;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn small {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 0px;
    top: 36px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn span:nth-of-type(1) {
    top: 10px;
    width: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn span:nth-of-type(2) {
    top: 20px;
    width: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn span:nth-of-type(3) {
    top: 30px;
    width: 13px;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

.openbtn.active span:nth-of-type(3)::after {
  content: ""; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

.thanks {
  width: 100%;
  /*height: 80vh;*/
  padding-top: 60px;
}

.thanks__inner {
  margin-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .thanks__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.thanks__title {
  color: #000;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  line-height: 1.6;
   text-align: center;
}

.thanks__txt {
  color: #000;
  margin-top: 40px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 1.6;
   text-align: center;
}

.thanks__link {
  margin-top: 75px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  display: block;
  color: #000;
  transition: 0.3s;
  text-align: center;
}

.thanks__link:hover {
  opacity: 0.7;
}

.dl_btn {
  box-sizing: border-box;
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 360px;
  margin: 40px auto;
  padding: 2rem 4rem;
  font-weight: bold;
  font-size: 18px;
  border: 2px solid #EAD348;
  border-radius: 100vh;
  color: #fff;
  transition: 0.3s;
  background: #EAD348

}
.dl_btn:hover {
  color: #fff;
  background: #333;
  border: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .dl_btn {
    width: 100%;
  }
}
/* borderのアニメーション */
@keyframes blinkBorder {
  0% {
    border: 6px solid transparent;
  }
  100% {
    border: 6px solid red;
  }
}
.blink {
  animation: blinkBorder 1s ease 4 alternate;
}