@charset "utf-8";

/* --------------------
.layout-main
-------------------- */
.layout-main {
  background-color: #f5f5f5;
}

/* --------------------
.hero
-------------------- */
.hero {
  background: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
}

/* --------------------
.feature
-------------------- */
.feature {
  margin: 40px 0;
  position: relative;
}

.feature .bg-white {
  margin: 0 10vw 4rem 10vw;
  background-color: #fff;
  padding: 3vw 0 4vw 0;
  border-radius: 1vw;
  position: relative;
  z-index: 10;
}

.feature .bg-white .area {
  padding: 0 10px;
}

.feature .bg-white .area .maxheadline { 
  padding-top: 0;
 }

.feature .bg-white .area .item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  padding: 1rem 0;
  gap: 2vw;
}

.feature .bg-white .area .item-list .item {
  text-align: center;
  width: calc((100% / 3) - 2vw);
}

.feature .bg-white .area .item-list .item .icon-image {
  width: 7.5rem;
  margin: 0 auto;
  position: relative;
}

.feature .bg-white .area .item-list .item .lead.center {
  font-size: 1.15vw;
  line-height: 1.5em;
  position: relative;
  display: inline-block;
}

.feature .bg-white .area .item-list .item .inner .lead.center:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.75vw;
  right: -1vw;
  width: 10px;
  height: 10px;
  border-top: 2px solid #23B8EF;
  border-right: 2px solid #23B8EF;
  transform: rotate(135deg);
  transition: 0.2s;
}

.feature .bg-white .area .item-list .item .inner.on .lead.center:after {
  transform: rotate(-45deg);
  bottom: 0.5vw;
}

/* 
accordion
-------------------- */
.feature .click-area {
  cursor: pointer;
}

.feature .click-area img {
  transition: all 0.2s ease-in-out;
}

.feature .click-area .lead.center {
  transition: all 0.2s ease-in-out;
}

.feature .click-area:hover img {
  opacity: 0.6;
}

.feature .click-area:hover .lead.center {
  opacity: 0.6; 
}

.feature .summary {
  display: none;
  background-color: #f5f5f5;
  padding: 1vw;
  border-radius: 1vw;
  margin-top: 0.5vw;
  position: relative;
  z-index: 100;
}

.feature .summary .lead {
  font-size: 0.85vw;
  line-height: 1.75em;
  text-align: left;
}

.feature .summary .image {
  padding-bottom: 1vw;
  border-radius: 0.5vw;
}

.feature .summary .image img {
  border-radius: 0.5vw;
}

@media screen and (min-width: 1600px) {
  .feature .bg-white {
    margin: 0 15vw 4rem 15vw;
  }

  .feature .bg-white .area .item-list {
    padding-top: 2rem;
    gap: 2vw;
  }

  .feature .bg-white .area .lead.center {
    font-size: 1vw;
  }

  .feature .bg-white .area .item-list .item {
    width: calc((100% /3) - 2vw);
  }
}

@media screen and (max-width: 1600px) {
  .feature .bg-white {
    margin: 0 5vw 4rem 5vw;
  }

  .feature .summary .lead {
    font-size: 0.85rem;
  }

  .feature .bg-white .area .item-list .item .lead.center {
    font-size: 1rem;
  }

  .feature .bg-white .area .item-list .item .inner .lead.center:after {
    bottom: 0.5rem;
    right: -1rem;
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 960px) {
  .feature .bg-white {
    margin: 0 0.5rem;
  }

  .feature .bg-white .area .item-list .item {
    width: calc(50% - 2vw);
  }

  .feature .summary {
    width: calc(100% - 1rem);
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .feature .summary .image {
    padding-bottom: 1rem;
  }

  .feature .summary .image img {
    border-radius: 0.5rem;
  }

  .feature .summary .lead {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .feature .bg-white {
    margin: 0 0.5rem;
    padding: 2rem 0;
  }

  .feature .bg-white .area .item-list .item {
    width: 100%;
  }

  .feature .bg-white .maxheadline .text {
    font-size: 1.5rem;
  }

  .feature .bg-white .area .item-list {
    flex-wrap: wrap;
    gap: 4rem 0;
  }

  .feature .bg-white .area .item-list .item .lead.center {
    margin: 0 1rem;
  }
}

/* --------------------
.contact
-------------------- */
.contact {
  background: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
}