@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:100,300,400,500,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;600;700;800;900&display=swap");
html, body, span, applet, object, figure, figcaption, iframe, h1, h2, h3, h4, h5, h6, blockquote, dl, dt, dd, ol, ul, li, table, tbody, tfoot, thead, tr, th, td, article, footer, header {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, section {
  display: block;
}

ol, ul {
  list-style: none;
}

html, body {
  font-size: 1.6rem;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

p {
  margin: 0 0 1.6rem 0;
  line-height: 2;
  font-size: 1.6rem;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

h1, h2, h3, h4, h5, ul, ol, li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: all .2s ease;
}

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

*, *:after, *:before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
.tracking-in-expand {
  opacity: 0;
}

.tracking-in-expand.is-show {
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  opacity: 1;
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.fadeInUp {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp.is-show {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInLeft.is-show {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-menu {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 110, 0.9);
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.modal-menu ul {
  display: table-cell;
  vertical-align: middle;
}

.modal-menu ul li {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
}

.modal-menu ul li a {
  display: block;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  color: #f5f5f5;
  transition: all .5s;
}

.modal-menu ul li a:hover {
  color: #999;
}

.modal-menu-btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .modal-menu-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
    transition: all .3s;
  }
  .modal-menu-btn:before, .modal-menu-btn:after {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
    transition: all .3s;
    left: 0;
    background: #000;
  }
  .modal-menu-btn:before {
    top: 0;
  }
  .modal-menu-btn:after {
    bottom: 0;
    width: 70%;
  }
  .modal-menu-btn span {
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 2px;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(0);
    transition: all .3s;
    opacity: 1;
  }
  .modal-menu-btn:hover:before {
    transform: translateX(-5px);
  }
  .modal-menu-btn:hover:after {
    width: 100%;
    transform: translateX(5px);
  }
}

.modal-menu:hover span:nth-child(1):after {
  animation: anim .8s ease 0s forwards;
}

.modal-menu:hover span:nth-child(2):after {
  animation: anim .8s ease .1s forwards;
}

.modal-menu:hover span:nth-child(3):after {
  animation: anim .8s ease .2s forwards;
}

.modal-menu:hover span:nth-child(4):after {
  animation: anim .8s ease .3s forwards;
}

.modal-menu:hover span:nth-child(5):after {
  animation: anim .8s ease .4s forwards;
}

.modal-menu:hover span:nth-child(6):after {
  animation: anim .8s ease .8s forwards;
}

.modal-menu:hover span:nth-child(7):after {
  animation: anim .8s ease .6s forwards;
}

.modal-menu:hover span:nth-child(8):after {
  animation: anim .8s ease .7s forwards;
}

.modal-menu:hover span:nth-child(9):after {
  animation: anim .8s ease .8s forwards;
}

.open .modal-menu {
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}

.open .modal-menu li {
  opacity: 1;
}

.open .modal-menu li:nth-child(1) {
  transition: opacity 1.3s ease .5s;
}

.open .modal-menu li:nth-child(2) {
  transition: opacity 1.3s ease .6s;
}

.open .modal-menu li:nth-child(3) {
  transition: opacity 1.3s ease .7s;
}

.open .modal-menu li:nth-child(4) {
  transition: opacity 1.3s ease .8s;
}

.open .modal-menu li:nth-child(5) {
  transition: opacity 1.3s ease .9s;
}

.open .modal-menu li:nth-child(6) {
  transition: opacity 1.3s ease 1.0s;
}

.open .modal-menu li:nth-child(7) {
  transition: opacity 1.3s ease 1.1s;
}

.open .modal-menu li:nth-child(8) {
  transition: opacity 1.3s ease 1.2s;
}

.open .modal-menu li:nth-child(9) {
  transition: opacity 1.3s ease 1.3s;
}

.open .modal-menu-btn span {
  transition: all .6s;
  transform: translateX(20px);
  opacity: 0;
  background: #fff;
}

.open .modal-menu-btn:before {
  top: 10px;
  transform: rotate(45deg);
  background: #fff;
}

.open .modal-menu-btn:after {
  top: 10px;
  transform: rotate(-45deg);
  background: #fff;
  width: 100%;
}

section {
  position: relative;
}

section.contact-container {
  padding: 50px 0;
}

section.add {
  background: #efefef;
  padding: 50px 0;
}

.container {
  margin: 0 auto;
  padding: 0;
  position: relative;
  max-width: 1200px;
  padding: 20px;
}

.footer {
  padding: 80px 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: #0B1E6E;
}

.footer-logo {
  width: 200px;
  display: block;
  margin: 0 auto 25px auto;
}

.copyright {
  margin-right: 5px;
  margin-right: 0.5rem;
}

.chapter-title {
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom: 2.0rem;
  position: relative;
}

.chapter-title span {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 10px;
  display: table;
  padding-bottom: 10px;
  position: relative;
}

.chapter-title span:after {
  display: block;
  content: "";
  height: 10px;
  background: #0b1e6e;
  margin-top: 10px;
}

.chapter-01_contact {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 640px) {
  .chapter-01_contact {
    display: none;
  }
}

.chapter-02, .chapter-03, .chapter-04, .chapter-05, .chapter-06 {
  padding: 60px 0;
}

.header {
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 2;
  height: 100px;
  transition: all .3s;
}

.header:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0;
  z-index: 0;
  transition: all .5s;
  transform: translateY(-100%);
}

.header h1 {
  height: 100%;
  margin-left: 50px;
}

.header h1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 100%;
  transform: scale(1.2);
  transition: all .3s;
}

.header h1 a img {
  width: 100%;
}

.header.is-animation {
  height: 50px;
}

.header.is-animation h1 a {
  transform: scale(1);
}

.header.is-animation:before {
  opacity: 1;
  transform: translateY(0);
}

.header_scroll {
  width: 120px;
  position: absolute;
  left: -45px;
  bottom: 46px;
  padding-bottom: 5px;
  transform: rotate(-90deg);
  z-index: 1;
}

.header_scroll span {
  font-family: 'Oswald',san-serif;
  font-weight: 100;
  font-size: 1.2rem;
  letter-spacing: 5px;
  margin-left: 2px;
  position: relative;
}

.header_scroll span:before {
  content: "";
  display: block;
  width: 60px;
  border-bottom: solid 1px #fff;
  position: absolute;
  right: -67px;
  bottom: -6px;
  z-index: 2;
}

.header_scroll:before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: solid 1px #000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.header_scroll:after {
  content: "";
  display: block;
  position: absolute;
  right: -3px;
  bottom: -3px;
  animation: move 3s ease infinite;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #0b1e6e;
  animation-delay: 3s;
  opacity: 0;
  z-index: 1;
}

.header-sub {
  height: 100vh;
  overflow: hidden;
  border-top: solid 120px #fff;
  border-bottom: solid 60px #fff;
}

.header-sub2 {
  height: 390px;
  overflow: hidden;
  border-top: solid 120px #fff;
  border-bottom: solid 60px #fff;
}

.header-sub2 .header-sub_title {
  top: 190px;
  bottom: auto;
}

.header-sub2 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-sub img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-sub_title {
  position: absolute;
  height: 70px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0 50px;
}

.header-sub_title span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  width: 100%;
}

.header-sub_title:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -35px;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: skewX(45deg);
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .header h1 a {
    width: 60%;
  }
}

@keyframes move {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-120px);
    opacity: 1;
  }
  60% {
    transform: translateX(-120px);
    opacity: 0;
  }
  100% {
    transform: translateX(-120px);
    opacity: 0;
  }
}

.swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom: solid 60px #fff;
}

.swiper-slide {
  margin-top: 100px;
}

.swiper-slide_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-slide_title {
  display: block;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(-50px);
}

.swiper-slide_title span {
  display: none;
}

.swiper-slide_title.-two {
  max-width: 980px;
  background: transparent url(../img/heroimage02-logo.svg) no-repeat center center/contain;
}

.swiper-slide_title.-tree {
  max-width: 980px;
  background: transparent url(../img/heroimage03-logo.svg) no-repeat center center/contain;
}

.swiper-slide_title.-five {
  max-width: 400px;
  background: transparent url(../img/heroimage05-logo.svg) no-repeat center center/contain;
}

.swiper-catch01 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 150px;
  top: 150px;
  margin: auto;
  width: 300px;
  height: 150px;
  transform: translateY(-50px);
}

.swiper-catch04 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  right: 70px;
  bottom: 150px;
  margin: auto;
  width: 300px;
  height: 150px;
  transform: translateY(-50px);
}

@media screen and (max-width: 1024px) {
  .swiper-slide_title.-two, .swiper-slide_title.-tree {
    max-width: 80%;
  }
}

@media screen and (max-width: 640px) {
  .swiper-slide_title.-five {
    max-width: 60%;
  }
}

.mainmenu {
  height: 100%;
  position: absolute;
  top: 0;
  right: 50px;
  font-weight: 700;
}

.mainmenu ul {
  height: 100%;
  display: flex;
  align-items: center;
}

.mainmenu ul li a {
  display: block;
  position: relative;
  padding-bottom: 10px;
}

.mainmenu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .2s;
  background: #0b1e6e;
  height: 5px;
  width: 0;
}

.mainmenu ul li a:hover:after {
  width: 100%;
}

.mainmenu ul li:not(:first-of-type) {
  margin-left: 50px;
}

.mainmenu ul li.active a:after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .mainmenu {
    display: none;
  }
}

.contact-btn {
  display: block;
  position: relative;
  overflow: hidden;
  background: #efefef;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 120px;
  z-index: 1;
}

.contact-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #0B1E6E;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .2s ease-out;
  z-index: -1;
}

.contact-btn span {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 10px;
  display: block;
  width: 100%;
  text-align: center;
  transition: all .2s ease-out;
  margin-top: 10px;
}

.contact-btn:hover {
  color: #000;
}

.contact-btn:hover:before {
  transform: translateY(-90%);
}

.contact-btn:hover span {
  letter-spacing: 5px;
}

.flex-layout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-layout.-bnr {
  margin: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-layout.-bnr .flex-layout_item {
  padding: 10px;
}

.flex-layout.-bnr .flex-layout_item a {
  display: block;
  text-align: center;
}

.flex-layout_photo {
  width: 57%;
  position: relative;
  overflow: hidden;
}

.flex-layout_photo:before {
  content: "";
  display: block;
  padding-top: 62.5%;
  width: 100%;
}

.flex-layout_photo img {
  position: absolute;
  object-fit: cover;
  max-width: 100%;
  left: 0;
  top: 0;
}

.flex-layout_text {
  width: 40%;
  padding: 0 40px;
}

.flex-layout_text p {
  font-weight: 500;
}

.flex-layout_item {
  width: 25%;
}

.flex-layout_item:nth-of-type(2) {
  animation-delay: .1s;
}

.flex-layout_item:nth-of-type(3) {
  animation-delay: .2s;
}

.flex-layout_item:nth-of-type(4) {
  animation-delay: .3s;
}

.flex-layout_item:nth-of-type(5) {
  animation-delay: .4s;
}

.flex-layout_item:nth-of-type(6) {
  animation-delay: .5s;
}

.flex-layout_item:nth-of-type(7) {
  animation-delay: .6s;
}

.flex-layout_item:nth-of-type(8) {
  animation-delay: .7s;
}

.flex-layout_item:nth-of-type(9) {
  animation-delay: .8s;
}

.flex-layout.-column3 {
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  align-items: start;
}

.flex-layout.-column3 .flex-layout_item {
  width: calc(100% / 3 - 40px);
}

.flex-layout.-column3 .flex-layout_item .recommend-mark {
  width: 60%;
  display: block;
  margin: 0 auto 1.35rem auto;
}

.flex-layout.-column3 .flex-layout_item h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.flex-layout.-column3 .flex-layout_item p {
  font-size: 1.35rem;
}

.flex-layout.reverse {
  position: relative;
  z-index: 0;
  justify-content: flex-start;
}

.flex-layout.reverse:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: #F2F3F5;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: -1;
  transition: all 1.5s;
  transform: scale(0);
}

.flex-layout.reverse.-noback:before {
  display: none;
}

.flex-layout.reverse .flex-layout_photo {
  order: 1;
}

.flex-layout.reverse .flex-layout_text {
  order: 2;
}

.flex-layout.reverse.is-show:before {
  transform: scale(1);
  transition-delay: .6s;
}

@media screen and (max-width: 1024px) {
  .flex-layout {
    flex-wrap: wrap;
  }
  .flex-layout_item {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .flex-layout {
    display: block;
  }
  .flex-layout_photo {
    width: 100%;
  }
  .flex-layout_text {
    width: 100%;
  }
  .flex-layout_item {
    width: 100%;
  }
  .flex-layout.reverse:before {
    display: none;
  }
  .flex-layout.-column3 {
    display: flex;
  }
  .flex-layout.-column3 .flex-layout_item {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 640px) {
  .flex-layout.-column3 {
    display: block;
  }
  .flex-layout.-column3 .flex-layout_item {
    width: 100%;
  }
}

.plant-list {
  position: relative;
  z-index: 0;
  justify-content: flex-start;
}

.plant-list:before {
  content: "";
  display: block;
  width: 37%;
  height: 106%;
  background: #F2F3F5;
  position: absolute;
  left: 0;
  top: -3%;
  z-index: -1;
  transition: all 1.2s;
  transform: scale(0);
}

.plant-list:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #0B1E6E;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 2.0s;
  z-index: -2;
}

.plant-list_title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.plant-list_lead {
  text-align: center;
  margin-bottom: 4.8rem;
  font-weight: 700;
}

.plant-list.is-show:before {
  transform: scale(1);
  transition-delay: .3s;
}

.plant-list.is-show:after {
  transform: translateX(0);
}

.plant-list .flex-layout {
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plant-list .flex-layout_item {
  width: calc(100% / 4 - 40px);
}

.plant-list .effect-chico figcaption {
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plant-list .effect-chico figcaption:before {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 100, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .plant-list:before {
    content: "";
    width: 80%;
  }
  .plant-list .flex-layout {
    display: flex;
  }
  .plant-list .flex-layout_item {
    width: calc(100% / 3 - 40px);
  }
  .plant-list .hover-effect_rubi {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 640px) {
  .plant-list_lead {
    font-size: 1.5rem;
  }
  .plant-list .flex-layout {
    gap: 20px;
  }
  .plant-list .flex-layout_item {
    width: calc(100% / 2 - 20px);
  }
  .plant-list .flex-layout_item .recommend-mark {
    width: 50%;
  }
  .plant-list .hover-effect_rubi {
    font-size: 1.4rem;
  }
  .plant-list .effect-chico figcaption {
    padding: 0.5em;
  }
  .plant-list .effect-chico figcaption:before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

.plant-detail {
  margin-bottom: 25px;
}

.plant-detail .container {
  max-width: 1024px;
}

.plant-detail .flex-layout {
  display: flex;
  gap: 40px;
  align-items: start;
}

.plant-detail .flex-layout_photo {
  width: 50%;
}

.plant-detail .flex-layout_photo:before {
  display: none;
}

.plant-detail .flex-layout_photo img {
  position: relative;
}

.plant-detail .flex-layout_text {
  width: 50%;
  padding: 0;
}

.hover-effect {
  position: relative;
  overflow: hidden;
  margin: 10px 1%;
  max-width: 480px;
  max-height: 360px;
  background: #0B1E6E;
  text-align: center;
  cursor: pointer;
}

.hover-effect_image {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.hover-effect_text {
  padding: 2em;
  color: #fff;
  font-size: 1.25em;
  text-transform: uppercase;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hover-effect_text:before, .hover-effect_text:after {
  pointer-events: none;
}

.hover-effect_text > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hover-effect_title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  margin: 0;
}

.hover-effect_rubi {
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .hover-effect {
    max-width: 100%;
  }
}

/*---------------*/
/***** Chico *****/
/*---------------*/
figure.effect-chico img {
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(1.12);
  object-fit: cover;
  position: absolute;
}

figure.effect-chico:after {
  content: "";
  display: block;
  padding-top: 100%;
}

figure.effect-chico h2 {
  padding: 20% 0 20px 0;
}

figure.effect-chico p {
  margin: 0 auto;
  transform: scale(1.5);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico figcaption {
  padding: 3em;
}

figure.effect-chico figcaption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: '';
  transform: scale(1.1);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico:hover img {
  opacity: 0.5;
  transform: scale(1);
}

figure.effect-chico:hover figcaption::before, figure.effect-chico:hover p {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 640px) {
  figure.effect-chico img {
    opacity: 0.5;
    transform: scale(1);
  }
  figure.effect-chico figcaption::before, figure.effect-chico p {
    opacity: 1;
    transform: scale(1);
  }
}

.link-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  line-height: 1;
  border-radius: 3px;
  background: #0b1e6e;
  color: #fff;
  position: relative;
}

.link-btn:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  margin-right: 10px;
}

.link-btn:hover {
  background: #2849cf;
}

#map_canvas {
  height: 500px;
  width: 100%;
}

.table dl {
  display: flex;
}

.table dl dt, .table dl dd {
  padding: 20px 5px;
  font-size: 1.8rem;
  border-bottom: solid 1px #ccc;
}

.table dl dt {
  width: 200px;
  font-weight: 700;
  border-bottom: solid 1px #000;
}

.table dl dd {
  flex: 1;
}

@media screen and (max-width: 640px) {
  .table dl {
    display: block;
  }
  .table dl dt {
    width: 100%;
    border-bottom: none;
    background: #000;
    color: #fff;
    padding: 10px 5px;
  }
}

.form {
  max-width: 640px;
  padding: 20px 0 20px 0;
  margin: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  position: relative;
}

.form a {
  color: #0B1E6E;
  text-decoration: underline;
}

.form a:hover {
  color: #4d65c4;
}

.form:after {
  display: block;
  content: "";
  clear: both;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.tab-group:after {
  content: "";
  display: table;
  clear: both;
}

.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: rgba(160, 179, 176, 0.25);
  color: #a0b3b0;
  font-size: 20px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
}

.tab-group li a:hover {
  background: #179b77;
  color: #000;
}

.tab-group .active a {
  background: #1ab188;
  color: #000;
}

.tab-content > div:last-child {
  display: none;
}

label {
  position: relative;
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
}

label .req {
  margin: 2px;
  color: #2c2575;
}

label .coution {
  color: #333;
  font-size: 0.85rem;
  margin-left: 10px;
}

label.highlight {
  color: #000;
}

input, textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #ccc;
  color: #000;
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}

input:focus, textarea:focus {
  outline: 0;
  border-color: #2c2575;
}

textarea {
  border: 2px solid #ccc;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}

.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}

.top-row > div:last-child {
  margin: 0;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  cursor: pointer;
}

.reset {
  background: #e7e7e7;
  float: left;
  color: #aaa;
}

.reset:hover, .reset:focus {
  background: #c7c7c7;
  color: #fff;
}

.submit {
  background: #0B1E6E;
  float: right;
}

.submit:hover, .submit:focus {
  background: #930;
}

.button-block {
  display: block;
  width: 48%;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

.insta_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
}

.insta_list li {
  width: calc(100% / 5 - 10px);
  margin: 5px;
  overflow: hidden;
  background: #000;
}

.insta_list li img {
  transition: all .2s;
  transform: scale(1);
  opacity: 1;
}

.insta_list li img:hover {
  transform: scale(1.2);
  opacity: .6;
}

.insta_list.-works li {
  width: calc(100% / 4 - 10px);
}

@media screen and (max-width: 1024px) {
  .insta_list.-works li {
    width: calc(100% / 3 - 10px);
  }
}

@media screen and (max-width: 640px) {
  .insta_list.-works li {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width: 640px) {
  .insta_list li {
    width: calc(100% / 2 - 10px);
  }
}

:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

/* •·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· */
.reveal-text,
.reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 1.6rem;
  /*   -webkit-animation-name: clip-text;
            animation-name: clip-text;*/
  color: rgba(255, 255, 255, 0);
  white-space: nowrap;
  cursor: default;
  z-index: 0;
  display: inline-block;
  transition: color .1s;
  transition-delay: .85s;
  overflow: hidden;
  padding: 5px 10px;
}

.reveal-text.is-show {
  color: white;
}

.reveal-text::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0B1E6E;
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.reveal-text.is-show:after {
  animation-name: text-revealer;
}

.reveal-text:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0B1E6E;
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition-delay: .8s;
  transform: translateX(-100%);
}

.reveal-text.is-show:before {
  transform: translateX(100%);
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
/*# sourceMappingURL=style.css.map */