@import url(cssreset.css);
@import url(initialize.css);
@import url(layout.css);
/* top.css */
/* key visual */
#kv {
  width: 100%;
  background-color: #f0f6f3;
  padding-bottom: 30px;
  padding-top: 96px;
}

#kv-inner {
  position: relative;
  width: 100%;
  max-height: 470px;
}

#kv-inner a {
  display: block;
  position: relative;
  z-index: 999;
}

#kv-inner li.item .item-inner {
  width: 100%;
  height: 470px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 20;
}

/* item */
#kv .item-inner.item01 {
  background-image: url("/images/pc_slide01.png");
}

#kv .item-inner.item02 {
  background-image: url("/images/pc_slide02.png");
}

#kv .item-inner.item03 {
  background-image: url("/images/pc_slide03.png");
}

#kv .item-inner.item04 {
  background-image: url("/images/pc_slide04.png");
}

#kv .item-inner.item05 {
  background-image: url("/images/pc_slide05.png");
}

#kv .item-inner.item06 {
  background-image: url("/images/pc_slide06.png");
}

@media only screen and (max-width: 750px) {
  #kv .item-inner.item01 {
    background-image: url("/images/sp_slide01.png");
  }
  #kv .item-inner.item02 {
    background-image: url("/images/sp_slide02.png");
  }
  #kv .item-inner.item03 {
    background-image: url("/images/sp_slide03.png");
  }
  #kv .item-inner.item04 {
    background-image: url("/images/sp_slide04.png");
  }
  #kv .item-inner.item05 {
    background-image: url("/images/sp_slide05.png");
  }
  #kv .item-inner.item06 {
    background-image: url("/images/sp_slide06.png");
  }
}

.catch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

p.top-lead {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.75em;
  width: 80%;
  max-width: 820px;
  background-color: #00543e;
  margin: 0 auto;
  padding: 1.5em 1em;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.34);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.34);
  text-align: center;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.28em;
  color: #ffffff;
  z-index: 21;
  -webkit-animation: fadeIn 1s ease-in 0s 1 normal;
  animation: fadeIn 1s ease-in 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 750px) {
  #kv {
    padding-bottom: 4em;
  }
  #kv-inner li.item .item-inner {
    height: 0;
    background-size: contain;
    padding-top: 52.533%;
  }
  .catch {
    display: none;
  }
  p.top-lead {
    padding: 1em;
    font-size: 1.2em;
  }
}

/* /750px */
@media only screen and (max-width: 500px) {
  #kv {
    padding-bottom: 2em;
  }
  p.top-lead {
    width: 90%;
    font-size: 1.0em;
  }
}

/* /500px */
@media only screen and (max-width: 380px) {
  p.top-lead {
    padding: 0.5em;
    font-size: 0.9em;
  }
}

/* /380px */
@media only screen and (max-width: 320px) {
  p.top-lead {
    padding: 0.25em;
  }
}

/* /320px */
/* contents common */
#wrapper h2 {
  font-family: 'Noto Serif JP', sans-serif;
  color: #00543e;
}

/* news */
section#news {
  background-color: #f0f6f3;
  margin: 0 auto 80px;
  padding-bottom: 2em;
}

section#news h3 {
  margin-bottom: 1em;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.6em;
  color: #00543e;
}

section#news dl {
  width: 90%;
  max-width: 42em;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2em;
  color: #333333;
}

section#news dl dt {
  float: left;
  width: 8em;
  margin-bottom: 0.5em;
}

section#news dl dd {
  margin: 0 0 0.5em 8em;
}

/* section title */
#wrapper h2.support {
  margin-bottom: 1em;
  font-size: 2.2em;
  font-weight: bold;
}

#wrapper h2.support span {
  display: block;
  font-size: 0.45em;
  color: #d2a360;
  letter-spacing: 0.1em;
}

section.support-block .support-bg {
  width: 100%;
  height: 440px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
}

section.support-01 .support-bg {
  background-image: url("/images/img-support-01.jpg");
}

section.support-02 .support-bg {
  background-image: url("/images/img-support-02.jpg");
}

section.support-03 .support-bg {
  background-image: url("/images/img-support-03.jpg");
}

section.support-04 .support-bg {
  background-image: url("/images/img-support-04.jpg");
}

section.support-05 .support-bg {
  background-image: url("/images/img-support-05.jpg");
}

.support-content {
  position: relative;
  width: 92%;
  max-width: 960px;
  min-height: 180px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: -10em auto 8em;
  padding: 0 25px 1.5em;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
  text-align: left;
  z-index: 2;
}

.support-content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

.support-content .icon {
  width: 95px;
  margin-right: 3%;
}

.support-content h3 {
  padding-top: 1.5em;
  line-height: 1.4;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.6em;
  font-weight: 600;
}

.support-content h3 br {
  display: none;
}

.support-content p {
  font-size: 1.15em;
}

.more {
  position: absolute;
  right: 2em;
  bottom: -1.75em;
  margin: auto;
}

/* case */
section#case {
  position: relative;
  min-height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #f0f6f3), to(#f0f6f3));
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #f0f6f3 50%, #f0f6f3 100%);
  padding: 40px 0 80px;
}

.case02 {
  background: #f0f6f3 !important;
}

section#case .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 92%;
  max-width: 960px;
  background-color: #00543e;
  background: -webkit-gradient(linear, left top, left bottom, from(#016f54), to(#00543f));
  background: linear-gradient(to bottom, #016f54 0%, #00543f 100%);
  margin: 0 auto;
  padding: 10px 30px;
  color: #ffffff;
}

section#case .content h3 {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.6em;
}

section#case .content p {
  font-size: 1.2em;
}

section#case .content .text {
  width: 44%;
  text-align: left;
}

section#case .content li {
  display: inline-block;
}

section#case .content li:first-child {
  margin-right: 10px;
}

section#case .content .button {
  margin-left: auto;
}

/* more & button */
.more a,
.button a {
  display: block;
  position: relative;
  padding: 0.5em 3em;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.0em;
  letter-spacing: 0.25em;
  -webkit-transition: .3s all ease-in;
  transition: .3s all ease-in;
}

.more a:hover,
.button a:hover {
  text-decoration: none;
}

.more a:after,
.button a:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2em;
  height: 1px;
  margin: auto;
  content: "";
}

.more a {
  background-color: #00543e;
  color: #ffffff;
}

.more a:hover {
  background-color: #4c8778;
}

.more a:after {
  background-color: #ffffff;
}

.button {
  display: inline-block;
}

.button a {
  background-color: #ffffff;
  color: #00543e;
}

.button a:hover {
  background-color: #b3ccc5;
}

.button a:after {
  background-color: #00543e;
}

@media only screen and (max-width: 1000px) {
  section#case .content li {
    width: 46%;
    margin-right: 2%;
  }
}

/* /1000px */
@media only screen and (max-width: 768px) {
  .support-content h3 br {
    display: block;
  }
}

/* /768px */
@media only screen and (max-width: 750px) {
  /* news */
  section#news {
    margin: 0 auto 8%;
  }
  section#news dl dt {
    float: none;
    width: auto;
    margin-bottom: 0;
  }
  section#news dl dd {
    margin: 0 0 0.5em;
  }
  /* support */
  section.support-block .support-bg {
    height: 0;
    margin: 0 auto;
    padding-top: 58.6%;
  }
  .support-content {
    margin: -8em auto 4em;
    padding: 0 3% 2em;
  }
  .support-content .title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .support-content .icon {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 21.15%;
  }
  .support-content h3 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 76%;
    padding-top: 0;
  }
  .support-content h3 br {
    display: none;
  }
  .more {
    left: 0;
    right: 0;
    bottom: -1.25em;
    width: 9.5em;
  }
  /* case */
  section#case {
    padding: 6% 0 8%;
  }
  section#case .content {
    display: block;
    padding: 3% 4%;
  }
  section#case .content h3 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.6em;
  }
  section#case .content p {
    font-size: 1.2em;
  }
  section#case .content .text {
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
  }
  section#case .content ul {
    margin-bottom: 1em;
  }
  section#case .content li {
    width: auto;
    margin-right: 4%;
  }
  section#case .content li:last-child {
    margin-right: 0;
  }
  section#news dl,
  .support-content p,
  section#case .content p {
    font-size: 1.1em;
  }
}

/* /750px */
@media only screen and (max-width: 550px) {
  .support-content h3 {
    padding-top: 0.5em;
  }
}

/* /550px */
@media only screen and (max-width: 480px) {
  /* section title */
  #wrapper h2.support {
    font-size: 1.8em;
  }
  #wrapper h2.support span {
    font-size: 0.6em;
  }
  /* news */
  section#news h3 {
    font-size: 1.4em;
  }
  /* support */
  .support-content h3 {
    font-size: 1.4em;
  }
}

/* /480px */
@media only screen and (max-width: 375px) {
  /* section title */
  #wrapper h2.support {
    font-size: 1.6em;
  }
  /* support */
  .support-content h3 {
    font-size: 1.2em;
  }
  /* case */
  section#case .content h3 {
    font-size: 1.4em;
  }
  section#case .content li {
    width: 48%;
  }
  section#news dl,
  .support-content p,
  section#case .content p {
    font-size: 1.0em;
  }
}

/* /375px */
@media screen and (min-width: 769px) {
  html {
    overflow-x: hidden;
  }
  #kv-inner {
    max-width: 1000px !important;
    margin: 0 auto;
  }
  #kv-inner:before {
    position: absolute;
    content: "";
    background-image: url("/images/kv-catch.png");
    width: 401px;
    height: 166px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    top: 130px;
    left: 15px;
  }
  #kv-inner a {
    display: block;
  }
  #kv-inner ul {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  #kv-inner ul {
    width: 100% !important;
    margin: 0 auto !important;
  }
}

@media screen and (min-width: 769px) {
  #news {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  #news {
    padding-top: 30px;
  }
}
/*# sourceMappingURL=top.css.map */