@charset "UTF-8";
/*---------------------
 common
---------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  --color--black: #000;
  --color--white: #FFF;
  --color--main: #1a8cbb;
  --color--sub1: #40a72e;
  --color--sub2: #e56161;
  --color--sub3: #f88888;
  --color--bg: #ecf7fe;
  --color--lgray: #f4f4f4;
  --color--gray: #CCC;
  --color--dgray: #666;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: clamp(1.2em, 1.3vw, 1.3em);
  line-height: 1.8;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

section {
  position: relative;
}

.section_inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  color: var(--color--black);
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

figure {
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 767px) {
  .hide-sp {
    display: none;
  }
  figure {
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .show-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}
/*---------------------
 svg
---------------------*/
.svg-sprite {
  position: relative;
  z-index: -1;
  width: 0;
  height: 0;
  display: none;
}

/*---------------------
 header
---------------------*/
#gHeader {
  position: relative;
  transition: all linear 0.3s;
  background: var(--color--white);
}
#gHeader.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--color--white);
  animation: navIn 1s 0.5s forwards;
  transform: translate(0, -150px);
  z-index: 100;
}
#gHeader .section_inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}
#gHeader .section_inner .logo {
  margin: 0;
  display: block;
}
#gHeader .section_inner .menus {
  width: 100%;
}
#gHeader .section_inner .menus ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}
#gHeader .section_inner .menus ul li {
  margin-left: 20px;
}
#gHeader .section_inner .menus ul li .button {
  border-radius: 6px;
}
#gHeader .section_inner .toggler {
  display: none;
  z-index: 10;
}

@media (max-width: 768px) {
  #gHeader .section_inner {
    padding: 0 10px;
  }
  #gHeader .section_inner .menus {
    display: none;
  }
  #gHeader .section_inner .toggler {
    display: block;
    margin-top: 10px;
    width: 50px;
  }
  #gHeader .section_inner .toggler span {
    display: block;
    background: var(--color--main);
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: transform linear 0.2s;
  }
  #gHeader .section_inner .toggler span:nth-of-type(2) {
    width: 80%;
  }
  #gHeader .section_inner .toggler span:nth-of-type(3) {
    width: 60%;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(1), #gHeader .section_inner .toggler.is-active span:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
    width: 90%;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(2), #gHeader .section_inner .toggler.is-active span:nth-of-type(2) {
    display: none;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(3), #gHeader .section_inner .toggler.is-active span:nth-of-type(3) {
    display: none;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(4), #gHeader .section_inner .toggler.is-active span:nth-of-type(4) {
    transform: rotate(-45deg);
    width: 90%;
  }
}
@keyframes navIn {
  0% {
    transform: translate(0, -150px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------------
 button
---------------------*/
a.button {
  background: var(--color--sub) url(../img/bg_button.png) center;
  color: var(--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 10px 20px;
  font-size: clamp(1em, 1.2vw, 1.2em);
  font-weight: 700;
  transition: all linear 0.2s;
  font-family: "Noto Sans JP", serif;
}
a.button span {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/mail.svg);
  margin-left: 10px;
}
a.button:hover {
  transform: translateY(6px);
  box-shadow: none;
}

/*---------------------
 H
---------------------*/
h1,
h2 {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color--main);
  line-height: 1.6;
}

h1 {
  font-size: clamp(1.8em, 3vw, 3em);
}

h2 {
  font-size: clamp(1.8em, 3.2vw, 3.2em);
  margin: 0.4em auto 1.5em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
h2 span {
  font-size: 0.6em;
}

h3 {
  font-size: clamp(1.6em, 2.5vw, 2.5em);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
h3 span {
  font-size: 0.6em;
}

h4 {
  font-size: clamp(1.4em, 2.3vw, 2.3em);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
h4 span {
  font-size: 0.6em;
}

.lead {
  font-size: clamp(1em, 1.4vw, 1.4em);
}

/*---------------------------
 * flex-wrapper
 * -------------------------*/
.flex-wrapper.half,
.flex-wrapper.one-third,
.flex-wrapper.quarter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-wrapper.reverse {
  flex-direction: row-reverse;
}

.flex-wrapper.alignCenter {
  align-items: center;
}

.flex-wrapper.four:after {
  display: block;
  content: "";
  width: 24%;
}

.flex-wrapper .flex-one {
  width: 100%;
}

.flex-wrapper.half .flex-one {
  width: 48%;
}

.flex-wrapper.one-third .flex-one {
  width: 32%;
}

.flex-wrapper.quarter .flex-one {
  width: 48%;
}

.flex-wrapper.quarter .flex-three {
  width: 48%;
}

@media (min-width: 768px) {
  .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flex-wrapper.two .flex-one {
    width: 48%;
  }
  .flex-wrapper.three .flex-one {
    width: 31%;
  }
  .flex-wrapper.three .flex-two {
    width: 64%;
  }
  .flex-wrapper.four .flex-two {
    width: 48%;
  }
  .flex-wrapper.four .flex-one {
    width: 23%;
  }
  .flex-wrapper.four .flex-three {
    width: 72%;
  }
  .flex-wrapper.five .flex-one {
    width: 18%;
  }
  .flex-wrapper.six .flex-one {
    width: 15%;
  }
  .flex-wrapper.quarter .flex-one {
    width: 24%;
  }
  .flex-wrapper.quarter .flex-three {
    width: 72%;
  }
}
/*---------------------
 animate-title
---------------------*/
.animate-title,
.tween-animate-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  font-size: 2em;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------
 #hero
---------------------*/
#hero {
  background: var(--color--black);
  margin-bottom: 5vw;
}
#hero .hero_inner {
  padding: 0;
  margin: 0 auto;
  background: url(../img/mv_bg.png) repeat-x top center;
  background-size: cover;
  text-align: center;
  padding: 12vw 0;
}
#hero .hero_inner .catch {
  position: relative;
}
#hero .hero_inner .catch .button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all linear 0.2s;
}
#hero .hero_inner .catch .button:hover {
  transform: translate(-50%, 6px);
  box-shadow: none;
}

@media (max-width: 767px) {
  #hero .hero_inner .catch .button {
    bottom: 12px;
    width: 240px;
  }
}
/*---------------------
 main
---------------------*/
#sec_feature {
  margin-bottom: 6vw;
}
#sec_feature .section_inner .flex-wrapper.three .flex-one p {
  padding: 10px 1em;
  font-weight: 600;
}

@media (max-width: 767px) {
  #sec_feature {
    margin-bottom: 8vh;
  }
}
.bg_wrapper {
  background: url(../img/bg01_pc.png) center top;
}

#sec_padreview {
  margin-bottom: 6vw;
}
#sec_padreview .section_inner {
  text-align: center;
}
#sec_padreview .section_inner h2 {
  color: var(--color--sub1);
}
#sec_padreview .section_inner h3 {
  color: var(--color--main);
}
#sec_padreview .section_inner h3 span {
  color: var(--color--black);
}
#sec_padreview .section_inner .lead {
  font-weight: 600;
}

@media (max-width: 767px) {
  #sec_padreview {
    margin-bottom: 8vh;
  }
  #sec_padreview .section_inner h2 {
    display: block;
  }
  #sec_padreview .section_inner h2 span {
    display: block;
  }
  #sec_padreview .section_inner h3 {
    display: block;
  }
  #sec_padreview .section_inner h3 span:first-child {
    display: block;
  }
}
#sec_marketing {
  margin-bottom: 6vw;
}
#sec_marketing .section_inner .title {
  display: inline-block;
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  font-weight: 600;
  color: var(--color--sub1);
  margin-bottom: 1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec_marketing .section_inner .title:before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.4em;
  background: var(--color--sub1);
  transform: rotate(-30deg);
  margin: 0 20px 0 0;
}
#sec_marketing .section_inner .title:after {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.4em;
  background: var(--color--sub1);
  transform: rotate(30deg);
  margin: 0 20px 0 0;
}
#sec_marketing .section_inner h2 {
  color: var(--color--sub1);
  line-height: 1.4;
  margin: 0 auto 0;
  color: var(--color--black);
}
#sec_marketing .section_inner h2.blue {
  color: var(--color--main);
  margin-bottom: 1em;
}
#sec_marketing .section_inner h2.blue span {
  color: var(--color--black);
}
#sec_marketing .section_inner h3 {
  font-size: clamp(1.8em, 3.2vw, 3.2em);
  line-height: 1.4;
  margin: 0 auto 0;
}
#sec_marketing .section_inner h3.bk {
  margin-bottom: 1em;
}
#sec_marketing .section_inner .flex-wrapper {
  align-items: center;
}
#sec_marketing .section_inner .flex-wrapper h4 {
  margin: 10px 0 20px;
  text-align: left;
  display: block;
  color: var(--color--sub1);
}
#sec_marketing .section_inner .flex-wrapper h4 span {
  color: var(--color--black);
}
#sec_marketing .section_inner .flex-wrapper .lead strong {
  font-weight: 600;
  color: var(--color--sub1);
}

@media (max-width: 767px) {
  #sec_marketing {
    margin-bottom: 8vh;
  }
  #sec_marketing .section_inner .title {
    font-size: clamp(1.2em, 1.8vw, 1.8em);
  }
  #sec_marketing .section_inner h2.blue {
    display: block;
  }
  #sec_marketing .section_inner h2.blue span {
    display: block;
  }
  #sec_marketing .section_inner h3 {
    font-size: clamp(1.5em, 3.2vw, 3.2em);
    text-align: center;
  }
  #sec_marketing .section_inner h3.bk {
    margin-bottom: 1em;
    display: block;
  }
  #sec_marketing .section_inner h3 span {
    display: block;
  }
  #sec_marketing .section_inner .flex-wrapper h4 span {
    display: block;
  }
  #sec_marketing .section_inner .flex-wrapper .lead {
    font-size: 0.9em;
  }
}
#sec_voice {
  padding: 6vw 0;
  background: url(../img/bg02_pc.png) center top;
}
#sec_voice .section_inner h2 {
  color: var(--color--black);
  margin-bottom: 10px;
  line-height: 1;
}
#sec_voice .section_inner h3 {
  margin: 0.5em 0 2em 0;
}
#sec_voice .section_inner h3 span {
  color: var(--color--black);
}
#sec_voice .section_inner .box {
  background: var(--color--white);
  padding: 1em;
  border-radius: 60px 0 0 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2em;
}
#sec_voice .section_inner .box .flex-wrapper .flex-text {
  width: 54%;
  padding-left: 10px;
}
#sec_voice .section_inner .box .flex-wrapper .flex-text h4 {
  margin: 0.3em 0 0.2em;
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  text-align: left;
  justify-content: start;
  color: var(--color--main);
}
#sec_voice .section_inner .box .flex-wrapper .flex-text h4 span {
  color: var(--color--black);
}
#sec_voice .section_inner .box .flex-wrapper .flex-text p {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0;
}
#sec_voice .section_inner .box .flex-wrapper .flex-text span.tag {
  display: inline-block;
  font-size: clamp(0.8em, 0.9vw, 0.9em);
  font-weight: 600;
  color: var(--color--white);
  background: var(--color--sub3);
  padding: 4px 20px;
  border-radius: 20px;
}
#sec_voice .section_inner .box .flex-wrapper .flex-image {
  width: 40%;
  text-align: center;
}

@media (max-width: 1000px) {
  #sec_voice {
    margin-bottom: 8vh;
  }
  #sec_voice .section_inner h3 {
    margin: 0.5em 0 1em 0;
  }
  #sec_voice .section_inner .box {
    border-radius: 30px 0 0 0;
  }
  #sec_voice .section_inner .box .flex-wrapper .flex-text {
    width: 100%;
  }
  #sec_voice .section_inner .box .flex-wrapper .flex-text p {
    margin-bottom: 1em;
  }
  #sec_voice .section_inner .box .flex-wrapper .flex-image {
    width: 100%;
  }
}
#sec_graph {
  margin-bottom: 6vw;
}
#sec_graph .section_inner h2 {
  color: var(--color--sub1);
  line-height: 1.4;
  margin: 0 auto 0;
}
#sec_graph .section_inner h2 span {
  color: var(--color--black);
  font-size: 0.8em;
}
#sec_graph .section_inner h2.green {
  color: var(--color--sub1);
  margin-bottom: 1em;
}
#sec_graph .section_inner h2.green span {
  color: var(--color--black);
}
#sec_graph .section_inner .box {
  background: var(--color--white);
  padding: 2em;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}
#sec_graph .section_inner .box h3 {
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  line-height: 1.4;
  margin: 0 auto 1em;
}

@media (max-width: 767px) {
  #sec_graph {
    margin-bottom: 6vw;
  }
  #sec_graph .section_inner h2 {
    display: block;
  }
  #sec_graph .section_inner h2 span {
    display: block;
  }
  #sec_graph .section_inner h2.green {
    color: var(--color--sub1);
    margin-bottom: 1em;
  }
  #sec_graph .section_inner h2.green span {
    color: var(--color--black);
  }
  #sec_graph .section_inner .box {
    background: var(--color--white);
    padding: 2em 1em;
    border-radius: 20px;
  }
  #sec_graph .section_inner .box h3 {
    font-size: clamp(1.3em, 2.2vw, 2.2em);
    text-align: left;
    text-indent: -2em;
    padding-left: 2em;
  }
}
#sec_cta {
  padding: 6vw 0;
  background: url(../img/bg_contact_pc.png) center;
  background-size: cover;
}
#sec_cta .section_inner h2 {
  color: var(--color--white);
  line-height: 1.4;
}
#sec_cta .section_inner h3 {
  color: var(--color--white);
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  margin: 0 auto 1em;
  text-align: center;
}
#sec_cta .section_inner .button {
  display: block;
  background: var(--color--white);
  color: var(--color--black);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-size: clamp(1.4em, 2vw, 2em);
  padding: 1em;
  border-radius: 10px;
}

@media (max-width: 767px) {
  #sec_cta .section_inner h3 {
    text-align: left;
  }
  #sec_cta .section_inner .button {
    display: block;
    background: var(--color--white);
    color: var(--color--black);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    font-size: clamp(1.4em, 2vw, 2em);
    padding: 1em;
    border-radius: 10px;
  }
}
#sec_flow {
  padding: 6vw 0;
  background: url(../img/bg03_pc.png) top center;
}
#sec_flow .section_inner h2 {
  color: var(--color--black);
  margin-bottom: 10px;
  line-height: 1;
}
#sec_flow .section_inner h3 {
  margin: 0 0 2em 0;
}
#sec_flow .section_inner h3 span {
  color: var(--color--black);
}
#sec_flow .section_inner .button {
  display: block;
  background: linear-gradient(to bottom, #23aae2 50%, #1a8cbb 50%);
  color: var(--color--white);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1em, 2.2vw, 2.2em);
  padding: 0.8em;
  border-radius: 10px;
}
#sec_flow .section_inner .box {
  background: var(--color--white);
  padding: 3em 1em 2em 2em;
  border-radius: 60px 0 0 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
  margin: 0 auto 4em;
  position: relative;
}
#sec_flow .section_inner .box .icon {
  position: absolute;
  top: -25px;
  left: 35px;
}
#sec_flow .section_inner .box .flex-wrapper .flex-one h3 {
  margin: 0.3em 0 0.2em;
  font-size: clamp(1.3em, 1.8vw, 2.8em);
  text-align: left;
  justify-content: start;
  color: var(--color--main);
}
#sec_flow .section_inner .box .flex-wrapper .flex-one h3 span {
  color: var(--color--black);
}
#sec_flow .section_inner .box .flex-wrapper .flex-one p {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0;
}
#sec_flow .section_inner .box .flex-wrapper .flex-one.image {
  text-align: center;
}

@media (max-width: 767px) {
  #sec_flow {
    padding: 6vh 0;
  }
  #sec_flow .section_inner h2 {
    margin-bottom: 0;
  }
  #sec_flow .section_inner .box {
    margin: 0 auto 2.5em;
    padding: 3em 1em 2em 1em;
  }
  #sec_flow .section_inner .box .flex-wrapper .flex-one p {
    margin-bottom: 1em;
  }
}
#sec_faq {
  padding: 6vw 0;
}
#sec_faq .section_inner h2 {
  color: var(--color--black);
  margin-bottom: 10px;
  line-height: 1;
}
#sec_faq .section_inner h3 {
  margin: 0 0 2em 0;
}
#sec_faq .section_inner h3 span {
  color: var(--color--black);
}
#sec_faq .section_inner .box {
  background: var(--color--white);
  padding: 1.5em;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto 1em;
  position: relative;
  border: 2px dashed var(--color--main);
}
#sec_faq .section_inner .box h4 {
  background: url(../img/icon_q.png) no-repeat left center;
  text-align: left;
  display: block;
  font-size: clamp(1em, 1.5vw, 1.5em);
  color: var(--color--main);
  margin: 0;
  min-height: 60px;
  padding: 10px 0 0 70px;
}
#sec_faq .section_inner .box p {
  margin-bottom: 0;
  margin-left: 70px;
}

@media (max-width: 767px) {
  #sec_faq {
    padding: 6vh 0;
  }
  #sec_faq .section_inner .box {
    padding: 1em;
    border-radius: 15px;
    margin: 0 auto 1em;
  }
  #sec_faq .section_inner .box p {
    margin-left: 0;
  }
}
#sec_contact {
  padding: 6vw 0;
  background: var(--color--bg);
}
#sec_contact .section_inner h2 {
  color: var(--color--black);
  margin-bottom: 5px;
  line-height: 1;
}
#sec_contact .section_inner h3 {
  margin: 0 0 2em 0;
}
#sec_contact .section_inner h3 span {
  color: var(--color--black);
}
#sec_contact .section_inner .box {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color--white);
  padding: 2em;
  text-align: left;
}
#sec_contact .section_inner .box h4 {
  font-size: clamp(1em, 1.3vw, 1.3em);
  font-weight: 400;
  text-align: left;
  justify-content: start;
  margin: 40px 0 10px 0;
}
#sec_contact .section_inner .box h4 .require {
  background: red;
  color: var(--color--white);
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 10px;
}
#sec_contact .section_inner .box textarea {
  margin-bottom: 2em;
}

@media (max-width: 767px) {
  #sec_contact {
    padding: 6vw 0;
    background: var(--color--bg);
  }
  #sec_contact .section_inner .box {
    padding: 1em;
  }
  #sec_contact .section_inner .box h4 {
    margin: 25px 0 10px 0;
  }
}
/*---------------------
 banner
---------------------*/
.banner {
  text-align: center;
  margin-bottom: 6vw;
}

/*---------------------
 .btn
---------------------*/
.btn {
  display: inline-block;
  background: var(--color--sub1);
  color: var(--color--white);
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  margin: 30px 0 10px;
}

table {
  width: 100%;
  margin: 30px 0;
}

table th {
  width: 25%;
  padding: 10px;
  border: 1px solid #CCC;
  text-align: left;
}

table td {
  padding: 10px;
  border: 1px solid #CCC;
}

/*---------------------
 input
---------------------*/
input[type=text], input[type=email] {
  padding: 0.5em;
  border: 1px solid #CCC;
  border-radius: 6px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

textarea {
  padding: 0.5em;
  border: 1px solid #CCC;
  border-radius: 6px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

input[type=submit] {
  background: var(--color--sub1);
  color: var(--color--white);
  width: 300px;
  padding: 12px 10px;
}

input[type=button] {
  background: var(--color--dgray);
  color: var(--color--white);
  width: 300px;
  padding: 12px 10px;
}

/*---------------------
 footer
---------------------*/
#footer {
  background: #23aae2;
  padding: 4vw 0;
}
#footer .logoArea {
  background: #cdcdcd;
  padding: 10px;
  text-align: center;
}
#footer ul {
  padding: 10px 0;
  margin: 0;
}
#footer ul.menu {
  display: flex;
  list-style: none;
  justify-content: center;
}
#footer ul.menu li a {
  display: block;
  color: var(--color--white);
  padding: 20px;
}
#footer .copyright {
  font-size: 0.9em;
  padding: 20px auto;
  color: var(--color--white);
  text-align: center;
}
#footer .copyright figure {
  text-align: center;
  padding: 5px 0;
  margin: 0 auto;
}
#footer .copyright figure img {
  max-width: 320px;
}

@media (max-width: 1199px) {
  #footer ul {
    padding: 15px 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  #footer ul.menu {
    display: block;
  }
  #footer ul.menu li {
    width: 100%;
    border-bottom: 1px solid var(--color--gray);
  }
  #footer ul.menu li a {
    padding: 10px 0;
  }
  #footer .copyright figure img {
    max-width: 180px;
  }
}
.fixed_button {
  position: fixed;
  right: 10px;
  bottom: 30px;
  background: var(--color--white);
  padding: 15px 20px 30px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
}
.fixed_button h5 {
  font-size: clamp(1.2em, 1.3vw, 1.3em);
  margin: 0 0 10px 0;
}
.fixed_button img {
  box-shadow: 5px 14px 0 var(--color--black);
  transition: all linear 0.2s;
  border-radius: 10px;
}
.fixed_button:hover img {
  transform: translateY(14px);
  box-shadow: none;
}

@media (max-width: 767px) {
  .fixed_button {
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
    text-align: center;
  }
  .fixed_button h5 {
    margin-bottom: 5px;
  }
  .fixed_button img {
    width: 100px;
    box-shadow: 4px 10px 0 var(--color--black);
  }
  .fixed_button:hover img {
    transform: translateY(14px);
    box-shadow: none;
  }
}
/*----------------------------
* スマホメニュー
*----------------------------*/
#navAll {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color--white);
}
#navAll .menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: var(--color--main);
  box-sizing: border-box;
}

/* アニメーション前のメニューの状態 */
#navAll {
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
#navAll ul {
  list-style: none;
  padding: 0;
}
#navAll ul li a {
  display: block;
  font-weight: 600;
  margin: 20px 0;
}

/* アニメーション後のメニューの状態 */
#navAll.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
@media (min-width: 768px) {
  .nav-wrapper {
    display: none;
  }
}
.hamburger {
  position: absolute;
  right: 10px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 50px;
  height: 3px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 15px;
}

.hamburger__line--3 {
  top: 30px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  top: -500px;
  /*ハンバーガーがクリックされる前はWindow上部に隠す*/
  left: 0;
  width: 100%;
  /* 出てくるスライドメニューの幅 */
  height: auto;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}

/*ハンバーガーがクリックされたら上からスライド*/
.open .sp-nav {
  top: 0;
}

.sp-nav ul {
  list-style: none;
  padding: 30px;
}

.sp-nav ul li {
  margin: 30px 0 0;
}
.sp-nav ul li .button {
  padding: 15px;
  border-radius: 6px;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */