@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  background-image: url(../../assets/imgs/background_header.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 25px;
}
.header > .container {
  padding: 30px 16px;
}
@media screen and (max-width: 1200px) {
  .header > .container {
    padding: 18px 16px;
  }
}
.header > .container > .link > .image {
  width: 259px;
  height: 42px;
}
@media screen and (max-width: 1200px) {
  .header > .container > .link > .image {
    width: 213px;
    height: 34px;
  }
}
.header > .container > .hamburger-menu {
  position: absolute;
  top: 41px;
  right: 28px;
  width: 36px;
  height: 25px;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .header > .container > .hamburger-menu {
    top: 24px;
    width: 25px;
    height: 20px;
  }
}
.header > .container > .hamburger-menu > .line {
  position: absolute;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0;
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0;
}
.header > .container > .hamburger-menu > .line.active {
  background-color: #0f7100;
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px;
}
@media screen and (max-width: 1200px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: 10px;
  }
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
.header > .container > .menu-sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #edf7d9;
  width: 100%;
  height: 100vh;
  padding-top: 53px;
  z-index: 3;
}
.header > .container > .menu-sp > .list-menu > .menu {
  text-align: center;
  margin-bottom: 32px;
}
.header > .container > .menu-sp > .list-menu > .menu > .link {
  color: #0f7100;
}
.header > .container > .menu-sp > .list-menu > .menu:first-child {
  width: 170px;
  margin: 0 auto 44px;
}
@media screen and (max-width: 820px) {
  .header > .container > .menu-sp > .list-menu > .menu:first-child {
    width: 140px;
    margin: 0 auto 34px;
  }
}
.header > .container > .menu-sp > .list-reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header > .container > .menu-sp > .list-reservation > .reservation {
  background-image: url(../../assets/imgs/background_contact.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 82px;
  margin-bottom: 14px;
  padding-left: 37px;
}
.header > .container > .menu-sp > .list-reservation > .reservation > .link {
  display: inline-block;
  color: #0f7100;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 24px;
}
.header > .container > .menu-sp > .list-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  background-image: url(../../assets/imgs/background_footer.png);
  width: 100%;
  padding: 30px 0 10px;
  text-align: center;
}
.header > .container > .menu-sp > .list-sns > .sns {
  margin: 0 12px;
}
.header > .container > .menu-sp > .list-sns > .sns > .link > .icon {
  width: 30px;
  height: 30px;
}
.header > .container > .menu-sp.active {
  display: block;
}
.header.fixed > .container {
  position: relative;
}
.header.fixed > .container > .hamburger-menu {
  position: fixed;
  top: 10px;
  right: auto;
  width: 80px;
  height: 80px;
  background-image: url(../../assets/imgs/background_hamburger.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 0 500px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu {
    margin: 0 0 0 309px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .header.fixed > .container > .hamburger-menu {
    margin: 0 0 0 283px;
  }
}
.header.fixed > .container > .hamburger-menu > .line {
  width: 36px;
  left: 24px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu > .line {
    width: 30px;
    left: 17px;
  }
}
.header.fixed > .container > .hamburger-menu > .line:first-child {
  top: 25px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu > .line:first-child {
    top: 20px;
  }
}
.header.fixed > .container > .hamburger-menu > .line:last-child {
  bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu > .line:last-child {
    bottom: 19px;
  }
}
.header.fixed > .container > .hamburger-menu > .line.active {
  background-color: #ffffff;
}
.header.fixed > .container > .hamburger-menu > .line.active:first-child {
  top: 40px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu > .line.active:first-child {
    top: 31px;
  }
}
.header.fixed > .container > .hamburger-menu > .line.active:last-child {
  bottom: 39px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .hamburger-menu > .line.active:last-child {
    bottom: 28px;
  }
}
.header.fixed > .container > .menu-sp {
  position: fixed;
  left: auto;
  max-width: 604px;
  margin: 0 0 0 -16px;
}
@media screen and (max-width: 1200px) {
  .header.fixed > .container > .menu-sp {
    max-width: 394px;
  }
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  background-image: url(../../assets/imgs/background_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 41px 25px 10px;
}
.footer > .container > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}
.footer > .container > .list-menu > .menu {
  background-image: url(../../assets/imgs/footer_menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 122px;
  height: 43px;
  text-align: center;
  padding-top: 7px;
  margin: 0 5px;
}
@media screen and (max-width: 1200px) {
  .footer > .container > .list-menu > .menu {
    width: 98px;
    height: 37px;
  }
}
.footer > .container > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .footer > .container > .list-menu > .menu > .link {
    font-size: 12px;
  }
}
.footer > .container > .list-menu > .menu:last-child > .link {
  font-weight: 700;
}
.footer > .container > .copyright {
  color: #ffffff;
  font-size: 11px;
  text-align: center;
}

body {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  color: #000000;
}
body.fixed {
  overflow: hidden;
}

section {
  position: relative;
}

img {
  width: 100%;
  vertical-align: top;
}

.sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .sp {
    display: none;
  }
}

.section-title {
  font-size: 43px;
  letter-spacing: 0.28rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .section-title {
    font-size: 35px;
  }
}
.section-title > .japanese {
  display: block;
  font-size: 15px;
  letter-spacing: 0.1rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .section-title > .japanese {
    font-size: 12px;
  }
}

.button {
  position: relative;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .button {
    font-size: 11px;
  }
}
.button::before {
  content: "";
  position: absolute;
  background-color: #0f7100;
  width: 100%;
  height: 27px;
  z-index: -1;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #0f7100;
}
.button > .link {
  display: inline-block;
  border: 2px solid #0f7100;
  background-color: #ffffff;
  width: 100%;
  color: #0f7100;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.button-underline {
  margin: 0 0 0 auto;
}
.button-underline > .link {
  position: relative;
  border-bottom: 1px solid #000000;
  display: block;
  color: #000000;
  font-size: 16px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .button-underline > .link {
    font-size: 13px;
  }
}
.button-underline > .link:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #000000;
}
@media screen and (max-width: 1200px) {
  .button-underline > .link:before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #000000;
  }
}

.section-background > .container > .image {
  visibility: inherit;
  position: fixed;
  inset: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: block;
  width: 0px;
  height: 0px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

.section-sns {
  position: fixed;
  left: 5%;
  top: 5%;
}
.section-sns > .container > .list-sns > .sns {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  cursor: pointer;
}
.section-sns > .container > .list-sns > .sns > .icon {
  width: 100%;
}

.section-menu {
  position: fixed;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 820px) {
  .section-menu {
    display: none;
  }
}
.section-menu > .container > .list-menu > .menu {
  position: relative;
  margin-bottom: 28px;
}
.section-menu > .container > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .section-menu > .container > .list-menu > .menu > .link {
    font-size: 16px;
  }
}
.section-menu > .container > .list-menu > .menu > .link.active::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 11px;
  background-color: #ffffff;
  border-radius: 50px;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 1200px) {
  .section-menu > .container > .list-menu > .menu > .link.active::before {
    left: -17px;
    top: 8px;
    width: 7px;
    height: 7px;
  }
}

.section-cvbutton {
  position: fixed;
  left: 5%;
  bottom: 3%;
}
@media screen and (max-width: 820px) {
  .section-cvbutton {
    display: none;
  }
}
.section-cvbutton > .container > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .section-cvbutton > .container > .list-menu {
    display: block;
  }
}
.section-cvbutton > .container > .list-menu > .menu {
  background-image: url(../../assets/imgs/background_contact.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 115px;
  height: 83px;
  text-align: center;
  padding-top: 19px;
  margin-right: 14px;
  padding-right: 2px;
  line-height: 1.1;
}
@media screen and (max-width: 1200px) {
  .section-cvbutton > .container > .list-menu > .menu {
    background-size: contain;
    line-height: 1;
  }
}
.section-cvbutton > .container > .list-menu > .menu > .link {
  display: inline-block;
  color: #0f7100;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 7px;
}

.section-notice {
  position: fixed;
  right: 2%;
  bottom: 3%;
}
@media screen and (max-width: 1200px) {
  .section-notice {
    right: 1%;
  }
}
@media screen and (max-width: 820px) {
  .section-notice {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    background-color: #edf7d9;
    width: 100%;
    z-index: 3;
    bottom: 0;
    padding: 8px 0;
  }
}
.section-notice > .container > .text {
  color: #ffffff;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .section-notice > .container > .text {
    color: #000000;
    text-align: center;
  }
}

.section-main {
  background-color: #ffffff;
  max-width: 604px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .section-main {
    max-width: 394px;
  }
}

.list-program > .program {
  position: relative;
  margin-bottom: 60px;
}
.list-program > .program > .link {
  color: #000000;
}
.list-program > .program > .link > .image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 334px;
  margin-bottom: 19px;
}
.list-program > .program > .link > .list-tag > .tag {
  background-color: #12a343;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 10px;
}
.list-program > .program > .link > .date {
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .list-program > .program > .link > .date {
    font-size: 12px;
  }
}
.list-program > .program > .link > .list-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.list-program > .program > .link > .list-category > .category {
  border-radius: 50px;
  width: 109px;
  background-color: #12a343;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-right: 5px;
}
@media screen and (max-width: 1200px) {
  .list-program > .program > .link > .list-category > .category {
    font-size: 10px;
  }
}
.list-program > .program > .link > .title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}
.list-program > .program > .link > .text {
  font-size: 15px;
  margin-bottom: 19px;
}
@media screen and (max-width: 1200px) {
  .list-program > .program > .link > .text {
    font-size: 13px;
  }
}
.list-program > .program > .link > .button {
  border: 2px solid #0f7100;
  background-color: #ffffff;
  width: 100%;
  color: #0f7100;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 13px;
}
.list-program > .program > .link > .button::before {
  top: 6px;
  left: 6px;
  height: 51px;
}
@media screen and (max-width: 1200px) {
  .list-program > .program > .link > .button::before {
    top: 11px;
    left: 7px;
    height: 45px;
  }
}

.list-people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-people > .people {
  max-width: 257px;
  width: 100%;
  margin: 0 10px 32px;
}
@media screen and (max-width: 1200px) {
  .list-people > .people {
    max-width: 157px;
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .list-people > .people {
    max-width: 147px;
  }
}
@media screen and (max-width: 1200px) {
  .list-people > .people:nth-child(odd) {
    margin-right: 29px;
  }
}
.list-people > .people > .link {
  color: #000000;
}
.list-people > .people > .link > .image {
  margin-bottom: 10px;
}
.list-people > .people > .link > .image > img {
  height: 157px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-people > .people > .link > .job {
  font-size: 12px;
  font-weight: 500;
}
.list-people > .people > .link > .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.list-people > .people > .box-category {
  margin-bottom: 7px;
}
.list-people > .people > .box-category > .category > .category_link {
  display: inline-block;
  border-radius: 50px;
  width: 100%;
  background-color: #12a343;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .list-people > .people > .box-category > .category > .category_link {
    font-size: 10px;
  }
}
.list-people > .people > .button > .link {
  padding: 6px;
}
@media screen and (max-width: 1200px) {
  .list-people > .people > .button > .link {
    font-size: 11px;
  }
}
.list-people > .people > .button::before {
  top: 7px;
  left: 3px;
  height: 36px;
}
@media screen and (max-width: 1200px) {
  .list-people > .people > .button::before {
    top: 9px;
    height: 27px;
  }
}

.section-posts > .link {
  color: #000000;
}
.section-posts > .link > .image {
  margin-bottom: 19px;
}
.section-posts > .link > .date {
  font-size: 12px;
  margin-bottom: 8px;
}
.section-posts > .link > .list-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.section-posts > .link > .list-category > .category {
  border-radius: 50px;
  width: 109px;
  background-color: #12a343;
  color: #ffffff;
  font-size: 10px;
  text-align: center;
  margin-right: 5px;
}
.section-posts > .link > .title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-posts > .link > .text {
  font-size: 13px;
  margin-bottom: 19px;
}
.section-posts > .link > .button {
  padding: 13px;
}
.section-posts > .link > .button::before {
  top: 5px;
  left: 4px;
  height: 45px;
}