@charset "UTF-8";
/* CSS Document */
body {
  background-color: #FFFEF2;
  color: #333333;
  font-family: "YakuHanJP", "Raleway", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.6em;
  line-height: 2.4rem;
  padding-top: 80px;
  margin: 0;
  animation: bodyfadeIn 2s ease 0s 1 normal forwards;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

@keyframes bodyfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: #333333;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.contact-btn {
  display: inline-block;
  align-self: center;
  background-color: #1AA24A;
  color: #fff;
  border-radius: 6px;
  padding: 0 10px;
  margin-left: 16px;
  height: 50px;
  line-height: 50px;
}
.contact-btn:hover {
  opacity: 0.7;
}

.h3class {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1AA24A;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .h3class {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.cmn-table {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cmn-table dt {
  width: 25%;
  padding: 24px 0 24px 24px;
  border-top: 1px solid #306245;
  border-left: 1px solid #306245;
  background-color: #D1EBDA;
}
.cmn-table dt:last-of-type {
  border-bottom: 1px solid #306245;
}
.cmn-table dd {
  width: 75%;
  padding: 24px 0 24px 24px;
  border-top: 1px solid #306245;
  background-color: #fff;
}
.cmn-table dd:last-of-type {
  border-bottom: 1px solid #306245;
}
.cmn-table dd.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cmn-table {
    flex-direction: column;
  }
  .cmn-table dt, .cmn-table dd {
    width: 100%;
    border: none;
  }
  .cmn-table dt:last-of-type, .cmn-table dd:last-of-type {
    border: none;
  }
  .cmn-table dt {
    padding: 8px;
  }
  .cmn-table dd {
    padding: 12px;
    margin-bottom: 8px;
  }
}

#page_top {
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  display: flex;
  grid-template-columns: auto 1fr;
  padding: 0 16px;
  margin-top: -1px;
  gap: 24px;
  background-color: #FFFEF2;
  justify-content: space-between;
  /*スクロールで上部固定に*/
}
#header h1 {
  display: inline-block;
  align-self: center;
}
#header h1 img {
  width: 290px;
}
#header #open, #header #close {
  display: none;
}
#header .top-nav {
  display: flex;
}
#header .top-nav ul {
  display: flex;
  align-items: center;
}
#header .top-nav ul li a {
  line-height: 80px;
  padding: 0 16px;
}
#header .top-nav ul li:last-child a {
  padding-right: 0;
}
#header.HeightMin {
  position: fixed;
  z-index: 998;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 849px) {
  #header {
    height: 60px;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
  #header h1 img {
    width: 250px;
  }
  #header #open, #header #close {
    display: block;
    width: 35px;
    cursor: pointer;
  }
  #header #open img, #header #close img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #header #open {
    align-self: center;
  }
  #header #close {
    align-self: flex-end;
    margin: 20px 20px 20px 0;
  }
  #header .top-nav {
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #1AA24A;
    width: 100svw;
    height: auto;
    min-height: 100svh;
    height: auto;
    transform: translatey(-120vh);
    pointer-events: none;
    transition: all 0.3s;
  }
  #header .top-nav.show {
    transform: translateY(0);
    pointer-events: auto;
  }
  #header .top-nav ul {
    flex-direction: column;
    align-items: flex-end;
  }
  #header .top-nav ul li a {
    padding: 0;
    font-size: 2.2rem;
    color: #fff;
    margin-right: 10svw;
    line-height: 60px;
  }
  #header .top-nav ul li.sp {
    display: block;
  }
  #header .top-nav ul li.tel {
    margin: 16px 0;
  }
  #header .top-nav ul li.tel a {
    border: 1px solid #fff;
    padding: 16px 24px;
    border-radius: 4px;
  }
  #header .top-nav ul li.tel a img {
    vertical-align: unset;
    margin-right: 16px;
  }
  #header .top-nav .contact-btn {
    display: none;
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  margin-top: 100px;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 7% 60px;
  background-color: #1AA24A;
}
#footer .container .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .container .left .logo {
  width: 375px;
}
#footer .container .right {
  width: 390px;
  text-align: right;
}
#footer .container .right nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#footer .container .right nav ul li:last-child {
  flex-grow: 4;
  align-self: flex-end;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 80px;
  }
  #footer .container .left .logo {
    width: 90%;
  }
  #footer .container .right {
    display: none;
  }
}

/*-------------------------------------------
SubHeader
-------------------------------------------*/
.sub-header {
  height: 240px;
  display: grid;
  background: url("../img/sub-header.webp") no-repeat 100% 50%/cover border-box;
}
.sub-header h2 {
  justify-self: center;
  align-self: center;
  color: #1AA24A;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3em;
}
@media (max-width: 767px) {
  .sub-header {
    height: 120px;
    background-position: auto;
  }
  .sub-header h2 {
    font-size: 2rem;
    justify-self: start;
    margin-left: 30px;
  }
}/*# sourceMappingURL=common.css.map */