@charset "UTF-8";
/*------------------------------------------
  全ページ共通 Style
------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #282F2B;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
a {
  color: #282F2B;
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
img {
  width: 100%;
}

.is--tab {
  display: none;
}

.is--sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is--tab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .is--pc {
    display: none;
  }
  .is--sp {
    display: block;
  }
}
/*------------------------------------------
  component
------------------------------------------*/
/* ========== title ========== */
.c-title01 {
  color: #009944;
}
.c-title01 span {
  display: inline-block;
  line-height: 1.1;
}
.c-title01__en {
  font-size: 80px;
  font-family: "Anton", sans-serif;
  padding-right: 10px;
}
.c-title01__ja {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding-top: 1em;
}
.c-title01__ja.--year {
  font-size: 38px;
}
.c-title01.--blue {
  color: #005299;
}

@media only screen and (max-width: 767px) {
  .c-title01__en {
    font-size: 52px;
  }
  .c-title01__ja {
    font-size: 13px;
  }
  .c-title01__ja.--year {
    font-size: 20px;
  }
}
.c-title02 {
  font-size: 26px;
  padding-bottom: 20px;
  font-weight: 700;
  color: #009944;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .c-title02 {
    font-size: 18px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}
.c-title03 {
  position: relative;
  color: #282F2B;
  font-size: 22px;
  font-weight: 700;
  padding-left: 30px;
  margin-bottom: 30px;
}
.c-title03:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 6px;
  height: 30px;
  background: #009944;
  transform: skewX(-20deg);
  transform-origin: left bottom;
}
.c-title03.is--blue:before {
  background: #005299;
}
.c-title03.is--pink:before {
  background: #FF6A8D;
}

@media only screen and (max-width: 767px) {
  .c-title03 {
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
  .c-title03:before {
    width: 4px;
    height: 20px;
  }
}
.c-title04 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-title04 {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* ========== button ========== */
.c-button01 {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  min-width: 352px;
  border-radius: 5px;
  position: relative;
  color: #E2FF00;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 1em clamp(40px, 4.39238653vw, 60px) 1em clamp(20px, 2.9282576867vw, 40px);
  box-shadow: 10px 10px 0px 0px #D8D8D8;
  transition: 0.4s;
  background-color: #282F2B;
  background-image: url(../images/common/arrow01-lg.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 8px;
  text-align: left;
  line-height: 1.4;
}
.c-button01:hover {
  opacity: 1;
  box-shadow: none;
  transform: translate(10px, 10px);
}
.c-button01.--lg {
  background-color: #E2FF00;
  color: #282F2B;
  background-image: url(../images/common/arrow01-bk.svg);
}
.c-button01.--arrow-left {
  background-image: none;
  padding: 1em clamp(15px, 2.196193265vw, 30px) 1em clamp(34px, 4.9780380673vw, 68px);
}
.c-button01.--arrow-left:before {
  content: "";
  width: clamp(34px, 4.9780380673vw, 68px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/arrow01-lg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  transform: rotate(180deg);
}
.c-button01.--arrow-link {
  background-image: url(../images/common/icon-link.svg);
  background-position: right clamp(12px, 1.756954612vw, 24px) center;
  background-size: 16px;
}
.c-button01.--arrow-pdf {
  padding-left: 20px;
  background-image: url(../images/common/icon-pdf.svg);
  background-position: right clamp(15px, 2.196193265vw, 30px) center;
  background-size: 20px;
}
.c-button01.--has-icon {
  background-image: none;
  gap: clamp(6px, 0.878477306vw, 12px);
}
.c-button01.--has-icon img {
  vertical-align: middle;
}
.c-button01.--has-icon .icon-link {
  width: 16px;
}
.c-button01.--has-icon .icon-tel {
  width: 20px;
}
.c-button01.--has-icon .icon-mail {
  width: 24px;
}
.c-button01 .--small {
  font-size: 78%;
}

@media only screen and (max-width: 767px) {
  .c-button01 {
    width: 100%;
    font-size: 16px;
    min-width: auto;
    padding: 1em 40px 1em 20px;
    box-shadow: 10px 10px 0px 0px #D8D8D8;
    transition: none;
  }
  .c-button01:hover {
    box-shadow: 10px 10px 0px 0px #D8D8D8;
    transform: translate(0, 0);
  }
  .c-button01.--arrow-left {
    padding: 1em 20px 1em 52px;
  }
  .c-button01.--arrow-left:before {
    width: 52px;
  }
  .c-button01.--arrow-link {
    background-position: right 20px center;
  }
  .c-button01.--arrow-pdf {
    background-position: right 20px center;
  }
  .c-button01.--has-icon {
    gap: 8px;
  }
  .c-button01.--has-note {
    margin-bottom: 30px;
  }
  .c-button01__note {
    position: absolute;
    left: 0;
    top: 100%;
    color: #282F2B;
    font-weight: 500;
    margin-top: 1em;
  }
}
.c-buttonlist {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.c-buttonlist:last-child {
  margin-bottom: 0;
}
.c-buttonlist > * {
  min-width: auto;
  width: 100%;
}
.c-buttonlist.--col2 {
  gap: 30px 4%;
  justify-content: center;
}
.c-buttonlist.--col2 > * {
  width: 44%;
}
.c-buttonlist.--col2.--start {
  gap: 30px 5%;
  justify-content: flex-start;
}
.c-buttonlist.--col2.--start > * {
  width: 40%;
}
.c-buttonlist.--col3 {
  gap: 30px 3.5%;
}
.c-buttonlist.--col3 > * {
  width: 31%;
}
.c-buttonlist.--col3 .c-button01 {
  font-size: clamp(14px, 1.317715959vw, 18px);
}
.c-buttonlist.--col3 .c-button01.--has-icon {
  justify-content: center;
}
.c-buttonlist.--col3 .c-button01.--arrow-link {
  padding: 1em clamp(25px, 3.6603221083vw, 50px) 1em clamp(12px, 1.756954612vw, 24px);
}
.c-buttonlist.--col3 .c-button01.--arrow-pdf {
  padding-left: clamp(10px, 1.4641288433vw, 20px);
}

@media only screen and (max-width: 767px) {
  .c-buttonlist {
    padding: 0 22px 0 12px;
  }
  .c-buttonlist > * {
    min-width: auto;
    width: 100%;
  }
  .c-buttonlist.--col2 {
    gap: 25px 0;
  }
  .c-buttonlist.--col2 > * {
    width: 100%;
  }
  .c-buttonlist.--col2.--start {
    gap: 25px 0;
  }
  .c-buttonlist.--col2.--start > * {
    width: 100%;
  }
  .c-buttonlist.--col3 {
    gap: 25px 0;
  }
  .c-buttonlist.--col3 > * {
    width: 100%;
  }
  .c-buttonlist.--col3 .c-button01 {
    font-size: 16px;
  }
  .c-buttonlist.--col3 .c-button01.--has-icon {
    justify-content: flex-start;
    padding: 1em 40px 1em 20px;
  }
  .c-buttonlist.--col3 .c-button01.--arrow-link {
    padding: 1em 40px 1em 20px;
  }
  .c-buttonlist.--col3 .c-button01.--arrow-pdf {
    padding-left: 20px;
  }
}
/* ========== list ========== */
.c-list01__item {
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 26px;
}
.c-list01__item:last-child {
  margin-bottom: 0;
}
.c-list01__inner {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 26px;
  align-items: flex-start;
}
.c-list01__head {
  min-width: 144px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.c-list01__head.--no-label {
  min-width: auto;
}
.c-list01__date {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  font-size: 18px;
  padding-top: 1px;
}
.c-list01__new {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  color: #E2FF00;
  background: #282F2B;
  width: 44px;
  line-height: 26px;
  text-align: center;
  border-radius: 5px;
}
.c-list01__label {
  color: #E2FF00;
  background: #282F2B;
  width: 132px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}
.c-list01__title {
  flex: 1;
  font-weight: 700;
  padding-top: 2px;
}

@media only screen and (max-width: 767px) {
  .c-list01__item {
    margin-bottom: 16px;
  }
  .c-list01__inner {
    gap: 10px 0;
    padding-bottom: 16px;
  }
  .c-list01__head {
    gap: 10px;
    justify-content: flex-start;
  }
  .c-list01__date {
    font-size: 16px;
  }
  .c-list01__new {
    width: 40px;
    line-height: 24px;
  }
  .c-list01__label {
    width: auto;
    line-height: 27px;
    font-size: 13px;
    padding: 0 10px;
  }
  .c-list01__title {
    flex: auto;
    width: 100%;
    line-height: 1.75;
    padding-top: 0;
  }
}
.c-list02__item {
  margin-bottom: 30px;
}
.c-list02__item:last-child {
  margin-bottom: 0;
}
.c-list02__title {
  display: flex;
  gap: 16px;
}
.c-list02__title .title-num {
  font-weight: 700;
}
.c-list02__title .title-text {
  flex: 1;
}
.c-list02__contents {
  margin-top: 16px;
  padding-left: 32px;
}

@media only screen and (max-width: 767px) {
  .c-list02__item {
    margin-bottom: 20px;
  }
  .c-list02__title {
    gap: 12px;
  }
  .c-list02__contents {
    padding-left: 26px;
  }
  .c-list02__contents.--sp-pl00 {
    padding-left: 0;
  }
  .c-list02__contents .c-button01 {
    max-width: 300px;
  }
}
.c-list03 {
  border: 1px solid #D8D8D8;
}
.c-list03__item {
  display: table;
  width: 100%;
}
.c-list03__item:last-child {
  margin-bottom: 0;
}
.c-list03__item:last-child .c-list03__title, .c-list03__item:last-child .c-list03__text {
  border-bottom: none;
}
.c-list03__title {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 16px;
  width: 352px;
  font-weight: 700;
  font-size: 20px;
  background: #D8D8D8;
  border-bottom: 1px solid #fff;
}
.c-list03__text {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  background: #FAFAFA;
  font-size: 19px;
  padding: 16px 30px;
  border-bottom: 1px solid #D8D8D8;
}

@media only screen and (max-width: 767px) {
  .c-list03 {
    border: none;
  }
  .c-list03__item {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #D8D8D8;
  }
  .c-list03__title {
    display: block;
    padding: 6px 16px;
    width: 100% !important;
    font-size: 16px;
    border-bottom: none;
  }
  .c-list03__text {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 16px;
    border-bottom: none;
  }
}
.c-list04__item {
  display: table;
  width: 100%;
  margin-bottom: 26px;
}
.c-list04__item:last-child {
  margin-bottom: 0;
}
.c-list04__title {
  display: table-cell;
  vertical-align: middle;
  width: 184px;
  padding: 1em 0;
  background: #F4F4F4;
  text-align: center;
  font-weight: 700;
}
.c-list04__text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .c-list04__title {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 0.5em 0;
    margin-bottom: 10px;
  }
  .c-list04__text {
    display: block;
    padding-left: 0;
    line-height: 1.7;
  }
}
.c-list05 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 32px 1.333%;
}
.c-list05__item {
  width: 24%;
}
.c-list05__text {
  font-size: 14px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .c-list05 {
    gap: 26px 4%;
  }
  .c-list05__item {
    width: 48%;
  }
  .c-list05__text {
    line-height: 1.7;
  }
}
.c-list06__item {
  margin-bottom: 26px;
  position: relative;
  padding-left: 36px;
}
.c-list06__item:last-child {
  margin-bottom: 0;
}
.c-list06__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #009944;
  border-radius: 50%;
  font-weight: 700;
  padding-bottom: 0.1em;
}
.c-list06__title {
  font-size: 18px;
  font-weight: 700;
}
.c-list06__text {
  margin-top: 10px;
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .c-list06__item {
    margin-bottom: 16px;
    padding-left: 32px;
  }
  .c-list06__num {
    width: 22px;
    height: 22px;
  }
  .c-list06__title {
    font-size: 16px;
  }
  .c-list06__text {
    line-height: 1.7;
  }
}
/* ========== text ========== */
.c-text01 {
  line-height: 1.625;
}
.c-text01 > p {
  margin-bottom: 20px;
}
.c-text01 > p:last-child {
  margin-bottom: 0;
}
.c-text01__box {
  margin-bottom: 30px;
}
.c-text01__box:last-child {
  margin-bottom: 0;
}
.c-text01__buttonlist {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 30px 50px;
}

@media only screen and (max-width: 767px) {
  .c-text01 {
    line-height: 1.7;
  }
  .c-text01 > p {
    margin-bottom: 16px;
  }
  .c-text01__box {
    margin-bottom: 26px;
  }
  .c-text01__button {
    width: 90%;
  }
  .c-text01__buttonlist {
    width: 90%;
  }
}
.c-text02 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 10px;
}
.c-text02__label {
  color: #fff;
  background: #282F2B;
  border-radius: 5px;
  padding: 3px 12px;
  min-width: 88px;
  text-align: center;
}
.c-text02__text {
  flex: 1;
  font-weight: 700;
  padding-top: 0.2em;
}
.c-text02-list > * {
  margin-bottom: 10px;
}
.c-text02-list > *:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .c-text02__label {
    font-size: 13px;
    padding: 4px 10px;
    min-width: 72px;
  }
  .c-text02.--sp-drop .c-text02__label {
    min-width: auto;
  }
  .c-text02.--sp-drop .c-text02__text {
    flex: none;
    width: 100%;
  }
  .c-text02-list > * {
    margin-bottom: 16px;
  }
}
.c-text03 {
  text-align: center;
}
.c-text03__title {
  color: #fff;
  background: #009944;
  font-weight: 700;
  line-height: 1.3;
  font-size: 20px;
  padding: 17px 0.5em;
}
.c-text03__text {
  background: #F4F4F4;
  padding: 14px 0.5em;
}
.c-text03-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 15px;
}
.c-text03-list > * {
  flex: 1;
}
.c-text03-list .c-text03__title {
  font-size: clamp(16px, 1.4641288433vw, 20px);
}

@media only screen and (max-width: 767px) {
  .c-text03__title {
    line-height: 1.5;
    font-size: 16px;
    padding: 14px 0.5em;
    margin-bottom: 2px;
  }
  .c-text03__text {
    padding: 16px 0.5em;
  }
  .c-text03-list {
    gap: 20px;
  }
  .c-text03-list > * {
    width: 100%;
    flex: none;
  }
}
.c-text04 {
  margin-bottom: 20px;
}
.c-text04:last-child {
  margin-bottom: 0;
}
.c-text04__title {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  background: #282F2B;
  padding: 2px 20px;
}
.c-text04__text {
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .c-text04 {
    margin-bottom: 16px;
  }
  .c-text04__title {
    font-size: 13px;
    padding: 2px 10px;
  }
  .c-text04__text {
    line-height: 1.7;
  }
}
.c-text05 {
  display: inline-block;
}
.c-text05 p {
  border-radius: 5px;
  background: #F4F4F4;
  padding: 10px 32px;
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}
.c-text05 p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .c-text05 p {
    padding: 10px;
    margin-bottom: 10px;
    justify-content: center;
  }
}
/* ========== table ========== */
.c-table01 {
  line-height: 1.8125;
}
.c-table01 th, .c-table01 td {
  vertical-align: middle;
}
.c-table01 th {
  position: relative;
  font-weight: 500 !important;
  min-width: 170px;
}
.c-table01 th:before {
  content: "";
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #282F2B 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: bottom;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}
.c-table01 th span {
  display: inline-block;
  position: relative;
  background: #F4F4F4;
  padding-right: 0.5em;
}
.c-table01 td {
  padding-left: 1em !important;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-table01 th {
    min-width: 126px;
  }
}
/* ========== note ========== */
.c-note {
  display: flex;
  font-size: 14px;
  line-height: 1.5;
}
.c-note__text {
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .c-note {
    font-size: 12px;
  }
}
/* ========== bullet list ========== */
.c-bullet li {
  display: flex;
  line-height: 1.625;
  gap: 17px;
  margin-bottom: 30px;
}
.c-bullet li:last-child {
  margin-bottom: 0;
}
.c-bullet__label {
  font-weight: 700;
}
.c-bullet__text {
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .c-bullet li {
    line-height: 1.7;
    gap: 12px;
    margin-bottom: 26px;
  }
}
/* ========== indent ========== */
.c-indent {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .c-indent {
    line-height: 1.7;
  }
}
/* ========== Reservation Banner ========== */
.c-reservation {
  padding-right: 10px;
}
.c-reservation__item {
  position: relative;
  display: flex;
  gap: 14px;
  color: #fff;
  padding-left: 20px;
  align-items: center;
  border-radius: 5px;
  height: 150px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 10px 10px 0px 0px #282F2B;
  transition: 0.4s;
}
.c-reservation__item:hover {
  opacity: 1;
  box-shadow: none;
  transform: translate(10px, 10px);
}
.c-reservation__item:last-child {
  margin-bottom: 0;
}
.c-reservation__item:before {
  content: "";
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-reservation__item:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 55%;
  border-style: solid;
  border-width: 150px 40px 0px 0px;
  z-index: 1;
}
.c-reservation__item.--banner01 {
  background: #009944;
}
.c-reservation__item.--banner01:before {
  background: #009944;
}
.c-reservation__item.--banner01:after {
  border-color: #009944 transparent transparent transparent;
}
.c-reservation__item.--banner02 {
  background: #005299;
}
.c-reservation__item.--banner02:before {
  background: #005299;
}
.c-reservation__item.--banner02:after {
  border-color: #005299 transparent transparent transparent;
}
.c-reservation__icon {
  position: relative;
  z-index: 2;
  width: 76px;
}
.c-reservation__text {
  font-size: 24px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-right: 32px;
  background: url(../images/common/arrow01-wh.svg) no-repeat center right;
  background-size: 8px;
}
.c-reservation__image {
  position: absolute;
  width: 55%;
  height: 100%;
  top: 0;
  right: 0;
}
.c-reservation__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 767px) {
  .c-reservation__item {
    padding: 10px 22px 32vw 10px;
    height: auto;
    margin-bottom: 40px;
    transition: none;
  }
  .c-reservation__item:hover {
    box-shadow: 10px 10px 0px 0px #282F2B;
    transform: translate(0, 0);
  }
  .c-reservation__item:before {
    width: 100%;
    height: 5.3333333333vw;
    top: 64px;
    transform: skewY(-3deg);
    transform-origin: left top;
  }
  .c-reservation__item:after {
    content: none;
  }
  .c-reservation__icon {
    width: 54px;
  }
  .c-reservation__text {
    font-size: 18px;
    padding-right: 0;
    flex: 1;
  }
  .c-reservation__text .is--tab {
    display: none;
  }
  .c-reservation__image {
    width: 100%;
    height: 32vw;
    top: auto;
    bottom: 0;
  }
  .c-reservation__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center right;
       object-position: center right;
  }
}
/* ========== sns ========== */
.c-sns {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F4F4;
  border-radius: 5px;
  padding: 14px 24px;
}
.c-sns__label {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  font-size: 15px;
}
.c-sns__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-sns__list img {
  width: 24px;
}

@media only screen and (max-width: 767px) {
  .c-sns {
    padding: 10px 24px;
  }
}
/* ========== detail ========== */
.c-detail {
  position: relative;
  padding: 100px 0;
}
.c-detail__head {
  margin-bottom: 16px;
  gap: 16px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
}
.c-detail__date {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  font-size: 22px;
  padding-top: 2px;
}
.c-detail__new {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  color: #E2FF00;
  background: #282F2B;
  width: 44px;
  line-height: 26px;
  text-align: center;
  border-radius: 5px;
}
.c-detail__label {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #E2FF00;
  background: #282F2B;
  width: 132px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
}
.c-detail__title {
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #D8D8D8;
}
.c-detail__table {
  margin-bottom: 30px;
  margin-top: 40px;
}
.c-detail__table .c-list03__title {
  width: 260px;
}

@media only screen and (max-width: 767px) {
  .c-detail {
    padding: 60px 0;
  }
  .c-detail__head {
    margin-bottom: 10px;
    gap: 14px;
  }
  .c-detail__date {
    font-size: 18px;
  }
  .c-detail__new {
    font-size: 14px;
    width: 42px;
    line-height: 24px;
  }
  .c-detail__label {
    font-size: 13px;
    width: auto;
    line-height: 27px;
    padding: 0 10px;
  }
  .c-detail__title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .c-detail__table {
    margin-top: 30px;
  }
}
/* ========== parallax ========== */
.c-parallax {
  width: 100%;
  overflow: hidden;
}
.c-parallax img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 130%;
  will-change: transform;
}

/* ========== container ========== */
.c-container.--mb40 {
  margin-bottom: 40px;
}
.c-container.--mb50 {
  margin-bottom: 50px;
}
.c-container.--mb60 {
  margin-bottom: 60px;
}
.c-container.--mb80 {
  margin-bottom: 80px;
}
.c-container:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .c-container.--mb40 {
    margin-bottom: 30px;
  }
  .c-container.--mb50 {
    margin-bottom: 40px;
  }
  .c-container.--mb60 {
    margin-bottom: 40px;
  }
  .c-container.--mb80 {
    margin-bottom: 40px;
  }
  .c-container:last-child {
    margin-bottom: 0;
  }
}
/* ========== tab ========== */
.c-tab {
  margin-bottom: 80px;
}
.c-tab:last-child {
  margin-bottom: 0;
}
.c-tab__nav {
  position: relative;
  border-bottom: 2px solid #009944;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
}
.c-tab__nav a {
  width: calc(50% - 32px);
  max-width: 444px;
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0/5px 5px 0 0;
  border: 2px solid #009944;
  border-bottom: none;
  background: #009944;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.c-tab__nav a.is--current {
  pointer-events: none;
  color: #282F2B;
  background: #F4F4F4;
}
.c-tab__nav a.is--current:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #F4F4F4;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.c-tab__inner {
  background: #F4F4F4;
  padding: 70px 0 80px;
}
.c-tab__title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .c-tab {
    margin-bottom: 60px;
  }
  .c-tab__nav {
    gap: 10px;
  }
  .c-tab__nav a {
    width: calc(50% - 25px);
    height: 50px;
    font-size: 16px;
  }
  .c-tab__nav a.is--current {
    height: 60px;
  }
  .c-tab__inner {
    padding: 50px 0 40px;
  }
  .c-tab__title {
    margin-bottom: 40px;
  }
}
.c-result {
  position: relative;
}
.c-result__text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 153, 68, 0.8);
  color: #fff;
  font-weight: 700;
  padding: 20px;
  font-size: 22px;
}
.c-result__text.--no-image {
  position: static;
  background: #009944;
}
.c-result__image {
  position: relative;
  margin-bottom: 40px;
}
.c-result__image:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .c-result__text {
    padding: 10px;
    font-size: 14px;
  }
  .c-result__image {
    margin-bottom: 20px;
  }
}
.c-archive {
  position: relative;
  width: 260px;
  z-index: 1;
}
.c-archive__button {
  cursor: pointer;
  height: 64px;
  width: 100%;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  background: #EFEFEF;
  border-radius: 5px;
}
.c-archive__button:before, .c-archive__button:after {
  content: "";
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  right: 0;
}
.c-archive__button:before {
  background: #282F2B;
  border-radius: 0 5px 5px 0/0 5px 5px 0;
}
.c-archive__button:after {
  background-image: url(../images/common/arrow01-lg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  transform: rotate(90deg);
  transition: transform 0.4s;
}
.c-archive__button.is--active:after {
  transform: rotate(270deg);
}
.c-archive__hide {
  position: absolute;
  width: 100%;
  left: 0;
  top: 73px;
}
.c-archive__list {
  max-height: 296px;
  padding: 30px;
  background: #EFEFEF;
  border-radius: 5px;
  -ms-overflow-y: auto;
  overflow-y: auto;
}
.c-archive__list li {
  margin-bottom: 26px;
}
.c-archive__list li:last-child {
  margin-bottom: 0;
}
.c-archive__list a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-archive {
    width: 164px;
  }
  .c-archive__button {
    height: 40px;
    padding-left: 20px;
    font-size: 14px;
  }
  .c-archive__button:before, .c-archive__button:after {
    width: 40px;
    height: 40px;
  }
  .c-archive__button:after {
    background-size: 6px;
  }
  .c-archive__hide {
    top: 46px;
  }
  .c-archive__list {
    max-height: 226px;
    padding: 20px;
  }
  .c-archive__list li {
    margin-bottom: 20px;
  }
  .c-archive__list a {
    font-size: 14px;
  }
}
/* ========== nav ========== */
.c-nav {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 20px 2%;
  justify-content: center;
}
.c-nav__item {
  width: 32%;
  min-height: 64px;
  position: relative;
  display: flex;
  padding: 0.5em 30px;
  align-items: center;
  background: #282F2B;
  color: #E2FF00;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-radius: 5px;
}
.c-nav__item:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  background-image: url(../images/common/arrow01-lg.svg);
}
.c-nav__item.--white:after {
  background-image: url(../images/common/arrow01-wh.svg);
}

@media only screen and (max-width: 767px) {
  .c-nav {
    gap: 10px;
  }
  .c-nav.--sp-col2 {
    gap: 10px 3%;
  }
  .c-nav.--sp-col2 .c-nav__item {
    width: 48.5%;
    font-size: 14px;
  }
  .c-nav__item {
    width: 100%;
    min-height: 60px;
    padding: 0.5em 20px;
    font-size: 16px;
  }
}
/* ========== accordion ========== */
.js-acHide {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* ========== color ========== */
.--white {
  color: #fff;
}

.--green {
  color: #009944;
}

.--bg-green {
  background-color: #009944;
}

.--blue {
  color: #005299;
}

.--bg-blue {
  background-color: #005299;
}

.--red {
  color: #FF2700;
}

.--bg-red {
  background-color: #FF2700;
}

.--pink {
  color: #FF6A8D;
}

.--bg-pink {
  background-color: #FF6A8D;
}

/* ========== animation ========== */
@keyframes announceLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes looptext-reservation {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -914px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-reservation {
    from {
      background-position: 0 top;
    }
    to {
      background-position: -502px top;
    }
  }
}
@keyframes looptext-rakutenchi {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -1722px bottom;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-rakutenchi {
    from {
      background-position: 0 bottom;
    }
    to {
      background-position: -947px bottom;
    }
  }
}
@keyframes looptext-news {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -418px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-news {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -248px center;
    }
  }
}
@keyframes looptext-campaign {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1226px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-campaign {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -656px center;
    }
  }
}
@keyframes looptext-rally {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1360px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-rally {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -816px center;
    }
  }
}
@keyframes looptext-result {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -940px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-result {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -564px center;
    }
  }
}
@keyframes looptext-program {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -670px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-program {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -402px center;
    }
  }
}
@keyframes looptext-recruit {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -580px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-recruit {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -348px center;
    }
  }
}
@keyframes looptext-school {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -2138px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-school {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -1283px center;
    }
  }
}
@keyframes looptext-facility {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1708px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-facility {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -1025px center;
    }
  }
}
@keyframes looptext-access {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -542px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-access {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -325px center;
    }
  }
}
@keyframes looptext-privacy {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1080px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-privacy {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -648px center;
    }
  }
}
@keyframes looptext-sitemap {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -620px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-sitemap {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -372px center;
    }
  }
}
@keyframes looptext-price {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1324px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-price {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -794px center;
    }
  }
}
@keyframes looptext-notfound {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -1130px center;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes looptext-notfound {
    from {
      background-position: 0 center;
    }
    to {
      background-position: -678px center;
    }
  }
}
.fadeInUp {
  opacity: 0;
  transform: translateY(40px);
}
.fadeInUp.js-scr-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s;
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-flex {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-inner {
  position: relative;
  margin: auto;
  width: 66%;
}
.l-inner.--large {
  width: 80%;
}

@media only screen and (max-width: 1024px) {
  .l-inner {
    width: 76%;
  }
  .l-inner.--large {
    width: 92%;
  }
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
    width: 100%;
  }
  .l-inner.--large {
    width: 100%;
  }
}
/*------------------------------------------
  header
------------------------------------------*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.l-header__inner {
  display: flex;
  height: 90px;
  align-items: center;
  padding-right: 90px;
}
.l-header__announce {
  background: #E2FF00;
  padding: 0 clamp(20px, 2.9282576867vw, 40px);
  overflow: hidden;
}
.l-header .header-logo {
  padding-left: clamp(20px, 2.9282576867vw, 40px);
}
.l-header .header-logo a {
  display: block;
  width: 211px;
}
.l-header .header-sns {
  margin-left: auto;
  padding: 14px clamp(14px, 1.756954612vw, 24px);
}
@media only screen and (max-width: 1024px) {
  .l-header .header-sns {
    display: none;
  }
}
.l-header .header-guide {
  display: flex;
  margin-left: clamp(15px, 2.5622254758vw, 35px);
}
@media only screen and (max-width: 1024px) {
  .l-header .header-guide {
    margin-left: auto;
  }
}
.l-header .header-button {
  display: flex;
  height: 90px;
  color: #fff;
  align-items: center;
  padding: 0 clamp(15px, 1.4641288433vw, 20px);
  gap: 10px;
}
.l-header .header-button.--button01 {
  background: #009944;
}
.l-header .header-button.--button02 {
  background: #005299;
}
.l-header .header-button__icon {
  width: 50px;
}
@media only screen and (max-width: 1280px) {
  .l-header .header-button__icon {
    display: none;
  }
}
.l-header .header-button__text {
  flex: 1;
  position: relative;
  font-weight: 700;
  padding-right: 25px;
  background: url(../images/common/arrow01-wh.svg) no-repeat center right;
  background-size: 5.43px;
}
@media only screen and (max-width: 1280px) {
  .l-header .header-button__text {
    font-size: 13px;
  }
}
.l-header .header-announce {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.l-header .header-announce__icon {
  width: 24px;
}
.l-header .header-announce__text {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.l-header .header-announce__text:hover p.is--active {
  animation-play-state: paused;
}
.l-header .header-announce__text p {
  display: inline-block;
}
.l-header .header-announce__text p.is--active {
  animation: announceLoop 10s linear infinite;
}

@media only screen and (max-width: 767px) {
  .l-header__inner {
    height: 60px;
    padding-right: 60px;
  }
  .l-header__announce {
    padding: 0 14px;
  }
  .l-header .header-logo {
    padding-left: 11px;
  }
  .l-header .header-logo a {
    width: 129px;
  }
  .l-header .header-button {
    height: 60px;
    padding: 0 10px;
  }
  .l-header .header-button.--button02 {
    display: none;
  }
  .l-header .header-button__text {
    padding-right: 13px;
    font-size: 12px;
  }
  .l-header .header-announce {
    padding: 10px 0;
  }
  .l-header .header-announce__icon {
    width: 22px;
  }
  .l-header .header-announce__text {
    font-size: 12px;
  }
}
.l-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}
.l-menu__inner {
  width: 50%;
  min-width: 680px;
  height: 100vh;
  background: #EDEDED;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
  overflow-y: auto;
}
.l-menu__inner.is--active {
  transform: translateX(0);
}
.l-menu__overlay {
  display: none;
  background: rgba(40, 47, 43, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.l-menu .menu-trigger {
  width: 90px;
  height: 90px;
  padding: 20px 0 0;
  cursor: pointer;
  color: #fff;
  background: #282F2B;
  transition: 0.4s;
  position: relative;
  z-index: 3;
}
.l-menu .menu-trigger__icon {
  width: 40px;
  height: 29px;
  position: relative;
  margin: auto;
}
.l-menu .menu-trigger__icon span {
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 8px;
  transition: 0.4s;
}
.l-menu .menu-trigger__icon span:nth-child(1) {
  top: 0;
}
.l-menu .menu-trigger__icon span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.l-menu .menu-trigger__icon span:nth-child(3) {
  bottom: 0;
}
.l-menu .menu-trigger__text {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 15px;
  margin-top: 0.5em;
}
.l-menu .menu-trigger__text:after {
  content: "MENU";
}
.l-menu .menu-trigger:hover {
  background: #E2FF00;
  color: #282F2B;
}
.l-menu .menu-trigger:hover .menu-trigger__icon span {
  background: #282F2B;
}
.l-menu .menu-trigger.is--active .menu-trigger__icon span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}
.l-menu .menu-trigger.is--active .menu-trigger__icon span:nth-child(2) {
  opacity: 0;
}
.l-menu .menu-trigger.is--active .menu-trigger__icon span:nth-child(3) {
  bottom: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.l-menu .menu-trigger.is--active .menu-trigger__text:after {
  content: "CLOSE";
}
.l-menu .menu-contents {
  position: relative;
  padding: 50px 10% 110px;
  min-height: 100vh;
  text-align: center;
}
.l-menu .menu-close {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #282F2B;
  color: #E2FF00;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.l-menu .menu-close span {
  display: inline-block;
  padding-right: 26px;
  background: url(../images/common/icon-close-lg.svg) no-repeat right center;
}
.l-menu .menu-sns {
  display: inline-flex;
  background: #fff;
  margin-top: 36px;
}
.l-menu .menu-main {
  margin-bottom: 40px;
}
.l-menu .menu-main__list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.l-menu .menu-main__list:last-child {
  margin-bottom: 0;
}
.l-menu .menu-main__list.--col3 li {
  width: 31%;
}
.l-menu .menu-main__list.--col3 .menu-main__icon img {
  max-width: 90px;
}
.l-menu .menu-main__list.--col4 li {
  width: 25%;
}
.l-menu .menu-main__list.--col4 .menu-main__icon img {
  max-width: 84px;
}
.l-menu .menu-main__list li {
  position: relative;
  text-align: center;
  position: relative;
}
.l-menu .menu-main__list li:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #D8D8D8;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -1px;
}
.l-menu .menu-main__list li:last-child:after {
  content: none;
}
.l-menu .menu-main__list a {
  display: block;
  height: 100%;
}
.l-menu .menu-main__list a:hover {
  opacity: 1;
}
.l-menu .menu-main__list a:hover .menu-main__icon {
  transform: translateY(-4px);
}
.l-menu .menu-main__icon {
  transition: transform 0.2s;
}
.l-menu .menu-main__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.333;
  transform: translateY(-0.3em);
}
.l-menu .menu-sub {
  margin-top: 30px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.l-menu .menu-sub a {
  font-weight: 700;
  font-size: 12px;
}
.l-menu .menu-banner {
  padding: 0 5%;
  text-align: left;
}
.l-menu .menu-banner__item {
  position: relative;
  display: flex;
  gap: 9px;
  color: #fff;
  padding-left: 14px;
  align-items: center;
  border-radius: 5px;
  height: 88px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 7px 7px 0px 0px #282F2B;
  transition: 0.4s;
}
.l-menu .menu-banner__item:hover {
  opacity: 1;
  box-shadow: none;
  transform: translate(7px, 7px);
}
.l-menu .menu-banner__item:last-child {
  margin-bottom: 0;
}
.l-menu .menu-banner__item:before {
  content: "";
  width: 64%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-menu .menu-banner__item:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 64%;
  border-style: solid;
  border-width: 88px 24px 0px 0px;
  z-index: 1;
}
.l-menu .menu-banner__item.--banner01 {
  background: #009944;
}
.l-menu .menu-banner__item.--banner01:before {
  background: #009944;
}
.l-menu .menu-banner__item.--banner01:after {
  border-color: #009944 transparent transparent transparent;
}
.l-menu .menu-banner__item.--banner02 {
  background: #005299;
}
.l-menu .menu-banner__item.--banner02:before {
  background: #005299;
}
.l-menu .menu-banner__item.--banner02:after {
  border-color: #005299 transparent transparent transparent;
}
.l-menu .menu-banner__icon {
  position: relative;
  z-index: 2;
  width: 50px;
}
.l-menu .menu-banner__text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-right: 24px;
  background: url(../images/common/arrow01-wh.svg) no-repeat center right;
  background-size: 4.63px;
}
.l-menu .menu-banner__image {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
.l-menu .menu-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 767px) {
  .l-menu__inner {
    width: 100%;
    min-width: auto;
  }
  .l-menu .menu-trigger {
    width: 60px;
    height: 60px;
    padding: 12px 0 0;
  }
  .l-menu .menu-trigger__icon {
    width: 28px;
    height: 20px;
  }
  .l-menu .menu-trigger__text {
    font-size: 10px;
  }
  .l-menu .menu-contents {
    padding: 76px 14px 92px;
  }
  .l-menu .menu-close {
    height: 60px;
  }
  .l-menu .menu-logo {
    position: absolute;
    top: 17px;
    left: 11px;
    width: 129px;
  }
  .l-menu .menu-sns {
    margin-top: 48px;
  }
  .l-menu .menu-main {
    margin-bottom: 30px;
  }
  .l-menu .menu-main__list {
    margin-bottom: 20px;
  }
  .l-menu .menu-main__list.--col3 .menu-main__icon img {
    max-width: 54px;
  }
  .l-menu .menu-main__list.--col4 .menu-main__icon img {
    max-width: 52px;
  }
  .l-menu .menu-main__list a:hover .menu-main__icon {
    transform: translateY(0);
  }
  .l-menu .menu-main__text {
    font-size: 10px;
  }
  .l-menu .menu-sub a {
    font-size: 10px;
  }
  .l-menu .menu-banner {
    padding: 0 12px;
  }
  .l-menu .menu-banner__item {
    gap: 18px;
    padding: 0 20px;
    height: 60px;
    box-shadow: none;
    margin-bottom: 14px;
  }
  .l-menu .menu-banner__item:hover {
    box-shadow: none;
    transform: translate(0);
  }
  .l-menu .menu-banner__item:before, .l-menu .menu-banner__item:after {
    content: none;
  }
  .l-menu .menu-banner__icon {
    width: 41px;
  }
  .l-menu .menu-banner__text {
    flex: 1;
    font-size: 15px;
    background-size: 5.72px;
  }
  .l-menu .menu-banner__image {
    display: none;
  }
}
/*------------------------------------------
  footer
------------------------------------------*/
.l-footer__access {
  position: relative;
  background: #F4F4F4;
  padding: 70px 0 50px;
}
.l-footer__access .footer-access {
  width: 50%;
  margin-left: auto;
  padding-right: 9%;
  min-height: 500px;
}
.l-footer__access .footer-access__title {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}
.l-footer__access .footer-access__map {
  position: absolute;
  top: 80px;
  left: 0;
  width: 45%;
  height: 500px;
}
.l-footer__access .footer-access__map iframe {
  width: 100%;
  height: 100%;
}
.l-footer__access .footer-access__logo {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  margin-bottom: 20px;
}
.l-footer__access .footer-access__logo .logo-text {
  font-weight: 700;
  font-size: 22px;
}
.l-footer__access .footer-access__logo .logo-image {
  width: 156px;
}
.l-footer__access .footer-access__guide {
  width: 100%;
}
.l-footer__access .footer-access__guide tr {
  border-top: 1px solid #D8D8D8;
}
.l-footer__access .footer-access__guide th, .l-footer__access .footer-access__guide td {
  padding: 20px 0;
}
.l-footer__access .footer-access__guide th {
  font-family: "Anton", sans-serif;
  color: #979A98;
  letter-spacing: 0.03em;
  width: 92px;
}
.l-footer__access .footer-access__guide td {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}
.l-footer__access .footer-access__guide a {
  color: #009944;
  text-decoration: underline;
}
.l-footer__access .footer-access__guide p {
  margin-bottom: 1em;
}
.l-footer__access .footer-access__guide p:last-child {
  margin-bottom: 0;
}
.l-footer__access .footer-access__guide .tel {
  display: block;
  font-size: 18px;
}
.l-footer__access .footer-access__guide .tel-note {
  font-size: 12px;
  display: block;
}
.l-footer__access .footer-access__guide .col-text {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 0 20px;
}
.l-footer__info {
  background: #282F2B;
  color: #fff;
  padding: 80px 3% 40px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px 7%;
}
.l-footer__info .footer-nav {
  padding-left: 30px;
  border-left: 1px solid #fff;
  font-size: 14px;
}
.l-footer__info .footer-nav li {
  margin-bottom: 20px;
}
.l-footer__info .footer-nav li:last-child {
  margin-bottom: 0;
}
.l-footer__info .footer-nav a {
  font-weight: 700;
  color: #fff;
}
.l-footer__info .footer-nav a:hover {
  color: #E2FF00;
  opacity: 1;
}
.l-footer__info .footer-banner {
  flex: 1;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 24px 16px;
}
.l-footer__info .footer-banner__item {
  width: 168px;
  display: block;
  color: #fff;
}
.l-footer__info .footer-banner__text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
  position: relative;
  padding-left: 25px;
}
.l-footer__info .footer-banner__text:before {
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.l-footer__info .footer-copy {
  width: 100%;
  text-align: center;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  font-size: 13px;
  color: #979A98;
}

@media only screen and (max-width: 767px) {
  .l-footer__access {
    padding: 40px 0;
  }
  .l-footer__access .footer-access {
    width: 100%;
    padding: 0 20px;
    min-height: auto;
  }
  .l-footer__access .footer-access__title {
    margin-bottom: 30px;
  }
  .l-footer__access .footer-access__map {
    position: relative;
    top: 0;
    width: 100%;
    height: 224px;
    margin-bottom: 20px;
  }
  .l-footer__access .footer-access__logo {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .l-footer__access .footer-access__logo .logo-text {
    width: 100%;
    font-size: 16px;
  }
  .l-footer__access .footer-access__logo .logo-image {
    width: 118px;
  }
  .l-footer__access .footer-access__guide th {
    font-size: 16px;
    width: 76px;
  }
  .l-footer__access .footer-access__guide td {
    font-size: 12px;
    line-height: 1.5;
    padding: 22px 0;
  }
  .l-footer__access .footer-access__guide .tel {
    font-size: 14px;
  }
  .l-footer__access .footer-access__guide .tel-note {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 0.3em;
  }
  .l-footer__access .footer-access__guide .col-text {
    display: block;
    font-size: 13px;
    line-height: 1.8;
  }
  .l-footer__access .footer-access__guide .col-text__box {
    display: block;
  }
  .l-footer__info {
    padding: 60px 36px 40px;
    display: block;
  }
  .l-footer__info .footer-nav {
    margin-bottom: 50px;
  }
  .l-footer__info .footer-nav li {
    margin-bottom: 1em;
  }
  .l-footer__info .footer-banner {
    gap: 30px 4%;
    margin-bottom: 60px;
  }
  .l-footer__info .footer-banner__item {
    width: 48%;
  }
  .l-footer__info .footer-banner__text {
    font-size: 11px;
    padding-left: 20px;
    margin-top: 0.5em;
  }
  .l-footer__info .footer-banner__text:before {
    width: 14px;
    top: 0.7em;
  }
}
/*------------------------------------------
  contents
------------------------------------------*/
.p-section {
  position: relative;
  padding: 100px 0;
}
.p-section.--bg-gray {
  background: #F4F4F4;
}
.p-section__title {
  margin-bottom: 60px;
  position: relative;
}
.p-section__title.--has-nav {
  display: flex;
  justify-content: space-between;
}
.p-section__more {
  margin-top: 45px;
  padding-bottom: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-section {
    padding: 60px 0;
  }
  .p-section__title {
    margin-bottom: 40px;
  }
  .p-section__more {
    margin-top: 40px;
    padding: 0 12px 10px;
  }
}