@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/hannari.css");
/*------------------------------------------------------------
ドロワー-↓↓↓
------------------------------------------------------------*/
.drawer {
  z-index: 9999;
  width: 40px;
  height: 40px;
  right: 25px;
  top: 15px;
  position: absolute;
}

.navbar_toggle {
  width: 40px;
  height: 40px;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  top: 12px;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 6px;
  width: 40px;
  background: #fff;
  transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -20px;
  transform: rotate(-45deg);
}

.grobal-nav ul {
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
}

.grobal-nav ul li a {
  position: relative;
}

.grobal-nav ul li a::after {
  content: '';
  width: 0;
  height: 2px;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -10px;
  margin: auto;
  transition: all .2s ease .1s;
  z-index: 1;
}

.grobal-nav ul li a:hover::after {
  width: 100%;
}

.grobal-nav .nav-open {
  bottom: -80px;
  opacity: 1;
}

@media (max-width: 767px) {
  .grobal-nav {
    transform: translateX(-100%);
    transition: ease .5s;
    z-index: 1;
    background: #000;
    width: 100%;
    height: 100vh;
    top: 0;
    position: absolute;
  }
  .grobal-nav ul {
    margin-top: 60px;
    border-top: 1px solid #CCC;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 0;
  }
  .grobal-nav ul li {
    padding: 15px 15px 15px 30px;
    border-bottom: 1px solid #CCC;
    width: 100%;
    margin: auto;
  }
  .grobal-nav ul li a {
    color: #fff;
  }
  .grobal-nav ul .has-child {
    border-bottom: none;
    padding: 15px 0 15px 40px;
    margin: 0;
    opacity: 0.5;
  }
  .grobal-nav .child {
    background: #000;
    bottom: auto;
    width: 100%;
    opacity: 1;
    text-align: left;
    right: auto;
    position: inherit;
    transition: 0.2s;
    border-bottom: #555 1px solid;
  }
  .grobal-nav .child li {
    display: block;
    padding: 17px 40px;
    font-size: 18px;
    width: 100%;
    border-top: #555 1px solid;
  }
  .grobal-nav .child li a {
    color: #fff;
  }
  /*OPEN時の動き*/
  .grobal-nav.open {
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

.m_fixed {
  left: 0;
  position: fixed;
  top: 0;
  bottom: auto;
  z-index: 9999;
  width: 100%;
  background: #fff;
}

/*------------------------------------------------------------
ドロワー-↑↑↑
  ------------------------------------------------------------*/
/*------------------------------------------------------------
main pc
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

html body {
  font-family: "Hannari",'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "pkna";
  letter-spacing: 0.1rem;
  line-height: 1.8;
  line-break: strict;
}

html body a {
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.2s;
}

html body a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

html body .linktext {
  color: #4169e1;
  text-decoration: underline;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  html body {
    font-size: 1.3rem;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
}

.header {
  min-width: 1000px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: 0.5s;
}

.header .heading {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  align-items: center;
}

.header .heading .site-branding a {
  font-size: 14px;
  color: #f7e598;
}

.header .heading .site-branding a .main {
  font-size: 25px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .heading .site-branding a .main img {
  width: 100px;
}

.header .heading .sub-menu {
  display: flex;
  margin: 10px 0;
}

.header .heading .sub-menu .tel {
  color: #fff;
  font-size: 38px;
  line-height: 1.3;
  margin-top: 2px;
}

.header .heading .sub-menu .tel .time {
  font-size: 14px;
}

.header .heading .sub-menu .tel a {
  color: #fff;
}

.header .heading .sub-menu .btn-contact {
  position: relative;
  padding: 35px 10px 0;
  margin-left: 20px;
  display: inline-block;
  color: #fff;
  background: url(../images/icon-mail.svg) no-repeat top 10px center;
  font-size: 16px;
  font-weight: bold;
}

.header .heading .sub-menu .btn-line {
  position: relative;
  padding: 35px 10px 0;
  display: inline-block;
  color: #fff;
  background: url(../images/icon-line.svg) no-repeat top center;
  font-size: 16px;
  font-weight: bold;
}

.header .grobal-nav ul {
  display: flex;
  justify-content: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
}

.header .grobal-nav ul li {
  position: relative;
  padding: 0 20px;
}

.header .grobal-nav ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.header .grobal-nav ul li + li::before {
  content: "";
  display: inline-block;
  height: 25px;
  width: 1px;
  transform: skewX(-10deg);
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.header.scroll {
  width: calc(100% - 20px);
  margin: 10px;
  background: #000;
  border-radius: 10px;
}

.header.scroll .heading .site-branding a {
  font-size: 14px;
  color: #f7e598;
}

.header.scroll .heading .site-branding a .main {
  font-size: 25px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.header.scroll .heading .site-branding a .main img {
  width: 100px;
}

.header.scroll .heading .sub-menu {
  margin: 5px 0;
}

.header.scroll .heading .sub-menu .tel {
  font-size: 30px;
}

.header.scroll .heading .sub-menu .tel .time {
  font-size: 12px;
}

.header.scroll .heading .sub-menu .tel img {
  width: 22px;
}

.header.scroll .heading .sub-menu .btn-contact {
  padding: 33px 10px 0;
  background: url(../images/icon-mail.svg) no-repeat top 7px center;
  font-size: 12px;
}

.header.scroll .heading .sub-menu .btn-line {
  padding: 33px 10px 0;
  background: url(../images/icon-line.svg) no-repeat top 2px center/28px;
  font-size: 12px;
}

.header.scroll .grobal-nav ul {
  padding: 0 0 10px;
}

.kv {
  background: url(../images/kv-bg.png) center center/cover;
  padding-top: 120px;
  margin-bottom: 2vw;
  min-width: 1000px;
}

.kv img {
  width: 100%;
  min-width: 1000px;
}

.kv .kv-tel {
  text-align: center;
  margin-top: -100px;
}

.kv .kv-tel img {
  width: 100%;
  max-width: 1200px;
}

.title1 {
  font-size: 30px;
  font-weight: 400;
  display: inline-block;
  padding: 15px 7vw;
  border: 2px #f7e598 solid;
  border-radius: 20px;
  background: #fff;
}

.title2 {
  font-size: 30px;
  font-weight: 400;
  display: inline-block;
  position: relative;
  color: #3c7715;
}

.title2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  height: 2px;
  width: 63px;
  background: #3c7715;
}

.contact {
  padding: 100px 0;
  min-width: 1000px;
}

.contact-contents {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 30px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  background: url(../images/bg.png);
}

.contact-contents .item.tel {
  font-size: 65px;
  line-height: 1.5;
  text-align: left;
}

.contact-contents .item.tel .desc {
  font-size: 25px;
  color: #8f8f8f;
}

.contact-contents .item.form-button {
  background: #3c7715 url(../images/contact-icon-mail.svg) center top 25px no-repeat;
  color: #fff;
  font-size: 20px;
  padding: 66px 80px 0;
  height: 50px;
}

.trouble {
  min-width: 1000px;
}

.trouble-contents .title {
  margin: 2vw auto 0;
  display: table;
  position: relative;
  z-index: 1;
}

.trouble-contents .container {
  background: url(../images/img01.png) no-repeat left 16.5% bottom/contain, url(../images/bg.png);
  padding: 5.3vw 5vw 1.5vw;
  margin-top: -45px;
}

.trouble-contents .container .comment {
  background: #fff;
  position: relative;
  font-size: 26px;
  text-align: center;
  padding: 3vw 1vw;
  display: table;
  border-radius: 20px;
  margin: 30px 0 30px auto;
  width: 40vw;
}

.trouble-contents .container .comment:nth-child(1) {
  margin-right: 5vw;
}

.trouble-contents .container .comment:nth-child(2) {
  margin-right: 0;
}

.trouble-contents .container .comment:nth-child(3) {
  margin-right: 3vw;
}

.trouble-contents .container .comment span {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+50,f7e598+50 */
  background: #ffffff;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 50%, #f7e598 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7e598',GradientType=0 );
  /* IE6-9 */
}

.trouble-contents .container .comment::before {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(135deg) skew(calc((90deg - 30deg) / 2), calc((90deg - 30deg) / 2));
  left: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #fff;
}

.recommend {
  min-width: 1000px;
}

.recommend-contents {
  padding: 11vw 0 0;
  max-width: 1140px;
  margin: auto;
}

.recommend-contents .container {
  margin: 8vw 0 0;
}

.recommend-contents .container .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0;
}

.recommend-contents .container .box .text-box {
  width: 30%;
}

.recommend-contents .container .box .text-box .title2 {
  margin-bottom: 40px;
}

.recommend-contents .container .box .text-box .text {
  line-height: 2.5;
  font-size: 18px;
}

.recommend-contents .container .box .image-box {
  width: 60%;
}

.recommend-contents .container .box .image-box img {
  width: 100%;
  height: auto;
}

.recommend-contents .container .box:nth-child(even) {
  flex-direction: row-reverse;
}

.point {
  min-width: 1000px;
}

.point-contents {
  padding: 3.5vw 0 0;
}

.point-contents .heading {
  max-width: 1140px;
  margin: auto;
}

.point-contents .container {
  margin: -40px 0 0;
  background: url(../images/bg.png);
  padding: 10vw 0 10vw;
}

.point-contents .container .box {
  max-width: 1140px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0;
}

.point-contents .container .box .text-box {
  width: 30%;
}

.point-contents .container .box .text-box .title2 {
  margin-bottom: 40px;
}

.point-contents .container .box .text-box .text {
  line-height: 2.5;
  font-size: 18px;
}

.point-contents .container .box .text-box .text .text-tel {
  color: red;
  text-decoration: underline;
}

.point-contents .container .box .image-box {
  width: 60%;
}

.point-contents .container .box .image-box img {
  width: 100%;
  height: auto;
}

.point-contents .container .box:nth-child(even) {
  flex-direction: row-reverse;
}

.products {
  min-width: 1000px;
}

.products-contents {
  padding: 10vw 0 0;
  max-width: 1140px;
  margin: auto;
}

.products-contents .title {
  margin: 0 auto 3vw;
  display: table;
}

.products-contents .title + .desc {
  text-align: center;
  font-size: 20px;
}

.products-contents .container .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0;
}

.products-contents .container .box .text-box {
  width: 30%;
}

.products-contents .container .box .text-box .title2 {
  margin-bottom: 40px;
}

.products-contents .container .box .text-box .text {
  line-height: 2.5;
  font-size: 18px;
}

.products-contents .container .box .image-box {
  width: 60%;
}

.products-contents .container .box .image-box img {
  width: 100%;
  height: auto;
}

.products-contents .lower {
  background: url(../images/bg.png);
  border-radius: 20px;
  margin-top: 3vw;
}

.products-contents .lower > .desc {
  color: #3c7715;
  font-size: 25px;
  text-align: center;
  position: relative;
  top: -25px;
}

.products-contents .lower .images {
  display: flex;
  justify-content: center;
}

.products-contents .lower .images span img {
  width: 90%;
}

.voice {
  min-width: 1000px;
}

.voice-contents {
  padding: 3.5vw 0 0;
}

.voice-contents .heading {
  max-width: 1140px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.voice-contents .heading .title {
  margin: auto;
  display: table;
}

.voice-contents .container {
  margin: -40px 0 0;
  background: url(../images/bg.png);
  padding: 10vw 0 10vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.voice-contents .container .box {
  max-width: 1140px;
  margin: auto 10%;
  padding: 2.5vw 0;
  width: 22%;
  text-align: center;
}

.voice-contents .container .box .image-box {
  width: 100%;
}

.voice-contents .container .box .image-box img {
  width: 100%;
  height: auto;
}

.voice-contents .container .box .text-box {
  width: 100%;
}

.voice-contents .container .box .text-box .title {
  margin: 20px 0;
  color: #3c7715;
  font-size: 25px;
}

.voice-contents .container .box .text-box .text {
  line-height: 2;
  font-size: 17px;
}

.flow {
  min-width: 1000px;
}

.flow-contents {
  padding: 11vw 0 0;
  max-width: 1140px;
  margin: auto;
}

.flow-contents .container {
  margin: 8vw 0 0;
}

.flow-contents .container .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0;
}

.flow-contents .container .box .text-box {
  width: 30%;
}

.flow-contents .container .box .text-box .title2 {
  margin-bottom: 40px;
}

.flow-contents .container .box .text-box .text {
  line-height: 2.5;
  font-size: 18px;
}

.flow-contents .container .box .image-box {
  width: 60%;
}

.flow-contents .container .box .image-box img {
  width: 100%;
  height: auto;
}

.flow-contents .container_image {
  margin: 2vw 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0;
}

.flow-contents .container_image .item {
  margin: 10px;
}

.flow-contents .container_image .item img {
  width: 100%;
}

.form {
  min-width: 1000px;
}

.form-contents {
  padding: 8.5vw 0 0;
  background: url(../images/bg.png);
}

.form-contents .heading {
  max-width: 1140px;
  margin: auto;
}

.form-contents .heading .title {
  margin: 0 auto 3vw;
  display: table;
}

.form-contents .heading .title + .desc {
  text-align: center;
  font-size: 20px;
}

.form-contents .container {
  padding: 5vw 0 0;
}

.form-contents .container form .form-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 2;
  padding: 10px;
  max-width: 800px;
  margin: auto;
}

.form-contents .container form .form-item dt {
  width: 30%;
}

.form-contents .container form .form-item dd {
  width: 70%;
}

.form-contents .container form .form-item dd input,
.form-contents .container form .form-item dd select,
.form-contents .container form .form-item dd textarea {
  padding: 25px;
  width: calc(100% - 50px);
  border: none;
  border-radius: 10px;
}

.form-contents .container form .form-item dd select {
  width: calc(109% - 50px);
}

.form-contents .container form .form-item .desc {
  font-size: 14px;
  color: #333;
}

.form-contents .container form .form-item .hissu {
  font-size: 14px;
  color: #d83131;
}

.form-contents .container form .privacypolicy {
  max-width: 800px;
  margin: auto;
  height: 300px;
  overflow-y: scroll;
  background: #fff;
  border-radius: 10px;
  padding: 3vw;
}

.form-contents .container form .privacypolicy-check {
  display: table;
  margin: 3vw auto;
}

.form-contents .container form .submit-button input {
  border: none;
  display: block;
  padding: 7vw;
  width: 100%;
  background: #3c7715;
  font-size: 30px;
  color: #fff;
  font-family: serif;
  transition: 0.3s;
}

.form-contents .container form .submit-button input:hover {
  background: #418813;
}

.access {
  min-width: 1000px;
}

.access-contents {
  padding: 3.5vw 0 0;
}

.access-contents .heading {
  max-width: 1140px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.access-contents .heading .title {
  margin: auto;
  display: table;
}

.access-contents .container {
  margin-top: -40px;
}

.access-contents .container iframe {
  width: 100%;
}

.totop {
  position: fixed;
  right: 100px;
  bottom: 300px;
  z-index: 9999;
}

.totop a {
  position: absolute;
  width: 50px;
}

.totop a span {
  display: block;
  width: 1px;
  height: 200px;
  position: relative;
  margin: auto;
}

.totop a span:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  animation: up 2s infinite ease-in-out;
  -webkit-animation: up 2s infinite ease-in-out;
}

.footer {
  min-width: 1000px;
  color: #000;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  padding: 100px 0;
}

.footer p {
  padding: 20px 0;
}

.footer a {
  color: #fff;
}

/*------------------------------------------------------------
main pc ここまで
------------------------------------------------------------*/
/*------------------------------------------------------------
main sp
------------------------------------------------------------*/
@media (max-width: 767px) {
  .drawer {
    right: 15px;
    top: 0;
  }
  .header {
    min-width: unset;
  }
  .header .heading {
    padding: 0 15vw 0 0;
  }
  .header .heading .site-branding {
    margin-top: 10px;
  }
  .header .heading .site-branding a {
    font-size: 14px;
    color: #f7e598;
  }
  .header .heading .site-branding a .main {
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  .header .heading .site-branding a .main img {
    width: 100px;
  }
  .header .heading .site-branding span {
    padding: 0 0 0 5vw;
    display: inline-table;
    vertical-align: middle;
  }
  .header .heading .site-branding span img {
    width: 70px;
  }
  .header .grobal-nav {
    position: fixed;
    top: 0;
    left: 0;
  }
  .header .grobal-nav ul {
    padding: 0 0 10px;
  }
  .header .grobal-nav ul li {
    position: relative;
    padding: 20px;
  }
  .header .grobal-nav ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .header .grobal-nav ul li + li::before {
    content: none;
  }
  .header.scroll {
    width: calc(100% - 20px);
    margin: 10px;
    background: #000;
    border-radius: 10px;
  }
  .header.scroll .heading .site-branding {
    margin: 2px 0 8px;
  }
  .header.scroll .heading .site-branding a {
    font-size: 12px;
  }
  .header.scroll .heading .site-branding a .main {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  .header.scroll .heading .site-branding a .main img {
    width: 80px;
  }
  .header.scroll .heading .sub-menu {
    margin: 5px 0;
  }
  .header.scroll .heading .sub-menu .tel {
    font-size: 30px;
  }
  .header.scroll .heading .sub-menu .tel .time {
    font-size: 12px;
  }
  .header.scroll .heading .sub-menu .tel img {
    width: 25px;
  }
  .header.scroll .heading .sub-menu .btn-contact {
    background: url(../images/icon-mail.svg) no-repeat top 5px center;
    font-size: 12px;
  }
  .header.scroll .heading .sub-menu .btn-line {
    background: url(../images/icon-line.svg) no-repeat top center/28px;
    font-size: 12px;
  }
  .contact-lower {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    line-height: 0;
    z-index: 9999;
    background: #000;
  }
  .contact-lower .item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    font-size: 15px;
  }
  .contact-lower .item img {
    display: inline-block;
    width: 20px;
    margin: 0 5px 0 0;
  }
  .contact-lower .item:nth-child(1) {
    width: 50%;
  }
  .contact-lower .item:nth-child(2) {
    width: 25%;
  }
  .contact-lower .item:nth-child(3) {
    width: 25%;
  }
  .kv {
    padding: 50px 0;
    min-width: unset;
  }
  .kv img {
    min-width: unset;
  }
  .title1 {
    font-size: 5vw;
    font-weight: 400;
    display: inline-block;
    padding: 15px 7vw;
    border: 2px #f7e598 solid;
    border-radius: 20px;
    background: #fff;
  }
  .title2 {
    font-size: 5vw;
    font-weight: 400;
    display: inline-block;
    position: relative;
    color: #3c7715;
  }
  .title2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    height: 2px;
    width: 63px;
    background: #3c7715;
  }
  .contact {
    padding: 12vw 0;
    min-width: unset;
    width: calc(100% - 20px);
    margin: auto;
  }
  .contact-contents {
    margin: auto;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: url(../images/bg.png);
  }
  .contact-contents .item.tel {
    font-size: 35px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 5vw;
  }
  .contact-contents .item.tel .desc {
    font-size: 15px;
    color: #8f8f8f;
  }
  .contact-contents .item.tel a img {
    width: 30px;
  }
  .contact-contents .item.line {
    width: 45%;
  }
  .contact-contents .item.form-button {
    width: 45%;
    padding: 66px 0 0;
  }
  .trouble {
    min-width: unset;
  }
  .trouble-contents .title {
    margin: 2vw;
    display: table;
    position: relative;
    z-index: 1;
  }
  .trouble-contents .container {
    background: url(../images/img01.png) no-repeat center bottom/cover, url(../images/bg.png);
    padding: 60vw 5vw 5vw;
    margin-top: -45px;
  }
  .trouble-contents .container .comment {
    background: #fff;
    position: relative;
    font-size: 18px;
    text-align: center;
    padding: 4vw 2vw;
    display: table;
    border-radius: 20px;
    margin: 30px 0 30px auto;
    width: 80vw;
    line-height: 1.3;
  }
  .trouble-contents .container .comment:nth-child(1) {
    margin-right: 5vw;
  }
  .trouble-contents .container .comment:nth-child(2) {
    margin-right: 0;
  }
  .trouble-contents .container .comment:nth-child(3) {
    margin-right: 3vw;
  }
  .trouble-contents .container .comment::before {
    content: none;
  }
  .recommend {
    min-width: unset;
  }
  .recommend-contents {
    padding: 11vw 0 0;
    max-width: 1140px;
    margin: auto;
  }
  .recommend-contents .title {
    margin: 2vw;
    display: table;
  }
  .recommend-contents .container {
    margin: 8vw 5vw 0;
  }
  .recommend-contents .container .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4.5vw 0;
  }
  .recommend-contents .container .box .text-box {
    width: 100%;
  }
  .recommend-contents .container .box .text-box .title2 {
    margin-bottom: 40px;
  }
  .recommend-contents .container .box .text-box .text {
    line-height: 2;
    font-size: 14px;
  }
  .recommend-contents .container .box .image-box {
    width: 100%;
    margin-top: 3vw;
  }
  .recommend-contents .container .box .image-box img {
    width: 100%;
    height: auto;
  }
  .point {
    min-width: unset;
  }
  .point-contents {
    padding: 3.5vw 0 0;
  }
  .point-contents .heading {
    max-width: 1140px;
    margin: auto 2vw;
  }
  .point-contents .container {
    margin: -40px 0 0;
    background: url(../images/bg.png);
    padding: 10vw 0 10vw;
  }
  .point-contents .container .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4.5vw;
  }
  .point-contents .container .box .text-box {
    width: 100%;
  }
  .point-contents .container .box .text-box .title2 {
    margin-bottom: 40px;
  }
  .point-contents .container .box .text-box .text {
    line-height: 2;
    font-size: 14px;
  }
  .point-contents .container .box .image-box {
    width: 100%;
    margin-top: 3vw;
  }
  .point-contents .container .box .image-box img {
    width: 100%;
    height: auto;
  }
  .products {
    min-width: unset;
  }
  .products-contents {
    padding: 10vw 0 0;
    max-width: 1140px;
    margin: auto;
  }
  .products-contents .title {
    margin: 0 auto 3vw;
    display: table;
  }
  .products-contents .title + .desc {
    padding: 4.5vw;
    text-align: center;
    font-size: 14px;
  }
  .products-contents .container .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4.5vw;
  }
  .products-contents .container .box .text-box {
    width: 100%;
  }
  .products-contents .container .box .text-box .title2 {
    margin-bottom: 40px;
  }
  .products-contents .container .box .text-box .text {
    line-height: 2;
    font-size: 14px;
  }
  .products-contents .container .box .image-box {
    width: 100%;
    margin-top: 3vw;
  }
  .products-contents .container .box .image-box img {
    width: 100%;
    height: auto;
  }
  .products-contents .lower {
    background: url(../images/bg.png);
    border-radius: 20px;
    margin: 4.5vw;
  }
  .products-contents .lower > .desc {
    color: #3c7715;
    font-size: 15px;
    text-align: center;
    position: relative;
    top: -25px;
  }
  .products-contents .lower .images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .products-contents .lower .images span {
    width: 40%;
  }
  .products-contents .lower .images span img {
    width: 100%;
  }
  .voice {
    min-width: unset;
  }
  .voice-contents {
    padding: 3.5vw 0 0;
  }
  .voice-contents .heading {
    max-width: 1140px;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  .voice-contents .heading .title {
    margin: auto;
    display: table;
  }
  .voice-contents .container {
    margin: -40px 0 0;
    background: url(../images/bg.png);
    padding: 10vw 0 10vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .voice-contents .container .box {
    max-width: 1140px;
    margin: 10px 5%;
    padding: 2.5vw 0;
    width: 35%;
    text-align: center;
  }
  .voice-contents .container .box .image-box {
    width: 100%;
  }
  .voice-contents .container .box .image-box img {
    width: 100%;
    height: auto;
  }
  .voice-contents .container .box .text-box .title {
    margin: 15px 0;
    font-size: 18px;
  }
  .voice-contents .container .box .text-box .text {
    line-height: 1.7;
    font-size: 14px;
  }
  .flow {
    min-width: unset;
  }
  .flow-contents {
    padding: 11vw 0 0;
    max-width: 1140px;
    margin: auto;
  }
  .flow-contents .title {
    margin: 2vw;
  }
  .flow-contents .container {
    margin: 8vw 5vw 0;
  }
  .flow-contents .container .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4.5vw;
  }
  .flow-contents .container .box .text-box {
    width: 100%;
  }
  .flow-contents .container .box .text-box .title2 {
    margin-bottom: 40px;
  }
  .flow-contents .container .box .text-box .text {
    line-height: 2;
    font-size: 14px;
  }
  .flow-contents .container .box .image-box {
    width: 100%;
    margin-top: 3vw;
  }
  .flow-contents .container .box .image-box img {
    width: 100%;
    height: auto;
  }
  .flow-contents .container_image {
    margin: 8vw 5vw 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4.5vw 0;
    flex-wrap: wrap;
  }
  .form {
    min-width: unset;
  }
  .form-contents {
    padding: 8.5vw 0 0;
    background: url(../images/bg.png);
  }
  .form-contents .heading {
    max-width: 1140px;
    margin: auto;
  }
  .form-contents .heading .title {
    margin: 0 auto 3vw;
    display: table;
  }
  .form-contents .heading .title + .desc {
    padding: 4.5vw;
    text-align: center;
    font-size: 14px;
  }
  .form-contents .container {
    padding: 5vw;
    margin-bottom: 10vw;
  }
  .form-contents .container form .form-item {
    flex-wrap: wrap;
    font-size: 16px;
  }
  .form-contents .container form .form-item dt {
    width: 100%;
  }
  .form-contents .container form .form-item dd {
    width: 100%;
  }
  .form-contents .container form .form-item dd input,
  .form-contents .container form .form-item dd select,
  .form-contents .container form .form-item dd textarea {
    font-size: 16px;
  }
  .form-contents .container form .form-item dd select {
    width: calc(116% - 50px);
  }
  .form-contents .container form .privacypolicy {
    margin: 2vw;
  }
  .form-contents .container form .privacypolicy-check {
    display: table;
    margin: 3vw auto;
  }
  .form-contents .container form .submit-button input {
    border-radius: 10px;
  }
  .form-contents .container form .submit-button input:hover {
    background: #418813;
  }
  .access {
    min-width: unset;
  }
  .access-contents {
    padding: 3.5vw 0 0;
  }
  .access-contents .heading {
    max-width: 1140px;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  .access-contents .heading .title {
    margin: auto;
    display: table;
  }
  .access-contents .container {
    margin-top: -40px;
  }
  .access-contents .container iframe {
    width: 100%;
  }
  .totop {
    position: fixed;
    right: 50px;
    bottom: 200px;
    z-index: 9999;
  }
  .totop a {
    position: absolute;
    width: 50px;
  }
  .totop a span {
    display: block;
    width: 1px;
    height: 100px;
    position: relative;
    margin: auto;
  }
  .totop a span:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    animation: up 2s infinite ease-in-out;
    -webkit-animation: up 2s infinite ease-in-out;
  }
  .footer {
    min-width: unset;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    padding: 100px 0;
  }
  .footer p {
    padding: 20px 0;
  }
  .footer a {
    color: #fff;
  }
}

/*------------------------------------------------------------
main sp ここまで
------------------------------------------------------------*/
/*アニメーション要素のスタイル*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes up {
  0% {
    top: 0;
    height: 100%;
  }
  33% {
    top: 0;
    height: 0;
  }
  66% {
    bottom: 0;
    height: 0;
  }
  100% {
    bottom: 0;
    height: 100%;
  }
}
/*# sourceMappingURL=style.css.map */