@charset "UTF-8";
/* フォント読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&family=Outfit:wght@100..900&display=swap");
/* カラー */
/* opa */
/* tra */
/* b-radi */
/* 画面幅 */
/* breakpoint */
/* html body etc */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  padding-top: 60px;
}
@media (max-width: 1020px) {
  body {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body a {
  text-decoration: none;
  opacity: 1;
  transition: opacity ease 0.3s;
}
body a:hover {
  transition: opacity ease 0.3s;
  opacity: 0.6;
}
body img {
  max-width: 100%;
  vertical-align: bottom;
}
body h1,
body h2,
body h3 {
  margin: 0;
  padding: 0;
}
body p {
  margin: 0;
  margin-bottom: 1.5em;
}
body ul {
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style: none;
}
body ol {
  margin: 0;
  padding: 1em;
}
body figure {
  margin: 0;
  padding: 0;
}
body dl, body dt, body dd {
  margin: 0;
}

/* abs & parts */
.abs__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .abs__inner {
    padding: 0 10px;
  }
}

.btn-link {
  background-color: #575757;
  color: #fff;
  padding: 18px 56px;
  line-height: 1.45;
  margin-right: 24px;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 950px) {
  .btn-link {
    padding: 14px 36px;
  }
}
@media (max-width: 767px) {
  .btn-link {
    padding: 6px 12px 8px;
    margin-right: 14px;
  }
}
.btn-link:last-child {
  margin-right: 0;
}
.btn-link > span {
  position: relative;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .btn-link > span {
    padding-left: 18px;
  }
}
.btn-link > span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 8px;
  left: 0;
}
@media (max-width: 767px) {
  .btn-link > span::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}

.icon-flag {
  position: relative;
  padding-left: 36px;
}
@media (max-width: 767px) {
  .icon-flag {
    padding-left: 24px;
  }
}
.icon-flag::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../img/flag-eve.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
}
@media (max-width: 767px) {
  .icon-flag::before {
    top: 2px;
    width: 20px;
    height: 20px;
  }
}

/* search */
.search-body {
  display: none;
  visibility: hidden;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 70;
  background-color: rgba(0, 0, 0, 0.6);
  height: calc(100% - 60px);
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 1020px) {
  .search-body {
    top: 49px;
    height: calc(100% - 49px);
  }
}

.body__search-open .search-body {
  display: block;
  visibility: visible;
  transition: 0.3s;
  box-sizing: border-box;
}
@media (max-width: 1020px) {
  .body__search-open .search-body {
    padding: 0 20px;
  }
}

.search-box {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  max-width: 800px;
  margin: 96px auto 0;
  padding: 30px 48px 38px 48px;
}
@media (max-width: 767px) {
  .search-box {
    border-radius: 24px;
    padding: 14px 14px 18px 14px;
  }
}
.search-box h2 {
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: normal;
}
@media (max-width: 767px) {
  .search-box h2 {
    margin-bottom: 6px;
    font-size: 2rem;
    padding-left: 24px;
  }
}
.search-box h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 6px;
  left: 0;
  background-image: url(../img/header/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .search-box h2::before {
    width: 20px;
    height: 20px;
    top: 5px;
  }
}
.search-box__close {
  width: 32px;
  height: 32px;
  position: absolute;
  display: block;
  top: -32px;
  right: 4px;
}
@media (max-width: 767px) {
  .search-box__close {
    width: 24px;
    height: 24px;
  }
}
.search-box__close:hover {
  cursor: pointer;
}
.search-box__close::before, .search-box__close::after {
  content: "";
  height: 3px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  transition: 0.3s;
  top: 12px;
  right: 0;
}
.search-box__close::before {
  transform: rotate(-45deg);
}
.search-box__close::after {
  transform: rotate(45deg);
}

.search-form__inner {
  display: flex;
}
.search-form__keyword {
  box-sizing: border-box;
  padding: 12px 14px 14px 18px;
  width: calc(100% - 112px);
  border-radius: 12px 0 0 12px;
  border: 2px solid #8f8f8f;
  padding-block: 0;
}
@media (max-width: 767px) {
  .search-form__keyword {
    width: calc(100% - 64px);
  }
}
.search-form__btn {
  box-sizing: border-box;
  display: block;
  width: 100px;
  height: 48px;
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border: none;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 767px) {
  .search-form__btn {
    width: 64px;
    font-size: 1.4rem;
  }
}
.search-form__btn:hover {
  cursor: pointer;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  border-bottom: 4px solid #000;
  background-color: #fff;
  z-index: 80;
}
@media (max-width: 1020px) {
  header {
    height: 50px;
  }
}

.header__inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 10px;
  }
}
.header__logo {
  position: absolute;
  top: 13px;
  left: 20px;
  max-width: 200px;
}
@media (max-width: 1020px) {
  .header__logo {
    top: 10px;
    max-width: 160px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    left: 10px;
  }
}

#header__search {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 14px;
  right: 20px;
  background-image: url(../img/header/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1020px) {
  #header__search {
    right: 68px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  #header__search {
    right: 60px;
  }
}
#header__search:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

/* header__hmb */
@media print, screen and (min-width: 1021px) {
  #header__hmb {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 1020px) {
  #header__hmb {
    display: block;
    visibility: visible;
  }
  .header__hmb {
    position: absolute;
    width: 26px;
    height: 23px;
    top: 13px;
    right: 20px;
  }
}
@media (max-width: 1020px) and (max-width: 767px) {
  .header__hmb {
    right: 12px;
  }
}
@media (max-width: 1020px) {
  .header__hmb__bar {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-bottom: 2px solid #000;
  }
}
@media (max-width: 1020px) and (max-width: 767px) {
  .header__hmb__bar {
    border-width: 3px;
  }
}
@media (max-width: 1020px) {
  .header__hmb__bar::before, .header__hmb__bar::after {
    content: "";
    height: 2px;
    background-color: #000;
    width: 100%;
    position: absolute;
    transition: 0.3s;
    right: 0;
  }
}
@media (max-width: 1020px) and (max-width: 767px) {
  .header__hmb__bar::before, .header__hmb__bar::after {
    height: 3px;
  }
}
@media (max-width: 1020px) {
  .header__hmb__bar::before {
    top: 0;
  }
  .header__hmb__bar::after {
    top: 10px;
  }
}
/* g-nav */
.g-nav {
  position: absolute;
  right: 80px;
  top: 8px;
  box-sizing: border-box;
}
.g-nav__list {
  display: flex;
  margin: 0;
}
.g-nav__list li {
  margin-right: 24px;
  position: relative;
  box-sizing: border-box;
  padding: 10px 0;
}
.g-nav__list li:last-of-type {
  margin-right: 0;
}
.g-nav__list li a {
  color: #000;
}
@media print, screen and (min-width: 1021px) {
  .g-nav__list__close {
    display: none;
    visibility: hidden;
  }
}
@media print, screen and (min-width: 1021px) {
  .g-nav__list__sub {
    display: none;
    visibility: hidden;
  }
}

@media (max-width: 1020px) {
  .g-nav {
    display: none;
    visibility: hidden;
  }
}
/* g-nav__child */
@media print, screen and (min-width: 1021px) {
  .g-nav__child-pst {
    display: none;
    visibility: hidden;
    margin: 0;
    box-sizing: border-box;
    border-radius: 6px;
  }
  .g-nav__child-pst.active {
    display: block;
    visibility: visible;
    width: 100%;
    padding: 6px 12px 8px 16px;
    background-color: #000;
    position: absolute;
    top: 41px;
    left: 0;
    z-index: 81;
  }
  .g-nav__child-pst.active li {
    margin: 0;
    padding: 0;
  }
  .g-nav__child-pst.active li > a {
    color: #fff;
    font-size: 1.5rem;
  }
}
@media (max-width: 1020px) {
  .g-nav__child-pst {
    margin: 16px 0 0 20px;
    padding: 0;
  }
  .g-nav__child-pst li {
    margin: 0;
    padding: 0;
  }
}
/* body__gl-open */
@media (max-width: 1020px) {
  .body__gl-open .g-nav {
    display: block;
    visibility: visible;
    z-index: 70;
    background-color: #000;
    top: 49px;
    width: 100%;
    left: 0;
    padding: 32px 20px 40px;
  }
  .body__gl-open .g-nav__list {
    display: block;
    max-height: calc(100vh - 130px);
    overflow-y: scroll;
    max-width: 300px;
    margin: 0 auto;
  }
  .body__gl-open .g-nav__list li {
    margin: 0;
  }
  .body__gl-open .g-nav__list li a {
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    padding-left: 21px;
  }
  .body__gl-open .g-nav__list li a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    top: 8px;
    left: 0;
  }
  .body__gl-open .g-nav__list__close {
    display: block;
    visibility: visible;
    margin-top: 32px;
  }
  .body__gl-open .g-nav__list__close > span {
    color: #fff;
    position: relative;
    padding-left: 20px;
  }
  .body__gl-open .g-nav__list__close > span::before, .body__gl-open .g-nav__list__close > span::after {
    content: "";
    height: 2px;
    width: 12px;
    position: absolute;
    left: 1px;
    top: 10px;
    background-color: #fff;
  }
  .body__gl-open .g-nav__list__close > span::before {
    transform: rotate(45deg);
  }
  .body__gl-open .g-nav__list__close > span::after {
    transform: rotate(-45deg);
  }
  .body__gl-open .g-nav__list li.g-nav__list__sub {
    display: block;
    visibility: visible;
  }
  .body__gl-open .g-nav__list li.g-nav__list__sub > a {
    margin-left: 21px;
  }
  .body__gl-open .g-nav__list li.g-nav__list__sub > a::before {
    content: "";
    width: 12px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    border-top: none;
    border-right: none;
    transform: rotate(0);
    top: 13px;
    left: 0;
  }
  .body__gl-open .header__hmb__bar {
    border-bottom: none;
  }
  .body__gl-open .header__hmb__bar::before {
    top: 11px;
    transform: rotate(45deg);
  }
  .body__gl-open .header__hmb__bar::after {
    top: 11px;
    transform: rotate(-45deg);
  }
}
/* footer */
footer {
  background-color: #000;
  padding: 14px 0;
}
footer .copyright {
  margin: 0;
  color: #fff;
  text-align: right;
  line-height: 1.2;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}

/* pagetop */
#pagetop {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 30;
}
#pagetop a {
  transition: none;
}
#pagetop a:hover {
  opacity: 1;
}
#pagetop .pagetop__btn {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background-color: #000;
  z-index: 10;
  transition: 0.3s;
}
@media (max-width: 767px) {
  #pagetop .pagetop__btn {
    right: 10px;
  }
}
#pagetop .pagetop__btn::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
}
#pagetop .pagetop__btn.bottom {
  bottom: 70px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  #pagetop .pagetop__btn.bottom {
    transform: translateY(6px);
  }
}

/* lower-main */
.lower-main .abs__inner {
  height: 192px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .lower-main .abs__inner {
    height: 118px;
  }
}
.lower-main .abs__inner::before {
  content: "";
  display: block;
  z-index: 10;
  box-sizing: border-box;
  position: absolute;
  width: 142px;
  height: 142px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .lower-main .abs__inner::before {
    width: 87px;
    height: 87px;
    right: 10px;
  }
}
.lower-main__ttl {
  font-size: 3.2rem;
  line-height: 1.3125;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lower-main__ttl {
    font-size: 1.8rem;
  }
}

/* lower-main-event */
.lower-main-event {
  background-color: #e6ede6;
}
.lower-main-event .lower-main__ttl {
  color: #0a8447;
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 58px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .lower-main-event .lower-main__ttl {
    font-size: 1.6rem;
    padding-bottom: 40px;
  }
}
.lower-main-event .lower-main__ttl::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 264px;
  height: 48px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/event/ttl.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .lower-main-event .lower-main__ttl::before {
    width: 165px;
    height: 31px;
    background-image: url(../img/event/ttl-sp.png);
  }
}
.lower-main-event .abs__inner::before {
  background-image: url(../img/event/main.png);
}

.page-event-detail .lower-main-event .abs__inner::before {
  background-image: url(../img/event/main-detail.png);
}

/* lower-main-prospo */
.lower-main-prospo {
  background-color: #fdeee7;
}
.lower-main-prospo .lower-main__ttl {
  color: #ee5917;
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 58px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .lower-main-prospo .lower-main__ttl {
    font-size: 1.6rem;
    padding-bottom: 40px;
  }
}
.lower-main-prospo .lower-main__ttl::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 454px;
  height: 52px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/prospo/ttl.png);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .lower-main-prospo .lower-main__ttl::before {
    width: 283px;
    height: 32px;
    background-image: url(../img/prospo/ttl-sp.png);
  }
}
@media (max-width: 420px) {
  .lower-main-prospo .lower-main__ttl::before {
    width: 230px;
  }
}
@media (max-width: 370px) {
  .lower-main-prospo .lower-main__ttl::before {
    width: 214px;
  }
}
.lower-main-prospo .abs__inner::before {
  background-image: url(../img/prospo/main.png);
  width: 248px;
  height: 142px;
}
@media (max-width: 767px) {
  .lower-main-prospo .abs__inner::before {
    width: 113px;
    height: 65px;
  }
}

/* lower-main-about */
.lower-main-about {
  background-color: #e9f5ff;
}
.lower-main-about .lower-main__ttl {
  color: #1a68b7;
}
.lower-main-about .abs__inner::before {
  background-image: url(../img/about/main.png);
}

/* lower-cnt */
.lower-cnt {
  min-height: 336px;
}

.lower-cnt .abs__inner {
  max-width: 1000px;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* parts */
.icon-req {
  color: #fff;
  font-size: 80%;
  display: inline-block;
  padding: 0 6px 0 9px;
  border-radius: 4px;
  margin: 0 4px;
  font-weight: 500;
  letter-spacing: 0.25em;
}

.nowrap {
  white-space: nowrap;
}

.tipl1 {
  text-indent: -1em;
  padding-left: 1em;
}

.c-green {
  color: #0ca072;
}

.txt-r {
  text-align: right;
}
.txt-l {
  text-align: left;
}
.txt-c {
  text-align: center;
}

.fs-1up {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .fs-1up {
    font-size: 1.6rem;
  }
}
.fs-2up {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .fs-2up {
    font-size: 1.7rem;
  }
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}

.tipl {
  text-indent: -1em;
  padding-left: 1em;
}

.w-m100 {
  max-width: 100px;
}
.w-m200 {
  max-width: 200px;
}
.w-m300 {
  max-width: 300px;
}
.w-m400 {
  max-width: 400px;
}
.w-m500 {
  max-width: 500px;
}
.w-m600 {
  max-width: 600px;
}
.w-m700 {
  max-width: 700px;
}
.w-m800 {
  max-width: 800px;
}
.w-m900 {
  max-width: 900px;
}

.sp-w-min100 {
  min-width: 100px;
}
.sp-w-min200 {
  min-width: 200px;
}
.sp-w-min300 {
  min-width: 300px;
}
.sp-w-min400 {
  min-width: 400px;
}
.sp-w-min500 {
  min-width: 500px;
}
.sp-w-min600 {
  min-width: 600px;
}
.sp-w-min700 {
  min-width: 700px;
}
.sp-w-min800 {
  min-width: 800px;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1em {
  margin-top: 1em;
}
.mt-2em {
  margin-top: 2em;
}
.mt-3em {
  margin-top: 3em;
}
.mt-4em {
  margin-top: 4em;
}
.mt-5em {
  margin-top: 5em;
}
.mt-6em {
  margin-top: 6em;
}

#header__search {
  display: none !important;
}/*# sourceMappingURL=style.css.map */