@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

img {
  flex-shrink: 0;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.text::before,
.text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin: -0.5em auto;
}

.sp {
  display: none;
}

@media screen and (max-width: 999px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/***********************/
/*webフォント読み込み*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "Noto Sans JP", sans-serif, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  color: #322b29;
}

@media (hover: none) {
  *:hover {
    none: none;
  }
}
a {
  text-decoration: none;
  color: #322b29;
}

.sp_view {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .sp_view {
    display: block !important;
  }
  .pc_view {
    display: none !important;
  }
}
.inner {
  overflow-x: hidden;
}

.bg_dotted {
  background: #eeebdb;
}
.bg_dotted_wrapper {
  background: url(../images/bg_dotted.png) repeat;
  background-size: 40px;
}
@media screen and (max-width: 599px) {
  .bg_dotted_wrapper {
    background-size: 20px;
  }
}

.bg_white {
  background: #f2f2f3;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*404ページ*/
.page-404 {
  max-width: 780px;
  padding-bottom: 100px;
  margin: 0 auto;
}
.page-404 .en_title {
  width: 116px;
  margin: 5px auto 25px;
}
.page-404 h1 {
  text-align: center;
  font-size: 2.8rem;
}
.page-404 p {
  text-align: center;
  padding: 40px 0 80px;
}
.page-404_btn a {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
  background: #eeebdb;
  border-radius: 40px;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
}
.page-404_btn a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgb(30, 94, 53);
  border-left: 1.5px solid rgb(30, 94, 53);
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 999px) {
  .page-404 h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .page-404 {
    padding-bottom: 50px;
  }
  .page-404 .en_title {
    width: 101px;
    margin: 15px auto;
  }
  .page-404 h1 {
    font-size: 2rem;
  }
  .page-404 p {
    padding: 30px 0 50px;
    line-height: 1.75;
  }
  .page-404_btn a {
    font-size: 1.4rem;
    padding: 9px 0;
  }
}

.all_wrapper {
  position: relative;
}

.menu_openbtn {
  position: fixed;
  top: 30px;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
.menu_openbtn span {
  position: absolute;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 34px;
  transform: translateX(-50%);
  z-index: 999;
}
.menu_openbtn span:nth-of-type(1) {
  top: 13px;
}
.menu_openbtn span:nth-of-type(2) {
  top: 20px;
}
.menu_openbtn span:nth-of-type(3) {
  top: 27px;
}
.menu_openbtn span:nth-of-type(3)::after {
  content: "";
  width: 34px;
  height: 10px;
  background: url(../images/nav_menu.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 8px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
}
.menu_openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.menu_openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.menu_openbtn.active span:nth-of-type(3)::after {
  content: "";
  width: 34px;
  height: 10px;
  background: url(../images/nav_close.svg) no-repeat center;
  transform: translateY(0) rotate(-45deg);
  top: 10px;
  left: 4px;
}
.menu_openbtn .bg_flower {
  position: absolute;
  width: 99px;
  height: 95px;
  background: url(../images/bg_g-menu.svg) no-repeat center;
  background-size: cover;
  top: -40%;
  left: -52%;
  z-index: 900;
}
.menu_openbtn .bg_flower.rotate {
  animation-name: RotateAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.menu_openbtn .bg_flower.rotate-reverse {
  animation-name: RotateAnimeReverse;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
@keyframes RotateAnime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes RotateAnimeReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}

#g-nav {
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #eeebdb;
  transition: all 0.6s;
  z-index: 995;
}
#g-nav.panelactive {
  top: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav ul li {
  list-style: none;
  text-align: center;
}
#g-nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.header {
  position: relative;
  margin-bottom: 5px;
}
.header_wrapper {
  height: 160px;
  padding: 35px 4% 0;
}
.header_wrapper .logo {
  position: relative;
  width: 288px;
  z-index: 99;
}
.header .mask_bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 50;
}
@media screen and (max-width: 999px) {
  .header_wrapper {
    height: 125px;
    padding: 25px 5% 0;
  }
  .header_wrapper .logo {
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .header_wrapper {
    height: 65px;
    padding: 15px 20px 0;
  }
  .header_wrapper .logo {
    width: 108px;
  }
}

.header_nikoniko {
  background: url(../images/bg_nikoniko.jpg) no-repeat center;
  background-size: cover;
}
.header_nikoniko .header_wrapper {
  height: 300px;
}
@media screen and (max-width: 599px) {
  .header_nikoniko .header_wrapper {
    height: 95px;
  }
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  padding: 55px 0 70px;
  margin: 0 auto;
}
.footer_detail {
  width: calc(100% - 330px);
}
.footer_detail .logo {
  width: 360px;
  margin-bottom: 20px;
}
.footer_detail p {
  letter-spacing: 0;
}
.footer_detail .name {
  font-weight: 600;
  margin-bottom: 5px;
}
.footer_detail .address a {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
  text-decoration: underline;
  padding-left: 25px;
}
.footer_detail .address a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 15px;
  background: url(../images/icon/g-map.svg) no-repeat;
  background-size: cover;
  left: 10px;
  top: 3px;
}
.footer_detail .link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 380px;
  margin-top: 25px;
}
.footer_detail .link li {
  width: 180px;
}
.footer_detail .link li a {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  color: rgb(30, 94, 53);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 0;
}
.footer_detail .link li a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgb(30, 94, 53);
  border-right: 1.5px solid rgb(30, 94, 53);
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}
.footer_calendar {
  width: 330px;
}
.footer .xo-event-calendar table.xo-month {
  border: none;
  border-right-width: 0;
}
.footer .xo-event-calendar table.xo-month .month-header {
  margin: 0 0 5px;
}
.footer .xo-event-calendar table.xo-month thead tr th {
  background: rgb(30, 94, 53);
  color: #fff;
  font-size: 1.3rem;
  border: 1px solid #bacec2;
  border-width: 0 1px 0 0;
}
.footer .xo-event-calendar table.xo-month .month-dayname td {
  border: 1px solid #bacec2;
  border-width: 1px 1px 0 0;
  font-size: 15px;
}
.footer .xo-event-calendar table.xo-month .month-dayname td div {
  padding: 2px;
  text-align: center;
}
.footer .xo-event-calendar table.xo-month .month-dayname td .today {
  color: rgb(30, 94, 53);
}
.footer .xo-event-calendar table.xo-month .month-dayname td:last-of-type {
  border-right: none;
}
.footer .xo-event-calendar table.xo-month button span.nav-next {
  border-right: 2px solid rgb(30, 94, 53) !important;
  border-top: 2px solid rgb(30, 94, 53) !important;
  width: 10px !important;
  height: 10px !important;
}
.footer .xo-event-calendar table.xo-month button span.nav-prev {
  border-bottom: 2px solid rgb(30, 94, 53) !important;
  border-left: 2px solid rgb(30, 94, 53) !important;
  width: 10px !important;
  height: 10px !important;
}
.footer .xo-event-calendar table.xo-month .month-event-title {
  background: #e8efeb !important;
  font-size: 1.1rem !important;
  color: rgb(30, 94, 53) !important;
}
.footer .xo-event-calendar p.holiday-title {
  font-size: 1.3rem;
}
.footer .xo-event-calendar p.holiday-title span {
  border: 1px solid #bacec2;
}
.footer_linklist {
  background: rgb(30, 94, 53);
  padding: 20px 0;
}
.footer_linklist .instagram a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f2f2f3;
  margin: 0 auto;
}
.footer_linklist .instagram a img {
  position: absolute;
  width: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_linklist ul {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}
.footer_linklist ul li {
  border-left: 1px solid #fff;
  line-height: 1;
}
.footer_linklist ul li:last-child {
  border-right: 1px solid #fff;
}
.footer_linklist ul li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 550;
  padding: 0 1.5em;
  letter-spacing: 0;
}
.footer_linklist .copyright {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
.footer .top_footer_linklist {
  padding: 20px 0 80px;
}
@media screen and (max-width: 999px) {
  .footer_flex {
    padding: 55px 5% 70px;
  }
  .footer_detail {
    width: 50%;
  }
  .footer_detail .logo {
    width: 230px;
  }
  .footer_calendar {
    width: 50%;
  }
  .footer_linklist ul li a {
    padding: 0 1em;
  }
}
@media screen and (max-width: 599px) {
  .footer_flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 30px;
    padding: 30px 7%;
  }
  .footer_detail {
    width: 100%;
  }
  .footer_detail .logo {
    width: 273px;
    margin: 0 auto 20px;
  }
  .footer_detail p {
    font-size: 1.4rem;
  }
  .footer_detail .address a {
    font-size: 1.2rem;
    padding-left: 20px;
  }
  .footer_detail .address a::before {
    width: 10px;
    height: 12px;
    left: 7px;
  }
  .footer_detail .link {
    justify-content: space-between;
    gap: 10px;
  }
  .footer_detail .link li {
    width: calc(50% - 5px);
  }
  .footer_detail .link li a {
    padding: 6px 0;
  }
  .footer_calendar {
    width: 100%;
    margin: 0 auto;
  }
  .footer_linklist {
    padding: 20px 0 15px;
  }
  .footer_linklist .instagram a {
    width: 35px;
    height: 35px;
  }
  .footer_linklist .instagram a img {
    width: 20px;
  }
  .footer_linklist ul {
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px 0;
    padding: 0 15%;
    margin: 18px 0 30px;
  }
  .footer_linklist ul li {
    border: none;
    width: 50%;
    text-align: left;
  }
  .footer_linklist ul li:last-child {
    border: none;
  }
  .footer_linklist ul li a {
    padding: 0;
  }
}

.service_inner {
  max-width: 780px;
  padding-bottom: 100px;
  margin: 0 auto;
}
.service_inner h1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
  text-align: center;
  border-bottom: 1px solid rgb(30, 94, 53);
  padding-bottom: 5px;
  margin-bottom: 35px;
}
.service_inner p {
  line-height: 1.75;
}
.service_inner ul li h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
}
.service_inner .terms {
  padding-top: 40px;
}
.service_inner .terms p {
  margin-bottom: 1.75em;
}
.service_inner .terms ul .no04 {
  margin-bottom: 1.75em;
}
.service_inner .terms ul .no04 p {
  margin-bottom: 0;
}
.service_inner .terms ul li ul li:before {
  content: "・";
}
.service_inner .privacy {
  padding-top: 80px;
}
.service_inner .privacy p {
  margin-bottom: 1.75em;
}
.service_inner .privacy ul li {
  margin-bottom: 1.75em;
}
.service_inner .privacy ul li p {
  margin-bottom: 0;
}
.service_inner .privacy ul li ul li {
  margin-bottom: 0;
}
.service_inner .privacy ul li ul li:before {
  content: "・";
}
.service_inner .company {
  padding-top: 80px;
}
.service_inner .company .text {
  margin-bottom: 25px;
}
.service_inner .company div {
  margin-bottom: 1.75em;
}
.service_inner .company div h5 {
  font-size: 1.6rem;
  font-weight: 600;
}
.service_inner .company div h5:before {
  content: "●";
  color: rgb(30, 94, 53);
  padding-right: 0.2em;
}
.service_inner .company div p a {
  display: inline-block;
  margin-left: 1em;
}
.service_inner .company div table th {
  font-weight: 500;
  text-align: left;
  padding-right: 25px;
}
@media screen and (max-width: 999px) {
  .service_inner .terms, .service_inner .privacy, .service_inner .company {
    padding-right: 5%;
    padding-left: 5%;
  }
  .service_inner h1 small {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .service_inner {
    padding-bottom: 55px;
  }
  .service_inner h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .service_inner p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .service_inner ul li h5 {
    font-size: 1.4rem;
  }
  .service_inner .terms {
    padding: 40px 5% 0;
  }
  .service_inner .terms p {
    margin-bottom: 1.6em;
  }
  .service_inner .terms ul .no04 {
    margin-bottom: 1.6em;
  }
  .service_inner .privacy {
    padding: 50px 5% 0;
  }
  .service_inner .privacy p {
    margin-bottom: 1.6em;
  }
  .service_inner .privacy ul li {
    margin-bottom: 1.6em;
  }
  .service_inner .company {
    padding: 50px 5% 0;
  }
  .service_inner .company .text {
    margin-bottom: 18px;
  }
  .service_inner .company div {
    margin-bottom: 1.6em;
  }
  .service_inner .company div h5 {
    font-size: 1.4rem;
    padding-bottom: 1px;
  }
  .service_inner .company div p a {
    font-size: 1.4rem;
  }
  .service_inner .company div table th {
    width: 6.8em;
    font-size: 1.4rem;
    padding-right: 8px;
    vertical-align: top;
    letter-spacing: 0;
  }
  .service_inner .company div table td {
    font-size: 1.4rem;
    vertical-align: top;
  }
}

.vendors_inner {
  max-width: 640px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.vendors_inner .en_title {
  width: 97px;
  margin: 5px auto 25px;
}
.vendors_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
.vendors_inner p {
  line-height: 1.75;
}
.vendors_inner .text {
  margin: 60px 0 80px;
}
.vendors_inner .vendors_flow h3 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: rgb(30, 94, 53);
}
.vendors_inner .vendors_flow ul {
  padding: 25px 0 0;
}
.vendors_inner .vendors_flow ul li {
  display: flex;
  gap: 0.2em;
  margin-bottom: 1em;
}
.vendors_inner .vendors_flow ul li .no {
  color: rgb(30, 94, 53);
  font-weight: 600;
}
.vendors_inner .vendors_flow ul li a {
  display: inline-block;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-decoration: underline;
}
.vendors_inner h2 {
  text-align: center;
  color: rgb(30, 94, 53);
  font-size: 2.6rem;
}
.vendors_inner h2 small {
  display: inline-block;
  font-size: 1.6rem;
  padding-right: 1em;
}
.vendors_inner h2 a {
  color: rgb(30, 94, 53);
}
@media screen and (max-width: 999px) {
  .vendors_inner {
    padding: 0 5% 120px;
  }
  .vendors_inner h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .vendors_inner {
    padding: 0 5% 80px;
  }
  .vendors_inner .en_title {
    width: 77px;
    margin: 15px auto;
  }
  .vendors_inner h1 {
    font-size: 2rem;
  }
  .vendors_inner p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .vendors_inner .text {
    margin: 30px 0 40px;
  }
  .vendors_inner .vendors_flow h3 {
    font-size: 1.6rem;
  }
  .vendors_inner .vendors_flow ul {
    padding: 20px 0 0;
  }
  .vendors_inner h2 {
    font-size: 2.4rem;
  }
  .vendors_inner h2 small {
    font-size: 1.4rem;
  }
}

.qa_inner {
  padding-bottom: 120px;
}
.qa_inner .en_title {
  width: 29px;
  margin: 5px auto 25px;
}
.qa_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
.qa_inner .accordion-area {
  max-width: 780px;
  margin: 60px auto 0;
}
.qa_inner .accordion-area li {
  padding: 20px 25px 20px 10px;
  margin: 0;
  border-top: 1px dotted #bacec2;
}
.qa_inner .accordion-area li:last-child {
  border-bottom: 1px dotted #bacec2;
}
.qa_inner .accordion-area li .qa_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
  padding: 0;
  transition: all 0.5s ease;
}
.qa_inner .accordion-area li .qa_title::before, .qa_inner .accordion-area li .qa_title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1.5px;
  background: rgb(30, 94, 53);
}
.qa_inner .accordion-area li .qa_title::before {
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.qa_inner .accordion-area li .qa_title::after {
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(90deg);
}
.qa_inner .accordion-area li .qa_title.close::after {
  display: none;
}
.qa_inner .accordion-area li .qa_title span {
  display: block;
  width: 30px;
}
.qa_inner .accordion-area li .qa_box {
  position: relative;
  display: none;
  padding: 13px 0 0 40px;
  margin: 0;
}
.qa_inner .accordion-area li .qa_box::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  left: 0;
  background: url(../images/icon/answer.svg) no-repeat center;
  background-size: cover;
}
.qa_inner .accordion-area li .qa_box p {
  line-height: 1.75;
}
@media screen and (max-width: 999px) {
  .qa_inner h1 {
    font-size: 2.4rem;
  }
  .qa_inner .accordion-area {
    padding: 0 5%;
  }
  .qa_inner .accordion-area li .qa_title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .qa_inner {
    padding-bottom: 80px;
  }
  .qa_inner .en_title {
    width: 23px;
    margin: 15px auto;
  }
  .qa_inner h1 {
    font-size: 2rem;
  }
  .qa_inner .accordion-area {
    max-width: 450px;
    margin: 30px auto 0;
  }
  .qa_inner .accordion-area li {
    padding: 12px 15px 12px 0;
  }
  .qa_inner .accordion-area li .qa_title {
    gap: 7px;
    align-items: flex-start;
    font-size: 1.4rem;
  }
  .qa_inner .accordion-area li .qa_title::before, .qa_inner .accordion-area li .qa_title::after {
    width: 9px;
  }
  .qa_inner .accordion-area li .qa_title span {
    width: 22px;
  }
  .qa_inner .accordion-area li .qa_box {
    padding: 10px 0 0 29px;
  }
  .qa_inner .accordion-area li .qa_box::before {
    width: 22px;
    height: 22px;
  }
  .qa_inner .accordion-area li .qa_box p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.contact_inner {
  max-width: 640px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.contact_inner .en_title {
  width: 64px;
  margin: 5px auto 25px;
}
.contact_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
.contact_inner p {
  line-height: 1.75;
}
.contact_inner .text {
  margin: 60px 0 1.75em;
}
.contact_inner .text_note {
  position: relative;
  padding: 0 0 0 1em;
}
.contact_inner .text_note:before {
  position: absolute;
  content: "※";
  left: 0;
}
.contact_inner .form_btn {
  margin-top: 80px;
}
.contact_inner .form_btn a {
  display: block;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 340px;
  padding: 10px 0;
  margin: 0 auto;
  background: rgb(30, 94, 53);
  border-radius: 30px;
}
@media screen and (max-width: 999px) {
  .contact_inner {
    padding: 0 5% 120px;
  }
  .contact_inner h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .contact_inner {
    padding-bottom: 80px;
  }
  .contact_inner .en_title {
    width: 51px;
    margin: 15px auto;
  }
  .contact_inner h1 {
    font-size: 2rem;
  }
  .contact_inner .text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 30px 0 1.75em;
  }
  .contact_inner .text_note {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .contact_inner .form_btn {
    margin-top: 30px;
  }
  .contact_inner .form_btn a {
    font-size: 1.6rem;
    width: 305px;
    padding: 10px 0;
  }
}

.information_inner {
  max-width: 830px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.information_inner .en_title {
  width: 94px;
  margin: 5px auto 25px;
}
.information_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
.information_inner .address {
  text-align: center;
  margin: 60px 0;
}
.information_inner .address h3, .information_inner .address p {
  font-size: 1.8rem;
  line-height: 1.8;
}
.information_inner .information_link {
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}
.information_inner .information_link li a {
  position: relative;
  display: block;
  background: #eeebdb;
  border-radius: 50px;
  width: 225px;
  font-size: 2rem;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0;
}
.information_inner .information_link li a:after {
  content: "";
  position: absolute;
  top: 47%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid rgb(30, 94, 53);
  border-right: 1.5px solid rgb(30, 94, 53);
  transform: rotate(45deg) translateY(-50%);
}
.information_inner .information_link .time a::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  background: url(../images/icon/clock.svg) no-repeat center;
  background-size: cover;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.information_inner .information_link .fee a::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 27px;
  background: url(../images/icon/price.svg) no-repeat center;
  background-size: cover;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.information_inner .information_link .access a::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 27px;
  background: url(../images/icon/map.svg) no-repeat center;
  background-size: cover;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.information_inner .hours {
  padding-top: 80px;
}
.information_inner .hours .icon {
  width: 30px;
  margin: 0 auto;
}
.information_inner .hours h2 {
  font-size: 2.6rem;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
}
.information_inner .hours table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  margin-top: 25px;
}
.information_inner .hours table thead tr th {
  color: #fff;
  background: rgb(30, 94, 53);
  font-size: 1.6rem;
  padding-left: 20px;
}
.information_inner .hours table thead tr th:first-of-type {
  width: 39%;
}
.information_inner .hours table thead tr th:nth-of-type(2) {
  width: 33%;
}
.information_inner .hours table thead tr th:nth-of-type(3) {
  width: 28%;
}
.information_inner .hours table tbody tr th {
  background: #fdfcdb;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 10px 15px 20px;
  border-bottom: 1px dotted #bacec2;
}
.information_inner .hours table tbody tr td {
  border-bottom: 1px dotted #bacec2;
  font-size: 1.8rem;
  padding: 15px 10px 15px 20px;
}
.information_inner .price {
  padding-top: 80px;
}
.information_inner .price .icon {
  width: 23px;
  margin: 0 auto;
}
.information_inner .price h2 {
  font-size: 2.6rem;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
}
.information_inner .price table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  margin-top: 25px;
}
.information_inner .price table thead tr th {
  color: #fff;
  background: rgb(30, 94, 53);
  font-size: 1.6rem;
  padding-left: 20px;
}
.information_inner .price table thead tr th:first-of-type {
  width: 39%;
}
.information_inner .price table thead tr th:nth-of-type(2) {
  width: 33%;
}
.information_inner .price table thead tr th:nth-of-type(3) {
  width: 28%;
}
.information_inner .price table tbody tr th {
  background: #fdfcdb;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid rgb(30, 94, 53);
}
.information_inner .price table tbody tr td {
  border-bottom: 1px dotted #bacec2;
  font-size: 1.8rem;
  padding: 15px 10px 15px 20px;
}
.information_inner .price table tbody .solid th, .information_inner .price table tbody .solid td {
  border-bottom: 1px solid rgb(30, 94, 53);
}
.information_inner .price table tbody .h-2 {
  line-height: 2;
}
.information_inner .traffic {
  padding-top: 80px;
}
.information_inner .traffic .icon {
  width: 24px;
  margin: 0 auto;
}
.information_inner .traffic h2 {
  font-size: 2.6rem;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
}
.information_inner .traffic ul {
  display: flex;
  justify-content: space-between;
  margin: 25px 0 0;
}
.information_inner .traffic ul li {
  width: 252px;
}
.information_inner .traffic ul li a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 600;
  background: rgb(30, 94, 53);
  padding: 8px 0;
  border-radius: 50px;
  text-align: center;
}
.information_inner .traffic ul li a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 48%;
  left: 18px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.information_inner .traffic .g-map {
  display: flex;
  align-items: center;
  padding: 40px 25px 0 50px;
}
.information_inner .traffic .g-map .map_text {
  width: 50%;
}
.information_inner .traffic .g-map .map_text h3, .information_inner .traffic .g-map .map_text p {
  font-size: 1.8rem;
  line-height: 1.75;
}
.information_inner .traffic .g-map .map_text .google_map a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
  background: rgb(240, 234, 8);
  border-radius: 30px;
  padding: 1px 8px;
  margin-top: 15px;
}
.information_inner .traffic .g-map .map_img {
  width: 50%;
  max-width: 366px;
}
.information_inner .traffic .car {
  padding-top: 40px;
}
.information_inner .traffic .car h2 {
  font-size: 2.2rem;
  text-align: left;
  padding-bottom: 3px;
  border-bottom: 1px solid rgb(30, 94, 53);
}
.information_inner .traffic .car div {
  width: 100%;
  max-width: 563px;
  margin: 35px auto 0;
}
.information_inner .traffic .metro {
  padding-top: 40px;
}
.information_inner .traffic .metro h2 {
  font-size: 2.2rem;
  text-align: left;
  padding-bottom: 3px;
  border-bottom: 1px solid rgb(30, 94, 53);
}
.information_inner .traffic .metro div {
  width: 100%;
  max-width: 785px;
  margin: 40px auto 0;
}
.information_inner .traffic .metro p {
  margin-top: 30px;
}
.information_inner .traffic .metro p a {
  font-weight: 600;
  text-decoration: underline;
}
.information_inner .traffic .airport {
  padding-top: 40px;
}
.information_inner .traffic .airport h2 {
  font-size: 2.2rem;
  text-align: left;
  padding-bottom: 3px;
  border-bottom: 1px solid rgb(30, 94, 53);
}
.information_inner .traffic .airport p {
  font-size: 1.8rem;
  margin-top: 20px;
  line-height: 1.75;
}
@media screen and (max-width: 999px) {
  .information_inner {
    padding: 0 5% 120px;
  }
  .information_inner h1 {
    font-size: 2.4rem;
  }
  .information_inner .information_link {
    padding: 0;
  }
  .information_inner .information_link li {
    width: 32%;
  }
  .information_inner .information_link li a {
    width: 100%;
    font-size: 1.8rem;
  }
  .information_inner .traffic ul li {
    width: 32%;
  }
  .information_inner .traffic ul li span {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .information_inner {
    padding: 0 5% 80px;
  }
  .information_inner .en_title {
    width: 75px;
    margin: 15px auto;
  }
  .information_inner h1 {
    font-size: 2rem;
  }
  .information_inner .address {
    margin: 30px 0 25px;
  }
  .information_inner .address h3, .information_inner .address p {
    font-size: 1.6rem;
  }
  .information_inner .information_link {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
  }
  .information_inner .information_link li {
    width: 100%;
  }
  .information_inner .information_link li a {
    width: 170px;
    font-size: 1.6rem;
    padding: 3px 0;
    margin: 0 auto;
  }
  .information_inner .information_link li a:after {
    top: 43%;
    right: 15px;
  }
  .information_inner .information_link .time a::before {
    width: 20px;
    height: 20px;
  }
  .information_inner .information_link .fee a::before {
    width: 16px;
    height: 20px;
    left: 17px;
  }
  .information_inner .information_link .access a::before {
    width: 16px;
    height: 21px;
  }
  .information_inner .hours {
    padding: 40px 0 0;
  }
  .information_inner .hours h2 {
    font-size: 1.8rem;
  }
  .information_inner .hours table {
    margin-top: 15px;
  }
  .information_inner .hours table thead tr th {
    font-size: 1.2rem;
    padding-left: 10px;
  }
  .information_inner .hours table thead tr th:first-of-type {
    width: 35%;
  }
  .information_inner .hours table thead tr th:nth-of-type(2) {
    width: 34%;
  }
  .information_inner .hours table thead tr th:nth-of-type(3) {
    width: 31%;
  }
  .information_inner .hours table tbody tr th {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 8px 0 8px 10px;
    letter-spacing: 0;
  }
  .information_inner .hours table tbody tr td {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 8px 0 8px 10px;
    letter-spacing: 0;
  }
  .information_inner .price {
    padding: 50px 0 0;
  }
  .information_inner .price h2 {
    font-size: 1.8rem;
  }
  .information_inner .price table {
    margin-top: 15px;
  }
  .information_inner .price table thead tr th {
    font-size: 1.2rem;
    padding-left: 10px;
  }
  .information_inner .price table thead tr th:first-of-type {
    width: 29%;
  }
  .information_inner .price table thead tr th:nth-of-type(2) {
    width: 51%;
  }
  .information_inner .price table thead tr th:nth-of-type(3) {
    width: 20%;
  }
  .information_inner .price table tbody tr th {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 8px 0 8px 10px;
    letter-spacing: 0;
  }
  .information_inner .price table tbody tr td {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 8px 0 8px 10px;
    letter-spacing: 0;
  }
  .information_inner .price table tbody .h-2 {
    line-height: 1.4;
  }
  .information_inner .price table tbody .h-2 span {
    display: block;
    height: 0.5em;
  }
  .information_inner .traffic {
    padding: 50px 0 0;
  }
  .information_inner .traffic h2 {
    font-size: 1.8rem;
  }
  .information_inner .traffic ul {
    gap: 10px;
    margin: 20px 0 0;
  }
  .information_inner .traffic ul li {
    width: calc((100% - 20px) / 3);
  }
  .information_inner .traffic ul li a {
    font-size: 1.4rem;
    padding: 4px 0;
  }
  .information_inner .traffic ul li a:before {
    width: 5px;
    height: 5px;
    left: 9px;
  }
  .information_inner .traffic .g-map {
    display: block;
    padding: 30px 0 0 0;
  }
  .information_inner .traffic .g-map .map_text {
    width: 100%;
  }
  .information_inner .traffic .g-map .map_text h3, .information_inner .traffic .g-map .map_text p {
    font-size: 1.6rem;
  }
  .information_inner .traffic .g-map .map_text .google_map a {
    position: relative;
    font-size: 1.2rem;
    background: none;
    border-radius: 0;
    padding: 0 0 0 14px;
    margin-top: 5px;
    text-decoration: underline;
    line-height: 1;
  }
  .information_inner .traffic .g-map .map_text .google_map a:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 12px;
    background: url(../images/icon/g-map.svg) no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
  }
  .information_inner .traffic .g-map .map_img {
    width: 95%;
    margin: 25px auto 0;
  }
  .information_inner .traffic .car {
    padding-top: 40px;
  }
  .information_inner .traffic .car h2 {
    font-size: 1.8rem;
  }
  .information_inner .traffic .car div {
    max-width: 350px;
    margin: 20px auto 0;
  }
  .information_inner .traffic .metro {
    padding-top: 30px;
  }
  .information_inner .traffic .metro h2 {
    font-size: 1.8rem;
  }
  .information_inner .traffic .metro div {
    max-width: 350px;
    margin: 20px auto 0;
  }
  .information_inner .traffic .metro p a {
    font-size: 1.4rem;
  }
  .information_inner .traffic .airport {
    padding-top: 40px;
  }
  .information_inner .traffic .airport h2 {
    font-size: 1.8rem;
  }
  .information_inner .traffic .airport p {
    font-size: 1.4rem;
    margin-top: 15px;
    line-height: 1.6;
  }
  .information_inner .traffic .airport p span {
    display: block;
    height: 1em;
  }
}

.nikoniko_inner {
  max-width: 750px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.nikoniko_inner .en_title {
  width: 68px;
  margin: 5px auto 25px;
}
.nikoniko_inner h1 {
  text-align: center;
  font-size: 3.6rem;
}
.nikoniko_inner .text {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 25px 0 60px;
}
.nikoniko_inner .shop_photo {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 auto 40px;
}
.nikoniko_inner .shop_photo img {
  width: calc(50% - 10px);
  max-width: 430px;
  border-radius: 15px;
}
.nikoniko_inner table {
  width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
.nikoniko_inner table tr:last-of-type th {
  vertical-align: top;
  padding-top: 4px;
}
.nikoniko_inner table tr:last-of-type td {
  padding-top: 4px;
}
.nikoniko_inner table tr th {
  height: 52px;
  text-align: center;
}
.nikoniko_inner table tr th span {
  display: inline-block;
  width: 96px;
  font-size: 1.5rem;
  color: rgb(30, 94, 53);
  border-radius: 30px;
  background: rgb(240, 234, 8);
}
.nikoniko_inner table tr td {
  height: 52px;
  font-size: 2.8rem;
  font-weight: 600;
  padding-left: 10px;
}
.nikoniko_inner table tr td small {
  font-size: 2.2rem;
}
.nikoniko_inner table tr .p-16 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  .nikoniko_inner h1 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .nikoniko_inner {
    padding-bottom: 80px;
  }
  .nikoniko_inner .en_title {
    width: 54px;
    margin: 15px auto;
  }
  .nikoniko_inner h1 {
    font-size: 2.2rem;
  }
  .nikoniko_inner .text {
    font-size: 1.5rem;
    margin: 30px 5%;
    text-align: left;
  }
  .nikoniko_inner .shop_photo {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .nikoniko_inner .shop_photo img {
    width: 100%;
    border-radius: 10px;
  }
  .nikoniko_inner table {
    width: 90%;
    margin: 20px auto 0;
  }
  .nikoniko_inner table tr th {
    height: 35px;
  }
  .nikoniko_inner table tr th span {
    width: 71px;
    font-size: 1.2rem;
  }
  .nikoniko_inner table tr td {
    font-size: 1.8rem;
    padding-left: 8px;
    height: 35px;
  }
  .nikoniko_inner table tr td small {
    font-size: 1.6rem;
  }
  .nikoniko_inner table tr .p-16 {
    font-size: 1.5rem;
  }
}

.newslist_inner, .newspage_inner {
  max-width: 780px;
  margin: 0 auto;
}
.newslist_inner .en_title, .newspage_inner .en_title {
  width: 37px;
  margin: 5px auto 25px;
}
.newslist_inner h1, .newspage_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 999px) {
  .newslist_inner h1, .newspage_inner h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .newslist_inner .en_title, .newspage_inner .en_title {
    width: 30px;
    margin: 15px auto;
  }
  .newslist_inner h1, .newspage_inner h1 {
    font-size: 2rem;
  }
}

.newslist_inner {
  padding-bottom: 150px;
}
.newslist_inner .newslist_cat {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 30px;
}
.newslist_inner .newslist_cat li {
  text-align: center;
}
.newslist_inner .newslist_cat li a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: rgb(30, 94, 53);
  padding: 5px 20px;
  border-radius: 30px;
  line-height: 1;
}
.newslist_inner .newslist_cat li a[href$="?category=news"] {
  background: #f7931e;
}
.newslist_inner .newslist_cat li a[href$="?category=event"] {
  background: #85c6ce;
}
.newslist_inner .newslist_cat li a[href$="?category=shop"] {
  background: #b59032;
}
.newslist_inner .newslist_cat li a[href$="?category=plant"] {
  background: #e06b63;
}
.newslist_inner .newslist_contents ul {
  padding: 0 5%;
}
.newslist_inner .newslist_contents ul li {
  border-bottom: 1px dotted #bacec2;
  padding-right: 40px;
}
.newslist_inner .newslist_contents ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
.newslist_inner .newslist_contents ul li a .thumb {
  width: 260px;
  height: 173px;
  border-radius: 10px;
  background: url(../images/news_noimg.png) no-repeat center;
  background-size: cover;
}
.newslist_inner .newslist_contents ul li a .thumb img {
  width: 260px;
  height: 173px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.newslist_inner .newslist_contents ul li a .text_box {
  width: calc(100% - 260px);
}
.newslist_inner .newslist_contents ul li a .text_box .flex {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .date {
  font-size: 1.6rem;
  letter-spacing: 0;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat {
  display: flex;
  gap: 7px;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat span {
  display: block;
  background: rgb(30, 94, 53);
  padding: 1px 15px;
  border-radius: 30px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat .cat-news {
  background: #f7931e;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat .cat-event {
  background: #85c6ce;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat .cat-shop {
  background: #b59032;
}
.newslist_inner .newslist_contents ul li a .text_box .flex .cat .cat-plant {
  background: #e06b63;
}
.newslist_inner .newslist_contents ul li a .text_box .title {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 1em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.newslist_inner .newslist_contents ul li a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(30, 94, 53);
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(45deg);
}
.newslist_inner .newslist_contents ul li a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  top: 50%;
  right: -27px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 999px) {
  .newslist_inner .newslist_contents ul li a {
    gap: 15px;
  }
  .newslist_inner .newslist_contents ul li a .thumb {
    width: 200px;
    height: 133px;
  }
  .newslist_inner .newslist_contents ul li a .thumb img {
    width: 200px;
    height: 133px;
  }
  .newslist_inner .newslist_contents ul li a .text_box {
    width: calc(100% - 215px);
  }
}
@media screen and (max-width: 599px) {
  .newslist_inner {
    padding-bottom: 80px;
  }
  .newslist_inner .newslist_cat {
    flex-wrap: wrap;
    gap: 10px 5px;
    justify-content: space-between;
    width: 90%;
    margin: 35px auto 30px;
  }
  .newslist_inner .newslist_cat li {
    width: 23%;
  }
  .newslist_inner .newslist_cat li a {
    display: block;
    font-size: 1.3rem;
    padding: 4px 10px;
    min-width: 73px;
  }
  .newslist_inner .newslist_contents ul {
    padding: 0 5%;
  }
  .newslist_inner .newslist_contents ul li {
    padding-right: 30px;
  }
  .newslist_inner .newslist_contents ul li a {
    gap: 10px;
    padding: 20px 0;
  }
  .newslist_inner .newslist_contents ul li a .thumb {
    width: 126px;
    height: 84px;
  }
  .newslist_inner .newslist_contents ul li a .thumb img {
    width: 126px;
    height: 84px;
  }
  .newslist_inner .newslist_contents ul li a .text_box {
    width: calc(100% - 94px);
  }
  .newslist_inner .newslist_contents ul li a .text_box .flex {
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .newslist_inner .newslist_contents ul li a .text_box .flex .date {
    font-size: 1.3rem;
  }
  .newslist_inner .newslist_contents ul li a .text_box .flex .cat span {
    font-size: 1.1rem;
    padding: 1px 10px;
  }
  .newslist_inner .newslist_contents ul li a .text_box .title {
    font-size: 1.5rem;
  }
  .newslist_inner .newslist_contents ul li a::before {
    width: 18px;
    height: 18px;
    right: -30px;
  }
  .newslist_inner .newslist_contents ul li a::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: -22.5px;
  }
}

.newspage_inner {
  padding-bottom: 80px;
}
.newspage_inner .newspage_contents {
  padding: 60px 0 0;
}
.newspage_inner .newspage_contents .news_flex {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.newspage_inner .newspage_contents .news_flex .date {
  font-size: 1.6rem;
  letter-spacing: 0;
}
.newspage_inner .newspage_contents .news_flex .cat {
  display: flex;
  gap: 7px;
}
.newspage_inner .newspage_contents .news_flex .cat span {
  display: block;
  background: rgb(30, 94, 53);
  padding: 1px 15px;
  border-radius: 30px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}
.newspage_inner .newspage_contents .news_flex .cat .cat-news {
  background: #f7931e;
}
.newspage_inner .newspage_contents .news_flex .cat .cat-event {
  background: #85c6ce;
}
.newspage_inner .newspage_contents .news_flex .cat .cat-shop {
  background: #b59032;
}
.newspage_inner .newspage_contents .news_flex .cat .cat-plant {
  background: #e06b63;
}
.newspage_inner .newspage_contents h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 15px 0 40px;
}
.newspage_inner .newspage_contents .thumb {
  width: 570px;
  height: 370px;
  margin: 0 auto;
}
.newspage_inner .newspage_contents .thumb img {
  width: 570px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.newspage_inner .newspage_contents .content {
  margin: 40px 0 80px;
}
.newspage_inner .newspage_contents .content p {
  line-height: 1.6;
  margin-bottom: 1.6em;
}
.newspage_inner .newspage_contents .content img {
  width: 570px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 40px auto;
  border-radius: 20px;
}
.newspage_inner .newspage_contents .content a {
  display: inline;
  color: rgb(30, 94, 53);
  text-decoration: underline;
  font-weight: 600;
}
.newspage_inner .newspage_btn a {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
  background: #eeebdb;
  border-radius: 40px;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
}
.newspage_inner .newspage_btn a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgb(30, 94, 53);
  border-left: 1.5px solid rgb(30, 94, 53);
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 999px) {
  .newspage_inner .newspage_contents {
    padding: 45px 5% 0;
  }
  .newspage_inner .newspage_contents .thumb {
    width: 500px;
    height: 300px;
  }
  .newspage_inner .newspage_contents .thumb img {
    width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .newspage_inner {
    padding-bottom: 40px;
  }
  .newspage_inner .newspage_contents {
    padding: 30px 5% 0;
  }
  .newspage_inner .newspage_contents .news_flex {
    margin-bottom: 15px;
  }
  .newspage_inner .newspage_contents .news_flex .date {
    font-size: 1.4rem;
  }
  .newspage_inner .newspage_contents .news_flex .cat span {
    padding: 1px 10px;
    font-size: 1.2rem;
  }
  .newspage_inner .newspage_contents h2 {
    font-size: 1.8rem;
    margin: 0 0 20px;
  }
  .newspage_inner .newspage_contents .thumb {
    width: 100%;
    max-width: 340px;
    height: 225px;
  }
  .newspage_inner .newspage_contents .thumb img {
    width: 100%;
    max-width: 340px;
    height: 225px;
  }
  .newspage_inner .newspage_contents .content {
    margin: 20px 0 40px;
  }
  .newspage_inner .newspage_contents .content p {
    font-size: 1.4rem;
  }
  .newspage_inner .newspage_contents .content img {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 20px auto;
  }
  .newspage_inner .newspage_btn a {
    font-size: 1.4rem;
    padding: 9px 0;
  }
}

.eventlist_inner, .eventpage_inner {
  max-width: 780px;
  margin: 0 auto;
}
.eventlist_inner .en_title, .eventpage_inner .en_title {
  width: 54px;
  margin: 5px auto 25px;
}
.eventlist_inner h1, .eventpage_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 999px) {
  .eventlist_inner h1, .eventpage_inner h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .eventlist_inner .en_title, .eventpage_inner .en_title {
    width: 43px;
    margin: 15px auto;
  }
  .eventlist_inner h1, .eventpage_inner h1 {
    font-size: 2rem;
  }
}

.eventlist_inner {
  padding-bottom: 150px;
}
.eventlist_inner .eventlist_contents ul {
  padding: 0 5%;
  margin-top: 30px;
}
.eventlist_inner .eventlist_contents ul li {
  border-bottom: 1px dotted #bacec2;
  padding-right: 40px;
}
.eventlist_inner .eventlist_contents ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
.eventlist_inner .eventlist_contents ul li a .thumb {
  position: relative;
  width: 260px;
  height: 173px;
  border-radius: 10px;
  background: url(../images/news_noimg.png) no-repeat center;
  background-size: cover;
}
.eventlist_inner .eventlist_contents ul li a .thumb img {
  width: 260px;
  height: 173px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.eventlist_inner .eventlist_contents ul li a .thumb .event_status {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(240, 234, 8);
  top: -20px;
  left: -13px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(30, 94, 53);
  letter-spacing: 0;
}
.eventlist_inner .eventlist_contents ul li a .text_box {
  width: calc(100% - 290px);
}
.eventlist_inner .eventlist_contents ul li a .text_box .flex {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.eventlist_inner .eventlist_contents ul li a .text_box .flex .item {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  background: rgb(30, 94, 53);
  width: 85px;
  text-align: center;
  line-height: 22px;
  border-radius: 30px;
}
.eventlist_inner .eventlist_contents ul li a .text_box .flex .date {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.eventlist_inner .eventlist_contents ul li a .text_box .title {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 1em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.eventlist_inner .eventlist_contents ul li a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(30, 94, 53);
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(45deg);
}
.eventlist_inner .eventlist_contents ul li a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  top: 50%;
  right: -27px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 999px) {
  .eventlist_inner .eventlist_contents ul li a {
    gap: 15px;
  }
  .eventlist_inner .eventlist_contents ul li a .thumb {
    width: 200px;
    height: 133px;
  }
  .eventlist_inner .eventlist_contents ul li a .thumb img {
    width: 200px;
    height: 133px;
  }
  .eventlist_inner .eventlist_contents ul li a .text_box {
    width: calc(100% - 215px);
  }
}
@media screen and (max-width: 599px) {
  .eventlist_inner {
    padding-bottom: 80px;
  }
  .eventlist_inner .eventlist_contents ul {
    padding: 0 5%;
  }
  .eventlist_inner .eventlist_contents ul li {
    padding-right: 30px;
  }
  .eventlist_inner .eventlist_contents ul li a {
    gap: 10px;
    padding: 20px 0;
  }
  .eventlist_inner .eventlist_contents ul li a .thumb {
    width: 126px;
    height: 84px;
    border-radius: 5px;
  }
  .eventlist_inner .eventlist_contents ul li a .thumb img {
    width: 126px;
    height: 84px;
  }
  .eventlist_inner .eventlist_contents ul li a .thumb .event_status {
    top: -18px;
    left: -10px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: -0.03em;
  }
  .eventlist_inner .eventlist_contents ul li a .text_box {
    width: calc(100% - 136px);
  }
  .eventlist_inner .eventlist_contents ul li a .text_box .flex {
    gap: 5px;
    margin-bottom: 10px;
  }
  .eventlist_inner .eventlist_contents ul li a .text_box .flex .item {
    font-size: 1.1rem;
    width: 60px;
    line-height: 1.6em;
    display: inline-block;
    height: 1.6em;
  }
  .eventlist_inner .eventlist_contents ul li a .text_box .flex .date {
    font-size: 1.3rem;
  }
  .eventlist_inner .eventlist_contents ul li a .text_box .title {
    font-size: 1.5rem;
  }
  .eventlist_inner .eventlist_contents ul li a::before {
    width: 18px;
    height: 18px;
    right: -30px;
  }
  .eventlist_inner .eventlist_contents ul li a::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: -22.5px;
  }
}

.eventpage_inner {
  padding-bottom: 80px;
}
.eventpage_inner .eventpage_contents {
  padding: 60px 0 0;
}
.eventpage_inner .eventpage_contents .flex {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}
.eventpage_inner .eventpage_contents .flex .item {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  background: rgb(30, 94, 53);
  width: 85px;
  text-align: center;
  line-height: 22px;
  border-radius: 30px;
}
.eventpage_inner .eventpage_contents .flex .date {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.eventpage_inner .eventpage_contents h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 15px 0 40px;
}
.eventpage_inner .eventpage_contents .thumb {
  width: 570px;
  height: 370px;
  margin: 0 auto;
}
.eventpage_inner .eventpage_contents .thumb img {
  width: 570px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.eventpage_inner .eventpage_contents .content {
  margin: 40px 0 80px;
}
.eventpage_inner .eventpage_contents .content p {
  line-height: 1.6;
  margin-bottom: 1.6em;
}
.eventpage_inner .eventpage_contents .content img {
  width: 570px;
  height: auto;
  margin: 40px auto;
  border-radius: 20px;
}
.eventpage_inner .eventpage_contents .content a {
  display: inline;
  color: rgb(30, 94, 53);
  text-decoration: underline;
  font-weight: 600;
}
.eventpage_inner .eventpage_btn a {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
  background: #eeebdb;
  border-radius: 40px;
  color: rgb(30, 94, 53);
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
}
.eventpage_inner .eventpage_btn a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgb(30, 94, 53);
  border-left: 1.5px solid rgb(30, 94, 53);
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 999px) {
  .eventpage_inner .eventpage_contents {
    padding: 45px 5% 0;
  }
  .eventpage_inner .eventpage_contents .thumb {
    width: 500px;
    height: 300px;
  }
  .eventpage_inner .eventpage_contents .thumb img {
    width: 500px;
  }
}
@media screen and (max-width: 599px) {
  .eventpage_inner {
    padding-bottom: 40px;
  }
  .eventpage_inner .eventpage_contents {
    padding: 30px 5% 0;
  }
  .eventpage_inner .eventpage_contents .flex {
    margin-bottom: 15px;
  }
  .eventpage_inner .eventpage_contents .flex .item {
    font-size: 1.2rem;
    width: 70px;
    line-height: 19px;
  }
  .eventpage_inner .eventpage_contents .flex .date {
    font-size: 1.4rem;
  }
  .eventpage_inner .eventpage_contents h2 {
    font-size: 1.8rem;
    margin: 0 0 20px;
  }
  .eventpage_inner .eventpage_contents .thumb {
    width: 100%;
    max-width: 340px;
    height: 225px;
  }
  .eventpage_inner .eventpage_contents .thumb img {
    width: 100%;
    max-width: 340px;
    height: 225px;
  }
  .eventpage_inner .eventpage_contents .content {
    margin: 20px 0 40px;
  }
  .eventpage_inner .eventpage_contents .content p {
    font-size: 1.4rem;
  }
  .eventpage_inner .eventpage_contents .content img {
    width: 100%;
    max-width: 340px;
    margin: 20px auto;
    border-radius: 10px;
  }
  .eventpage_inner .eventpage_btn a {
    font-size: 1.4rem;
    padding: 9px 0;
  }
}

.reservation_inner {
  padding-bottom: 120px;
}
.reservation_inner .en_title {
  width: 124px;
  margin: 0 auto 15px;
}
.reservation_inner h1 {
  text-align: center;
  font-size: 2.8rem;
}
.reservation_inner .reservation_calendar {
  max-width: 930px;
  width: 90%;
  margin: 50px auto 0;
}
.reservation_inner .reservation_calendar iframe {
  width: 100%;
  height: 100vw;
}
@media screen and (max-width: 999px) {
  .reservation_inner h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .reservation_inner {
    padding-bottom: 80px;
  }
  .reservation_inner .en_title {
    width: 109px;
    margin: 15px auto;
  }
  .reservation_inner h1 {
    font-size: 2rem;
  }
  .reservation_inner .reservation_calendar {
    margin: 30px auto 0;
  }
}/*# sourceMappingURL=style.css.map */