@charset "UTF-8";
/*Variable
－－－－－－－*/
/*
ブレークポイント

基本  1920px
ipad 1050px
sp   767px;

コンテンツ幅1000px

*/
/* 2, Contents */
.l-container {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}

.l-container-small {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-container-small {
    width: 100%;
    padding: 0 20px;
  }
}

.c-row {
  display: flex;
  align-items: flex-start;
}

.c-row-between {
  justify-content: space-between;
}

.c-row-center {
  justify-content: center;
}

.c-row-wrap {
  flex-wrap: wrap;
}

/* Header
--------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 777;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px 0 30px;
}
@media screen and (max-width: 1050px) {
  .header__inner {
    padding: 0px 0px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0px 0px 0 10px;
  }
}
.header__brand {
  margin-top: 29px;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .header__brand {
    position: relative;
    margin-top: 9px;
    width: 184px;
    z-index: 777;
  }
}
.header__brand a:hover {
  opacity: 1;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: flex;
}
.header__menu {
  display: flex;
  margin-top: 20px;
}
.header__menu > li {
  padding: 10px 6px;
}
.header__menu > li > a {
  padding: 10px;
  color: #fff;
  font-size: 15px;
  font-family: "Barlow", serif;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1050px) {
  .header__menu > li > a {
    padding: 10px 6px;
  }
}
.header__menu > li > a:hover {
  opacity: 1;
  color: #054429;
}
.header__btn {
  margin-left: 30px;
  background-color: #054429;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .header__btn {
    margin-left: 15px;
  }
}
.header__btn > a {
  display: block;
  width: 120px;
  height: 120px;
  padding: 63px 10px 36px 10px;
  background: url("../img/icon-mail.png") no-repeat 50% 37px;
  background-size: 20px auto;
  color: #fff;
  font-size: 15px;
  font-family: "Barlow", serif;
  letter-spacing: 0.05em;
}

/* nav-btn */
.c-nav__button-wrap {
  display: none;
}

.c-nav__sp-wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-nav__button-wrap {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    background-color: #054429;
    z-index: 776;
  }
  .c-nav__button {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 23px;
    height: 18px;
    border: none;
    background: none;
  }
  .c-nav__button-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease-in;
  }
  .c-nav__button-item:nth-child(2) {
    top: 50%;
    width: 100%;
  }
  .c-nav__button-item:nth-child(3) {
    top: 100%;
  }
  .c-nav__button.is-close .c-nav__button-item {
    top: 50%;
    transform: rotate(45deg);
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(2) {
    width: 0;
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  /* sp ナビ */
  .c-nav__sp-wrap {
    display: block;
    position: fixed;
    top: 0px;
    right: 0;
    width: 100%;
    z-index: 775;
    padding: 75px 0px 30px 0;
    background-color: #fff;
    transform: translateX(110%);
    transition: all 0.2s ease-in;
    overflow-y: auto;
  }
  .c-nav__sp-wrap.is-open {
    transform: translateX(0%);
  }
  .c-nav__sp-wrap > nav > ul {
    margin-bottom: 20px;
    padding: 0;
  }
  .c-nav__sp-wrap > nav > ul > li > a {
    display: block;
    position: relative;
    padding: 15px 20px 13px 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    font-family: "Barlow", serif;
  }
  .c-nav__sp-wrap > nav > ul > li > a::after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #88bd73;
    border-right: 2px solid #88bd73;
    transform: rotate(45deg);
  }
  .c-nav__sp-wrap > nav > ul > li > a:first-of-type {
    border-top: 1px solid #e8e8e8;
  }
}
.c-nav__sp-btn > a {
  display: block;
  width: 245px;
  height: 52px;
  margin: auto;
  padding: 11px 10px 20px 30px;
  background: url(../img/icon-mail.png) no-repeat 60px 18px;
  background-size: 20px auto;
  background-color: #054429;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-family: "Barlow", serif;
  letter-spacing: 0.05em;
}

/* footer
--------------------------- */
.footer__copylight {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
  text-align: center;
}
.footer__copylight small {
  font-size: 11px;
}

.footer-block01 {
  align-items: center;
  padding: 50px 0 38px 0;
}
@media screen and (max-width: 767px) {
  .footer-block01 {
    justify-content: center;
    padding: 40px 0 38px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-block01__logo {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
.footer-block01__logo a:hover {
  opacity: 1;
}

/* Common
--------------------------- */
.highlight {
  background: linear-gradient(transparent 60%, #fcffa5 60% 100%, transparent 100%);
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
}