@charset "utf-8";
/***** 全体 *****/
#wrapper {
  position: relative;
}
/***** header *****/
.l-header {
  position: sticky;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding-left: var(--inner-padding);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  gap: clamp(1vw, 1vw, 1.6vw);
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.l-header__contents:first-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--item-s-margin) 0;
}
.l-header__subttl img {
  max-height: clamp(22px, 2.2vw, 28px);
}
.l-header__ttl img {
  max-height: 30px;
}
.l-header__nav__cvList {
  display: flex;
}
.l-header__nav__cvList__item {
  position: relative;
}
.l-header__nav__cvList__item:first-child {
  background-color: #fff;
}
.l-header__nav__cvList__item:first-child:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--base-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.l-header__nav__cvList__link {
  width: clamp(80px, 8vw, 130px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 5px;
  transition: 0.3s;
  position: relative;
}
.l-header__nav__cvList__item:first-child .l-header__nav__cvList__link {
  color: var(--base-color);
  flex-direction: column;
  gap: 0.5rem;
}
.l-header__nav__cvList__item:first-child .l-header__nav__cvList__link:hover {
  color: var(--sub-color);
}
.l-header__nav__cvList__item:first-child .l-header__nav__cvList__link .l-header__nav__cvList__img {
  width: 4vh;
  height: 4vh;
  background: url("../images/icon_online.svg") no-repeat center / contain;
  transition: 0.3s;
}
.l-header__nav__cvList__item:first-child .l-header__nav__cvList__link:hover .l-header__nav__cvList__img {
  background: url("../images/icon_online_y.svg") no-repeat center / contain;
}
.l-header__nav__cvList__item:last-child .l-header__nav__cvList__link {
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--base-color);
}
.l-header__nav__cvList__item:last-child .l-header__nav__cvList__link:hover {
  background-color: var(--sub-color);
}
.l-header__nav__cvList__item:last-child .l-header__nav__cvList__link .l-header__nav__cvList__img {
  width: 4vh;
  height: 4vh;
  background: url("../images/icon_sankatoroku.svg") no-repeat center / contain;
  transition: 0.3s;
}
@media screen and (max-width:1000px) {
  .l-header {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    gap: 0;
    border: none;
  }
  .l-header__contents:first-child {
    justify-content: center;
    gap: 0;
    margin: 0 0 0 var(--item-s-margin);
  }
  .l-header__subttl {
    display: none;
  }
  .l-header__nav__cvList__item:first-child {
    display: none;
  }
  .l-header__nav__cvList__item:last-child {
    border-radius: 0;
    margin-left: 1.6rem;
  }
  .l-header__nav__cvList__link {
    width: 70px;
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .l-header__ttl__link {
    display: flex;
    align-items: center;
  }
}
/***** nav *****/
.l-header__nav {
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.l-header__txtlink__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.6vw, 1.6vw, 2vw);
  margin-top: var(--item-s-margin);
}
.l-header__txtlink__list a {
  color: var(--black-color);
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
  transition: 0.3s;
}
.l-header__txtlink__list a:hover {
  color: var(--base-color);
}
.l-header__txtBtn {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 1rem;
  border: 1px solid var(--black-color);
  border-radius: 5px;
  line-height: 2;
}
.l-header__txtBtn__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}
.l-header__txtBtn__item {
  width: 3em;
  padding: 0 0.5rem;
  line-height: 1.7;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.l-header__txtBtn__item:hover, .l-header__txtBtn__item.is_active {
  background-color: var(--base-color);
  color: #fff;
}
.l-header__txtBtn__tit {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
}
.l-header__nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6vw;
}
.l-header__nav__link {
  display: inline-block;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.1vw, 1.6rem);
  padding-bottom: var(--item-s-margin);
  transition: 0.3s;
}
.l-header__nav__link.focus, .l-header__nav__link:hover {
  color: var(--base-color);
}
.c-menu__btn {
  display: none;
}
@media screen and (max-width:1000px) {
  .l-header__nav {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    transform: translate(100%);
    transition: all .5s;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    margin-top: var(--header-height);
    padding: 0 var(--item-s-padding);
    background-color: rgba(35, 141, 59, 0.95);
  }
  .l-header.open .l-header__nav {
    transform: translateZ(0);
  }
  .l-header__txtBtn {
    display: none;
  }
  .l-header__nav__spCv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: var(--item-l-margin) 0;
  }
  .l-header__nav__spCv__item {
    width: calc((100% - 1rem) / 2);
  }
  .l-header__nav__spCv__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem var(--item-s-padding);
    background-color: #fff;
    color: var(--base-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    position: relative;
  }
  .l-header__nav__spCv__item:first-child .l-header__nav__spCv__link::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("../images/icon_online.svg") no-repeat center / contain;
  }
  .l-header__nav__spCv__item:last-child .l-header__nav__spCv__link::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("../images/icon_sankatoroku_g.svg") no-repeat center / contain;
  }
  .l-header__nav__list {
    display: block;
    margin-bottom: var(--item-s-margin);
  }
  .l-header__nav__link {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.6rem;
    padding: 1em 0;
    width: 100%;
    border-bottom: 1px solid var(--sub-color4);
  }
  .l-header__nav__item:first-child .l-header__nav__link {
    border-top: 1px solid #fff;
  }
  .l-header__nav__link.focus {
    color: #fff;
  }
  .l-header__txtlink__list {
    margin: 0;
    gap: 0.8rem;
    order: 2;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .l-header__txtlink__item {
    width: calc((100% - 0.8rem) / 2);
    text-align: center;
  }
  .l-header__txtlink__list a {
    color: #fff;
    font-weight: 400;
    font-size: 1.2rem;
  }
  .l-header__splink__list {
    order: 3;
    margin: var(--item-m-margin) auto 0;
    width: 70%;
    max-width: 300px;
  }
  .l-header__splink__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #fff;
  }
}
/* ハンバーガーボタン */
@media screen and (max-width:1000px) {
  .c-menu__btn {
    position: sticky;
    z-index: 999;
    right: 0;
    transition: .3s;
    cursor: pointer;
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--base-color);
    border-left: 1px solid #fff;
  }
  .c-menu__trigger {
    width: 20px;
    height: 16px;
    position: relative;
  }
  .c-menu__trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .2s;
  }
  .c-menu__trigger span:nth-last-of-type(1) {
    top: 0;
  }
  .c-menu__trigger span:nth-last-of-type(2) {
    top: 7px;
  }
  .c-menu__trigger span:nth-last-of-type(3) {
    bottom: 0;
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(1) {
    transform: translateY(-8px) rotate(45deg);
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(3) {
    transform: translateY(6px) rotate(-45deg);
  }
}
/***** footer *****/
.l-footer {
  background-color: var(--sub-color4);
  font-size: 1.4rem;
}
.l-footer__inner {
  padding: var(--inner-padding) var(--item-s-padding);
}
.l-footer__inner:first-child {
  background: var(--base-color) url("../images/img_footer_bg.svg") no-repeat bottom center / 100%;
}
.l-footer__contents {
  width: 100%;
  max-width: var(--section-width);
  margin-inline: auto;
}
.l-footer__inner:first-child .l-footer__contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content {
  width: 55%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  background-color: #fff;
  padding: var(--item-m-padding) var(--item-l-padding);
  border-radius: 10px;
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100%;
  bottom: -2%;
  left: 0;
  background: url("../images/img_footer.svg") no-repeat bottom center / contain
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100%;
  bottom: -2%;
  right: 0;
  background: url("../images/img_footer02.svg") no-repeat bottom center / contain
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content p {
  color: var(--sub-color2);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 0 var(--item-s-padding);
  position: relative;
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content p::before, .l-footer__inner:first-child .l-footer__contents .l-footer__content p::after {
  position: absolute;
  top: 0.8rem;
  height: 1.8rem;
  content: "";
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content p::before {
  border-left: 1px solid var(--sub-color2);
  left: 0;
  transform: rotate(-30deg);
}
.l-footer__inner:first-child .l-footer__contents .l-footer__content p::after {
  border-right: 1px solid var(--sub-color2);
  right: 0;
  transform: rotate(30deg);
}
.l-footer__cvBtn {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: var(--item-s-padding);
  width: 60%;
  border-radius: 50px;
  background: transparent;
  z-index: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
.l-footer__cvBtn::before, .l-footer__cvBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer__cvBtn::before {
  transition: all 0.3s;
  z-index: -1;
  background: linear-gradient(135deg, var(--base-color) 50%, var(--sub-color) 100%);
}
.l-footer__cvBtn::after {
  z-index: -2;
  background: linear-gradient(135deg, var(--sub-color) 50%, var(--sub-color4) 100%);
}
.l-footer__cvBtn:hover::before {
  opacity: 0;
}
.l-footer__cvBtn__icon {
  width: 25px;
  height: 25px;
  background: url("../images/icon_sankatoroku.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.l-footer__inner:last-of-type .l-footer__contents {
  display: flex;
  justify-content: space-between;
}
.l-footer__inner:last-of-type .l-footer__contents a {
  transition: 0.3s;
}
.l-footer__inner:last-of-type .l-footer__contents a:hover {
  color: var(--base-color);
}
.l-footer__inner:last-of-type .l-footer__content:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__inner:last-of-type a {
  color: var(--black-color);
}
.l-footer__logo__img {
  width: clamp(250px, 32vw, 300px);
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6vw;
}
.l-footer__link {
  text-decoration: none;
  font-weight: 500;
}
.l-footer__txtlink {
  text-align: right;
  font-size: 1.4rem;
}
.l-footer__txtlink a {
  font-size: 1.2rem;
}
.l-footer__txt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: var(--item-s-margin);
}
.l-footer__tit {
  font-size: 1.8rem;
  font-weight: 500;
  padding-right: 1rem;
  border-right: 1px solid var(--black-color);
}
.l-footer__copy {
  width: 100%;
  max-width: var(--section-width);
  margin-inline: auto;
  padding: var(--item-s-padding);
  text-align: center;
  font-size: 1.2rem;
  border-top: 1px solid var(--sub-color3);
}
@media screen and (max-width:768px) {
  .l-footer__inner:first-child .l-footer__contents .l-footer__content {
    width: 100%;
    gap: 1rem;
  }
  .l-footer__inner:first-child .l-footer__contents .l-footer__content {
    padding: var(--item-s-padding);
  }
  .l-footer__inner:first-child .l-footer__contents .l-footer__content::before, .l-footer__inner:first-child .l-footer__contents .l-footer__content::after {
    content: none;
  }
  .l-footer__inner:first-child .l-footer__contents .l-footer__content p {
    font-size: 1.6rem;
  }
  .l-footer__inner:first-child .l-footer__contents .l-footer__content p::before, .l-footer__inner:first-child .l-footer__contents .l-footer__content p::after {
    top: auto;
    bottom: 0;
  }
  .l-footer__cvBtn {
    width: 100%;
    font-size: 1.6rem;
  }
  .l-footer__cvBtn__icon {
    width: 20px;
    height: 20px;
  }
  .l-footer__inner:last-of-type .l-footer__contents {
    flex-direction: column;
    gap: 2.4rem;
  }
  .l-footer__list {
    flex-wrap: wrap;
    gap: 1rem;
    margin-inline: auto;
  }
  .l-footer__item {
    width: calc((100% - 1rem)/2)
  }
  .l-footer__logo {
    display: block;
    text-align: center;
  }
  .l-footer__txt {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .l-footer__txt p {
    margin-inline: auto;
  }
  .l-footer__tit {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid var(--black-color);
    border-right: none;
  }
  .l-footer__inner:last-of-type .l-footer__content:last-of-type {
    align-items: flex-start;
    gap: 2.4rem;
  }
  .l-footer__txtlink {
    margin-inline: auto;
    text-align: center;
  }
}