@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  background: #f6fae7;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .04em;
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity .4s ease;
}
a:hover {
  opacity: .7;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}

.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: 768px) {
  body {
    font-size: 1.3em;
  }
  a:hover {
    opacity: 1;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
}

/*------------------------------------------
  modules
------------------------------------------*/
/* ===== column ===== */
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-col__item.col-3 {
  gap: 30px 2.5%;
}
.l-col__item.col-3 .col-item {
  width: 31.666%;
}

.l-col__item.col-4 {
  gap: 60px 2%;
}
.l-col__item.col-4 .col-item {
  width: 23.5%;
}

@media only screen and (max-width: 768px) {
  .l-col__item.col-3 {
    gap: 20px 0;
    justify-content: space-between;
  }
  .l-col__item.col-3 .col-item {
    width: 48%;
  }
  .l-col__item.col-3.sp-wide {
    position: relative;
    width: calc(100% + 8vw);
    left: -4vw;
  }
  .l-col__item.col-3.sp-wide .col-item {
    width: 48.888%;
  }
  .l-col__item.col-4 {
    gap: 30px 0;
    justify-content: space-between;
  }
  .l-col__item.col-4 .col-item {
    width: 47.25%;
  }
  .l-col__item.col-4.sp-wide {
    position: relative;
    width: calc(100% + 8vw);
    left: -4vw;
    gap: 15px 0;
  }
  .l-col__item.col-4.sp-wide .col-item {
    width: 48.888%;
  }
}

/* ===== layout ===== */
.l-in {
  margin: auto;
  padding: 0 6.07613vw;
}

[class*="l-more"] {
  text-align: center;
}

.l-more__type01 {
  margin-top: 50px;
}

.l-more__type02 {
  margin-top: 90px;
}

@media only screen and (max-width: 768px) {
  .l-in {
    padding: 0 6.13333vw;
  }
  .l-more__type01 {
    margin-top: 30px;
  }
  .l-more__type02 {
    margin-top: 50px;
  }
}

/* ===== ttl ===== */
.m-ttl__type01 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.m-ttl__type02 {
  color: #23ac38;
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #23ac38;
  margin-bottom: 30px;
}

.m-ttl__type03 {
  text-align: center;
  margin-bottom: 60px;
}
.m-ttl__type03 .ttl-en {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 50px;
  letter-spacing: .08em;
}
.m-ttl__type03 .ttl-en span {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
}
.m-ttl__type03 .ttl-en .blog {
  padding-left: 57px;
  background-image: url(../images/common/ico-blog.svg);
  background-size: 38px;
}
.m-ttl__type03 .ttl-en .event {
  padding-left: 52px;
  background-image: url(../images/common/ico-event.svg);
  background-size: 32px;
}
.m-ttl__type03 .ttl-ja {
  color: #23ac38;
}

.m-ttl__type04 {
  font-size: 20px;
  color: #23ac38;
  margin-bottom: 15px;
}

.m-ttl__type05 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 55px;
}

@media only screen and (max-width: 768px) {
  .m-ttl__type01 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
  }
  .m-ttl__type02 {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .m-ttl__type03 {
    margin-bottom: 40px;
  }
  .m-ttl__type03 .ttl-en {
    font-size: 30px;
  }
  .m-ttl__type03 .ttl-en .blog {
    padding-left: 44px;
    background-size: 30px;
  }
  .m-ttl__type03 .ttl-en .event {
    padding-left: 42px;
    background-size: 26px;
  }
  .m-ttl__type03 .ttl-ja {
    font-size: 12px;
  }
  .m-ttl__type04 {
    font-size: 15px;
  }
  .m-ttl__type05 {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

/* ===== btn ===== */
.m-btn__type01 {
  text-align: center;
  position: relative;
  display: inline-block;
  font-size: 16px;
  width: 400px;
  max-width: 100%;
  line-height: 1.46;
  padding: 20px 0;
  background: #23ac38;
  border: 2px solid #23ac38;
  color: #fff !important;
  border-radius: 40px;
  box-sizing: border-box;
  transition: .4s;
  cursor: pointer;
  text-decoration: none !important;
}
.m-btn__type01:hover {
  opacity: 1;
  background: #fff;
  color: #23ac38 !important;
}
.m-btn__type01:before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.m-btn__type01.left:before {
  left: 24px;
  background-image: url(../images/common/arrow-left01.svg);
}
.m-btn__type01.right:before {
  right: 24px;
  background-image: url(../images/common/arrow-right01.svg);
}
.m-btn__type01.down:before {
  right: 24px;
  background-image: url(../images/common/arrow-right01.svg);
  transform: rotate(90deg);
}
.m-btn__type01.small {
  line-height: 56px;
  width: 300px;
}
.m-btn__type01.brown {
  background-color: #b98e3e;
  border-color: #b98e3e;
}
.m-btn__type01.brown:hover {
  background: #fff;
  color: #b98e3e !important;
}

.m-btn__type02 {
  display: block;
  width: 296px;
  padding: 1em 0 1em 40px;
  box-sizing: border-box;
  text-align: center;
  background: #f6fae7;
  text-decoration: none !important;
  position: relative;
}
.m-btn__type02:before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/ico-tel-bk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.m-btn__type02 span {
  display: inline-block;
  vertical-align: middle;
}
.m-btn__type02 .btn-txt {
  font-size: 16px;
  margin-right: 15px;
  color: #333;
}
.m-btn__type02 .btn-num {
  color: #23ac38;
  font-size: 26px;
  letter-spacing: .04em;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
}

@media only screen and (max-width: 768px) {
  .m-btn__type01 {
    font-size: 13px;
    width: 65.6vw;
    padding: 14px 0;
  }
  .m-btn__type01:has(.is-sp) {
    padding: 10px 0;
  }
  .m-btn__type01:hover {
    background: #23ac38;
    color: #fff;
  }
  .m-btn__type01:before {
    width: 25px;
    height: 25px;
    margin-top: -12px;
    background-size: 11px;
  }
  .m-btn__type01.left:before {
    left: 12px;
  }
  .m-btn__type01.right:before {
    right: 12px;
  }
  .m-btn__type01.down:before {
    right: 12px;
  }
  .m-btn__type01.small {
    line-height: 36px;
    width: 54.93333vw;
  }
  .m-btn__type02 {
    width: 213px;
    padding: 1em 0 1em 34px;
  }
  .m-btn__type02:before {
    left: 15px;
    margin-top: -9px;
    width: 18px;
    height: 18px;
  }
  .m-btn__type02 .btn-txt {
    font-size: 13px;
    margin-right: 10px;
  }
  .m-btn__type02 .btn-num {
    font-size: 20px;
  }
}

/* ===== list ===== */
.m-list__type01 .list-item {
  margin-bottom: 10px;
}
.m-list__type01 .list-item:last-child {
  margin-bottom: 0;
}

.m-list__type01 .item-in {
  background: #f6fae7;
  border-radius: 40px;
  padding: 30px 0 30px 3.75%;
}
.m-list__type01 .item-in.ico-pdf .ttl:before {
  background-image: url(../images/common/ico-pdf.svg);
  background-size: 16px;
}
.m-list__type01 .item-in.ico-link .ttl:before {
  background-image: url(../images/common/ico-link.svg);
}

.m-list__type01 .date {
  width: 110px;
  color: #23ac38;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  letter-spacing: .08em;
  line-height: 1.9;
}

.m-list__type01 .ttl {
  width: calc(100% - 110px);
  padding-right: 8.78477vw;
  line-height: 1.75;
  position: relative;
  box-sizing: border-box;
}
.m-list__type01 .ttl:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 2.63543vw;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/arrow-right01.svg);
  background-size: 12px;
}

.m-list__type02 {
  border-top: 1px solid #ebebeb;
}
.m-list__type02 li {
  border-bottom: 1px solid #ebebeb;
}
.m-list__type02 a {
  display: block;
  padding: 1em 44px 1em 10px;
  position: relative;
}
.m-list__type02 a:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -10px;
  background: url(../images/common/arrow-right03.svg) no-repeat;
  background-size: 100%;
}
.m-list__type02 a span {
  color: #23ac38;
}

@media only screen and (max-width: 768px) {
  .m-list__type01 .list-item {
    margin-bottom: 8px;
  }
  .m-list__type01 .item-in {
    border-radius: 20px;
    padding: 20px 20% 20px 6%;
    display: block;
  }
  .m-list__type01 .item-in.ico-pdf .ttl:before {
    background-image: url(../images/common/ico-pdf.svg);
    background-size: 14px;
  }
  .m-list__type01 .item-in.ico-link .ttl:before {
    background-size: 12px;
  }
  .m-list__type01 .date {
    width: 100%;
    margin-bottom: 6px;
  }
  .m-list__type01 .ttl {
    font-size: 12px;
    width: 100%;
    padding-right: 0;
  }
  .m-list__type01 .ttl:before {
    width: 26px;
    height: 26px;
    top: -2px;
    right: -18%;
    background-size: 10px;
  }
  .m-list__type02 a {
    font-size: 14px;
    padding: 16px 40px 16px 12px;
  }
  .m-list__type02 a:before {
    right: 10px;
  }
}

/* ===== block ===== */
.m-block__type01 {
  margin-bottom: 30px;
}
.m-block__type01:last-child {
  margin-bottom: 0;
}
.m-block__type01 .block-ttl {
  color: #23ac38;
  margin-bottom: 15px;
}
.m-block__type01 .block-cont p {
  line-height: 2;
  margin-bottom: 1.5em;
}
.m-block__type01 .block-cont p:last-child {
  margin-bottom: 0;
}
.m-block__type01 .block-cont .caution {
  font-size: 14px;
}

.m-block__type02 .block-img {
  width: 50%;
}
.m-block__type02 .block-img > div {
  margin-bottom: 30px;
}
.m-block__type02 .block-img > div:last-child {
  margin-bottom: 0;
}

.m-block__type02 .block-cont {
  width: 46.66%;
  margin-left: auto;
}

.m-block__type03 {
  margin-bottom: 40px;
}
.m-block__type03:last-child {
  margin-bottom: 0;
}
.m-block__type03 .block-ttl {
  width: 100%;
}
.m-block__type03 .block-ttl:has(span) {
  margin-bottom: 30px;
}
.m-block__type03 .block-ttl span {
  font-size: 20px;
  color: #23ac38;
  display: inline-block;
  vertical-align: middle;
}
.m-block__type03 .block-ttl span:first-child {
  margin-right: 15px;
}
.m-block__type03.l-grid .block-cont {
  width: 60%;
}
.m-block__type03.l-grid .block-img {
  width: 36%;
  margin-left: auto;
}

.m-block__type04 {
  margin-bottom: 40px;
}
.m-block__type04:last-child {
  margin-bottom: 0;
}
.m-block__type04.l-grid .block-cont {
  width: 66%;
}
.m-block__type04.l-grid .block-img {
  width: 30%;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .m-block__type01 .block-cont .caution {
    font-size: 12px;
    line-height: 1.833;
  }
  .m-block__type02 .block-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .m-block__type02 .block-img > div {
    margin-bottom: 20px;
  }
  .m-block__type02 .block-cont {
    width: 100%;
  }
  .m-block__type03 {
    margin-bottom: 30px;
  }
  .m-block__type03 .block-ttl:has(span) {
    margin-bottom: 20px;
  }
  .m-block__type03 .block-ttl span {
    font-size: 15px;
  }
  .m-block__type03 .block-ttl span:first-child {
    margin-right: 10px;
  }
  .m-block__type03 .block-ttl span img {
    width: 27px;
  }
  .m-block__type03.l-grid .block-cont {
    width: 100%;
  }
  .m-block__type03.l-grid .block-img {
    width: 100%;
    margin-top: 20px;
  }
  .m-block__type04 {
    margin-bottom: 30px;
  }
  .m-block__type04.l-grid .block-cont {
    width: 100%;
  }
  .m-block__type04.l-grid .block-img {
    width: 100%;
    margin-top: 20px;
  }
}

/* ===== table ===== */
.m-table__type01 {
  width: 100%;
}
.m-table__type01 tr {
  border-bottom: 2px solid #f6fae7;
}
.m-table__type01 tr:first-child th, .m-table__type01 tr:first-child td {
  padding-top: 0;
}
.m-table__type01 th, .m-table__type01 td {
  line-height: 2;
  padding: 1.5em 1em;
  text-align: left;
}
.m-table__type01 th {
  color: #23ac38;
  width: 140px;
}

.m-table__type02 {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #23ac38;
  border-left: 1px solid #23ac38;
}
.m-table__type02 tr {
  border-bottom: 1px solid #23ac38;
}
.m-table__type02 th, .m-table__type02 td {
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 1.875;
}
.m-table__type02 th {
  padding: 1em;
  background: #23ac38;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
}
.m-table__type02 th:last-child {
  border-right: 1px solid #23ac38;
}
.m-table__type02 td {
  padding: 1em 1.5em;
  border-right: 1px solid #23ac38;
  background: #fff;
}
.m-table__type02 .td-head {
  background: #f6fae7;
  text-align: center;
}

.m-table__type03 {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #23ac38;
  border-left: 1px solid #23ac38;
}
.m-table__type03 tr {
  border-bottom: 1px solid #23ac38;
}
.m-table__type03 tr:last-child th {
  border-bottom: none;
}
.m-table__type03 th, .m-table__type03 td {
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 2;
}
.m-table__type03 th {
  padding: 1em;
  background: #23ac38;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.m-table__type03 td {
  padding: 1em 1.5em;
  border-right: 1px solid #23ac38;
  background: #fff;
}
.m-table__type03 .td-head {
  background: #f6fae7;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .m-table__type01 th {
    width: 30%;
    line-height: 1.55;
  }
  .m-table__type02 th {
    padding: .5em 0;
    line-height: 1.5;
  }
  .m-table__type02 td {
    padding: 1em;
    line-height: 1.5;
  }
  .m-table__type02 .td-head {
    padding: .5em;
  }
  .m-table__type03 td {
    padding: 1em;
    line-height: 1.5;
  }
  .m-table__type03 th {
    padding: 1em .5em;
    line-height: 1.5;
  }
}

/* ===== txt ===== */
.m-txt__type01 {
  margin-bottom: 40px;
}
.m-txt__type01:last-child {
  margin-bottom: 0;
}
.m-txt__type01 p {
  line-height: 2;
  margin-bottom: 1.5em;
}
.m-txt__type01 p:last-child {
  margin-bottom: 0;
}
.m-txt__type01 .caution {
  font-size: 14px;
}
.m-txt__type01 .ttl {
  margin-bottom: .5em;
  font-size: 18px;
  line-height: 1.7;
}
.m-txt__type01 .img {
  margin-bottom: 30px;
}
.m-txt__type01 a {
  color: #23ac38;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .m-txt__type01 {
    margin-bottom: 35px;
  }
  .m-txt__type01 .ttl {
    font-size: 15px;
  }
  .m-txt__type01 .caution {
    font-size: 12px;
  }
  .m-txt__type01 .img {
    margin-bottom: 20px;
  }
}

/* ===== panel ===== */
.m-panel__type01 {
  background: #fff;
}
.m-panel__type01 .panel-in {
  display: block;
  position: relative;
}
.m-panel__type01 .panel-img .logo {
  border: 1px solid #f0f7d1;
}
.m-panel__type01 .panel-txt {
  padding: 25px 20px;
}
.m-panel__type01 .panel-txt .date {
  font-size: 14px;
  color: #23ac38;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  margin-bottom: .5em;
  letter-spacing: .08em;
}
.m-panel__type01 .panel-txt .shop {
  font-size: 14px;
  color: #9b9b9b;
  margin-bottom: .5em;
}
.m-panel__type01 .panel-txt .category {
  font-size: 13px;
  color: #9b9b9b;
  margin-top: .5em;
}
.m-panel__type01 .panel-txt .map {
  margin-bottom: 10px;
}
.m-panel__type01 .panel-txt .map span {
  display: inline-block;
  color: #23ac38;
  font-size: 14px;
  background: #f6fae7;
  padding: 2px .8em;
}
.m-panel__type01 .new {
  text-align: center;
  background: #fff036;
  color: #23ac38;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: -10px;
  z-index: 20;
}

.m-panel__type02 .panel-in {
  display: block;
  position: relative;
}

.m-panel__type02 .panel-img {
  border: 1px solid #f0f7d1;
}

.m-panel__type02 .panel-txt {
  padding: 20px 0 0;
}
.m-panel__type02 .panel-txt .category {
  font-size: 13px;
  color: #9b9b9b;
  margin-top: .5em;
}
.m-panel__type02 .panel-txt .map {
  margin-bottom: 10px;
}
.m-panel__type02 .panel-txt .map span {
  display: inline-block;
  color: #23ac38;
  font-size: 14px;
  background: #f6fae7;
  padding: 2px .8em;
}
.m-panel__type02 .panel-txt .info {
  margin-top: 15px;
}
.m-panel__type02 .panel-txt .info p {
  margin-bottom: 10px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left top 3px;
  font-size: 15px;
}
.m-panel__type02 .panel-txt .info p:last-child {
  margin-bottom: 0;
}
.m-panel__type02 .panel-txt .info-hour {
  background-image: url(../images/common/ico-hour.svg);
}
.m-panel__type02 .panel-txt .info-tel {
  background-image: url(../images/common/ico-tel.svg);
}

@media only screen and (max-width: 768px) {
  .m-panel__type01 .panel-txt {
    padding: 20px 15px;
  }
  .m-panel__type01 .panel-txt .date {
    font-size: 12px;
  }
  .m-panel__type01 .panel-txt .shop {
    font-size: 11px;
  }
  .m-panel__type01 .panel-txt .ttl {
    font-size: 12px;
  }
  .m-panel__type01 .new {
    font-size: 11px;
    width: 40px;
    line-height: 40px;
    left: -5px;
    top: -9px;
  }
  .m-panel__type02 .panel-txt {
    padding-top: 10px;
  }
  .m-panel__type02 .panel-txt .category {
    font-size: 11px;
  }
  .m-panel__type02 .panel-txt .map {
    margin-bottom: 6px;
  }
  .m-panel__type02 .panel-txt .map span {
    font-size: 11px;
    padding: 2px .6em;
  }
  .m-panel__type02 .panel-txt .info {
    margin-top: 10px;
  }
  .m-panel__type02 .panel-txt .info p {
    padding-left: 23px;
    background-position: left top 2px;
    font-size: 12px;
    padding-bottom: 3px;
  }
  .m-panel__type02 .panel-txt .info-hour {
    background-image: url(../images/common/ico-hour.svg);
  }
  .m-panel__type02 .panel-txt .info-tel {
    background-image: url(../images/common/ico-tel.svg);
  }
}

/* ===== nav ===== */
.m-nav__type01 {
  gap: 10px 1%;
  margin-bottom: 70px;
}
.m-nav__type01 li {
  width: 24.25%;
  height: 60px;
  line-height: 1.375;
  display: table;
  text-align: center;
}
.m-nav__type01 a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background: #f6fae7;
  color: #23ac38;
}
.m-nav__type01 a.current {
  color: #fff;
  background: #23ac38;
  pointer-events: none;
}

.m-nav__type02 {
  margin-bottom: 60px;
  gap: 24px;
  border-bottom: 2px solid #23ac38;
  justify-content: space-between;
}
.m-nav__type02 li {
  flex: 1;
  text-align: center;
}
.m-nav__type02 a {
  display: block;
  font-size: 18px;
  border-radius: 10px 10px 0 0 / 10px 10px 0 0;
  border: 2px solid #23ac38;
  border-bottom: none;
  position: relative;
  color: #fff;
  background: #23ac38;
  padding: 1em 0;
}
.m-nav__type02 a.current {
  color: #23ac38;
  background: #fff;
  pointer-events: none;
}
.m-nav__type02 a.current:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
}

.m-nav__type03 {
  gap: 10px 1%;
  justify-content: center;
}
.m-nav__type03 li {
  width: 24.25%;
  height: 70px;
  line-height: 1.375;
  display: table;
  text-align: center;
}
.m-nav__type03 a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #f6fae7;
  color: #23ac38;
  position: relative;
}
.m-nav__type03 a.arrow {
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: right 15px center;
  padding: 0 45px;
}
.m-nav__type03 a.arrow-down {
  background-image: url(../images/common/arrow-down01.svg);
}
.m-nav__type03 a.arrow-right {
  background-image: url(../images/common/arrow-right03.svg);
}

@media only screen and (max-width: 768px) {
  .m-nav__type01 {
    gap: 6px 3%;
    margin-bottom: 50px;
  }
  .m-nav__type01 li {
    width: 48.5%;
    height: 50px;
    font-size: 12px;
  }
  .m-nav__type02 {
    margin-bottom: 30px;
    gap: 7px;
    width: calc(100% + 10.26666vw);
    position: relative;
    left: -5.13333vw;
  }
  .m-nav__type02 a {
    font-size: 12px;
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    padding: .6em 0;
  }
  .m-nav__type03 {
    gap: 6px 3%;
  }
  .m-nav__type03 li {
    width: 48.5%;
    height: 50px;
    font-size: 12px;
  }
  .m-nav__type03 a.arrow {
    background-size: 16px;
    background-position: right 10px center;
    padding: 0 30px;
  }
}

/* ===== bnr ===== */
.m-bnr__type01 {
  position: relative;
}
.m-bnr__type01 .bnr-item a {
  display: block;
  padding: 0 .73206vw;
}
.m-bnr__type01 .slick-list {
  overflow: visible;
}
.m-bnr__type01 .slick-arrow {
  width: 42px;
  height: 42px;
  background-color: #23ac38;
  margin-top: -21px;
  background-size: 16px;
}
.m-bnr__type01 .slick-prev {
  left: -11px;
  background-image: url(../images/common/arrow-left02.svg);
}
.m-bnr__type01 .slick-next {
  right: -11px;
  background-image: url(../images/common/arrow-right02.svg);
}

.m-bnr__type02 {
  gap: 1.4%;
  justify-content: center;
}
.m-bnr__type02 .bnr-item {
  width: 15.5%;
}
.m-bnr__type02 .bnr-item a {
  display: block;
}

.m-bnr__type03 .bnr-item a {
  display: block;
  padding: 0 .73206vw;
}

@media only screen and (max-width: 768px) {
  .m-bnr__type01 .bnr-item a {
    padding: 0 1.33333vw;
  }
  .m-bnr__type01 .slick-arrow {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    background-size: 14px;
  }
  .m-bnr__type02 {
    gap: 0;
    justify-content: space-between;
  }
  .m-bnr__type02 .bnr-item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .m-bnr__type03 .bnr-item a {
    padding: 0 1.33333vw;
  }
}

/* ===== article ===== */
.m-article__type01 .article-head {
  border-bottom: 2px solid #23ac38;
  padding-bottom: 25px;
  margin-bottom: 40px;
}

.m-article__type01 .head-date {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  color: #9b9b9b;
  margin-bottom: .5em;
}

.m-article__type01 .head-ttl {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
}

.m-article__type01 .article-cont {
  line-height: 2;
}
.m-article__type01 .article-cont strong {
  font-weight: 700;
}
.m-article__type01 .article-cont a {
  color: #23ac38;
  text-decoration: underline;
  -ms-word-break: break-all;
      word-break: break-all;
}

.m-article__type01 .article-info {
  background: #f6fae7;
  margin-top: 60px;
  padding: 30px 5.2%;
}
.m-article__type01 .article-info .box {
  padding: 20px 0;
  border-bottom: 2px solid #fff;
}
.m-article__type01 .article-info .box:last-child {
  border-bottom: none;
}
.m-article__type01 .article-info .box-ttl {
  width: 110px;
  text-align: center;
  color: #23ac38;
}
.m-article__type01 .article-info .box-txt {
  width: calc(100% - 125px);
  margin-left: auto;
}

.m-article__type02 {
  margin-bottom: 70px;
}
.m-article__type02:last-child {
  margin-bottom: 0;
}
.m-article__type02 .article-img {
  width: 40%;
}
.m-article__type02 .article-slider .slide-item {
  border: 1px solid #f0f7d1;
  box-sizing: border-box;
}
.m-article__type02 .article-slider .slick-dots {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-article__type02 .article-slider .slick-dots li {
  box-sizing: border-box;
  cursor: pointer;
  width: 14%;
  margin: 0 2%;
  border: 1px solid #f0f7d1;
}
.m-article__type02 .article-slider .slick-dots li.slick-active {
  border: 1px solid #fff;
}
.m-article__type02 .article-cont {
  margin-left: auto;
  width: 56%;
}
.m-article__type02 .article-lead {
  margin-top: 50px;
  line-height: 2;
}
.m-article__type02 .article-info {
  margin-top: 45px;
  line-height: 1.75;
}
.m-article__type02 .article-info table {
  width: 100%;
  border-top: 2px solid #f6fae7;
}
.m-article__type02 .article-info tr {
  border-bottom: 2px solid #f6fae7;
}
.m-article__type02 .article-info th {
  color: #23ac38;
  text-align: left;
  padding: 25px 20px;
  width: 6em;
}
.m-article__type02 .article-info td {
  padding: 25px 20px 25px 0;
}
.m-article__type02 .article-info a {
  text-decoration: underline;
  color: #23ac38;
}
.m-article__type02 .article-info a[href^="tel:"] {
  text-decoration: none;
  color: #333;
}
.m-article__type02 .article-foot {
  margin-top: 45px;
  background: #f6fae7;
  border-radius: 15px;
  padding: 40px 20px 50px;
  text-align: center;
}
.m-article__type02 .article-foot_in {
  margin: auto;
  width: 72%;
}
.m-article__type02 .article-foot .ttl {
  display: inline-block;
  position: relative;
  padding: 0 1em;
  margin-bottom: 40px;
}
.m-article__type02 .article-foot .ttl:before, .m-article__type02 .article-foot .ttl:after {
  content: "";
  width: 6.95461vw;
  max-width: 95px;
  height: 4.61201vw;
  max-height: 63px;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.m-article__type02 .article-foot .ttl:before {
  left: -6.95461vw;
  background-position: right center;
  background-image: url(../images/common/img-card01.png);
}
.m-article__type02 .article-foot .ttl:after {
  right: -6.95461vw;
  background-position: left center;
  background-image: url(../images/common/img-card02.png);
}
.m-article__type02 .article-foot .ttl-ja {
  font-weight: 700;
  font-size: 23px;
}
.m-article__type02 .article-foot .ttl-en {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  letter-spacing: .08em;
  margin-top: .5em;
}
.m-article__type02 .article-foot .txt {
  text-align: left;
  line-height: 2;
}

.m-article__type03 {
  margin-bottom: 30px;
}
.m-article__type03:last-child {
  margin-bottom: 0;
}
.m-article__type03 .article-in {
  background: #f6fae7;
  border-radius: 20px;
  padding: 40px 5.2%;
}
.m-article__type03 .article-head {
  margin-bottom: 30px;
  align-items: flex-start;
}
.m-article__type03 .article-head_img {
  width: 17.5%;
  border: 1px solid #f0f7d1;
  box-sizing: border-box;
}
.m-article__type03 .article-head_txt {
  width: 79%;
  margin-left: auto;
}
.m-article__type03 .head-label {
  display: inline-block;
  color: #23ac38;
  font-weight: 400;
  background: #fff;
  padding: 3px 10px;
  margin-bottom: 1em;
}
.m-article__type03 .head-ttl {
  font-size: 22px;
}
.m-article__type03 .head-txt {
  color: #9b9b9b;
  margin-top: 1em;
}
.m-article__type03 .article-cont {
  line-height: 2;
  justify-content: space-between;
}
.m-article__type03 .article-cont .box {
  width: 48%;
  display: flex;
  border-top: 2px solid #fff;
  padding: 20px 0;
}
.m-article__type03 .article-cont .box-ttl {
  color: #23ac38;
  width: 135px;
  padding: 0 1em;
  box-sizing: border-box;
}
.m-article__type03 .article-cont .box-txt {
  width: calc(100% - 135px);
  padding-right: 1em;
  margin-left: auto;
  box-sizing: border-box;
  -ms-word-break: break-all;
      word-break: break-all;
}
.m-article__type03 .article-cont .box:last-child {
  width: 100%;
  padding-top: 32px;
}
.m-article__type03 .article-cont .box:last-child .box-txt {
  padding-right: 7%;
}
.m-article__type03 .article-cont .box a {
  color: #23ac38;
  text-decoration: underline;
}
.m-article__type03 .article-cont .box a[href^="tel:"] {
  color: #333;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .m-article__type01 .article-head {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .m-article__type01 .head-date {
    font-size: 14px;
  }
  .m-article__type01 .head-ttl {
    font-size: 18px;
  }
  .m-article__type01 .article-info {
    margin-top: 40px;
    padding: 5px 3%;
  }
  .m-article__type01 .article-info .box {
    font-size: 14px;
  }
  .m-article__type01 .article-info .box-ttl {
    width: 70px;
  }
  .m-article__type01 .article-info .box-txt {
    width: calc(100% - 80px);
    padding-right: 1em;
    box-sizing: border-box;
  }
  .m-article__type02 {
    margin-bottom: 40px;
  }
  .m-article__type02 .article-head {
    margin-bottom: 35px;
  }
  .m-article__type02 .article-img {
    width: 100%;
    margin-bottom: 35px;
  }
  .m-article__type02 .article-slider .slick-dots {
    margin-top: 10px;
  }
  .m-article__type02 .article-slider .slick-dots li {
    width: 22%;
    margin: 0 1.5%;
  }
  .m-article__type02 .article-cont {
    width: 100%;
  }
  .m-article__type02 .article-lead {
    margin-top: 0;
  }
  .m-article__type02 .article-info {
    margin-top: 30px;
    line-height: 2;
  }
  .m-article__type02 .article-info th {
    padding: 10px 15px;
    width: 5em;
  }
  .m-article__type02 .article-info td {
    padding: 10px 15px 10px 0;
  }
  .m-article__type02 .article-foot {
    margin-top: 30px;
    padding: 70px 20px 30px;
  }
  .m-article__type02 .article-foot_in {
    width: 100%;
  }
  .m-article__type02 .article-foot .ttl {
    margin-bottom: 20px;
  }
  .m-article__type02 .article-foot .ttl:before, .m-article__type02 .article-foot .ttl:after {
    height: 35px;
    top: auto;
    bottom: 100%;
    margin-bottom: 10px;
  }
  .m-article__type02 .article-foot .ttl:before {
    width: 18px;
    left: 50%;
    margin-left: -40px;
  }
  .m-article__type02 .article-foot .ttl:after {
    width: 52px;
    right: auto;
    left: 50%;
    margin-left: -10px;
  }
  .m-article__type02 .article-foot .ttl-ja {
    font-size: 18px;
  }
  .m-article__type02 .article-foot .ttl-en {
    font-size: 12px;
  }
  .m-article__type02 .article-foot .txt {
    font-size: 14px;
    line-height: 1.66;
  }
  .m-article__type03 {
    margin-bottom: 20px;
  }
  .m-article__type03 .article-in {
    border-radius: 10px;
    padding: 20px 4vw;
  }
  .m-article__type03 .article-head {
    margin-bottom: 15px;
  }
  .m-article__type03 .article-head_img {
    width: 30%;
  }
  .m-article__type03 .article-head_txt {
    width: 65%;
  }
  .m-article__type03 .head-label {
    font-size: 12px;
    padding: 2px 12px;
    margin-bottom: .5em;
  }
  .m-article__type03 .head-ttl {
    font-size: 16px;
    line-height: 1.75;
  }
  .m-article__type03 .head-txt {
    font-size: 12px;
    margin-top: .5em;
  }
  .m-article__type03 .article-cont .box {
    width: 100%;
    padding: 15px 0;
  }
  .m-article__type03 .article-cont .box-ttl {
    width: 82px;
    padding-left: 10px;
  }
  .m-article__type03 .article-cont .box-txt {
    width: calc(100% - 82px);
  }
  .m-article__type03 .article-cont .box:last-child {
    padding-top: 15px;
  }
  .m-article__type03 .article-cont .box:last-child .box-txt {
    padding-right: 1em;
  }
}

/* ===== borderBg ===== */
.m-borderBg {
  position: relative;
}
.m-borderBg:before {
  content: "";
  width: 151.31772vw;
  height: 3.3675vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
}
.m-borderBg.borderBgTop:before {
  bottom: 100%;
  background-position: center top;
}
.m-borderBg.borderBgBottom:before {
  top: 100%;
  background-position: center bottom;
}
.m-borderBg.borderBg01:before {
  background-image: url(../images/common/bg-border01.png);
}
.m-borderBg.borderBg02:before {
  background-image: url(../images/common/bg-border02.png);
}
.m-borderBg.borderBg03:before {
  background-image: url(../images/common/bg-border03.png);
}
.m-borderBg.borderBg04:before {
  background-image: url(../images/common/bg-border04.png);
}
.m-borderBg.borderBg05:before {
  background-image: url(../images/common/bg-border05.png);
}
.m-borderBg.borderBg06:before {
  background-image: url(../images/common/bg-border06.png);
}
.m-borderBg.borderBg07:before {
  background-image: url(../images/common/bg-border07.png);
}
.m-borderBg.borderBg08:before {
  background-image: url(../images/common/bg-border08.png);
}
.m-borderBg.borderBg09:before {
  background-image: url(../images/common/bg-border09.png);
}

@media only screen and (max-width: 768px) {
  .m-borderBg:before {
    width: 186.66667vw;
    height: 4.26667vw;
  }
  .m-borderBg.borderBg01:before {
    background-image: url(../images/common/bg-border01-sp.png);
  }
  .m-borderBg.borderBg02:before {
    background-image: url(../images/common/bg-border02-sp.png);
  }
  .m-borderBg.borderBg03:before {
    background-image: url(../images/common/bg-border03-sp.png);
  }
  .m-borderBg.borderBg04:before {
    background-image: url(../images/common/bg-border04-sp.png);
  }
  .m-borderBg.borderBg05:before {
    background-image: url(../images/common/bg-border05-sp.png);
  }
  .m-borderBg.borderBg06:before {
    background-image: url(../images/common/bg-border06-sp.png);
  }
  .m-borderBg.borderBg07:before {
    background-image: url(../images/common/bg-border07-sp.png);
  }
  .m-borderBg.borderBg08:before {
    background-image: url(../images/common/bg-border08-sp.png);
  }
  .m-borderBg.borderBg09:before {
    background-image: url(../images/common/bg-border09-sp.png);
  }
}

/* ===== link ===== */
[class*="m-iconlink"] {
  display: inline-block;
  color: #23ac38;
  text-decoration: none !important;
  position: relative;
  padding-left: 28px;
}
[class*="m-iconlink"]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 20px;
  height: 20px;
}

.m-iconlink__arrow:before {
  background-image: url(../images/common/arrow-right03.svg);
}

.m-iconlink__pdf:before {
  background-image: url(../images/common/ico-pdf02.svg);
}

@media only screen and (max-width: 768px) {
  [class*="m-iconlink"] {
    font-size: 14px;
    line-height: 1.5;
  }
  [class*="m-iconlink"]:before {
    top: 1px;
  }
}

/* ===== shop ===== */
.m-shop.l-grid {
  align-items: flex-start;
}
.m-shop.l-grid .shop-logo {
  width: 30%;
  margin-bottom: 0;
}
.m-shop.l-grid .shop-info {
  width: 64%;
  margin-left: auto;
}
.m-shop.l-grid .name {
  font-size: 22px;
}
.m-shop.l-grid .category {
  font-size: 16px;
}

.m-shop .shop-logo {
  box-sizing: border-box;
  border: 1px solid #f0f7d1;
  margin-bottom: 20px;
}

.m-shop .floor {
  display: inline-block;
  color: #23ac38;
  background: #f6fae7;
  letter-spacing: .08em;
  padding: 2px 10px;
  margin-bottom: 1em;
  font-weight: 400;
}

.m-shop .name {
  font-size: 18px;
}

.m-shop .category {
  color: #9b9b9b;
  margin-top: 1em;
  font-size: 14px;
}

.m-shop.archive {
  width: 60%;
  margin: 0 auto 60px;
}

@media only screen and (max-width: 768px) {
  .m-shop.l-grid .shop-logo {
    width: 37.5%;
  }
  .m-shop.l-grid .shop-info {
    width: 56.4%;
  }
  .m-shop.l-grid .name {
    font-size: 16px;
  }
  .m-shop.l-grid .category {
    font-size: 12px;
  }
  .m-shop .floor {
    font-size: 12px;
  }
  .m-shop .name {
    font-size: 16px;
  }
  .m-shop .category {
    font-size: 12px;
  }
  .m-shop.archive {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* ===== blur image ===== */
.blurImg {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.blurImg .bg, .blurImg .img {
  width: 100%;
  height: 100%;
}
.blurImg .bg img, .blurImg .img img {
  width: 100%;
  height: 100%;
}
.blurImg .bg {
  position: relative;
  -webkit-filter: blur(20px) brightness(115%);
          filter: blur(20px) brightness(115%);
  overflow: hidden;
}
.blurImg .bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .2);
}
.blurImg .bg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.blurImg .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.blurImg .img img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===== animation ===== */
.fadeInUp {
  opacity: 0;
  transform: translateY(50px);
}
.fadeInUp.is-active, .fadeInUp.js-scr-active {
  opacity: 1;
  transform: translateY(0);
  transition: .8s;
}

/* ===== accordion ===== */
.ac-trigger {
  cursor: pointer;
  position: relative;
}
.ac-trigger.ac-open .ac-icon {
  background-image: url(../images/common/ico-minus02.svg);
}

.ac-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  right: 30px;
  top: 50%;
  margin-top: -15px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../images/common/ico-plus02.svg);
}

.ac-hide {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ac-icon {
    width: 26px;
    height: 26px;
    right: 15px;
    margin-top: -13px;
  }
}

/* ===== hoge ===== */
/*------------------------------------------
  header
------------------------------------------*/
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
.site-header:before {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f6fae7;
}
.site-header_in {
  position: relative;
  z-index: 1;
}
.site-header_logo {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 233px;
  height: 150px;
  border-radius: 0 0 180px 0 / 0 0 180px 0;
  padding-top: 12px;
  padding-left: 20px;
  box-sizing: border-box;
  box-shadow: 0px 3px 10px 0px rgba(107, 159, 115, .1);
  z-index: 2;
}
.site-header_nav {
  display: flex;
  height: 78px;
  width: 76.3543%;
  max-width: 1043px;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.site-header_nav a {
  font-weight: 700;
}
.site-header_nav .info-nav {
  gap: 0 4px;
  margin-left: 30px;
  position: relative;
  z-index: 1;
}
.site-header_nav .info-nav li {
  display: table;
  height: 78px;
  width: 90px;
  text-align: center;
  background: #fff;
  border-radius: 0 0 30px 30px / 0 0 30px 30px;
  box-shadow: 0px 3px 10px 0px rgba(107, 159, 115, .1);
}
.site-header_nav .info-nav a {
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  padding-bottom: 3px;
}
.site-header_nav .info-nav .icon {
  display: block;
  height: 28px;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-position: center;
}
.site-header_nav .info-nav .nav-item__parking .icon {
  background-image: url(../images/common/ico-car.svg);
  background-size: 30px;
}
.site-header_nav .info-nav .nav-item__line .icon {
  background-image: url(../images/common/ico-line.svg);
  background-size: 28px;
}
.site-header_nav .info-nav .nav-item__card {
  display: none;
}
.site-header_nav .info-nav .nav-item__card .icon {
  background-image: url(../images/common/ico-bono.svg);
  background-size: 23px;
}
.site-header_nav .info-nav .nav-item__menu {
  display: none;
}
.site-header_nav .info-nav .nav-item__menu a {
  letter-spacing: .08em;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-weight: 600;
}
.site-header_nav .info-nav .nav-item__menu .icon {
  margin-bottom: 0;
}
.site-header .menu-icon {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 28px;
  background-image: url(../images/common/ico-menu.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.site-header .is-active .menu-icon {
  background-image: url(../images/common/ico-menu-close.svg);
}

@media only screen and (max-width: 1024px) {
  .site-header_nav .info-nav .nav-item__line {
    display: none;
  }
  .site-header_nav .info-nav .nav-item__card {
    display: table;
  }
  .site-header_nav .info-nav .nav-item__menu {
    display: table;
  }
}

@media only screen and (max-width: 768px) {
  .site-header_logo {
    width: 105px;
    height: 60px;
    padding-left: 13px;
    padding-top: 6px;
  }
  .site-header_logo img {
    width: 50px;
  }
  .site-header_nav {
    height: 51px;
    align-items: flex-start;
  }
  .site-header_nav .info-nav li {
    width: auto;
    height: 46px;
    border-radius: 0 0 20px 20px / 0 0 20px 20px;
  }
  .site-header_nav .info-nav a {
    font-size: 10px;
    padding: 0 1em 2px;
  }
  .site-header_nav .info-nav .icon {
    height: 14px;
    margin-bottom: 0;
  }
  .site-header_nav .info-nav .nav-item__parking .icon {
    background-size: auto 14px;
  }
  .site-header_nav .info-nav .nav-item__card .icon {
    background-size: auto 14px;
  }
  .site-header_nav .info-nav .nav-item__menu {
    width: 50px;
  }
  .site-header_nav .info-nav .nav-item__menu a {
    font-size: 9px;
    padding: 0;
  }
  .site-header .menu-icon {
    width: 25px;
    height: 14px;
  }
}

.global-nav {
  font-size: 13px;
  width: calc(100% - 214px);
}
.global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 1.8em;
  padding-bottom: 8px;
}

@media only screen and (max-width: 1366px) {
  .global-nav {
    font-size: .95168vw;
  }
  .global-nav ul {
    gap: 0 .8em;
  }
}

@media only screen and (max-width: 1024px) {
  .global-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    height: 100dvh;
    padding: 100px 6.07613vw;
    box-sizing: border-box;
    background: #fff;
    z-index: 1;
    font-size: 14px;
    text-align: left;
    -ms-overflow-y: auto;
        overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .global-nav ul {
    display: block;
  }
  .global-nav a {
    display: block;
    padding: 1.4em 0 1.4em 40px;
    position: relative;
  }
  .global-nav a:before {
    content: "";
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
  }
  .global-nav a br {
    display: none;
  }
  .global-nav .nav-item {
    border-bottom: 2px solid #f6fae7;
  }
  .global-nav .nav-item:last-child {
    border-bottom: none;
  }
  .global-nav .nav-item a:before {
    width: 32px;
    height: 100%;
    top: 0;
  }
  .global-nav .nav-item__floorguide a:before {
    background-image: url(../images/common/ico-floorguide.svg);
  }
  .global-nav .nav-item__event a:before {
    background-image: url(../images/common/ico-event.svg);
  }
  .global-nav .nav-item__blog a:before {
    background-image: url(../images/common/ico-blog.svg);
    background-position: center right;
  }
  .global-nav .nav-item__restaurant a:before {
    background-image: url(../images/common/ico-restaurant.svg);
  }
  .global-nav .nav-item__access a:before {
    background-image: url(../images/common/ico-access.svg);
  }
  .global-nav .nav-item__facilities a:before {
    background-image: url(../images/common/ico-facilities.svg);
  }
  .global-nav .nav-item__card a:before {
    background-image: url(../images/common/ico-bono.svg);
    background-size: 20px;
  }
  .global-nav .nav-item__line a:before {
    background-image: url(../images/common/ico-line.svg);
  }
  .global-nav .nav-item__child {
    font-size: 13px;
    padding: 5px 0;
  }
  .global-nav .nav-item__child a {
    padding: .9em 0 .9em 41px;
  }
  .global-nav .nav-item__child a:before {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    left: 4px;
    top: 50%;
    margin-top: -10px;
    background-image: url(../images/common/arrow-right03.svg);
  }
}

@media only screen and (max-width: 768px) {
  .global-nav {
    padding: 65px 10.93333vw 30px 6.13333vw;
    width: 82.93333vw;
  }
}

.site-announce {
  background: #ea7676;
  color: #fff;
}
.site-announce_in {
  width: 60%;
  margin: auto;
  padding: 20px 0;
}
.site-announce .announce {
  align-items: flex-start;
}
.site-announce .announce-ttl {
  padding-left: 24px;
  background: url(../images/common/ico-announce.svg) no-repeat left center;
  background-size: 17px;
}
.site-announce .announce-txt {
  font-weight: 400;
  width: calc(100% - 176px);
  margin-left: auto;
}
.site-announce .announce-txt p {
  margin-bottom: 18px;
  line-height: 1.75;
}
.site-announce .announce-txt p:last-child {
  margin-bottom: 0;
}
.site-announce .announce-txt a {
  color: #fff;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
.site-announce .announce-txt a:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../images/common/arrow-right01.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 2px;
}

@media only screen and (max-width: 1024px) {
  .site-announce_in {
    width: 100%;
    max-width: 100%;
  }
  .site-announce .announce {
    display: block;
    text-align: center;
    width: auto;
    padding: 0 6.07613vw;
  }
  .site-announce .announce-ttl {
    display: inline-block;
    margin-bottom: 1em;
  }
  .site-announce .announce-txt {
    width: auto;
  }
}

@media only screen and (max-width: 768px) {
  .site-announce_in {
    padding: 10px 0;
  }
  .site-announce .announce {
    font-size: 12px;
    padding: 0 6.13333vw;
  }
  .site-announce .announce-ttl {
    padding-left: 18px;
    background-size: 13px;
    margin-bottom: .5em;
  }
  .site-announce .announce-txt a {
    padding-left: 26px;
  }
  .site-announce .announce-txt a:before {
    width: 17px;
    height: 17px;
    background-size: 8px;
  }
  .site-announce .announce-txt p {
    margin-bottom: .5em;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.site-footer_access .access-info_in {
  position: relative;
  width: 80%;
  margin: -90px auto 0;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 40px 0;
}

.site-footer_access .access-logo {
  text-align: center;
  width: 37.5%;
  padding: 0 10px;
  box-sizing: border-box;
}

.site-footer_access .access-txt {
  width: calc(100% - 40%);
}
.site-footer_access .access-txt .address {
  line-height: 1.75;
  margin-bottom: 1em;
}
.site-footer_access .access-txt .caution {
  font-size: 13px;
  color: #9b9b9b;
  line-height: 2;
  font-weight: 400;
  max-width: 530px;
}
.site-footer_access .access-txt .caution a {
  color: #9b9b9b;
}

.site-footer_bnr {
  padding: 60px 0 8.05271vw;
}

.site-footer_info {
  background: #23ac38;
  text-align: center;
  color: #fff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.site-footer_info a {
  color: #fff;
}
.site-footer_info .info-nav {
  justify-content: center;
}
.site-footer_info .info-nav li {
  margin: 0 14px 15px;
  font-size: 14px;
}
.site-footer_info .info-nav a {
  display: block;
  position: relative;
  padding-left: 32px;
}
.site-footer_info .info-nav a:before {
  content: "";
  width: 21px;
  height: 21px;
  background-color: #fff;
  background-image: url(../images/common/arrow-right01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.site-footer .copyright {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  margin-top: 45px;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .5);
  z-index: 99;
}

.btn-pagetop {
  display: none;
  position: fixed;
  z-index: 98;
  bottom: 10px;
  right: 10px;
}

@media only screen and (max-width: 768px) {
  .site-footer_access .access-map iframe {
    height: 200px;
  }
  .site-footer_access .access-info_in {
    width: 100%;
    margin-top: -20px;
    padding: 20px;
  }
  .site-footer_access .access-logo {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
  .site-footer_access .access-logo img {
    width: 108px;
  }
  .site-footer_access .access-txt {
    width: 100%;
  }
  .site-footer_access .access-txt .address {
    line-height: 1.85;
  }
  .site-footer_access .access-txt .caution {
    font-size: 11px;
  }
  .site-footer_bnr {
    padding: 40px 0 14.66667vw;
  }
  .site-footer_info {
    padding-bottom: 30px;
  }
  .site-footer_info .info-nav {
    justify-content: space-between;
  }
  .site-footer_info .info-nav li {
    text-align: left;
    width: 42%;
    margin: 0 0 15px;
    font-size: 12px;
  }
  .site-footer_info .info-nav a:before {
    top: -2px;
  }
  .site-footer .copyright {
    font-size: 10px;
    margin-top: 20px;
  }
  .btn-pagetop {
    width: 34px;
    height: 34px;
    bottom: 40px;
    right: 10px;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.wrapper {
  overflow: hidden;
  padding-top: 78px;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding-top: 51px;
  }
}

/* ===== page-head ===== */
.page-head {
  text-align: center;
}
.page-head_ttl {
  padding: 50px 0 30px;
}
.page-head .ttl-en {
  font-size: 50px;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  line-height: 1.2;
  letter-spacing: .08em;
}
.page-head .ttl-ja {
  color: #23ac38;
  margin-top: 6px;
}
.page-head .ttl-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
}

.BD-floorguide .page-head .ttl-icon {
  padding-left: 58px;
  background-image: url(../images/common/ico-floorguide.svg);
  background-size: 36px;
}

.BD-event .page-head .ttl-icon {
  padding-left: 53px;
  background-image: url(../images/common/ico-event.svg);
  background-size: 32px;
}

.BD-blog .page-head .ttl-icon {
  padding-left: 55px;
  background-image: url(../images/common/ico-blog.svg);
  background-size: 36px;
}

.BD-access .page-head .ttl-icon {
  padding-left: 42px;
  background-image: url(../images/common/ico-access.svg);
  background-size: 23px;
}

.BD-parking .page-head .ttl-icon {
  padding-left: 60px;
  background-image: url(../images/common/ico-car.svg);
  background-size: 41px;
}

.BD-facilities .page-head .ttl-icon {
  padding-left: 58px;
  background-image: url(../images/common/ico-facilities.svg);
  background-size: 36px;
}

.BD-about .page-head .ttl-icon {
  padding-left: 58px;
  background-image: url(../images/common/ico-bono.svg);
  background-size: 40px;
}

@media only screen and (max-width: 768px) {
  .page-head_ttl {
    padding: 35px 0 30px;
  }
  .page-head .ttl-en {
    font-size: 24px;
  }
  .page-head .ttl-ja {
    font-size: 13px;
  }
  .page-head .ttl-icon {
    padding-left: 42px;
  }
  .BD-floorguide .page-head .ttl-icon {
    padding-left: 40px;
    background-size: 26px;
  }
  .BD-event .page-head .ttl-icon {
    padding-left: 40px;
    background-size: 26px;
  }
  .BD-blog .page-head .ttl-icon {
    padding-left: 43px;
    background-size: 29px;
  }
  .BD-access .page-head .ttl-icon {
    padding-left: 30px;
    background-size: 17px;
  }
  .BD-parking .page-head .ttl-icon {
    padding-left: 40px;
    background-size: 25px;
  }
  .BD-facilities .page-head .ttl-icon {
    padding-left: 40px;
    background-size: 26px;
  }
  .BD-about .page-head .ttl-icon {
    padding-left: 42px;
    background-size: 29px;
  }
}

/* ===== page-foot ===== */
.page-foot {
  background: #fff;
  padding-bottom: 60px;
}

.breadcrumbList {
  font-size: 14px;
}
.breadcrumbList li {
  padding: 3px 0;
  margin-right: 26px;
}
.breadcrumbList li:last-child {
  margin-right: 0;
}
.breadcrumbList a {
  color: #23ac38;
  position: relative;
  display: block;
}
.breadcrumbList a:before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  position: absolute;
  right: -1em;
  top: 50%;
  margin-top: -2.5px;
}

@media only screen and (max-width: 768px) {
  .breadcrumbList {
    font-size: 11px;
  }
  .breadcrumbList a:before {
    right: -1.4em;
  }
}

/* ===== page-contents ===== */
.page-contents {
  background: #fff;
  padding-top: 7.68668vw;
  padding-bottom: 90px;
}
.page-contents_in {
  margin: auto;
}

.page-col {
  justify-content: space-between;
}
.page-col-side > div {
  margin-bottom: 50px;
}
.page-col-side > div:last-child {
  margin-bottom: 0;
}
.page-col-bottom {
  margin-top: 80px;
  width: 100%;
}
.page-col__type01 .page-col-main {
  width: 70%;
}
.page-col__type01 .page-col-side {
  width: 22.5%;
}
.page-col__type02 .page-col-main {
  width: calc(100% - 240px);
}
.page-col__type02 .page-col-side {
  width: 180px;
}

.w-80 {
  width: 80%;
  box-sizing: border-box;
  margin: auto;
}

.w-60 {
  width: 60%;
  box-sizing: border-box;
  margin: auto;
}

.txt-empty {
  text-align: center;
  padding-top: 40px;
  font-size: 22px;
}

.txt-caution {
  font-size: 14px;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .page-contents {
    padding-top: 11.2vw;
    padding-bottom: 60px;
  }
  .page-col {
    display: block;
  }
  .page-col-main {
    width: 100% !important;
  }
  .page-col-side {
    width: 100% !important;
    margin-top: 60px;
  }
  .page-col-bottom {
    margin-top: 40px;
  }
  .w-80 {
    width: 100%;
  }
  .w-60 {
    width: 100%;
  }
  .txt-empty {
    padding-top: 30px;
    font-size: 14px;
  }
  .txt-caution {
    font-size: 12px;
    margin-top: 20px;
  }
}

/* ===== sec ===== */
.sec {
  position: relative;
  margin-bottom: 80px;
}
.sec:last-child {
  margin-bottom: 0;
}
.sec-in {
  position: relative;
}
.sec-cont {
  margin-bottom: 80px;
}
.sec-cont:last-child {
  margin-bottom: 0;
}

.cmn-sec.bg-green {
  background: #f0f7d1;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .sec {
    margin-bottom: 40px;
  }
  .sec-cont {
    margin-bottom: 40px;
  }
  .cmn-sec.bg-green {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ===== sec-bnr ===== */
.sec-bnr .sec-in {
  padding: 80px 0 0;
  position: relative;
  width: calc(100% + 20px);
  left: -10px;
}

.sec-bnr .bnr-list {
  margin-bottom: 80px;
}
.sec-bnr .bnr-list:last-child {
  margin-bottom: 0;
}
.sec-bnr .bnr-list a {
  display: block;
}

.sec-bnr .bnr-list02 {
  padding: 0 10px;
}

@media only screen and (max-width: 768px) {
  .sec-bnr .sec-in {
    padding: 40px 0 0;
    width: calc(100% + 10px);
    left: -5px;
  }
  .sec-bnr .bnr-list {
    margin-bottom: 35px;
  }
  .sec-bnr .bnr-list02 {
    padding: 0 5px;
  }
}

/* ===== detail-nav ===== */
.detail-nav {
  margin-top: 80px;
  text-align: center;
}
.detail-nav .sns {
  justify-content: center;
  align-items: center;
}
.detail-nav .sns-ttl {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  letter-spacing: .08em;
  font-size: 20px;
  margin-right: 1em;
}
.detail-nav .sns-list {
  display: flex;
  gap: 20px;
}
.detail-nav .sns-list img {
  width: 40px;
}

@media only screen and (max-width: 768px) {
  .detail-nav {
    margin-top: 40px;
  }
  .detail-nav .sns-ttl {
    width: 100%;
    font-size: 16px;
    margin: 0 0 20px;
  }
  .detail-nav .sns-list {
    width: 100%;
    justify-content: center;
  }
  .detail-nav .sns-list img {
    width: 30px;
  }
}

/* ===== hoge ===== */
.hoge {
  position: relative;
}
.hoge_in {
  position: relative;
}

/*------------------------------------------
  floorguide
------------------------------------------*/
.BD-floorguide .m-ttl__type02 {
  margin-bottom: 40px;
}

.floor-class {
  position: relative;
  align-items: flex-end;
}
.floor-class-box {
  width: 32.333%;
}
.floor-class-box01 .box-ttl {
  background: #fe8a02;
}
.floor-class-box01 .box-list a {
  background: #ffefd8;
}
.floor-class-box01 .box-list .has-route:before {
  content: "";
  width: 100%;
  height: 30px;
  background: #eaeaea;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -15px;
}
.floor-class-box02 {
  margin-left: auto;
}
.floor-class-box02 .box-ttl {
  background: #64b633;
}
.floor-class-box02 .box-list a {
  background: #eaffe8;
}
.floor-class-box03 .box-ttl {
  background: #34a6db;
}
.floor-class-box03 .box-list a {
  background: #e2f4ff;
}
.floor-class-box .box-ttl {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 11px 0;
}
.floor-class-box .box-list li {
  position: relative;
  margin-top: 4px;
}
.floor-class-box .box-list a {
  display: flex;
  width: 100%;
  min-height: 50px;
  padding: 10px 0;
  align-items: center;
  transition: .4s;
}
.floor-class-box .box-list a:hover {
  opacity: 1;
  color: #fff;
  background: #23ac38 !important;
}
.floor-class-box .box-list a.current {
  color: #fff;
  background: #23ac38 !important;
}
.floor-class-box .box-list .label {
  width: 66px;
  padding-top: 3px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  letter-spacing: .08em;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}
.floor-class-box .box-list .txt {
  width: calc(100% - 66px);
  padding-right: 10px;
  box-sizing: border-box;
}
.floor-class-img {
  position: absolute;
  top: -28px;
  right: 0;
  width: 32.333%;
  text-align: center;
}
.floor-class-img img {
  max-height: 160px;
}

.sec-floor {
  margin-top: 60px;
}

.floor-map {
  max-width: 52.70864vw;
  margin: 0 auto 85px;
  text-align: center;
}

.floor-keyword {
  width: 40%;
  min-width: 320px;
  position: relative;
  margin: auto;
}
.floor-keyword input[type="text"] {
  width: 100%;
  border: 2px solid #9b9b9b;
  color: #9b9b9b;
  background: #fff;
  border-radius: 5px;
  height: 60px;
  padding-left: 1em;
  padding-right: 60px;
}
.floor-keyword input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/ico-search.svg);
  background-size: 100%;
}
.floor-keyword ::-moz-placeholder {
  color: #9b9b9b;
}
.floor-keyword :-ms-input-placeholder {
  color: #9b9b9b;
}
.floor-keyword ::-ms-input-placeholder {
  color: #9b9b9b;
}
.floor-keyword ::placeholder {
  color: #9b9b9b;
}

@media only screen and (max-width: 768px) {
  .BD-floorguide .m-ttl__type02 {
    margin-bottom: 25px;
  }
  .floor-class-box01 .box-list .has-route:before {
    height: 20px;
    margin-top: -10px;
  }
  .floor-class-box .box-ttl {
    font-size: 12px;
    display: flex;
    height: 50px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  .floor-class-box .box-list li:first-child {
    margin-top: 0;
  }
  .floor-class-box .box-list a {
    padding: 0;
    height: 35px !important;
    min-height: 35px !important;
  }
  .floor-class-box .box-list .label {
    width: 100%;
    font-size: 14px;
  }
  .floor-class-box .box-list .txt {
    display: none;
  }
  .floor-class-img {
    display: none;
  }
  .sec-floor {
    margin-top: 45px;
  }
  .floor-map {
    max-width: 100%;
    margin-bottom: 35px;
  }
  .floor-keyword {
    margin-top: 60px;
    width: 100%;
  }
  .floor-keyword input[type="text"] {
    height: 46px;
    padding-right: 45px;
    font-size: 14px;
  }
  .floor-keyword input[type="submit"] {
    right: 10px;
    width: 28px;
    height: 28px;
  }
}

/*------------------------------------------
  blog
------------------------------------------*/
.BD-blog .txt-empty {
  padding-top: 50px;
}

.blog-side {
  background: #f0f7d1;
  padding: 30px 11%;
}
.blog-side-box {
  border-bottom: 2px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.blog-side-box:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.blog-side .box-ttl {
  color: #23ac38;
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
}
.blog-side .recent-list li {
  margin-bottom: 30px;
}
.blog-side .recent-list li:last-child {
  margin-bottom: 0;
}
.blog-side .recent-list .item-in {
  display: block;
}
.blog-side .recent-list .item-img {
  background: #fff;
}
.blog-side .recent-list .item-txt {
  padding-top: 20px;
}
.blog-side .recent-list .item-txt .date {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 14px;
  color: #23ac38;
  margin-bottom: 10px;
}

.archive-select01 {
  text-align: center;
  margin-bottom: 60px;
}
.archive-select01 .select {
  display: inline-block;
  width: 240px;
  max-width: 100%;
  box-sizing: border-box;
  border: 2px solid #23ac38;
  background: #fff;
  text-align: left;
  border-radius: 5px;
  position: relative;
}
.archive-select01 .select:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #23ac38;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/arrow-right03.svg);
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -12px;
  transform: rotate(90deg);
}
.archive-select01 select {
  outline-style: none;
  width: 100%;
  height: 56px;
  padding: 0 1em;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #333;
}

.archive-select02 {
  text-align: center;
}
.archive-select02 .select {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #23ac38;
  background: #fff;
  text-align: left;
  border-radius: 5px;
  position: relative;
}
.archive-select02 .select:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #23ac38;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/arrow-right03.svg);
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(90deg);
}
.archive-select02 select {
  font-size: 13px;
  outline-style: none;
  width: 100%;
  height: 38px;
  padding: 0 1em;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #333;
}

@media only screen and (max-width: 768px) {
  .BD-blog .txt-empty {
    padding-top: 20px;
  }
  .blog-side {
    position: relative;
    padding: 30px 0;
  }
  .blog-side:before, .blog-side:after {
    content: "";
    width: 6.13333vw;
    height: 100%;
    background: #f0f7d1;
    position: absolute;
    top: 0;
  }
  .blog-side:before {
    left: -6.13333vw;
  }
  .blog-side:after {
    right: -6.13333vw;
  }
  .blog-side-box {
    position: relative;
  }
  .blog-side-box:before {
    content: "";
    width: 200%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    z-index: 1;
  }
  .blog-side-box:last-child:before {
    content: none;
  }
  .blog-side .box-ttl {
    margin-bottom: 30px;
  }
  .blog-side .recent-list {
    position: relative;
    width: calc(100% + 8vw);
    left: -4vw;
    z-index: 1;
    display: flex;
    justify-content: space-between;
  }
  .blog-side .recent-list li {
    width: 48.888%;
    margin-bottom: 0;
  }
  .blog-side .recent-list .item-txt {
    padding: 10px 8px 0;
  }
  .blog-side .recent-list .item-txt .date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .blog-side .recent-list .item-txt .ttl {
    font-size: 12px;
  }
  .archive-select01 {
    margin-bottom: 40px;
  }
  .archive-select01 select {
    height: 46px;
  }
}

/*------------------------------------------
  event
------------------------------------------*/
.event-head {
  text-align: center;
  margin-bottom: 80px;
  font-size: 22px;
}
.event-head p {
  display: inline-block;
  vertical-align: baseline;
}
.event-head span {
  display: inline-block;
}
.event-head .year {
  display: block;
}
.event-head .month {
  color: #23ac38;
  font-size: 42px;
  padding-right: 4px;
}
.event-head .nav-btn__prev {
  margin-right: 52px;
}
.event-head .nav-btn__prev a {
  background-image: url(../images/common/arrow-left03.svg);
}
.event-head .nav-btn__next {
  margin-left: 50px;
}
.event-head .nav-btn__next a {
  background-image: url(../images/common/arrow-right03.svg);
}
.event-head .nav-btn a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media only screen and (max-width: 768px) {
  .event-head {
    margin-bottom: 35px;
    font-size: 16px;
  }
  .event-head p {
    vertical-align: middle;
  }
  .event-head .year {
    display: inline-block;
  }
  .event-head .month {
    font-size: 28px;
    padding-left: 4px;
  }
  .event-head .nav-btn {
    margin-top: 10px;
  }
  .event-head .nav-btn__prev {
    margin-right: 26px;
  }
  .event-head .nav-btn__next {
    margin-left: 26px;
  }
  .event-head .nav-btn a {
    width: 25px;
    height: 25px;
  }
}

/*------------------------------------------
  news
------------------------------------------*/
.news-side-box .box-ttl {
  font-size: 18px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .news-side-box .box-ttl {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/*------------------------------------------
  special
------------------------------------------*/
.BD-special .page-contents {
  padding-top: 0;
}

.special-head {
  background: #fff;
  position: relative;
  padding-top: 50px;
  margin-bottom: 50px;
}
.special-head_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 175px;
  background: #f6fae7;
}
.special-head_in {
  position: relative;
}
.special-head_bnr {
  text-align: center;
  padding: 0 6.25%;
  margin-bottom: 40px;
}
.special-head_bnr img {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, .16);
}
.special-head_txt {
  line-height: 2;
}
.special-head_txt .ttl {
  font-size: 24px;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 30px;
}

.sec-special .sec-ttl {
  margin-bottom: 30px;
}

.special-list {
  gap: 30px 0;
  justify-content: space-between;
}
.special-list .list-item {
  position: relative;
  background: #f6fae7;
  padding: 30px;
  box-sizing: border-box;
  width: 48.75%;
}
.special-list .item-img {
  width: 44%;
}
.special-list .item-txt {
  width: 51%;
  margin-left: auto;
  line-height: 1.66;
}
.special-list .item-txt .ttl {
  font-size: 18px;
  margin-bottom: 15px;
}
.special-list .item-txt .txt {
  font-size: 15px;
}
.special-list .item-txt .txt a {
  text-decoration: underline;
  color: #23ac38;
}
.special-list .item-txt .shop {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #23ac38;
}
.special-list .item-txt .shop-floor {
  font-weight: 400;
  font-size: 14px;
  color: #23ac38;
  margin-bottom: 10px;
}
.special-list .item-txt .shop-floor span {
  padding: 1px 12px;
  display: inline-block;
  background: #fff;
}
.special-list .item-txt .shop-category {
  margin-top: 8px;
  font-size: 13px;
  color: #9b9b9b;
}

@media only screen and (max-width: 768px) {
  .special-head {
    padding-top: 25px;
    margin-bottom: 45px;
  }
  .special-head_bg {
    height: 100px;
  }
  .special-head_bnr {
    padding: 0;
    margin-bottom: 25px;
  }
  .special-head_bnr img {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, .16);
  }
  .special-head_txt .ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sec-special .sec-ttl {
    margin-bottom: 25px;
  }
  .special-list {
    gap: 20px 0;
  }
  .special-list .list-item {
    width: 100%;
    padding: 0;
  }
  .special-list .item-img {
    width: 100%;
  }
  .special-list .item-txt {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  .special-list .item-txt .ttl {
    font-size: 16px;
  }
  .special-list .item-txt .txt {
    font-size: 13px;
  }
  .special-list .item-txt .shop {
    margin-top: 15px;
    padding-top: 15px;
  }
  .special-list .item-txt .shop-floor {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .special-list .item-txt .shop-floor span {
    padding: 1px 8px;
  }
  .special-list .item-txt .shop-category {
    font-size: 11px;
    margin-top: 5px;
  }
}

/*------------------------------------------
  parking
------------------------------------------*/
.parking-service {
  justify-content: space-between;
  margin-bottom: 15px;
}
.parking-service:last-child {
  margin-bottom: 0;
}
.parking-service li {
  background: #f6fae7;
  text-align: center;
  display: flex;
  align-items: center;
  width: 47.5%;
  padding: 20px 0;
  position: relative;
}
.parking-service li:after {
  content: "";
  width: 10%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58%;
  background-image: url(../images/common/arrow-right05.svg);
}
.parking-service li:last-child:after {
  content: none;
}
.parking-service p {
  width: 100%;
}

.parking-cont03 .m-ttl__type04 {
  margin-bottom: 30px;
}

.parking-cont04 .m-ttl__type04 {
  margin-bottom: 30px;
}

.parking-cont04 table {
  margin-bottom: 20px;
}
.parking-cont04 table th, .parking-cont04 table .td-head {
  width: 155px;
}

.parking-cont04 .m-txt__type01 {
  margin-top: 30px;
  text-align: center;
}

.parking-cont05 p {
  text-align: center;
}

.parking-cont05 table {
  margin-top: 60px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .parking-service {
    margin-bottom: 10px;
  }
  .parking-service li {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 45px;
  }
  .parking-service li:last-child {
    margin-bottom: 0;
  }
  .parking-service li:after {
    width: 12px;
    height: 45px;
    left: 50%;
    margin-left: -6px;
    top: 100%;
    background-size: 12px;
    background-image: url(../images/common/arrow-down02.svg);
  }
  .parking-cont03 .m-ttl__type04 {
    margin-bottom: 20px;
  }
  .parking-cont04 .m-ttl__type04 {
    margin-bottom: 20px;
  }
  .parking-cont04 .table-label {
    text-align: center;
    color: #fff;
    background: #23ac38;
    padding: .5em;
  }
  .parking-cont04 table th, .parking-cont04 table .td-head {
    width: 80px;
  }
  .parking-cont04 table td:last-child {
    width: 30%;
  }
  .parking-cont04 .m-txt__type01 {
    margin-top: 20px;
    text-align: left;
  }
  .parking-cont05 p {
    text-align: left;
  }
  .parking-cont05 table {
    margin-top: 30px;
  }
  .parking-cont05 table th:nth-child(1) {
    width: 22%;
  }
  .parking-cont05 table th:nth-child(2) {
    width: 20%;
  }
}

/*------------------------------------------
  about
------------------------------------------*/
.about-head {
  margin-bottom: 40px;
}
.about-head__img {
  margin-bottom: 40px;
}
.about-head__ttl {
  text-align: center;
  color: #23ac38;
  font-size: 24px;
  margin-bottom: 40px;
}
.about-head__txt {
  background: #f6fae7;
  padding: 5.2%;
}
.about-head__txt p {
  line-height: 2;
}

.about-cont02 table {
  margin-bottom: 30px;
}
.about-cont02 table:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .about-head {
    margin-bottom: 20px;
  }
  .about-head__img {
    margin-bottom: 20px;
  }
  .about-head__ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .about-head__txt {
    padding: 1em 1.5em;
  }
  .about-cont02 table {
    margin-bottom: 20px;
  }
  .about-cont05 .block-img {
    text-align: center;
  }
  .about-cont05 .block-img img {
    width: 50%;
  }
}

/*------------------------------------------
  facilities
------------------------------------------*/
.facilities-hour {
  gap: 0 20px;
  margin-bottom: 30px;
}
.facilities-hour li {
  width: 40%;
  border: 1px solid #23ac38;
  box-sizing: border-box;
  align-items: center;
}
.facilities-hour p {
  margin-bottom: 0;
}
.facilities-hour .item-ttl {
  background: #23ac38;
  color: #fff;
  width: 120px;
  text-align: center;
  padding: 1em 0;
}
.facilities-hour .item-txt {
  padding: 1em 0 1em 1.2em;
}

.facilities-cont02 .img {
  margin-bottom: 50px;
}

.facilities-cont04 p {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .facilities-hour {
    gap: 0;
    margin-bottom: 20px;
  }
  .facilities-hour li {
    width: 100%;
  }
  .facilities-hour li:first-child {
    border-bottom: none;
  }
  .facilities-hour li:first-child .item-ttl:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
  }
  .facilities-hour .item-ttl {
    position: relative;
    width: 80px;
    padding: 1.5em 0;
  }
  .facilities-hour .item-txt {
    padding: 1.5em 1em;
  }
  .facilities-cont02 .img {
    margin-bottom: 30px;
  }
  .facilities-cont04 p {
    text-align: left;
  }
}

/*------------------------------------------
  entry
------------------------------------------*/
.BD-entry-top .page-contents, .BD-entry-top .page-foot {
  background: #fffef8;
}

.entry-contact {
  font-size: 18px;
  line-height: 1.77;
}
.entry-contact p {
  margin-bottom: 1.5em;
}
.entry-contact p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .entry-contact {
    font-size: 13px;
  }
  .entry-contact .ttl {
    font-size: 15px;
    margin-bottom: 1em;
  }
  .entry-contact .btn {
    text-align: center;
  }
  .entry-contact .btn a {
    margin: 0 auto 5px;
  }
}

.entry-head {
  padding-top: 66px;
  margin-bottom: 100px;
}
.entry-head__ttl {
  text-align: center;
  background: #23ac38;
  position: relative;
  border-radius: 111px;
  margin-bottom: 70px;
  color: #fff;
  font-size: 23px;
  padding: 60px 20px 40px;
}
.entry-head__ttl span {
  color: #ffff2c;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
  margin-top: 15px;
}
.entry-head__ttl:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38px 16px 0 16px;
  border-color: #23ac38 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -16px;
}
.entry-head__ttl:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -89px;
  top: -66px;
  width: 178px;
  height: 99px;
  background-repeat: no-repeat;
  background-image: url(../images/entry/top/ico-head.png);
  background-size: contain;
}
.entry-head__lead {
  margin-bottom: 60px;
}
.entry-head__lead .lead-logo {
  text-align: center;
  margin-bottom: 40px;
}
.entry-head__lead .lead-txt p {
  font-size: 14px;
  line-height: 2.2;
}
.entry-head__benefits {
  margin-bottom: 100px;
}
.entry-head__benefits .benefits-list {
  max-width: 780px;
  margin: 0 auto 40px;
  justify-content: space-between;
}
.entry-head__benefits .benefits-list li {
  width: 48%;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: #f6fae7;
  aspect-ratio: 1/1;
  overflow: hidden;
  color: #23ac38;
}
.entry-head__benefits .benefits-list .item-ttl {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.entry-head__benefits .benefits-list .item-img img {
  max-height: 102px;
  height: 7.46706vw;
  width: auto;
}
.entry-head__benefits .benefits-list .item-txt {
  margin-top: 1em;
  font-size: 18px;
  line-height: 1.77;
}
.entry-head__benefits .benefits-btn {
  text-align: center;
}
.entry-head__benefits .benefits-btn li {
  margin-bottom: 20px;
}
.entry-head__benefits .benefits-btn li:last-child {
  margin-bottom: 0;
}
.entry-head__type .type-list {
  margin-bottom: 40px;
  justify-content: space-between;
}
.entry-head__type .type-list__item01 {
  background: #f3f5ec;
}
.entry-head__type .type-list__item01 .item-head .ttl {
  color: #23ac38;
}
.entry-head__type .type-list__item02 {
  background: #fef0db;
}
.entry-head__type .type-list__item02 .item-head .ttl {
  color: #fd7903;
}
.entry-head__type .type-list li {
  width: 48.5%;
  border-radius: 50px;
  box-sizing: border-box;
  padding: 50px 0 30px;
  position: relative;
}
.entry-head__type .type-list .item-in {
  width: 70%;
  margin: auto;
}
.entry-head__type .type-list .item-head {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: -15px;
}
.entry-head__type .type-list .item-head .ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.entry-head__type .type-list .item-head .ttl span {
  font-size: 18px;
}
.entry-head__type .type-list .item-btn a {
  width: 100%;
}
.entry-head__type .type-list .item-img {
  padding: 0 6.25%;
  margin-bottom: 40px;
}
.entry-head__type .type-list .item-img img {
  width: 100%;
}
.entry-head__type .type-list .item-txt {
  font-size: 14px;
  margin-top: 24px;
}
.entry-head__type .type-link {
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .entry-head__type .type-list {
    gap: 40px 0;
  }
  .entry-head__type .type-list li {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .entry-head {
    padding-top: 40px;
    margin-bottom: 60px;
  }
  .entry-head__ttl {
    margin-bottom: 35px;
    font-size: 14px;
    padding: 30px 10px;
  }
  .entry-head__ttl span {
    font-size: 20px;
    margin-top: 10px;
  }
  .entry-head__ttl:before {
    border-width: 14px 5px 0 5px;
    margin-left: -5px;
  }
  .entry-head__ttl:after {
    margin-left: -52px;
    top: -40px;
    width: 104px;
    height: 58px;
  }
  .entry-head__lead {
    margin-bottom: 30px;
  }
  .entry-head__lead .lead-logo {
    margin-bottom: 30px;
  }
  .entry-head__lead .lead-logo img {
    width: 75%;
  }
  .entry-head__lead .lead-txt p {
    font-size: 13px;
    line-height: 2;
  }
  .entry-head__benefits {
    margin-bottom: 60px;
  }
  .entry-head__benefits .benefits-list {
    margin-bottom: 30px;
    gap: 15px 0;
  }
  .entry-head__benefits .benefits-list li {
    width: 75%;
    max-width: none;
    margin: auto;
  }
  .entry-head__benefits .benefits-list .item-ttl {
    font-size: 6.13333vw;
  }
  .entry-head__benefits .benefits-list .item-img img {
    height: 18.66667vw;
    max-height: 18.66667vw;
  }
  .entry-head__benefits .benefits-list .item-txt {
    font-size: 3.46667vw;
  }
  .entry-head__benefits .benefits-btn li {
    width: 75%;
    margin: 0 auto 15px;
  }
  .entry-head__type .type-list {
    gap: 40px 0;
    margin-bottom: 30px;
  }
  .entry-head__type .type-list li {
    width: 100%;
    border-radius: 25px;
    padding: 30px 0 25px;
  }
  .entry-head__type .type-list .item-in {
    width: 75%;
  }
  .entry-head__type .type-list .item-head {
    top: -10px;
  }
  .entry-head__type .type-list .item-head .ttl {
    font-size: 18px;
  }
  .entry-head__type .type-list .item-head .ttl span {
    font-size: 13px;
  }
  .entry-head__type .type-list .item-btn a {
    width: 100%;
  }
  .entry-head__type .type-list .item-img {
    padding: 0 10%;
    margin-bottom: 15px;
  }
  .entry-head__type .type-list .item-txt {
    font-size: 13px;
    margin-top: 15px;
  }
  .entry-head__type .type-link {
    text-align: left;
  }
}

.m-btn__card {
  height: 70px;
  padding: 0;
  display: table;
}
.m-btn__card .btn-in {
  display: table-cell;
  vertical-align: middle;
}
.m-btn__card .btn-in span {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .m-btn__card {
    height: 60px;
  }
  .m-btn__card .btn-in span {
    font-size: 11px;
  }
}

.entry-sec {
  margin-bottom: 100px;
}

.entry-sec01 .sec-ttl {
  margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
  .entry-sec {
    margin-bottom: 60px;
  }
  .entry-sec01 {
    padding-left: 0;
    padding-right: 0;
  }
  .entry-sec01 .sec-ttl {
    margin-bottom: 60px;
  }
}

.entry-table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #23ac38;
  border-left: 1px solid #23ac38;
  box-sizing: border-box;
}
.entry-table tr {
  border-bottom: 1px solid #23ac38;
}
.entry-table th, .entry-table td {
  border-right: 1px solid #23ac38;
  text-align: center;
}
.entry-table th:first-child, .entry-table td:first-child {
  width: 22%;
  background: #f6fae7;
}
.entry-table th:nth-child(2), .entry-table td:nth-child(2) {
  background: #f3f5ec;
}
.entry-table th:nth-child(3), .entry-table td:nth-child(3) {
  background: #fef0db;
}
.entry-table th {
  vertical-align: top;
  position: relative;
  font-size: 13px;
  padding: 35px 0 15px;
}
.entry-table th:after {
  content: "";
  width: 77px;
  height: 61px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  left: 50%;
  margin-left: -38.5px;
  top: -32px;
}
.entry-table th .ttl {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: .5em;
}
.entry-table th:nth-child(2):after {
  background-image: url(../images/entry/top/ico-type01.png);
}
.entry-table th:nth-child(2) .ttl {
  color: #23ac38;
}
.entry-table th:nth-child(3):after {
  background-image: url(../images/entry/top/ico-type02.png);
}
.entry-table th:nth-child(3) .ttl {
  color: #fd7903;
}
.entry-table td {
  vertical-align: middle;
  padding: 1em 0;
}
.entry-table td:nth-child(2) {
  color: #23ac38;
}
.entry-table td:nth-child(3) {
  color: #fd7903;
}

@media only screen and (max-width: 768px) {
  .entry-table th:first-child, .entry-table td:first-child {
    width: 33%;
  }
  .entry-table th {
    font-size: 10px;
    padding: 35px .5em 15px;
  }
  .entry-table th .ttl {
    font-size: 12px;
  }
  .entry-table td {
    font-size: 16px;
  }
  .entry-table td:nth-child(1) {
    font-size: 11px;
  }
}

.entry-flow .flow-list {
  justify-content: space-between;
}
.entry-flow .flow-list__item {
  width: 48.5%;
  text-align: center;
}
.entry-flow .flow-list__item01 .item-ttl {
  color: #23ac38;
}
.entry-flow .flow-list__item01 .item-ttl:before {
  background-image: url(../images/entry/top/ico-type01.png);
}
.entry-flow .flow-list__item01 .steplist li {
  background: #f3f5ec;
}
.entry-flow .flow-list__item01 .steplist li:after {
  background-image: url(../images/common/arrow-down02.svg);
}
.entry-flow .flow-list__item01 .steplist .label {
  color: #23ac38;
}
.entry-flow .flow-list__item02 .item-ttl {
  color: #fd7903;
}
.entry-flow .flow-list__item02 .item-ttl:before {
  background-image: url(../images/entry/top/ico-type02.png);
}
.entry-flow .flow-list__item02 .steplist li {
  background: #fef0db;
}
.entry-flow .flow-list__item02 .steplist li:after {
  background-image: url(../images/common/arrow-down03.svg);
}
.entry-flow .flow-list__item02 .steplist .label {
  color: #fd7903;
}
.entry-flow .flow-list .item-ttl {
  font-weight: 700;
  font-size: 20px;
  padding-top: 75px;
  margin-bottom: 50px;
  position: relative;
}
.entry-flow .flow-list .item-ttl:before {
  content: "";
  width: 77px;
  height: 61px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  left: 50%;
  margin-left: -38.5px;
  top: 0;
}
.entry-flow .flow-list .item-btn a {
  margin: auto;
}
.entry-flow .flow-list .steplist {
  margin-bottom: 30px;
}
.entry-flow .flow-list .steplist li {
  position: relative;
  height: 130px;
  display: table;
  width: 100%;
  line-height: 2;
  margin-bottom: 75px;
}
.entry-flow .flow-list .steplist li:after {
  content: "";
  width: 16px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
}
.entry-flow .flow-list .steplist li:last-child {
  margin-bottom: 0;
}
.entry-flow .flow-list .steplist li:last-child:after {
  content: none;
}
.entry-flow .flow-list .steplist li > div {
  display: table-cell;
  vertical-align: middle;
}
.entry-flow .flow-list .steplist .label {
  position: absolute;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 26px;
  left: 10px;
  top: -24px;
  line-height: 1.1;
}
.entry-flow .flow-list .steplist .label span {
  font-size: 40px;
}
.entry-flow .flow-list .steplist .caution {
  font-size: 14px;
}

.entry-flow .flow-link {
  text-align: center;
  margin-top: 80px;
}

@media only screen and (max-width: 1024px) {
  .entry-flow .flow-list {
    gap: 60px 0;
  }
  .entry-flow .flow-list__item {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .entry-flow .flow-list {
    gap: 60px 0;
  }
  .entry-flow .flow-list__item {
    width: 100%;
  }
  .entry-flow .flow-list .item-ttl {
    font-size: 18px;
  }
  .entry-flow .flow-list .steplist {
    margin-bottom: 20px;
  }
  .entry-flow .flow-list .steplist li {
    text-align: left;
    height: auto;
    padding: 25px 20px;
    margin-bottom: 55px;
    box-sizing: border-box;
  }
  .entry-flow .flow-list .steplist li:after {
    height: 55px;
  }
  .entry-flow .flow-list .steplist .label {
    font-size: 17px;
    top: -15px;
  }
  .entry-flow .flow-list .steplist .label span {
    font-size: 27px;
  }
  .entry-flow .flow-list .steplist .txt {
    font-size: 14px;
  }
  .entry-flow .flow-list .steplist .caution {
    font-size: 12px;
  }
  .entry-flow .flow-link {
    text-align: left;
    margin-top: 50px;
  }
}

.point-head {
  margin-bottom: 10.2489vw;
}
.point-head__ttl {
  text-align: center;
  background: #23ac38;
  position: relative;
  border-radius: 111px;
  margin-bottom: 130px;
  color: #fff;
  font-size: 23px;
}
.point-head__ttl .ttl-txt {
  display: inline-block;
  text-align: left;
  padding: 36px 190px 36px 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(../images/entry/point/ico-head.png);
  background-size: 172px;
}
.point-head__ttl span {
  color: #ffff2c;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
  margin-top: 10px;
}
.point-head__ttl:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38px 16px 0 16px;
  border-color: #23ac38 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -16px;
}
.point-head__ttl:after {
  position: absolute;
  left: 50%;
  margin-left: -89px;
  top: -66px;
  width: 178px;
  height: 99px;
  background-repeat: no-repeat;
  background-image: url(../images/entry/top/ico-head.png);
  background-size: contain;
}
.point-head__nav {
  justify-content: space-between;
}
.point-head__nav a {
  display: flex;
  position: relative;
  background: #f6fae7;
  border-radius: 20px;
  width: 32%;
  padding: 35px 20px;
  box-sizing: border-box;
  align-items: flex-end;
}
.point-head__nav a:before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -40px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.point-head__nav a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/common/arrow-down01.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 20px;
  bottom: 50px;
}
.point-head__nav .nav-txt {
  font-size: 14px;
  line-height: 1.4;
  margin-left: 20px;
}
.point-head__nav .nav-txt span {
  font-size: 26px;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
}
.point-head__nav .nav-item01 {
  color: #fb9a01;
}
.point-head__nav .nav-item01:before {
  background-image: url(../images/entry/point/ico-p01.svg);
}
.point-head__nav .nav-item02 {
  color: #53c7e8;
}
.point-head__nav .nav-item02:before {
  background-image: url(../images/entry/point/ico-p02.svg);
}
.point-head__nav .nav-item03 {
  color: #b37ad2;
}
.point-head__nav .nav-item03:before {
  background-image: url(../images/entry/point/ico-p03.svg);
}

@media only screen and (max-width: 1024px) {
  .point-head {
    padding-top: 66px;
  }
  .point-head__ttl {
    padding: 60px 0 40px;
  }
  .point-head__ttl .ttl-txt {
    text-align: center;
    background: none;
    padding: 0;
  }
  .point-head__ttl:after {
    content: "";
  }
  .point-head__nav a {
    display: block;
    text-align: center;
    padding: 60px 0;
  }
  .point-head__nav a:after {
    right: 50%;
    margin-right: -12px;
    bottom: 20px;
  }
  .point-head__nav .nav-icon {
    margin-bottom: 10px;
  }
  .point-head__nav .nav-icon span {
    display: inline-block;
    line-height: 78px;
  }
  .point-head__nav .nav-txt {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .point-head {
    padding-top: 40px;
    margin-bottom: 14.66667vw;
  }
  .point-head__ttl {
    padding: 30px 0 20px;
    margin-bottom: 70px;
    font-size: 14px;
  }
  .point-head__ttl span {
    font-size: 20px;
  }
  .point-head__ttl:before {
    border-width: 14px 5px 0 5px;
    margin-left: -5px;
  }
  .point-head__ttl:after {
    margin-left: -52px;
    top: -40px;
    width: 104px;
    height: 60px;
  }
  .point-head__nav a {
    border-radius: 10px;
    width: 32.3%;
    padding: 22px 0 50px;
  }
  .point-head__nav a:before {
    width: 40px;
    height: 40px;
    top: -28px;
    margin-left: -20px;
  }
  .point-head__nav a:after {
    width: 16px;
    height: 16px;
    margin-right: -8px;
    bottom: 15px;
  }
  .point-head__nav .nav-icon span {
    line-height: 41px;
  }
  .point-head__nav .nav-icon img {
    width: 51px;
  }
  .point-head__nav .nav-txt {
    font-size: 11px;
    margin-left: 0;
  }
  .point-head__nav .nav-txt span {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 6px;
  }
}

.point-sec {
  margin-bottom: 0;
  padding: 35px 0 12.4451vw;
}
.point-sec:last-child {
  padding-bottom: 80px;
}
.point-sec .sec-head {
  text-align: center;
  margin-bottom: 80px;
}
.point-sec .sec-ttl {
  display: inline-block;
  position: relative;
}
.point-sec .sec-ttl .ttl-icon {
  margin-bottom: 24px;
}
.point-sec .sec-ttl .ttl-icon img {
  width: 96px;
}
.point-sec .sec-ttl .ttl-txt {
  font-weight: 700;
  font-size: 34px;
  color: #23ac38;
  position: relative;
  z-index: 1;
}
.point-sec .sec-ttl .ttl-lead {
  position: absolute;
  right: -100px;
  bottom: 25px;
}

.point-sec01 {
  background: #fff8e6;
}

.point-sec02 {
  background: #e8faff;
}

.point-sec03 {
  background: #fcf7ff;
}

.point-sec04 {
  background: #ffedf2;
}

.point-sec05 {
  background: #f6ffe6;
}

@media only screen and (max-width: 768px) {
  .point-sec {
    padding: 25px 0 17.33333vw;
  }
  .point-sec:last-child {
    padding-bottom: 50px;
  }
  .point-sec .sec-head {
    margin-bottom: 40px;
  }
  .point-sec .sec-ttl .ttl-icon {
    margin-bottom: 20px;
  }
  .point-sec .sec-ttl .ttl-icon img {
    width: 70px;
  }
  .point-sec .sec-ttl .ttl-txt {
    font-size: 20px;
  }
  .point-sec .sec-ttl .ttl-lead {
    width: 100px;
    height: 100px;
    position: absolute;
    right: -60px;
    bottom: 15px;
  }
}

.point-about__lead {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 0;
  position: relative;
  font-size: 22px;
  line-height: 1.7;
}
.point-about__lead:last-child {
  margin-bottom: 0;
}
.point-about__lead .lead {
  margin-top: 10px;
  font-weight: 700;
  font-size: 30px;
  color: #23ac38;
}
.point-about__lead .lead.large {
  font-size: 50px;
}
.point-about__lead .label {
  font-size: 16px;
  width: 140px;
  height: 140px;
  font-weight: 700;
  position: absolute;
  border-radius: 50%;
  right: -20px;
  top: -20px;
  display: table;
  color: #fff;
  background: #ea7676;
}
.point-about__lead .label span {
  display: table-cell;
  vertical-align: middle;
}
.point-about__lead .triangle {
  display: inline-block;
  transform: scale(.6);
}

.point-about__txt {
  text-align: center;
  margin-bottom: 50px;
}

.point-about__block {
  margin-bottom: 60px;
}
.point-about__block:last-child {
  margin-bottom: 0;
}
.point-about__block .block-txt {
  font-size: 18px;
  line-height: 1.77;
  margin-bottom: 1.5em;
}
.point-about__block .block-txt:last-child {
  margin-bottom: 0;
}
.point-about__block .block-table {
  margin-top: 40px;
}

@media only screen and (max-width: 1024px) {
  .point-about__lead .label {
    font-size: 10px;
    width: 80px;
    height: 80px;
    right: -15px;
    top: -25px;
  }
}

@media only screen and (max-width: 768px) {
  .point-about__lead {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    font-size: 15px;
    line-height: 1.4;
  }
  .point-about__lead .lead {
    font-size: 20px;
    margin-top: 5px;
  }
  .point-about__lead .lead.large {
    font-size: 26px;
  }
  .point-about__txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .point-about__block {
    padding-top: 10px;
    margin-bottom: 40px;
  }
  .point-about__block .block-txt {
    font-size: 14px;
  }
  .point-about__block .block-table {
    margin-top: 30px;
  }
}

.point-plus__head {
  margin-bottom: 35px;
  align-items: center;
}
.point-plus__head .head-img {
  width: 37.5%;
}
.point-plus__head .head-img > div {
  padding-left: 33%;
}
.point-plus__head .head-txt {
  width: 58%;
  margin-left: auto;
  font-size: 22px;
  line-height: 1.8;
}
.point-plus__head .head-txt span {
  font-size: 36px;
}

.point-plus__txt {
  margin-bottom: 40px;
}
.point-plus__txt .lead {
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 35px;
}
.point-plus__txt .caution {
  font-size: 14px;
}

.point-plus__summary .summary-lead {
  padding: .7em 1em;
  text-align: center;
  background: #fff;
  font-size: 20px;
  border: 2px solid #333;
  margin-bottom: 20px;
}

.point-plus__summary .summary-info {
  margin-bottom: 20px;
}

.point-plus__summary .summary-txt {
  line-height: 2;
}
.point-plus__summary .summary-txt .ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 15px;
}
.point-plus__summary .summary-txt .catch {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 15px;
}

.point-plus__summary .summary-img {
  margin-top: 35px;
  align-items: center;
}
.point-plus__summary .summary-img .img01 {
  width: 50%;
}
.point-plus__summary .summary-img .img02 {
  width: 45%;
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .point-plus__head .head-img > div {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .point-plus__head {
    margin-bottom: 40px;
  }
  .point-plus__head .head-img {
    width: 100%;
    margin-bottom: 10px;
  }
  .point-plus__head .head-img > div {
    padding: 0 25%;
  }
  .point-plus__head .head-txt {
    width: 100%;
    text-align: center;
    font-size: 15px;
    line-height: 2;
  }
  .point-plus__head .head-txt span {
    font-size: 22px;
  }
  .point-plus__txt {
    margin-bottom: 50px;
  }
  .point-plus__txt .lead {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
  }
  .point-plus__txt .caution {
    font-size: 12px;
  }
  .point-plus__summary .summary-lead {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .point-plus__summary .summary-txt {
    font-size: 14px;
  }
  .point-plus__summary .summary-txt .ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .point-plus__summary .summary-txt .catch {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .point-plus__summary .summary-img .img01 {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
  }
  .point-plus__summary .summary-img .img01 img {
    width: 75%;
  }
  .point-plus__summary .summary-img .img02 {
    width: 100%;
  }
}

.point-other .other-txt {
  margin-bottom: 35px;
  position: relative;
  padding-left: 50px;
}
.point-other .other-txt:last-child {
  margin-bottom: 0;
}
.point-other .other-txt .num {
  position: absolute;
  width: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: #fb7497;
  border-radius: 50%;
  left: 0;
  top: -4px;
  text-align: center;
}
.point-other .other-txt p {
  font-size: 20px;
}
.point-other .other-txt .caution {
  font-size: 14px;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .point-other .other-txt {
    margin-bottom: 25px;
    padding-left: 40px;
  }
  .point-other .other-txt .num {
    width: 32px;
    line-height: 32px;
    font-size: 17px;
    top: -5px;
  }
  .point-other .other-txt p {
    font-size: 15px;
  }
  .point-other .other-txt .caution {
    font-size: 12px;
    margin-top: 5px;
  }
}

.point-rank .rank-txt {
  text-align: center;
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.point-rank .rank-caution {
  font-size: 14px;
}

.point-rank .rank-list {
  margin-bottom: 40px;
}
.point-rank .rank-list__item01 {
  background: #595656;
}
.point-rank .rank-list__item01 p {
  background: #595656;
}
.point-rank .rank-list__item02 {
  background: #9a892f;
}
.point-rank .rank-list__item02 p {
  background: #9a892f;
}
.point-rank .rank-list__item03 {
  background: #919191;
}
.point-rank .rank-list__item03 p {
  background: #919191;
}
.point-rank .rank-list__item04 {
  background: #936e43;
}
.point-rank .rank-list__item04 p {
  background: #936e43;
}
.point-rank .rank-list li {
  color: #fff;
  position: relative;
  align-items: center;
}
.point-rank .rank-list li:before, .point-rank .rank-list li:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #fff;
}
.point-rank .rank-list li:before {
  left: 26%;
}
.point-rank .rank-list li:after {
  left: 63%;
}
.point-rank .rank-list li p {
  box-sizing: border-box;
  font-size: 18px;
}
.point-rank .rank-list .item-lead {
  width: 26%;
  padding: 25px 0 25px 1em;
}
.point-rank .rank-list .item-lead span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.point-rank .rank-list .item-lead span:last-child {
  margin-right: 0;
}
.point-rank .rank-list .item-txt {
  width: 37%;
  padding: .5em 1em;
}
.point-rank .rank-list .item-txt span {
  font-size: 28px;
}

@media only screen and (max-width: 768px) {
  .point-rank .rank-txt {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .point-rank .rank-caution {
    font-size: 12px;
  }
  .point-rank .rank-list {
    margin-bottom: 20px;
  }
  .point-rank .rank-list li {
    margin-bottom: 5px;
  }
  .point-rank .rank-list li:last-child {
    margin-bottom: 0;
  }
  .point-rank .rank-list li:before {
    left: 36%;
  }
  .point-rank .rank-list li:after {
    content: none;
  }
  .point-rank .rank-list li p {
    font-size: 13px;
  }
  .point-rank .rank-list .item-lead {
    font-size: 14px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    position: relative;
    z-index: 1;
  }
  .point-rank .rank-list .item-lead span img {
    width: 25px;
  }
  .point-rank .rank-list .item-txt {
    width: 36%;
    line-height: 1.3;
    padding: 1em .5em;
  }
  .point-rank .rank-list .item-txt:last-child {
    width: 64%;
    padding: 1em;
  }
  .point-rank .rank-list .item-txt span {
    font-size: 20px;
  }
}

/*------------------------------------------
  contact
------------------------------------------*/
.faq-block {
  margin-bottom: 45px;
}
.faq-block:last-child {
  margin-bottom: 0;
}
.faq-block__ttl {
  font-size: 20px;
  margin-bottom: 30px;
}
.faq-block__list li {
  background: #f6fae7;
  border-radius: 40px;
  margin-bottom: 8px;
}
.faq-block__list li:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: 18px;
  padding: 28px 120px 28px 40px;
}
.faq-question p {
  position: relative;
  padding-left: 40px;
}
.faq-question p:before {
  content: "Q";
  color: #23ac38;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 26px;
  line-height: 1.1;
}

.faq-answer {
  padding: 0 120px 40px 40px;
  position: relative;
}
.faq-answer__in {
  padding-left: 40px;
  position: relative;
}
.faq-answer__in:before {
  content: "A";
  color: #23ac38;
  position: absolute;
  left: 0;
  top: 3px;
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-size: 26px;
  line-height: 1.1;
  width: 22px;
  text-align: center;
}
.faq-answer__in.l-grid .faq-answer__cont {
  width: 57%;
}
.faq-answer__in.l-grid .faq-answer__img {
  width: 36%;
  margin-left: auto;
}
.faq-answer__cont p {
  line-height: 2;
  margin-bottom: 1em;
}
.faq-answer__cont p:last-child {
  margin-bottom: 0;
}
.faq-answer__cont .cauion {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.faq-answer__cont .img {
  margin-bottom: 1em;
}
.faq-answer__cont a {
  color: #23ac38;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .faq-block__ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .faq-block__list li {
    border-radius: 32px;
    margin-bottom: 6px;
  }
  .faq-question {
    font-size: 14px;
    padding: 20px 80px 20px 15px;
  }
  .faq-question p {
    padding-left: 25px;
  }
  .faq-question p:before {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px 30px 15px;
  }
  .faq-answer__in {
    padding-left: 25px;
  }
  .faq-answer__in:before {
    font-size: 20px;
    width: 17px;
  }
  .faq-answer__in.l-grid .faq-answer__cont {
    width: 100%;
  }
  .faq-answer__in.l-grid .faq-answer__img {
    width: 100%;
    margin-top: 20px;
  }
  .faq-answer__cont .cauion {
    font-size: 11px;
  }
}

/*------------------------------------------
  sitemap
------------------------------------------*/
.sitemap {
  border-top: 2px solid #f6fae7;
}
.sitemap li {
  border-bottom: 2px solid #f6fae7;
}
.sitemap a {
  display: block;
  position: relative;
}
.sitemap .top-link {
  padding: 25px 0 25px 40px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(../images/common/arrow-right03.svg);
  background-size: 20px;
}
.sitemap .top-link span {
  display: inline-block;
  vertical-align: middle;
}
.sitemap .top-link__en {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  letter-spacing: .08em;
  font-size: 24px;
  margin-right: 15px;
}
.sitemap .top-link__ja {
  color: #9b9b9b;
  font-size: 14px;
}
.sitemap .child-link {
  padding-bottom: 30px;
  padding-left: 40px;
  text-align: center;
}
.sitemap .child-link p {
  width: 32%;
  margin-right: 2%;
  max-width: 216px;
}
.sitemap .child-link p:last-child {
  margin-right: 0;
}
.sitemap .child-link a {
  background: #f6fae7;
  color: #23ac38;
  padding: 1em 0;
}

@media only screen and (max-width: 768px) {
  .sitemap .top-link {
    padding: 18px 0 18px 35px;
    background-position: left top 20px;
  }
  .sitemap .top-link span {
    display: block;
  }
  .sitemap .top-link__en {
    font-size: 16px;
    margin-right: 0;
  }
  .sitemap .top-link__ja {
    font-size: 12px;
  }
  .sitemap .child-link {
    padding-bottom: 20px;
    padding-left: 35px;
  }
  .sitemap .child-link p {
    margin: 0 0  8px;
    max-width: 100%;
    width: 100%;
  }
  .sitemap .child-link p:last-child {
    margin-bottom: 0;
  }
}
.sttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0!important;
}
.ac-box {
  background: #f4f4f4;
}
.ac01-box {
  margin-bottom: 7px;
}
.ac01-box:first-child {
  padding-top: 7px;
}
.ac01-box .ac01-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.5em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #d0d0d0;
}
.ac01-box .ac01-txt::-webkit-details-marker {
  display: none;
}
.ac01-box .ac01-txt::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
}
.ac01-box .open-box {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
.ac01-box .open-box .ttl {
  font-size: 14px;
}
.ac01-box[open] {
  padding-bottom: 10px;
}
.ac01-box[open] .ac01-txt::after {
  transform: rotate(225deg);
}
.ac01-box[open] .open-box {
  transform: none;
  opacity: 1;
}
.ac02-box {
  max-width: 95%;
  margin: 10px 20px 7px;
  border-radius: 5px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .ac02-box {
    margin: 10px 10px 7px;
  }
}
.ac02-box .ttl {
  font-size: 16px;
  padding: 0;
}
.ac02-box .ttl span {
  font-size: 12px;
}
.ac02-box .ac02-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.5em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  /* 子アコーディオンの矢印 */
}
@media only screen and (max-width: 768px) {
  .ac02-box .ac02-txt {
    padding: 0.5em 1em;
  }
}
.ac02-box .ac02-txt::-webkit-details-marker {
  display: none;
}
.ac02-box .ac02-txt::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
}
.ac02-box .open-box {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
@media only screen and (max-width: 768px) {
  .ac02-box .open-box {
    padding: 0.3em 0.5em 1.5em;
  }
}
.ac02-box .open-box .ttl {
  font-size: 14px;
}
.ac02-box .open-box .txt {
  font-size: 12px;
}
.ac02-box .open-box .txt a {
  text-decoration: underline;
}
.ac02-box .open-box .txt a[target=_blank] {
  padding-right: 12px;
  background: url(../images/terms/icon_link.svg) right center/10px auto no-repeat;
}
.ac02-box[open] .ac02-txt::after {
  transform: rotate(225deg);
}
.ac02-box[open] .open-box {
  transform: none;
  opacity: 1;
}
.ac03-box {
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 7px;
}
.ac03-box .ac03-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0em 1em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px dotted #ccc;
}
.ac03-box .ac03-txt .ttl {
  font-size: 12px;
}
.ac03-box .ac03-txt::-webkit-details-marker {
  display: none;
}
.ac03-box .ac03-txt::before {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.7019607843);
  content: "";
  position: absolute;
  right: 1em;
  rotate: 90deg;
}
.ac03-box .ac03-txt::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: rotate 0.3s;
}
.ac03-box .open-box {
  padding: 0;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
@media only screen and (max-width: 768px) {
  .ac03-box .open-box {
    padding: 0.3em 1em 0.3em;
  }
}
.ac03-box .open-box .txt {
  font-size: 12px;
}
.ac03-box[open] .ac03-txt::after {
  rotate: 90deg;
}
.ac03-box[open] .open-box {
  transform: none;
  opacity: 1;
}