@charset "UTF-8";
/******************************************
	mixins
*******************************************/
/******************************************
	記述順
	共通
*******************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #0b0b0b;
  background: #fff;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 1.4px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 500;
}

a {
  color: #0b0b0b;
}
a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
}

/********** cmn **********/
section {
  padding: 100px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  section {
    padding: 10% 0;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 13% 0;
  }
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/********** header **********/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 8888;
  background: #fff;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #header {
    padding: 20px;
  }
}
#header .hd_logo {
  margin-left: 0;
  width: auto;
}
#header .hd_logo a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #header .hd_logo a {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  #header .hd_logo a img {
    width: 60px;
  }
}
@media screen and (max-width: 480px) {
  #header .hd_logo a img {
    width: 40px;
  }
}
#header .hd_logo a span {
  display: inline-block;
  vertical-align: middle;
}
#header .hd_logo a .hd_logo__name {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 20px;
  color: #32823A;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #header .hd_logo a .hd_logo__name {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header .hd_logo a .hd_logo__name {
    font-size: 1.6rem;
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  #header .hd_logo a .hd_logo__name {
    font-size: 1.4rem;
  }
}
#header .hd_icons {
  display: flex;
  gap: 0;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  #header .hd_icons {
    display: none;
  }
}
#header .hd_icons a {
  display: block;
  line-height: 0;
  height: 70px;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #header .hd_icons a {
    width: auto;
    height: 100%;
  }
}
#header .hd_icons a img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .hd_icons a img {
    width: 100%;
  }
}
#header .wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 1200px) {
  #header .wrap {
    padding: 0;
  }
}
#header .wrap nav {
  margin: 0 auto;
  width: auto;
}
@media screen and (max-width: 1200px) {
  #header .wrap nav {
    display: none;
  }
}
#header .wrap nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #header .wrap nav ul {
    gap: 15px;
  }
}
#header .wrap nav ul li a {
  display: block;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #0b0b0b;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #header .wrap nav ul li a {
    font-size: 1.2vw;
  }
}
#header .wrap nav ul li a:hover {
  opacity: 0.6;
}
#header .wrap .hd_hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  #header .wrap .hd_hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
  #header .wrap .hd_hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1B3B7A;
    transition: transform 0.3s, opacity 0.3s;
  }
}

#drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 70px 30px 40px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
#drawer.is-open {
  transform: translateX(0);
}
#drawer .drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
#drawer .drawer__close::before, #drawer .drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}
#drawer .drawer__close::before {
  transform: translateY(-50%) rotate(45deg);
}
#drawer .drawer__close::after {
  transform: translateY(-50%) rotate(-45deg);
}
#drawer .drawer__nav {
  margin-bottom: 30px;
}
#drawer .drawer__nav ul {
  list-style: none;
  padding: 0;
}
#drawer .drawer__nav ul li {
  border-bottom: 1px solid #eee;
}
#drawer .drawer__nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  color: #1B3B7A;
  font-weight: bold;
}
#drawer .drawer__icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#drawer .drawer__icons a {
  display: block;
  line-height: 0;
}
#drawer .drawer__icons a img {
  width: 100%;
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8999;
}
#overlay.is-open {
  display: block;
}

#contents {
  padding-top: 70px;
}
@media screen and (max-width: 1724px) and (min-width: 1201px) {
  #contents {
    padding-top: 64px;
  }
}

/********** footer **********/
#footer {
  position: relative;
  background: #F4F4F4;
}

.copy {
  font-size: 19px;
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .copy {
    font-size: 1.4rem;
  }
}

#page-top {
  font-size: 120%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 80px;
  }
}
#page-top a {
  text-decoration: none;
  text-align: center;
  display: block;
}

/********** mainvisual **********/
#mainvisual {
  padding: 0px 0 60px;
  position: relative;
  overflow: hidden;
  background: url(../images/mv-bg.jpg) no-repeat center/cover;
}
#mainvisual .mainvisual_bg {
  position: relative;
  z-index: 0;
  max-width: 972px;
  margin: 0 auto;
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  #mainvisual .mainvisual_bg {
    padding-top: 100px;
  }
}
#mainvisual .mainvisual_bg .mv-wait {
  position: absolute;
  top: 0;
  left: -200px;
  max-width: 454px;
}
@media screen and (max-width: 768px) {
  #mainvisual .mainvisual_bg .mv-wait {
    max-width: 200px;
    left: -20px;
  }
}
#mainvisual .btn-txt {
  color: #fff;
  text-align: center;
  margin: 50px auto 30px;
}
#mainvisual .btn-txt span {
  font-size: 32px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  #mainvisual .btn-txt span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  #mainvisual .btn-txt span {
    font-size: 1.6rem;
    padding: 0 24px;
  }
}
#mainvisual .btn-txt span::before, #mainvisual .btn-txt span::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: #fff;
}
#mainvisual .btn-txt span::before {
  left: 0;
  transform: rotate(-15deg);
}
#mainvisual .btn-txt span::after {
  right: 0;
  transform: rotate(15deg);
}
#mainvisual .mv-btn {
  max-width: 767px;
  margin: 0 auto;
}

/********** slider **********/
#voice {
  background: #E5EFFF;
}
#voice h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #voice h2 {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  #voice h2 {
    margin-bottom: 30px;
  }
}
#voice h2 span {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #voice h2 img {
    width: 372px;
    margin: 0 auto;
  }
}
#voice .slick-slide {
  padding: 0 5px;
}

/********** worries **********/
#worries {
  background: #E5EFFF;
}
#worries .worries__head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #worries .worries__head {
    margin-bottom: 8%;
  }
}
#worries .worries__head__sub {
  font-size: 40px;
  color: #1B3B7A;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #worries .worries__head__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  #worries .worries__head__sub {
    font-size: 1.5rem;
  }
}
#worries .worries__head__ttl {
  font-size: 7rem;
  font-weight: bold;
  color: #1B3B7A;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (max-width: 1050px) {
  #worries .worries__head__ttl {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  #worries .worries__head__ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  #worries .worries__head__ttl {
    font-size: 2.6rem;
  }
}
#worries .worries__head__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #003AD8, #48D5FF);
  border-radius: 2px;
}
#worries .worries__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #worries .worries__list {
    grid-template-columns: 1fr;
  }
}
#worries .worries__list li {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #B7B7B7;
}
#worries .worries__list li img {
  width: 52px;
  flex-shrink: 0;
}
#worries .worries__list li p {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  #worries .worries__list li p {
    font-size: 1.4rem;
  }
}
#worries .worries__box {
  border: 2px solid #1B3B7A;
  border-radius: 0;
  max-width: 882px;
  padding: 40px 50px;
  background: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #worries .worries__box {
    padding: 30px 24px;
  }
}
#worries .worries__box__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  color: #1B3B7A;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #worries .worries__box__ttl {
    font-size: 2rem;
  }
}
#worries .worries__box__ttl span {
  background: linear-gradient(transparent 50%, #FFE500 50%);
  padding: 0 4px;
}
#worries .worries__box__txt {
  font-size: 2rem;
  color: #606A86;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #worries .worries__box__txt {
    font-size: 1.6rem;
  }
  #worries .worries__box__txt br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #worries .worries__box__txt {
    font-size: 1.4rem;
  }
}

/********** reason **********/
#reason {
  background: #F4F4F4;
}
#reason .reason__head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #reason .reason__head {
    margin-bottom: 8%;
  }
}
#reason .reason__head__sub {
  font-size: 40px;
  color: #1B3B7A;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #reason .reason__head__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  #reason .reason__head__sub {
    font-size: 1.5rem;
  }
}
#reason .reason__head__ttl {
  font-size: 7rem;
  font-weight: bold;
  color: #1B3B7A;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (max-width: 1050px) {
  #reason .reason__head__ttl {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason__head__ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  #reason .reason__head__ttl {
    font-size: 2.6rem;
  }
}
#reason .reason__head__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #003AD8, #48D5FF);
  border-radius: 2px;
}
#reason .reason__catch {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #1B3B7A;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  #reason .reason__catch {
    font-size: 1.8rem;
  }
}
#reason .reason__catch span {
  color: #E07000;
}
#reason .reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #reason .reason__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#reason .reason__item {
  background: #fff;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
#reason .reason__item__hd {
  background: #1B3B7A;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
#reason .reason__item__hd p {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1050px) {
  #reason .reason__item__hd p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  #reason .reason__item__hd p {
    font-size: 1.7rem;
  }
}
#reason .reason__item__num {
  width: 50px;
  flex-shrink: 0;
}
#reason .reason__item__photo {
  width: calc(100% - 40px);
  margin: 20px auto 0;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
#reason .reason__item__body {
  padding: 30px 20px;
}
#reason .reason__item__body p {
  font-size: 2.2rem;
  color: #555;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #reason .reason__item__body p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  #reason .reason__item__body p {
    font-size: 1.4rem;
  }
}

/********** staff **********/
#staff {
  background: #F5F5F5;
}
#staff .staff__head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #staff .staff__head {
    margin-bottom: 8%;
  }
}
#staff .staff__head__sub {
  font-size: 40px;
  color: #1B3B7A;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #staff .staff__head__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  #staff .staff__head__sub {
    font-size: 1.5rem;
  }
}
#staff .staff__head__ttl {
  font-size: 7rem;
  font-weight: bold;
  color: #1B3B7A;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (max-width: 1050px) {
  #staff .staff__head__ttl {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  #staff .staff__head__ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  #staff .staff__head__ttl {
    font-size: 2.6rem;
  }
}
#staff .staff__head__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #003AD8, #48D5FF);
  border-radius: 2px;
}
#staff .staff__head__sub {
  color: #E07000;
}
#staff .staff__lead {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #staff .staff__lead {
    font-size: 1.5rem;
  }
  #staff .staff__lead br {
    display: none;
  }
}
#staff .staff__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1050px) {
  #staff .staff__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #staff .staff__list {
    grid-template-columns: 1fr;
  }
}
#staff .staff__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #9D9D9D;
}
#staff .staff__item__photo img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#staff .staff__item__body {
  padding: 26px;
}
#staff .staff__item__role {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
#staff .staff__item__role--manager {
  background: #E07000;
}
#staff .staff__item__role--service {
  background: #00A0A0;
}
#staff .staff__item__role--sales {
  background: #2B5BA8;
}
#staff .staff__item__role--reception {
  background: #D0407A;
}
#staff .staff__item p {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

/********** after **********/
#after {
  background: #162057;
  text-align: center;
}
#after .after__head {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #after .after__head {
    margin-bottom: 8%;
  }
}
#after .after__head__label {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
#after .after__head__sub {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #after .after__head__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  #after .after__head__sub {
    font-size: 2rem;
  }
}
#after .after__head__ttl {
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to right, #FCD42A, #EFA415);
  padding: 10px 40px;
}
@media screen and (max-width: 768px) {
  #after .after__head__ttl {
    font-size: 3.2rem;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 480px) {
  #after .after__head__ttl {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}
#after .after__box {
  background: #fff;
  border-radius: 16px;
  max-width: 1018px;
  margin: 0 auto 60px;
  padding: 50px 60px;
}
@media screen and (max-width: 768px) {
  #after .after__box {
    padding: 40px 30px;
  }
}
#after .after__box__imgs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  #after .after__box__imgs {
    gap: 16px;
  }
}
#after .after__box__imgs img {
  width: calc(33.33% - 20px);
  max-width: 160px;
}
#after .after__box__ttl {
  font-size: 3.6rem;
  font-weight: bold;
  color: #1B3B7A;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #after .after__box__ttl {
    font-size: 2rem;
  }
}
#after .after__box__txt {
  font-size: 2.4rem;
  color: #555;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #after .after__box__txt {
    font-size: 1.6rem;
  }
  #after .after__box__txt br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #after .after__box__txt {
    font-size: 1.4rem;
  }
}
#after .after__btn {
  margin: 0 auto;
  display: flex;
}

/********** contact **********/
.contact__inner {
  background: #fff;
}
.contact__inner h2 {
  color: #fff;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  background: #606A86;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner h2 {
    font-size: 1.8rem;
  }
}
.contact__inner__box {
  padding: 60px 20px;
}
.contact__inner__box form {
  max-width: 825px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__inner__box form {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box form {
    font-size: 1.4rem;
  }
}
.contact__inner__box .smf-item__label__text {
  padding-left: 70px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__label__text {
    padding-left: 0;
  }
}
.contact__inner__box .req .smf-item__label__text {
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .req .smf-item__label__text {
    padding-left: 60px;
  }
}
.contact__inner__box .req .smf-item__label__text:before {
  content: "必須";
  color: #fff;
  font-size: 1.6rem;
  display: inline-block;
  padding: 5px 10px;
  background: #D51313;
  line-height: 1;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .req .smf-item__label__text:before {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .req .smf-item__label__text:before {
    font-size: 1.2rem;
  }
}
.contact__inner__box .privacypolicy_txt {
  text-align: center;
  margin: 40px 0 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacypolicy_txt {
    margin: 6% 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacypolicy_txt {
    margin: 20px 0 15px;
  }
}
.contact__inner__box .privacyarea {
  max-height: 282px;
  border: 1px solid #BAB9B9;
  padding: 30px;
  overflow-y: scroll;
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacyarea {
    margin-top: 12%;
    margin-bottom: 5%;
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacyarea {
    margin-top: 50px;
    margin-bottom: 15px;
    padding: 15px 10px;
    max-height: 160px;
  }
}
.contact__inner__box .privacyarea p {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .privacyarea p {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner__box .privacyarea p {
    margin-bottom: 10px;
  }
}
.contact__inner__box span.smf-checkbox-control__label {
  line-height: 1.4;
}
.contact__inner__box .smf-placeholder[data-name=checkboxes-1jmmroc0m] {
  text-align: center;
}
.contact__inner__box input[type=text],
.contact__inner__box textarea,
.contact__inner__box input[type=email],
.contact__inner__box input[type=tel] {
  width: 100%;
  padding: 15px;
  border: 1px solid #999999;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box input[type=text],
  .contact__inner__box textarea,
  .contact__inner__box input[type=email],
  .contact__inner__box input[type=tel] {
    padding: 10px;
    line-height: 32px;
  }
}
.contact__inner__box .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.contact__inner__box .wp-block-snow-monkey-forms-item.smf-item {
  align-items: center;
  display: flex;
  gap: 4%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .wp-block-snow-monkey-forms-item.smf-item {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.contact__inner__box .smf-item__col.smf-item__col--label {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__col.smf-item__col--label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.contact__inner__box .smf-item__col.smf-item__col--controls {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .contact__inner__box .smf-item__col.smf-item__col--controls {
    width: 100%;
  }
}
.contact__inner__box button.smf-button-control__control {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 266px;
  line-height: 60px;
  background: #002280;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .contact__inner__box button.smf-button-control__control {
    font-size: 1.6rem;
  }
}

.gallery {
  padding: 80px 0 90px;
  background: #E5EFFF;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .gallery {
    padding-bottom: 50px;
  }
}
.gallery__bottom .wrap {
  max-width: 1600px;
}
.gallery__bottom__sub {
  font-size: 40px;
  color: #E07000;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .gallery__bottom__sub {
    font-size: 1.5rem;
  }
}
.gallery__bottom__lead {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .gallery__bottom__lead {
    font-size: 1.5rem;
  }
  .gallery__bottom__lead br {
    display: none;
  }
}
.gallery__bottom__obi {
  text-align: center;
  margin-bottom: 20px;
}
.gallery__bottom__obi span {
  color: #fff;
  font-size: 3.8rem;
  padding: 5px 10px;
  background-image: linear-gradient(90deg, #48d5ff, #003ad8);
}
@media screen and (max-width: 768px) {
  .gallery__bottom__obi span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .gallery__bottom__obi span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .gallery__bottom__gallery {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__bottom__gallery {
    margin-bottom: 20px;
  }
}
.gallery__bottom__gallery img {
  margin-bottom: 14px;
}
.gallery__bottom__btn {
  text-align: center;
  margin: 100px auto 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .gallery__bottom__btn {
    flex-direction: column;
    margin: 50px auto 0;
  }
}
.gallery__bottom__btn a {
  display: block;
  width: 100%;
  max-width: 600px;
}

.sp__fixed__bnr {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sp__fixed__bnr {
    display: flex;
  }
}
.sp__fixed__bnr a {
  display: block;
  line-height: 0;
}

.car-sensor {
  text-align: center;
  margin-top: 50px;
}
.car-sensor img {
  border: 2px solid #969696;
}/*# sourceMappingURL=style.css.map */