@charset "UTF-8";
/* レイアウトの共通部分 */
html {
  font-size: 62.5%;
  color: #5c5c5c;
  line-height: 2;
  font-feature-settings: "palt";
}

body {
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
  font-family: "dnp-shuei-mgothic-std", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}

.inner-large {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.inner {
  width: 800px;
  height: auto;
  margin: 0 auto;
  padding: 60px 0;
}

.inner-small {
  width: 540px;
  height: auto;
  margin: 0 auto;
  padding: 100px 0;
}

.bl-2col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ly-bg-green {
  background-color: #f8faf1;
}

.hp-mb30 {
  margin-bottom: 30px !important;
}

.sp {
  display: none;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 820px) {
  body {
    font-size: 1.6rem;
  }
  .inner-large {
    width: 100%;
    padding: 0;
  }
  .inner {
    width: 100%;
    padding: 20px;
  }
}
/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 670px) {
  .inner-small {
    width: 100%;
    padding: 80px 0;
  }
  .bl-2col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Header
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header {
  width: 100%;
  height: 100px;
  border-bottom: 4px solid #00a87b;
}

.ly-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px 0;
}

.h-logo-wrap {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.ly-h-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
}
.ly-h-nav li {
  margin-right: 40px;
}
.ly-h-nav li a {
  text-decoration: none;
  color: #5c5c5c;
}
.ly-h-nav li:last-child {
  margin-right: 0;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 820px) {
  .ly-header-wrap {
    padding: 25px 20px;
  }
}
/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 670px) {
  .ly-header-wrap {
    padding: 20px 16px;
  }
  .ly-h-logo {
    width: 240px;
    height: auto;
  }
  .ly-h-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 0;
  }
  .ly-h-nav li {
    margin-right: 0;
    line-height: 1.1;
  }
  .ly-h-nav li:last-child {
    margin-top: 10px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Body
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.ly-mv-img {
  width: 100%;
  height: auto;
}

.ly-lead {
  font-size: 3.2rem;
  font-weight: bold;
  color: #00a87b;
  text-align: center;
  margin: 0 0 40px;
}

.hp-txt-orange {
  color: #ff7500;
}

.ly-card {
  width: 380px;
  height: auto;
}

.ly-card-img {
  width: 100%;
  height: auto;
}

.ly-card-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #00a87b;
  line-height: 1;
  margin: 20px 0 30px;
}

.ly-cont-ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #00a87b;
  margin: 0 0 40px;
}

.ly-table {
  width: 100%;
}
.ly-table th {
  width: 140px;
  padding: 20px 0 20px 20px;
  text-align: left;
}
.ly-table th,
.ly-table td {
  border-bottom: 1px solid #b7b7b7;
}
.ly-table td {
  padding: 20px 0;
}
.ly-table td p {
  margin: 0;
  line-height: 1.5;
}

/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 670px) {
  .ly-lead {
    font-size: 2rem;
  }
  .ly-card {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .ly-card-ttl {
    font-size: 1.8rem;
  }
  .ly-cont-ttl {
    font-size: 2rem;
  }
  .ly-table {
    width: 80%;
    margin: 0 auto;
  }
  .ly-table th {
    width: 140px;
    padding: 20px 0 0 0;
    text-align: left;
  }
  .ly-table th,
  .ly-table td {
    border-bottom: none;
    display: block;
  }
  .ly-table td {
    padding: 10px 0 20px;
    border-bottom: 1px solid #b7b7b7;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Footer
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-footer-top {
  background-color: #00a87b;
}

.ly-footer-top {
  display: flex;
  justify-content: space-between;
}

.ly-f-logo-wrap {
  margin: 0;
}

.bl-footer-inner {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 40px 0;
}

.ly-footer-nav {
  display: flex;
  align-items: flex-end;
}
.ly-footer-nav li {
  margin-right: 40px;
}
.ly-footer-nav li:last-child {
  margin-right: 0;
}
.ly-footer-nav li a {
  text-decoration: none;
  color: #fff;
}

.bl-footer-bottom {
  background-color: #ff7500;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 820px) {
  .bl-footer-inner {
    width: 100%;
    padding: 40px 20px;
  }
}
/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 670px) {
  .bl-footer-inner {
    width: 100%;
    padding: 20px 16px;
  }
  .ly-footer-top {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .ly-f-logo-wrap {
    margin-bottom: 20px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
トップに戻る 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#back-to-top {
  position: fixed;
  right: 80px;
  bottom: 80px;
  text-align: right;
  width: 80px;
  height: 80px;
  z-index: 30;
}
@media screen and (max-width: 1000px) {
  #back-to-top {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 640px) {
  #back-to-top {
    position: fixed;
    right: 16px;
    bottom: 0;
    text-align: right;
    width: 48px;
    height: 48px;
    z-index: 30;
    margin-bottom: 10px;
  }
}
#back-to-top a {
  display: block;
}

#back-to-top img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  #back-to-top img {
    width: 80%;
  }
}
@media screen and (max-width: 640px) {
  #back-to-top img {
    width: 100%;
  }
}

.back-to-btn {
  opacity: 0;
  visibility: hidden;
}

.back-to-btn-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */