@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  height: 100%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #666564;
  height: 100%;
  padding: 0;
}
a {
  color: #82a22f;
  text-decoration: none;
}
a:hover {
  color: #cd668f;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  /*font-family: "M PLUS 1p";*/
}
h3 {
  color: #444;
  font-weight: bold;
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 0.63rem;
  bottom: 0.63rem;
  z-index: 996;
  background: rgba(134, 162, 47, 0.5);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.3rem;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 3rem;
  color: #fff;
  line-height: 0;
  font-weight: bold;
}
.back-to-top:hover {
  background: rgba(134, 162, 47, 1);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #82a22f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  /*background: #fff;*/
  z-index: 997;
  padding: 1rem 0;
  /*border-bottom: 1px solid #e6f2fb;*/
}
#header.header-scrolled {
  /*border-bottom: 1px solid rgba(134, 162, 47, 1);*/
  /*box-shadow: 0px 2px 15px rgba(134, 162, 47, 0.1);*/
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 1);
}
#header .logo {
  font-size: 98%;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01rem;
}
#header .logo a {
  color: #000;
}
#header .logo a:hover {
  opacity: 0.8;
}
#header .logo img {
  height: 45px;
  margin: 0.5rem 0 0;
}
#header h2 {
  font-size: 80%;
  margin: 0;
  padding: 0;
  color: #999;
}
/*bc_grn*/
.bc_grn {
  background-color: #82a22f;
  color: #FFF;
  line-height: 1;
  padding: 0.2rem 0.3rem;
  font-weight: 300;
  font-size: 85%;
  border-radius: 0.2rem;
  font-feature-settings: "palt";
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0 0.3rem 3rem;
  font-size: 1rem;
  color: #666564;
  white-space: nowrap;
  transition: 0.3s;
}
/*.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}*/
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #82a22f;
}
.navbar li.frame {
  padding-left: 3rem;
}
.navbar li.frame a {
  border: 1px solid #DDD;
  padding: 0.25rem 0.5rem 0.35rem;
  background-color: #FFF;
  border-radius: 0.5rem;
  font-size: 75%;
  font-feature-settings: "palt";
  display: inline-block;
  text-align: center;
}
.navbar li.frame a i {
  font-size: 120%;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #82a22f;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar li.frame {
    padding-left: 1.25rem;
    margin: 0.8rem 0;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(130, 162, 47, .9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 4rem;
  right: 1rem;
  left: 1rem;
  padding: 0.5rem 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  color: #666564;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #82a22f;
}
/*--------------------------------------------------------------
#app Section
--------------------------------------------------------------*/
#app {
  width: 100%;
  height: auto;
  /*height: 100vh;*/
  position: relative;
  background-image: url("../img/app/app-bg.jpg");
  /*background-position: center -250px;*/
  background-repeat: no-repeat;
  background-size: 100%;
  /*background-color: #F7F6F2;*/
}
#app h1 {
  position: absolute;
  right: 0;
}
#app .intro {
  position: absolute;
  color: #000;
  font-weight: bold;
}
#app .intro p {
  margin: 0 0 0.5rem;
  padding: 0;
  line-height: 1.4;
  /*text-shadow: 1px 1px 0 rgba(255, 255, 255, .3), -1px -1px 0 rgba(255, 255, 255, .3), -1px 1px 0 rgba(255, 255, 255, .3), 1px -1px 0 rgba(255, 255, 255, .3), 0px 1px 0 rgba(255, 255, 255, .3), 0-1px 0 rgba(255, 255, 255, .3), -1px 0 0 rgba(255, 255, 255, .3), 1px 0 0 rgba(255, 255, 255, .3);*/
}
.logo_aboc {
  margin: -0.35rem 0.15rem 0;
}
#app .credit {
  position: absolute;
  right: 0;
  font-size: 80%;
  color: #999;
}
#app .app-boxes {
  margin: 0 auto;
}
#app .app-box {
  padding: 1rem;
  position: relative;
  border: 4px solid #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  margin: 0 0 1.5rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, .2);
  border-radius: 0.6rem;
}
#app .app-box.app1 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app1.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box.app2 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app2.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box.app3 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app3.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box.app4 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app4.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box.app5 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app5.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
  /*background-position: 0 -6rem;	*/
}
#app .app-box.app6 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app6.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box.app7 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 40%), url("../img/app/app7.jpg") no-repeat;
  background-position: right bottom;
  background-size: 50%;
  background-color: #fff;
}
#app .app-box h2.title {
  font-weight: bold;
  margin: 0.1rem 0 0 3.35rem;
  padding: 0 0 0.3rem;
  font-size: 1.6rem;
  color: #444;
  display: inline-block;
  border-bottom: 2px solid #dedede;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#app .app-box .icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
#app .app-box .icon.ico4 {
  top: 0.8rem;
  left: 0.8rem;
}
#app .app-box .icon.ico6 {
  top: 1.2rem;
}
#app .app-box .description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 1.2rem 0 0;
  /*background-color: rgba(255,255,255,.7);
	box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, .1);*/
  padding: 0;
  text-align: justify;
  color: #111;
  bottom: 0;
  width: 60%;
}
#app .app-box .img_sp {
  position: absolute;
  bottom: -0.6rem;
  right: -0.6rem;
  border: 2px solid #fff;
  /*transform:rotate(5deg);*/
  box-shadow: -3px -3px 10px rgba(255, 255, 255, .7);
  width: 80px;
  transition: all 0.3s ease-in-out;
}
#app .app-box .img_sp:hover {
  transform: scale(1.1);
}
#app .app8 {
  background: rgba(255, 255, 255, .9);
  display: inline-block;
  margin: 0 auto;
  padding: 0.8rem;
  border-radius: 0.1rem;
}
/*#app用zoomアイコン*/
#app .zoomImg {
  right: -1rem;
  bottom: -1rem;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 4rem 0;
}
.section-bg {
  background-color: #82a22f;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 0.625rem;
  display: inline-block;
}
.section-title h2.whtshadow {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #fff;
}
.section-title h2.wht {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.section-title h2.grn {
  color: #86A22F;
  border-bottom: 2px solid #86A22F;
}
/*a*/
#app .intro a, #app .app8 a, .content .QRtest a, #option .content ul li a, #info a {
  border-bottom: 1px dashed #82a22f;
}
#app .intro a:hover, #app .app8 a:hover, .content .QRtest a:hover, #option .content ul li a:hover, #info a:hover {
  border-bottom: 1px dashed #cd668f;
}
/*--------------------------------------------------------------
#basic
--------------------------------------------------------------*/
#basic {
  padding: 5.5rem 0 0;
}
#basic .row {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#basic .sp3 {
  display: flex;
  justify-content: space-around;
}
#basic .sp3 .sp_wrapper {
  width: 170px;
}
#basic .sp3 .sp_wrapper .imgWrapper {
  position: relative;
}
#basic .sp3 img {
  max-width: 100%;
}
#basic .sp3 .sp_wrapper a p {
  text-align: center;
  font-size: 71%;
  line-height: 1.3;
  margin: 1rem 0 0;
  color: #666564;
}
/*****.YouTube*****/
.YouTube .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#82a22f 50%, rgba(130, 162, 47, .4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.YouTube .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.YouTube .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(130, 162, 47, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(130, 162, 47, 0);
}
.YouTube .play-btn:hover::after {
  border-left: 15px solid #82a22f;
  transform: scale(20);
}
.YouTube .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
#option
--------------------------------------------------------------*/
#option .row {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
#option .section-title h2 {
  margin: 0 0 3rem;
  padding: 0 0 0.625rem;
  font-size: 1.8rem;
  line-height: 1.2 !important;
}
#option .attn {
  margin-left: 3.65rem;
  font-size: 90%;
}
/*.content*/
.content {
  font-size: 1.1rem;
}
.content h3 {
  font-weight: 700;
  margin: 0 0 1.25rem;
  position: relative;
  padding: 0 0 0 2.8rem;
}
.content h3 i {
  font-size: 150%;
  position: absolute;
  top: -2px;
  left: 0;
}
.content h4 {
  margin: 0 0 1.2rem;
  position: relative;
  padding: 0 0 0 2.8rem;
}
.content h4 i {
  font-size: 150%;
  position: absolute;
  top: -1px;
  left: 3px;
}
.content p:last-child {
  margin-bottom: 0;
}
.content ul {
  list-style: none;
  padding: 0;
}
/*li i.bx-check-double*/
.content ul li {
  padding-bottom: 0.5rem;
  padding-left: 2.8rem;
  position: relative;
}
.content ul i.bx-check-double {
  font-size: 200%;
  color: #82a22f;
  position: absolute;
  left: 0;
  top: -2px;
}
/*.bx-down-arrow-alt*/
.content ul i.bx-down-arrow-alt {
  position: static;
  color: #666564;
  font-size: 100%;
}
/*.bx-link-external*/
a .bx-link-external {
  position: static;
  color: #4DA5D7;
  font-size: 80%;
  margin: 0 0.2rem 0;
}
a:hover .bx-link-external {
  color: #cd668f;
}
.content ul a:hover img {
  opacity: 0.8;
}
/*****.QRtest*****/
.content .QRtest {
  margin: 0 0 0 2.8rem;
  display: flex;
  align-items: flex-start;
}
.content .kome {
  margin-left: 2.8rem;
}
/*li i.bx-left-arrow-alt*/
.content ul.arrowL {
  margin-top: -0.3rem;
}
.content ul.arrowL li {
  padding-left: 1.5rem;
}
.content ul.arrowL i.bx-left-arrow-alt {
  position: absolute;
  font-size: 100%;
  top: 5px;
  left: 0;
  color: #666564;
}
/*.admin-slider*/
.admin-slider {
  overflow: hidden;
}
.admin-item {
  /*box-sizing: content-box;*/
  text-align: center;
  height: auto;
}
.admin-item img {
  width: 100%;
  border: 1px solid #ddd;
}
.admin .swiper-pagination {
  margin-top: 1rem;
  position: relative;
}
.admin .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #82a22f !important;
}
.admin .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #82a22f;
}
/*--------------------------------------------------------------
#example-ttl
--------------------------------------------------------------*/
#example-ttl {
  background: url("../img/example/example-bg.jpg") no-repeat center bottom;
  background-size: cover;
}
#example-ttl .place {
  position: absolute;
  font-size: 0.75rem;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0.3rem 0.5rem !important;
  display: inline-block;
  right: 0;
  bottom: 0;
  margin: 0;
  line-height: 1;
  color: #eee;
}
/*説明*/
ul.explain {
  padding: 0;
  margin: 0 0 2rem;
}
ul.explain li {
  list-style: none;
  margin: 0 0 0.5rem 1.25rem;
  line-height: 1.5 !important;
  padding: 0;
  position: relative;
}
ul.explain li:before {
  font-family: "Font Awesome 5 Free";
  font-size: 115%;
  content: "\f0a6";
  margin: 0 0 0 -1.25rem;
  width: 1rem;
  text-align: right;
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
/*--------------------------------------------------------------
#example
--------------------------------------------------------------*/
#example {
  width: 100%;
  height: auto;
  /*height: 100vh;*/
  position: relative;
}
.example {
  padding-top: 2rem;
}
.example .example-box {
  padding: 0 0 2.8rem;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 1.5rem;
  position: relative;
}
.itsignWrapper {
  position: relative;
}
.example .example-box .qr {
  position: absolute;
  background-color: #FFF;
  padding: 0.5rem 0.5rem 0;
  width: 90px;
  right: 0;
  bottom: 0;
}
.example .example-box .credit {
  position: absolute;
  font-size: 70%;
  margin: 0;
  background-color: rgba(0, 0, 0, .3);
  color: #FFF;
  right: 0;
  top: 0;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  z-index: 1000;
}
.example .example-box .credit.leftBtm {
  right: auto;
  top: auto;
  left: 0;
  bottom: 0;
}
.example .example-box p {
  line-height: 1.4;
  font-size: 1rem;
  margin: 0.5rem 1rem 0;
  color: #666564;
}
.example .example-box p.article {
  position: absolute;
  bottom: 0.6rem;
  right: 0;
}
.example .example-box a:hover img, .example .example-box a:hover .place {
  opacity: 0.8;
}
.example .iconbox-blue i {
  color: #47aeff;
}
.example .iconbox-blue:hover .icon i {
  color: #fff;
}
.example .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.example .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
/*--------------------------------------------------------------
#info
--------------------------------------------------------------*/
#info h3 {
  font-size: 1.25rem;
  color: #666654;
  margin: 0 0 1rem;
  line-height: 1.4;
}
#info h4 {
  font-size: 1.25rem;
  color: #666654
}
#info p {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
#info .date {
  display: inline-block;
  position: relative;
  height: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
  text-shadow: none;
  padding: 0 0.75rem 0 0.5rem;
  font-size: 0.95rem;
  background-color: rgba(134, 162, 47, 0.12);
  box-sizing: border-box;
  margin: 0 0 1.25rem;
}
#info .date:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 12px 6px 12px 0px;
  border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
  border-style: solid;
}
#info .skypark img {
  margin: 0 0 1rem;
}
ul.ul_news {
  list-style: none;
  padding: 0;
}
/*li i.bx-disc*/
.ul_news li {
  padding-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}
.ul_news i.bx-disc {
  position: absolute;
  left: 0;
  top: 0.35rem;
}
/*banner*/
a:hover.banner {
  opacity: 0.8;
}
a.banner img {
  border: 1px solid #ddd !important;
  padding: 3px;
  border-radius: 4px;
}
a:hover.logo_raku {
  opacity: 0.8;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background-color: #86a22f;
  background: linear-gradient(90deg, rgba(134, 162, 47, 1), rgba(255, 255, 255, 1));
  padding: 0;
}
#contact .bg_logo {
  background-image: url(../img/logo_light_grn.png);
  background-repeat: no-repeat;
  background-position: right 85% !important;
  background-attachment: fixed !important;
  background-size: 350px;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 0;
}
#contact p {
  color: #FFF;
}
#contact .aboccard {
  margin: 2rem auto 0;
}
#contact .aboccard:hover {
  opacity: 0.8;
}
#contact .formttl {
  font-size: 1rem;
  color: #FFF;
  margin: 0 0 0.2rem;
  padding: 0;
}
#contact .req_bg {
  background-color: #CD668F;
  color: #FFF;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 20px;
  margin: -0.3rem 0 0.1rem 0.75rem;
  padding: 0 0.25rem;
  border-radius: 0.2rem;
  vertical-align: middle;
  height: 20px;
}
#contact .form-control {
  display: block;
  width: 100%;
  height: 2.35rem;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  margin: 0 0 1rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
#contact .form-control::placeholder {
  color: #666564;
  opacity: 0.5;
}
input[type=radio] {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
#contact textarea.form-control {
  height: auto;
}
:focus::-webkit-input-placeholder {
  color: transparent;
}
:focus:-moz-placeholder {
  color: transparent;
}
:focus::-moz-placeholder {
  color: transparent;
}
/*フォームボタン*/
.btn-chkQRSS, .btn-bck, .btn-chk {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.42857;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  transition: all 0.4s;
}
.btn-chkQRSS { /*確認ボタン*/
  border: 2px solid #FFF;
  color: #FFF;
  background: none;
}
.btn-chkQRSS:hover, .btn-chkQRSS:focus, .btn-chkQRSS.focus {
  color: #86a22f;
  background-color: #FFF;
  text-decoration: none
}
.btn-bck { /*戻るボタン*/
  border: 2px solid #86a22f;
  color: #86a22f;
  background-color: #fff;
}
.btn-bck:hover, .btn-bck:focus, .btn-chk:hover, .btn-chk:focus {
  color: #FFF;
  background-color: #86a22f;
}
.btn-chk { /*送信ボタン*/
  border: 2px solid #86a22f;
  color: #86a22f;
  background-color: #E3EDC2;
}
/*****フォーム確認～完了画面*****/
.bg_logo_w {
  background-image: url(../img/logo_light.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 0 0 279px 0;
  margin: 3rem 0 0;
}
#confirm p, #error p, #thx p {
  text-align: center;
}
#confirm p, #thx p {
  color: #86a22f;
}
/*確認画面table*/
.tbl_confirm {
  width: 100%;
  border: 2px solid #86a22f;
  margin-bottom: 3rem;
  border-collapse: collapse;
}
.tbl_confirm th {
  background-color: #86a22f;
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px dashed #86a22f;
  width: 20%;
  position: relative;
  font-weight: 500;
  color: #fff;
}
.tbl_confirm td {
  border-bottom: 1px dashed #86a22f;
  padding: 1rem;
}
/*確認・完了画面footer固定用*/
.confirm_footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-size: cover;
  padding: 0 0 1rem;
  color: #eee;
  background-image: url(../img/footer.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}
.terms {
  background: rgba(255, 255, 255, 0.75);
  padding: 0.5rem;
  text-align: center;
  margin: 0 0 1.25rem;
}
.terms a {
  color: #596C20 !important;
}
.terms a:hover {
  color: #86a22f !important;
}
#footer a {
  color: #eee;
}
#footer a:hover {
  opacity: 0.8;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
#footer ul li {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #596C20;
  display: inline-block;
  padding: 0 0.5rem;
}
/* プライバシーポリシーバナー */
.cc-revoke, .cc-window {
  border-radius: 0 !important;
  padding: 0 !important;
  border-top: solid 1px rgba(134, 162, 47, 0.25) !important;
  box-shadow: 2px 4px 5px 0px rgba(134, 162, 47, 0.5);
}
.cc-window.cc-floating {
  max-width: 11em !important;
  left: 0;
  bottom: 0;
}
.cc-message {
  color: #111111 !important;
  font-size: 70% !important;
  margin: 0.8rem 0.8rem 0 !important;
  line-height: 1.6 !important;
  text-align: justify;
}
.cc-link {
  color: #86a22f !important;
  margin: 0.5rem auto !important;
  font-size: 120% !important;
  padding: 0 !important;
  white-space: nowrap;
  text-align: center !important;
}
.cc-link:hover {
  color: #CD668F !important;
}
.cc-btn {
  font-size: 90% !important;
  padding: 0.125rem !important;
  border-radius: 0px !important;
  margin: 0.3rem 0.6rem 0.6rem !important;
  letter-spacing: 1px;
}
.cc-btn:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
  background-color: rgba(134, 162, 47, 0.7) !important;
}
/*--------------------------------------------------------------
定義
--------------------------------------------------------------*/
.bg_grd {
  border-top: 1px dotted rgba(134, 162, 47, .8);
  background: -webkit-linear-gradient(rgba(134, 162, 47, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
  background: -o-linear-gradient(rgba(134, 162, 47, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
  background: linear-gradient(rgba(134, 162, 47, 0.05) 0%, rgba(255, 255, 255, 1) 10%);
}
/*border*/
.border-1 {
  border: 1px solid #ddd;
}
/*font-size*/
.fs-70p {
  font-size: 70% !important;
}
.fs-75p {
  font-size: 75% !important;
}
.fs-80p {
  font-size: 80% !important;
}
.fs-90p {
  font-size: 90% !important;
}
/*上付き、下付き文字*/
span.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: 0.1rem;
}
span.subText {
  font-size: 75.5%;
  vertical-align: bottom !important;
  vertical-align: text-bottom;
  position: relative;
  top: 0em;
}
/*zoomアイコン*/
.zoomImg {
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  padding: 0;
  margin: 0;
}
.zoomImg > i {
  font-size: 20px;
  text-shadow: none;
  padding: 0;
  margin: 0;
  color: #fff;
}
.bg-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  background-color: rgba(134, 162, 47, 0.7);
  border: 2px solid #fff;
  border-radius: 100px;
}
.img_zoom {
  transition: all 0.3s ease-in-out;
  position: relative;
  height: auto;
}
.img_zoom:hover {
  transform: scale(1.08);
}
/*glightbox*/
.glightbox-clean .gslide-description {
  background: transparent !important;
}
.glightbox-clean .gdesc-inner {
  padding: 10px 0 !important;
}
.glightbox-clean .gslide-title {
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
}
.goverlay {
  background: rgba(0, 0, 0, 0.85);
}
/* ※ */
ul.kome {
  margin: 0;
  padding: 0;
}
ul.kome li {
  list-style: none;
  margin: 0 0 0.3rem 1.25rem;
  line-height: 1.4 !important;
  padding: 0 !important;
  position: relative;
  font-size: 0.9rem;
}
ul.kome li br {
  line-height: 1.4 !important;
}
ul.kome li:before {
  content: "※";
  margin: 0 0 0 -5.25em;
  width: 5em;
  text-align: right;
  position: absolute;
  line-height: 1.3 !important;
  padding: 0 !important;
  top: 0;
}