@charset "UTF-8";
/* import
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;500;800&display=swap");
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #000;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  height: auto;
}

/* border-box */
*, *:before, *:after {
  box-sizing: border-box;
}

/* common */
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-weight: normal;
  font-weight: 300;
  line-height: 1.5;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6,
table th {
  font-weight: 300;
}

a,
._hover {
  color: inherit;
  transition: opacity 0.3s;
  text-decoration: none;
  cursor: pointer;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* base
-----------------------------------------*/
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

._pcOnly {
  display: inline-block;
}

@media screen and (max-width: 678px) {
  ._pcOnly {
    display: none;
  }
}
._spOnly {
  display: none;
}

@media screen and (max-width: 678px) {
  ._spOnly {
    display: inline-block;
  }
}
/* inner set
-----------------------------------------*/
.inner {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.inner.-xsmall {
  max-width: 720px;
}

@media screen and (max-width: 678px) {
  .inner.-xsmall {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    width: 100%;
  }
}
.inner.-small {
  max-width: 820px;
}

@media screen and (max-width: 678px) {
  .inner.-small {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    width: 100%;
  }
}
.inner.-medium {
  max-width: 1050px;
}

@media screen and (max-width: 678px) {
  .inner.-medium {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    width: 100%;
  }
}
.inner.-large {
  max-width: 1240px;
}

@media screen and (max-width: 678px) {
  .inner.-large {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    width: 100%;
  }
}
/* title common
-----------------------------------------*/
.c_m-titleWrap {
  display: inline-block;
  text-align: center;
  padding-bottom: 24px;
}

@media screen and (max-width: 678px) {
  .c_m-titleWrap {
    padding-bottom: 3.2vw;
  }
}
.c_m-titleWrap .c_sub_title {
  color: #046430;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 678px) {
  .c_m-titleWrap .c_sub_title {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.c_m-titleWrap .c_title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #333333;
  position: relative;
}

@media screen and (max-width: 678px) {
  .c_m-titleWrap .c_title {
    font-size: 5.8666666667vw;
  }
}
.c_m-titleWrap .c_title:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #046430;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -24px;
}

@media screen and (max-width: 678px) {
  .c_m-titleWrap .c_title:before {
    width: 8vw;
    bottom: -3.2vw;
  }
}
/* header 
-----------------------------------------*/
#header .header_inner {
  margin: 0 auto;
  max-width: 1240px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 678px) {
  #header .header_inner {
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
#header .header_inner .logo {
  transition: 0.3s;
  width: 85px;
}

@media screen and (max-width: 678px) {
  #header .header_inner .logo {
    width: 11.3333333333vw;
  }
  #header .header_inner .logo img {
    width: 100%;
  }
}
#header .header_inner .logo:hover {
  opacity: 0.6;
}

header.header.-contact {
  border-bottom: 1px solid #046430;
}

.c_g-navi {
  display: flex;
  align-items: center;
}

.c_g-navi .item {
  display: flex;
}

.c_g-navi .item a {
  display: flex;
  align-items: center;
  padding-left: 26px;
  transition: 0.2s;
}

@media screen and (max-width: 678px) {
  .c_g-navi .item a {
    font-size: 3.2vw;
    padding-left: 1.7333333333vw;
  }
}
.c_g-navi .item a:hover {
  opacity: 0.6;
}

.c_g-navi .item a:hover:after {
  opacity: 1;
}

.c_g-navi .item:first-child a {
  padding-left: 0;
}

.c_g-navi .item:after {
  display: block;
  content: "/";
  font-size: 1.8rem;
  font-weight: 300;
  padding-left: 26px;
}

@media screen and (max-width: 678px) {
  .c_g-navi .item:after {
    font-size: 3.7333333333vw;
    padding-left: 1.7333333333vw;
  }
}
.c_g-navi .item:last-child:after {
  display: none;
}

/* mv common 
-----------------------------------------*/
.mv .mv_inner {
  height: 530px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .mv .mv_inner {
    height: 36.8055555556vw;
  }
}
.mv.-about .mv_inner {
  height: 300px;
}

.mv .c_headling {
  position: absolute;
  font-size: 2.2222222222vw;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  text-align: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 55%;
}

@media screen and (max-width: 1200px) {
  .mv .c_headling {
    font-size: 3.0555555556vw;
    width: 90%;
  }
}
@media screen and (max-width: 678px) {
  .mv .c_headling {
    font-size: 5.8666666667vw;
    width: 90%;
    line-height: 1.2;
  }
}
.mv .c_headling:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #008e41;
  margin: 0 auto;
  margin-top: 25px;
}

@media screen and (max-width: 678px) {
  .mv .c_headling:after {
    width: 8vw;
    margin-top: 3.3333333333vw;
  }
}
/* EVENT 
-----------------------------------------*/
#event {
  padding: 60px 0 80px;
  background-color: #FFF;
}

@media screen and (max-width: 678px) {
  #event {
    padding: 8vw 0 10.6666666667vw;
  }
}
.c_eventWrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 678px) {
  .c_eventWrap {
    margin-top: 8vw;
    display: block;
  }
}
.c_eventWrap a {
  transition: 0.5s;
}

.c_eventWrap a:hover {
  opacity: 0.6;
}

.c_eventWrap .item {
  width: 33.3333333333%;
  padding: 0 10px;
}

@media screen and (max-width: 678px) {
  .c_eventWrap .item {
    width: 100%;
    padding: 0;
  }
  .c_eventWrap .item a {
    display: flex;
  }
}
.c_eventWrap .item img {
  width: 100%;
}

.c_eventWrap .item .title, .c_eventWrap .item .text {
  text-align: left;
}

@media screen and (max-width: 678px) {
  .c_eventWrap .item .image {
    margin-right: 2.6666666667vw;
    width: 40vw;
  }
}
@media screen and (max-width: 678px) {
  .c_eventWrap .item .textWrap {
    flex: 1;
  }
}
.c_eventWrap .item .title {
  font-size: 2rem;
  padding: 20px 0 15px 0;
  line-height: 1.2;
}

@media screen and (max-width: 678px) {
  .c_eventWrap .item .title {
    font-size: 3.7333333333vw;
    padding: 0 0 2.6666666667vw 0;
  }
}
@media screen and (max-width: 678px) {
  .c_eventWrap .item .text {
    font-size: 2.9333333333vw;
  }
}
.c_eventWrap .item .date {
  text-align: right;
  margin-top: 15px;
}

@media screen and (max-width: 678px) {
  .c_eventWrap .item .date {
    font-size: 2.6666666667vw;
    margin-top: 2vw;
  }
}
.c_eventWrap .item._disabled a {
  pointer-events: none;
}

.c_eventWrap .item._disabled .image {
  position: relative;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.c_eventWrap .item._disabled .image:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}

.c_eventWrap .item._disabled .image:after {
  display: block;
  content: "準備中";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #dfdfdf;
  font-size: 2.4rem;
}

@media screen and (max-width: 678px) {
  .c_eventWrap .item._disabled .image:after {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 678px) {
  .c_eventWrap .item + .item {
    margin-top: 8vw;
  }
}
.c_event_moreBtn a {
  margin-top: 60px;
  font-size: 2.6rem;
  color: #FFF;
  background: #ff0006;
  line-height: 1;
  padding: 10px 70px;
  border-radius: 60px;
  display: inline-block;
  transition: 0.5s;
}

@media screen and (max-width: 678px) {
  .c_event_moreBtn a {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw 9.3333333333vw;
    margin-top: 8vw;
  }
}
.c_event_moreBtn a:hover {
  opacity: 0.6;
}

/* footer
-----------------------------------------*/
#footer {
  background: #008e42;
}

#footer .f_inner p {
  color: #FFF;
  text-align: center;
  padding: 45px 0;
  line-height: 1;
  font-size: 1.2rem;
}

@media screen and (max-width: 678px) {
  #footer .f_inner p {
    padding: 6vw 0;
    font-size: 2.4vw;
  }
}
/*# sourceMappingURL=style.css.map */
