@charset "UTF-8";
/*---------------------
 common
---------------------*/
html {
  font-family: "Zen Maru Gothic", serif;
  --color--black: #000;
  --color--white: #FFF;
  --color--main: #2bad03;
  --color--sub: #ed7413;
  --color--su2: #8ab3f5;
  --color--text: #333333;
  --color--bg: #fff9ea;
  --color--bg2: #ffeaa4;
  --color--lgray: #f4f4f4;
  --color--gray: #CCC;
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
  color: var(--color--text);
  font-size: 1em;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color--bg);
}
body p {
  font-size: 1.3em;
  line-height: 1.8;
}

img {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

section {
  position: relative;
}

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

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

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

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

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

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

/*---------------------
 タブ
---------------------*/
.tab-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0;
}
.tab-list .tab-list-item {
  text-align: center;
  width: 32%;
  background-color: #eee;
  padding: 20px 10px;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
  font-size: 1.1em;
}

.tab-list-item.active {
  background-color: #facd20;
}

.tab-contents-item {
  display: none;
}

.tab-contents-item.show {
  display: block;
}

@media (max-width: 767px) {
  .tab-list {
    margin: 20px auto 0;
  }
  .tab-list .tab-list-item {
    width: 33%;
    padding: 10px 5px;
    font-size: 0.9em;
  }
}
/*---------------------
 header
---------------------*/
#gHeader {
  position: relative;
  transition: all linear 0.3s;
  width: 100%;
  margin: 0 auto;
}
#gHeader h1 {
  font-size: clamp(1.3em, 1.5vw, 1.5em);
}
#gHeader h1 a {
  color: var(--color--main);
}
#gHeader .pc-nav ul {
  display: flex;
  font-weight: 600;
  justify-content: space-between;
}
#gHeader .pc-nav ul li {
  padding: 0 10px;
}
#gHeader .pc-nav ul.sns {
  justify-content: end;
  margin: 30px 0;
}
#gHeader .pc-nav ul.sns li {
  margin-left: 20px;
}
#gHeader .pc-nav ul.sns li.tel a {
  display: inline-block;
  font-size: 1.5em;
  background: url(../img/icon_tel.svg) no-repeat center left;
  background-size: 30px;
  padding-left: 35px;
}
#gHeader .pc-nav ul.sns li img {
  width: 30px;
}
#gHeader.fixed {
  position: fixed;
  background: var(--color--bg);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  animation: navIn 1s 0.5s forwards;
  transform: translate(0, -150px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#gHeader .section_inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#gHeader .section_inner h1 {
  line-height: 1;
  margin: 20px 0;
}
#gHeader .section_inner .menus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#gHeader .section_inner .menus ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 10px 10px 0 0;
  padding: 0;
}
#gHeader .section_inner .menus ul li {
  border-right: 1px solid var(--color--black);
}
#gHeader .section_inner .menus ul li a {
  padding: 5px 20px;
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}
#gHeader .section_inner .button {
  box-shadow: none;
  background: var(--color--bg2);
  color: var(--color--white);
  text-align: center;
  padding: 10px 60px;
  margin: 10px 0;
  font-size: clamp(1.1em, 1.6vw, 1.6em);
}
#gHeader .section_inner .button:hover {
  transform: none;
}
#gHeader .section_inner .toggler {
  display: none;
  z-index: 2;
}

@media (max-width: 960px) {
  #gHeader .section_inner {
    flex-wrap: wrap;
  }
  #gHeader .section_inner .toggler {
    display: block;
    margin-top: 0;
    width: 60px;
  }
  #gHeader .section_inner .toggler span {
    display: block;
    background: var(--color--main);
    width: 100%;
    height: 3px;
    margin: 8px 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%;
  }
  #gHeader .pc-nav {
    width: 280px;
  }
  #gHeader .pc-nav ul.sns {
    justify-content: start;
  }
  #gHeader .pc-nav ul.sns li {
    padding: 0;
  }
  #gHeader .pc-nav ul.sns li.tel {
    padding: 0;
  }
  #gHeader .pc-nav ul.sns li.tel a {
    width: 35px;
    text-indent: -99999px;
    background-size: 35px;
    padding-left: 0;
  }
  #gHeader .pc-nav ul.sns li img {
    width: 30px;
  }
  #gHeader .pc-nav ul.navigation {
    display: none;
  }
  #gHeader.fixed .logo {
    display: none;
  }
  #gHeader.fixed .pc-nav ul.sns {
    margin-top: 30px;
  }
  #gHeader.fixed .pc-nav ul.navigation {
    display: none;
  }
}
@keyframes navIn {
  0% {
    transform: translate(0, -150px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------------
 button
---------------------*/
a.button {
  background: var(--color--bg2) url(../img/arrow_down.svg) no-repeat center right 20px;
  background-size: 30px;
  color: var(--color--balck);
  text-align: center;
  padding: 10px 20px;
  display: block;
  border-radius: 10px;
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  font-weight: 700;
  transition: all linear 0.2s;
}
a.button:hover {
  transform: translateY(-14px);
  box-shadow: none;
}

/*---------------------
 H
---------------------*/
h1,
h2,
h3,
h4 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
}

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

h2 {
  font-size: clamp(1.6em, 2.7vw, 2.7em);
  line-height: 1;
  margin-top: 0.4em;
}

h3 {
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  color: var(--color--sub);
}
h3.subtitle {
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  color: var(--color--text);
  text-align: center;
}
h3.subtitle.asCase {
  display: inline-block;
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  position: relative;
  margin-bottom: 0;
}
h3.subtitle.asCase:before {
  position: absolute;
  content: "";
  left: -20px;
  top: 5px;
  width: 2px;
  height: 30px;
  background: var(--color--text);
  transform: rotate(-30deg);
}
h3.subtitle.asCase:after {
  position: absolute;
  content: "";
  right: -20px;
  top: 5px;
  width: 2px;
  height: 30px;
  background: var(--color--text);
  transform: rotate(30deg);
}

/*---------------------------
 * 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.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.one-third .flex-two {
  width: 64%;
}

.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%;
  }
}
/*---------------------
 table
---------------------*/
.table_wrapper {
  overflow-y: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  border: #CCC 3px solid;
  background: var(--color--white);
}

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

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

/*---------------------
 ul
---------------------*/
ul.check {
  list-style: none;
  padding: 0 0 2em 0;
  font-size: clamp(1.1em, 1.4vw, 1.4em);
  font-weight: 600;
}
ul.check li {
  padding: 8px 0;
  background: url(../img/icon_check.svg) no-repeat center left;
  background-size: 25px;
  padding-left: 35px;
}

/*---------------------
 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-size: cover;
  padding: 0 20px;
  margin-bottom: 5vw;
}
#hero .hero_inner {
  max-width: 1140px;
  margin: 0 auto;
}
#hero .hero_inner article {
  padding-top: 4vw;
  font-size: clamp(1.2em, 1.8vw, 1.8em);
}
#hero .hero_inner article .catct {
  display: flex;
  justify-content: center;
}
#hero .hero_inner article .catct .catch_line1 {
  color: var(--color--main);
  writing-mode: vertical-rl;
}
#hero .hero_inner article .catct .catch_line2 {
  writing-mode: vertical-rl;
  font-size: clamp(1.5em, 2.2vw, 2.2em);
}

@media (max-width: 767px) {
  #hero {
    background: url(../img/hero_bg_sp.png) top 200px center no-repeat;
  }
  #hero .hero_inner article {
    font-size: clamp(1.1em, 1.5vw, 1.5em);
    font-weight: 600;
  }
  #hero .hero_inner article .catct {
    display: flex;
  }
  #hero .hero_inner article figure {
    text-align: center;
    margin-top: 20vh;
  }
}
@media (min-width: 768px) {
  #hero .hero_inner article {
    display: flex;
    flex-direction: row-reverse;
  }
}
/*---------------------
 main
---------------------*/
/*---------------------
 #sec_solution
---------------------*/
section#sec_solution {
  padding: 0 0 8vw;
}
section#sec_solution .arrow {
  text-align: center;
  padding: 15px 0;
}
section#sec_solution h2 {
  text-align: center;
  color: var(--color--main);
  font-size: clamp(1.2em, 2vw, 2em);
}
section#sec_solution h2 strong {
  font-weight: 600;
  color: var(--color--sub);
  font-size: 1.4em;
}
section#sec_solution h3 {
  color: var(--color--black);
  font-size: clamp(1.8em, 2.4vw, 2.4em);
  margin-bottom: 0;
}
section#sec_solution h3 strong {
  font-weight: 600;
  color: var(--color--sub);
}
section#sec_solution p.lead {
  text-align: center;
  margin-bottom: 4vw;
  font-weight: 600;
  font-size: clamp(1.1em, 1.6vw, 1.6em);
}
section#sec_solution figure {
  text-align: center;
}
section#sec_solution .font-green {
  text-align: center;
  font-size: clamp(1.8em, 2.4vw, 2.4em);
  color: var(--color--main);
  font-weight: 600;
}
section#sec_solution .catch {
  text-align: center;
  margin: 0.7em auto;
  line-height: 1;
}
section#sec_solution .catch strong {
  color: var(--color--sub);
  display: inline-block;
  border-bottom: 3px solid var(--color--sub);
}
section#sec_solution .banner {
  padding: 30px 0;
  max-width: 640px;
  margin: 0 auto;
}
section#sec_solution .banner img {
  margin: -20px 0;
}

@media (min-width: 768px) {
  section#sec_solution .catch {
    display: inline-block;
  }
}
/*---------------------
 #sec_message
---------------------*/
section#sec_message {
  padding: 4vw;
}
section#sec_message h2 {
  color: var(--color--main);
  line-height: 1.5;
  margin-top: 8px;
}
section#sec_message .baloon {
  position: relative;
  background: var(--color--main);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--color--white);
  font-weight: 600;
  font-size: clamp(1.1em, 1.4vw, 1.4em);
  margin-bottom: 10px;
}
section#sec_message .baloon::after {
  position: absolute;
  content: "";
  bottom: -18px;
  left: 30px;
  border-top: 30px solid var(--color--main);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: rotate(40deg);
}
section#sec_message p {
  font-size: clamp(1.1em, 1.3vw, 1.3em);
  margin-bottom: 2em;
}

/*---------------------
 #sec_service
---------------------*/
section#sec_service h2 {
  text-align: center;
}
section#sec_service h3 {
  text-align: center;
  margin: 10px 0 0 0;
  font-size: clamp(1.8em, 2.4vw, 2.4em);
  line-height: 1;
}
section#sec_service ol.point {
  padding: 0;
}
section#sec_service ol.point li {
  font-size: clamp(1.2em, 1.8vw, 1.8em);
  font-weight: 600;
  padding: 13px 0;
  list-style: none;
  background: url(../img/check1.png) left center no-repeat;
  padding-left: 55px;
}
section#sec_service ol.point li:nth-child(2) {
  background: url(../img/check2.png) left center no-repeat;
}
section#sec_service ol.point li:nth-child(3) {
  background: url(../img/check3.png) left center no-repeat;
}
section#sec_service ol.point li:nth-child(4) {
  background: url(../img/check4.png) left center no-repeat;
}
section#sec_service ol.point li:nth-child(5) {
  background: url(../img/check5.png) left center no-repeat;
}
section#sec_service ol.point li:nth-child(6) {
  background: url(../img/check6.png) left center no-repeat;
}
section#sec_service ol.point li:nth-child(7) {
  background: url(../img/check7.png) left center no-repeat;
}
section#sec_service article {
  padding-top: 2vh;
}
section#sec_service article h3 {
  line-height: 1.5;
}

@media (min-width: 768px) {
  section#sec_service ol.point {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#sec_service ol.point li {
    width: 48%;
  }
}
/*---------------------
 #sec_plan
---------------------*/
section#sec_plan {
  padding: 4vh 0;
}
section#sec_plan h2 {
  text-align: center;
}
section#sec_plan .lead {
  font-size: clamp(1.1em, 1.4vw, 1.4em);
  font-weight: 600;
  text-align: center;
}
section#sec_plan .lead strong {
  color: var(--color--sub);
  font-weight: 600;
}
section#sec_plan .flex-wrapper {
  font-size: 1.2em;
  font-weight: 600;
  border: 2px solid var(--color--main);
  border-radius: 12px;
  background: var(--color--white);
  margin-bottom: 1em;
}
section#sec_plan .flex-wrapper .flex-one {
  background: var(--color--main);
  display: flex;
  color: var(--color--white);
  text-align: center;
  justify-content: center;
  align-items: center;
}
section#sec_plan .flex-wrapper .flex-two {
  text-align: center;
  padding: 20px;
}
section#sec_plan .flex-wrapper .flex-two .price {
  display: flex;
  align-items: center;
  justify-content: center;
}
section#sec_plan .flex-wrapper .flex-two .price strong {
  color: var(--color--sub);
  font-size: 2em;
  line-height: 1;
}
section#sec_plan .flex-wrapper .flex-two .label {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--color--main);
  color: var(--color--white);
  line-height: 1;
  font-size: 0.9em;
  font-weight: 400;
}
section#sec_plan h3 {
  color: var(--color--main);
  font-size: clamp(1.3em, 1.5vw, 1.5em);
  line-height: 1;
}
section#sec_plan h3 + p {
  font-size: 1.1em;
}

@media (min-width: 768px) {
  section#sec_plan .flex-wrapper .flex-one br {
    display: none;
  }
  section#sec_plan .flex-wrapper .flex-two {
    display: flex;
    align-items: center;
  }
  section#sec_plan .flex-wrapper .flex-two .price {
    padding: 0 5px;
  }
}
/*---------------------
 #sec_campaign
---------------------*/
section#sec_campaign {
  padding: 4vh 0;
}
section#sec_campaign .section_inner {
  max-width: 1000px;
}
section#sec_campaign .section_inner h2 {
  text-align: center;
  color: var(--color--main);
}
section#sec_campaign .section_inner .price {
  font-size: clamp(1.3em, 1.8vw, 1.8em);
}
section#sec_campaign .section_inner .price strong {
  font-size: 1.4em;
}

/*---------------------
 #sec_profile
---------------------*/
section#sec_profile {
  padding: 4vh 0;
}
section#sec_profile figure {
  text-align: center;
}
section#sec_profile h2 {
  text-align: center;
  line-height: 1.4;
  font-size: clamp(1.6em, 2vw, 2em);
}
section#sec_profile h2 span {
  font-size: 0.7em;
}
section#sec_profile p {
  padding: 0 4vw;
}

/*---------------------
 #sec_faq
---------------------*/
section#sec_faq {
  padding: 4vh 0;
}
section#sec_faq h2 {
  text-align: center;
  color: var(--color--main);
  font-size: clamp(2em, 2.8vw, 2.8em);
}
section#sec_faq article {
  margin: 3vw auto;
  background: var(--color--white);
  padding: 20px;
  border-radius: 10px;
}
section#sec_faq article h3 {
  color: var(--color--main);
  margin: 0 0 10px 0;
}
section#sec_faq article h3 span {
  font-size: 1.8em;
  font-weight: 600;
}
section#sec_faq article p {
  margin: 0;
  font-size: 1.2em;
}

/*---------------------
 #sec_contact
---------------------*/
section#sec_contact {
  padding: 6vw 0;
}
section#sec_contact h2 {
  display: inline-block;
  text-align: center;
  color: var(--color--main);
  font-size: clamp(2em, 2.8vw, 2.8em);
  background: url(../img/title_contact_bg.png) repeat-x bottom center;
  padding-bottom: 15px;
  margin-bottom: 0;
}
section#sec_contact p.lead {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.2em, 1.5vw, 1.5em);
}
section#sec_contact .form_item {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 20px;
}
section#sec_contact .form_item h4 {
  margin-bottom: 10px;
}
section#sec_contact .form_item span.require {
  display: inline-block;
  padding: 1px 5px;
  text-align: center;
  background: #cc0000;
  color: var(--color--white);
  font-size: 12px;
  border-radius: 3px;
}
section#sec_contact .form_item span.option {
  display: inline-block;
  padding: 1px 5px;
  text-align: center;
  background: #999;
  color: var(--color--white);
  font-size: 12px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  section#sec_contact .form_item {
    font-size: 1.1em;
  }
  section#sec_contact .form_item h4 {
    font-size: 1.2em;
  }
}
/*---------------------
 #sec_thanks
---------------------*/
section#sec_thanks {
  height: 80vh;
  padding-top: 6vw;
}
section#sec_thanks h2 {
  text-align: center;
  background: url(../img/script_contact.png) no-repeat top 60% right 30%;
  padding: 30px 0 70px;
}
section#sec_thanks p {
  text-align: center;
}

@media (max-width: 767px) {
  section#sec_thanks {
    height: 60vh;
  }
  section#sec_thanks h2 {
    background-size: 280px;
  }
  section#sec_thanks p {
    text-align: left;
  }
}
/*---------------------
 footer
---------------------*/
footer {
  background: var(--color--bg2);
  padding: 2vw 0;
}
footer .flex-wrapper {
  align-items: center;
}
footer .flex-wrapper .logoArea {
  align-items: center;
}
footer .flex-wrapper ul {
  margin: 0;
  font-size: clamp(1.1em, 1.2vw, 1.2em);
}
footer .flex-wrapper ul.menu {
  display: flex;
  list-style: none;
  justify-content: center;
}
footer .flex-wrapper ul.menu li {
  display: block;
  color: var(--color--white);
  padding: 20px;
}

.copyright {
  font-size: clamp(1.1em, 1.2vw, 1.2em);
  padding: 2vh 20px;
  text-align: center;
}

@media (max-width: 767px) {
  footer ul {
    padding: 0 0 15px 0;
  }
  footer ul.nav {
    display: block;
  }
  footer ul.nav li {
    list-style: none;
    width: 100%;
  }
  footer ul.nav li a {
    display: block;
    padding: 7px;
    border-bottom: 1px solid var(--color--gray);
  }
  footer .logo {
    margin: 15px 0;
  }
}
.fixed_button {
  position: fixed;
  right: 10px;
  bottom: 0;
  z-index: 10;
  text-align: center;
}
.fixed_button h5 {
  font-size: clamp(1.2em, 1.3vw, 1.3em);
  margin: 0 0 10px 0;
}

@media (max-width: 767px) {
  .fixed_button img {
    width: 360px;
  }
}
/*----------------------------
* form
*----------------------------*/
input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 100%;
  background: var(--color--white);
  border: 1px solid #CCC;
  border-radius: 6px;
  padding: 0.5em;
}

textarea {
  height: 15em;
  font-size: 1.2em;
  padding: 15px;
}

input[type=checkbox] {
  margin-right: 5px;
}

input[type=radio] {
  margin-right: 5px;
}

input + p {
  margin-top: 5px;
}

label {
  margin-right: 15px;
}
label.radioLabel {
  font-size: 1.1em;
}
label.error {
  display: block;
  color: #cc0000;
  margin-bottom: 5px;
}

select {
  background: var(--color--white);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--color--gray);
}

input[type=submit] {
  background: var(--color--sub);
  color: var(--color--white);
  padding: 8px 30px;
  display: block;
  border-radius: 40px;
  text-align: center;
  margin: 10px auto;
  font-size: 1em;
}

input[type=button] {
  background: #999;
  color: var(--color--white);
  padding: 8px 30px;
  display: block;
  border-radius: 40px;
  text-align: center;
  margin: 10px auto;
  font-size: 1em;
}

/*----------------------------
* スマホメニュー
*----------------------------*/
#navAll {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}
#navAll .menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
  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;
}
#navAll ul li a {
  color: var(--color--white);
  display: block;
  padding: 10px 0;
}

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

/* 
hamburger(ハンバーガーアイコン)
=================================== */
@media (min-width: 960px) {
  .nav-wrapper {
    display: none;
  }
}
.hamburger {
  position: absolute;
  background: url(../img/humberger_bg.png) no-repeat top right;
  right: 0;
  top: 0;
  width: 87px;
  height: 87px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 38px;
  height: 3px;
  right: 15px;
  top: 15px;
  background-color: var(--color--white);
  transition: all 0.5s;
}

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

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

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

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

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

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

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  top: -100vh;
  /*ハンバーガーがクリックされる前は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-bottom: 20px;
}

/* 
  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 */