/*------------------------------------------
  Base Setting
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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

@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4em;
  }
}
input, select, textarea, button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #333;
  text-decoration: none;
}

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

.hover--opacity {
  transition: opacity 0.3s;
}
.hover--opacity:hover {
  opacity: 0.7;
}

.hover--line:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .hover--opacity:hover {
    opacity: 1;
  }
}
.is--tab {
  display: none;
}

.is--sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is--tab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .is--pc {
    display: none;
  }
  .is--sp {
    display: block;
  }
}
/*------------------------------------------
  component
------------------------------------------*/
/* ========== title ========== */
.c-title01 {
  line-height: 1.3;
  padding-bottom: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E0E0E0;
}
.c-title01 span {
  display: block;
  border-left: 8px solid #6BAF94;
  font-size: 2.8rem;
  font-weight: 700;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-title01 {
    margin-bottom: 24px;
  }
  .c-title01 span {
    border-width: 4px;
    font-size: 2.2rem;
    padding-left: 12px;
  }
}
/* ========== button ========== */
.c-button01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #01522E;
  color: #01522E;
  transition: 0.3s;
  position: relative;
  padding: 0 20px;
  border-radius: 22px;
  min-height: 44px;
  min-width: 200px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.c-button01.--small {
  min-width: 154px;
}
.c-button01.--medium {
  min-width: 245px;
}
.c-button01.--large {
  min-width: 254px;
}
.c-button01:hover {
  background-color: #E6EFEC;
}

.c-button02 {
  display: block;
  background: #01522E;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  padding-left: 65px;
  padding-right: 38px;
  position: relative;
  text-align: center;
  border-radius: 32px;
}
.c-button02__icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.c-button02__label {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .c-button02 {
    font-size: 1.3rem;
    padding-left: 54px;
    padding-right: 20px;
  }
  .c-button02__icon {
    width: 20px;
    left: 24px;
  }
  .c-button02__label {
    min-height: 45px;
  }
}
.c-button03 {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #01522E;
  background: #fff;
  color: #01522E;
  transition: 0.3s;
  position: relative;
  border-radius: 22px;
  min-height: 44px;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}
.c-button03:hover {
  background-color: #01522E;
  color: #fff;
}
.c-button03.is--current {
  background-color: #01522E;
  color: #fff;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .c-button03 {
    min-height: 32px;
    font-size: 1.2rem;
  }
  .c-button03:hover {
    background-color: #fff;
    color: #01522E;
  }
}
.c-button04 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #01522E;
  background: #fff;
  color: #01522E;
  transition: 0.3s;
  position: relative;
  border-radius: 24px;
  min-height: 38px;
  min-width: 190px;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}
.c-button04:hover {
  background-color: #E6EFEC;
}

@media only screen and (max-width: 767px) {
  .c-button04:hover {
    background-color: #fff;
  }
}
/* ========== hover arrow ========== */
.c-arrow {
  display: inline-block;
  position: relative;
}
.c-arrow__icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}
.c-arrow__icon:before, .c-arrow__icon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.c-arrow__icon:after {
  transform: translateX(-100%);
}
.c-arrow--type01 {
  padding-right: 22px;
}
.c-arrow--type01 .c-arrow__icon {
  width: 15px;
}
.c-arrow--type01 .c-arrow__icon:before, .c-arrow--type01 .c-arrow__icon:after {
  background-image: url(../images/common/arrow02-right.svg);
}
.c-arrow--type01 .c-arrow__icon--blank {
  transform: rotate(-45deg);
}
.c-arrow--type02 {
  padding-right: 14px;
}
.c-arrow--type02 .c-arrow__icon {
  width: 5px;
}
.c-arrow--type02 .c-arrow__icon:before, .c-arrow--type02 .c-arrow__icon:after {
  background-image: url(../images/common/arrow01-right.svg);
}
.c-arrow--type02 .c-arrow__icon--down {
  transform: rotate(90deg);
}
.c-arrow--type03 {
  padding-left: 22px;
}
.c-arrow--type03 .c-arrow__icon {
  width: 15px;
  left: 0;
  transform: scale(-1, 1);
}
.c-arrow--type03 .c-arrow__icon:before, .c-arrow--type03 .c-arrow__icon:after {
  background-image: url(../images/common/arrow02-right.svg);
}
.c-arrow--type03.--short {
  padding-left: 44px;
  padding-right: 16px;
}
.c-arrow__wrapper {
  position: relative;
}
.c-arrow__wrapper:hover .c-arrow__icon:before {
  animation-delay: 0s;
  animation-name: arrowTransformRightLeft;
}
.c-arrow__wrapper:hover .c-arrow__icon:after {
  animation-delay: 0.2s;
  animation-name: arrowTransformLeftRight;
}

@media only screen and (max-width: 767px) {
  .c-arrow__wrapper:hover .c-arrow__icon:before, .c-arrow__wrapper:hover .c-arrow__icon:after {
    animation: none !important;
  }
}
/* ========== card ========== */
.c-card {
  position: relative;
}
.c-card__icon {
  position: absolute;
  top: -22px;
  left: -16px;
  z-index: 10;
}
.c-card__icon span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 0 50%/50% 50% 0 50%;
  background: #999;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
}
.c-card__icon .on {
  background: #E64E2F;
}
.c-card__inner {
  display: block;
  position: relative;
}
.c-card__inner:hover .c-card__image .img {
  transform: scale(1.1);
}
.c-card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 12px;
}
.c-card__image .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.6s;
}
.c-card__image .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(50px);
}
.c-card__head {
  margin-bottom: 4px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 0 8px;
}
.c-card__term {
  color: #01522E;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.c-card__title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-card__foot {
  border-top: 1px solid #E0E0E0;
  padding-top: 12px;
  margin-top: 12px;
}
.c-card .card-date {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.c-card .card-date__icon {
  font-size: 1.1rem;
  color: #01522E;
  background: #E6EFEC;
  border-radius: 10px;
  padding: 2px 0.8em 1px;
  line-height: 1.2;
}
.c-card .card-date__text {
  color: #999999;
  font-size: 1.3rem;
}
.c-card .card-category {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6BAF94;
  letter-spacing: 0;
}
.c-card .card-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #01522E;
}

@media only screen and (max-width: 767px) {
  .c-card__icon {
    top: -16px;
    left: -8px;
  }
  .c-card__icon span {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .c-card__inner:hover .c-card__image .img {
    transform: scale(1);
  }
  .c-card__image {
    margin-bottom: 8px;
  }
  .c-card__head {
    gap: 0 5px;
  }
  .c-card__term {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .c-card__title {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .c-card__foot {
    padding-top: 8px;
    margin-top: 8px;
  }
  .c-card .card-date__icon {
    font-size: 1rem;
  }
  .c-card .card-date__text {
    font-size: 1rem;
  }
  .c-card .card-category {
    font-size: 1rem;
  }
  .c-card .card-label {
    font-size: 1.1rem;
  }
}
/* ========== news ========== */
.c-news {
  border-bottom: 1px solid #E0E0E0;
}
.c-news:first-child {
  border-top: 1px solid #E0E0E0;
}
.c-news__inner {
  position: relative;
  padding: 24px 70px 24px 24px;
  display: flex;
  gap: 0 12px;
  align-items: center;
}
.c-news__inner:after {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/arrow03-right.svg) no-repeat center;
  background-size: 100%;
}
.c-news__inner:hover .c-news__title {
  text-decoration: underline;
}
.c-news__head {
  display: flex;
  gap: 0 12px;
  white-space: nowrap;
  align-items: center;
}
.c-news__category {
  white-space: nowrap;
  width: 100px;
  text-align: center;
}
.c-news__category span {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #01522E;
  background: #E6EFEC;
  border-radius: 13px;
  padding: 3px 0;
}
.c-news__title {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-news .news-icon {
  font-weight: 500;
  color: #01522E;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  border-radius: 10px;
  background: #E6EFEC;
  padding: 2px 0.8em 1px;
  line-height: 1.2;
}
.c-news .news-date {
  font-weight: 700;
  color: #01522E;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .c-news__inner {
    padding: 16px 24px 16px 0;
    gap: 4px 8px;
    flex-wrap: wrap;
  }
  .c-news__inner:after {
    right: 0;
    width: 18px;
    height: 18px;
  }
  .c-news__head {
    gap: 0 8px;
  }
  .c-news__title {
    width: 100%;
    flex: auto;
    -webkit-line-clamp: 2;
  }
  .c-news .news-icon {
    font-size: 1rem;
  }
  .c-news .news-date {
    font-size: 1.2rem;
  }
}
/* ========== table ========== */
.c-table01 {
  width: 100%;
}
.c-table01 tr {
  border-bottom: 1px solid #DBDBDB;
}
.c-table01 tr:first-child th, .c-table01 tr:first-child td {
  padding-top: 0;
}
.c-table01 th, .c-table01 td {
  vertical-align: top;
  padding: 24px 0;
  text-align: left;
  font-size: 1.4rem;
}
.c-table01 th {
  color: #01522E;
  font-weight: 700;
  width: 8em;
}
.c-table01 td {
  padding-left: 1em;
}
.c-table01 td p {
  margin-bottom: 10px;
}
.c-table01 td p:last-child {
  margin-bottom: 0;
}
.c-table01 td a {
  text-decoration: underline;
}
.c-table01 td a:hover {
  text-decoration: none;
}
.c-table01 td a[href^="tel:"] {
  text-decoration: none;
}
.c-table01 .snslist {
  gap: 12px;
}

@media only screen and (max-width: 767px) {
  .c-table01 th, .c-table01 td {
    display: block;
    width: 100%;
  }
  .c-table01 th {
    padding: 16px 0 4px;
  }
  .c-table01 td {
    padding: 0 0 16px;
  }
  .c-table01 td p {
    margin-bottom: 5px;
  }
  .c-table01 .snslist {
    gap: 12px;
    padding-top: 4px;
  }
}
.c-table02 {
  width: 100%;
  border: 1px solid #DBDBDB;
}
.c-table02 tr {
  border-bottom: 1px solid #DBDBDB;
}
.c-table02 tr:last-child {
  border-bottom: none;
}
.c-table02 th, .c-table02 td {
  padding: 16px 24px;
  border-right: 1px solid #DBDBDB;
}
.c-table02 th:last-child, .c-table02 td:last-child {
  border-right: none;
}
.c-table02 th {
  text-align: left;
  font-weight: 700;
  background: #F7F7F5;
  width: 34%;
}
.c-table02 td {
  line-height: 1.3125;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .c-table02 th, .c-table02 td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .c-table02 th {
    border-bottom: 1px solid #DBDBDB;
  }
  .c-table02 td {
    line-height: 1.5;
  }
}
/* ========== shop ========== */
.c-shop {
  line-height: 1.25;
  gap: 0 3%;
}
.c-shop__logo {
  width: 22%;
}
.c-shop__logo img {
  border: 1px solid #E0E0E0;
}
.c-shop__contents {
  flex: 1;
}
.c-shop__head {
  margin-bottom: 12px;
  gap: 16px;
  align-items: center;
  color: #01522E;
  letter-spacing: 0;
}
.c-shop__headLabel {
  background: #E6EFEC;
  border-radius: 16px;
  font-weight: 500;
  padding: 5px 10px;
  white-space: nowrap;
}
.c-shop__headText {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6BAF94;
  flex: 1;
}
.c-shop__name {
  font-weight: 700;
  font-size: 2.4rem;
  -ms-word-break: break-all;
  word-break: break-all;
}
.c-shop__name a:hover {
  text-decoration: underline;
}
.c-shop__item {
  color: #888888;
  font-size: 1.2rem;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .c-shop__logo {
    width: 25%;
  }
  .c-shop__head {
    gap: 4px 8px;
    margin-bottom: 8px;
  }
  .c-shop__headLabel {
    font-size: 1.2rem;
    padding: 4px 10px;
  }
  .c-shop__headText {
    font-size: 1.2rem;
  }
  .c-shop__name {
    font-size: 1.8rem;
  }
  .c-shop__item {
    margin-top: 8px;
  }
}
.c-shop02 {
  background: #FAF9F7;
}
.c-shop02__inner {
  padding: 16px;
  position: relative;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.c-shop02__inner.--archive {
  gap: 32px;
}
.c-shop02__logo {
  width: 22%;
  max-width: 130px;
}
.c-shop02__logo img {
  border: 1px solid #E0E0E0;
}
.c-shop02__head {
  margin-bottom: 12px;
  gap: 12px;
  align-items: center;
  color: #01522E;
  letter-spacing: 0;
}
.c-shop02__headLabel {
  font-size: 1.1rem;
  background: #E6EFEC;
  border-radius: 16px;
  font-weight: 500;
  padding: 3px 12px;
  white-space: nowrap;
}
.c-shop02__headText {
  font-size: 1.6rem;
  font-weight: 700;
  color: #01522E;
  flex: 1;
}
.c-shop02__name {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33;
  -ms-word-break: break-all;
  word-break: break-all;
}
.c-shop02__item {
  color: #01522E;
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: 500;
}
.c-shop02__button {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .c-shop02__inner {
    gap: 16px;
  }
  .c-shop02__inner.--archive {
    gap: 16px;
    align-items: flex-start;
  }
  .c-shop02__logo {
    width: 28%;
    max-width: 100%;
  }
  .c-shop02__contents {
    width: calc(72% - 16px);
  }
  .c-shop02__headText {
    font-size: 1.2rem;
  }
  .c-shop02__name {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .c-shop02__item {
    margin-top: 4px;
  }
  .c-shop02__button {
    margin-left: auto;
  }
}
/* ========== block ========== */
.c-block01 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.c-block01:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.c-block01__text {
  width: 50%;
}
.c-block01__image {
  width: 43%;
  margin-left: auto;
}
.c-block01__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.c-block01 .service-icon {
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .c-block01 {
    gap: 16px;
    border-bottom: none;
    padding-bottom: 0;
  }
  .c-block01__text {
    width: 100%;
  }
  .c-block01__image {
    width: 100%;
    text-align: center;
  }
  .c-block01__title {
    font-size: 1.4rem;
  }
  .c-block01 .service-icon {
    margin-top: 8px;
  }
}
.c-block02 {
  position: relative;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.c-block02.no-border {
  border-bottom: none;
  padding-bottom: 0;
}
.c-block02:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.c-block02.l-flex .c-block02__text {
  width: 45%;
}
.c-block02.l-flex .c-block02__image {
  width: 50%;
  margin-left: auto;
}
.c-block02__title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .c-block02 {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .c-block02.no-border {
    margin-bottom: 24px;
  }
  .c-block02:last-child {
    margin-bottom: 0;
  }
  .c-block02.l-flex {
    gap: 8px;
  }
  .c-block02.l-flex .c-block02__text {
    width: 100%;
  }
  .c-block02.l-flex .c-block02__image {
    width: 100%;
  }
  .c-block02__title {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  .c-block02__text {
    font-size: 1.4rem;
  }
}
/* ========== pager ========== */
.c-pager {
  text-align: center;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.c-pager a {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pager__arrow {
  width: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.c-pager__arrow.--prev {
  margin-right: 24px;
  background-image: url(../images/common/arrow04-left.svg);
}
.c-pager__arrow.--next {
  margin-left: 24px;
  background-image: url(../images/common/arrow04-right.svg);
}
.c-pager__arrow.is--disabled {
  pointer-events: none;
  opacity: 0.2;
}
.c-pager__num {
  width: 48px;
  border-radius: 50%;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.c-pager__num.is--current {
  color: #fff;
  background: #01522E;
  margin: 0 6px;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .c-pager {
    margin-top: 32px;
    gap: 4px;
  }
  .c-pager a {
    height: 42px;
  }
  .c-pager__arrow {
    width: 16px;
    background-size: 100%;
  }
  .c-pager__arrow.--prev {
    margin-right: auto;
  }
  .c-pager__arrow.--next {
    margin-left: auto;
  }
  .c-pager__num {
    width: 42px;
    font-size: 1.2rem;
  }
}
/* ========== mapicon ========== */
.c-mapicon {
  display: inline-block;
  border: 1px solid #01522E;
  border-radius: 4px;
  color: #01522E;
  padding: 2px 10px 2px 21px;
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s;
}
.c-mapicon:before {
  content: "";
  width: 8px;
  height: 12px;
  position: absolute;
  left: 8px;
  top: 50%;
  margin-top: -6px;
  background-image: url(../images/common/ico-map.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.c-mapicon:hover {
  background: #E6EFEC;
}

/* ========== feature ========== */
.c-feature__image {
  margin-bottom: 16px;
}
.c-feature__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-feature__area {
  color: #6BAF94;
  margin-top: 4px;
}
.c-feature__date {
  margin-top: 4px;
}
.c-feature__text {
  margin-top: 16px;
}
.c-feature__link {
  margin-top: 8px;
}
.c-feature__link a {
  font-size: 1.2rem;
  text-decoration: underline;
  display: block;
}
.c-feature__sns {
  margin-top: 16px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 12px;
}

@media only screen and (max-width: 767px) {
  .c-feature {
    padding: 0 40px;
  }
  .c-feature__image {
    margin-bottom: 8px;
  }
  .c-feature__title {
    font-size: 1.6rem;
  }
  .c-feature__area {
    margin-top: 2px;
    font-size: 1.2rem;
  }
  .c-feature__date {
    margin-top: 2px;
    font-size: 1.2rem;
  }
  .c-feature__text {
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
/* ========== special ========== */
.c-special {
  padding: 56px 0 40px;
  border-bottom: 1px solid #E0E0E0;
}
.c-special:nth-child(1), .c-special:nth-child(2) {
  border-top: 1px solid #E0E0E0;
}
.c-special__head {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
}
.c-special__head .head-shop {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.c-special__head .head-shop a {
  color: #01522E;
  text-decoration: underline;
}
.c-special__head .head-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-special__head .head-price {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-top: 12px;
}
.c-special__headImage {
  width: 46%;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-special__headImage .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.6s;
}
.c-special__headImage .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(50px);
}
.c-special__headInfo {
  width: 50%;
  margin-left: auto;
}
.c-special__text {
  margin-top: 12px;
  background: #FAF9F7;
  font-size: 1.4rem;
  padding: 24px;
}
.c-special__button {
  margin-top: 24px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-special {
    padding: 32px 0;
  }
  .c-special:nth-child(2) {
    border-top: none;
  }
  .c-special__head .head-shop {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .c-special__head .head-title {
    font-size: 1.4rem;
  }
  .c-special__head .head-price {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 8px;
  }
  .c-special__text {
    margin-top: 10px;
    font-size: 1.2rem;
    padding: 16px;
    height: auto !important;
  }
  .c-special__button {
    border-top: #161616;
  }
}
/* ========== empty ========== */
.c-empty {
  text-align: center;
  color: #01522E;
  padding: 40px 0 16px;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .c-empty {
    padding: 80px 0 56px;
  }
}
.js-acTrigger, .js-acTriggerPrev {
  cursor: pointer;
}

.js-acHide {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/*------------------------------------------
  animation
------------------------------------------*/
@keyframes arrowTransformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrowTransformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/*------------------------------------------
  modal
------------------------------------------*/
.js-modal {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.js-modal.is--active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.js-modalOuter {
  display: table;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.js-modalInner {
  display: table-cell;
  vertical-align: middle;
  padding: 40px 0;
}
.js-modalContent {
  position: relative;
  margin: auto;
  box-sizing: border-box;
}
.js-modalOpen {
  cursor: pointer;
}
.js-modalClose {
  cursor: pointer;
}

.modal-map {
  position: relative;
  max-width: 838px;
  margin: auto;
  padding: 40px 0;
}
.modal-map__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: #01522E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.modal-map__close .icon {
  position: absolute;
  left: 0;
  top: 16px;
  width: 100%;
  height: 20px;
  background: url(../images/common/icon-close.svg) no-repeat center;
  background-size: contain;
}
.modal-map__close .label {
  padding-bottom: 1em;
}
.modal-map__inner {
  max-width: 670px;
  margin: auto;
  background: #F7F7F5;
  padding: 40px 30px;
}
.modal-map__title {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  margin-bottom: 32px;
}
.modal-map__title .floor {
  font-size: 2.4rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.modal-map__title .label {
  padding-bottom: 2px;
}
.modal-map__image {
  position: relative;
}
.modal-map__pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.modal-map__icon {
  margin-top: 40px;
}
.modal-map__icon img {
  width: 559px;
}

@media only screen and (max-width: 767px) {
  .modal-map {
    padding: 0;
  }
  .modal-map__close {
    right: 8px;
    top: -80px;
  }
  .modal-map__inner {
    padding: 20px 16px 24px;
  }
  .modal-map__title {
    font-size: 1.4rem;
    padding-bottom: 4px;
    margin-bottom: 6px;
  }
  .modal-map__title .floor {
    font-size: 1.6rem;
  }
  .modal-map__title .label {
    padding-bottom: 2px;
  }
  .modal-map__icon {
    margin-top: 16px;
  }
  .modal-map__icon img {
    width: 335px;
  }
}
/*------------------------------------------
  layout
------------------------------------------*/
.l-wrapper {
  position: relative;
}

.l-main {
  position: relative;
  min-height: calc(100vh - 1058px);
}

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

.l-inner {
  position: relative;
  max-width: 1238px;
  margin: auto;
  padding: 0 24px;
}
.l-inner--s {
  max-width: 976px;
}

.l-emergency {
  padding: 18px 0;
  background: #FFF7F7;
}
.l-emergency__inner {
  padding: 0 clamp(45px, 6.588579795vw, 90px);
  gap: 8px 32px;
  align-items: center;
}
.l-emergency .emergency-label {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  background: #E64E2F;
  padding: 7px 16px;
  border-radius: 30px;
}
.l-emergency .emergency-label span {
  display: inline-block;
  padding-left: 20px;
  background: url(../images/common/icon-emergency.svg) no-repeat left center;
  background-size: 15px;
}
.l-emergency .emergency-text {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #E64E2F;
}
.l-emergency a {
  text-decoration: underline;
  color: #E64E2F;
}

@media only screen and (max-width: 767px) {
  .l-emergency {
    padding: 12px 0 16px;
  }
  .l-emergency__inner {
    padding: 0 16px;
    gap: 8px 16px;
  }
  .l-emergency .emergency-label {
    font-size: 1rem;
    padding: 7px 16px 7px 12px;
  }
  .l-emergency .emergency-label span {
    padding-left: 24px;
  }
  .l-emergency .emergency-text {
    font-size: 1.3rem;
  }
}
.l-banner {
  padding: 40px 0;
}
.l-banner .banner-list {
  gap: clamp(13px, 1.9033674963vw, 26px) 2%;
}
.l-banner .banner-list__item {
  width: 15%;
}
.l-banner .banner-list a {
  display: block;
}
.l-banner .banner-list img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .l-banner {
    padding: 32px 0;
  }
  .l-banner .banner-list {
    padding: 0 26px;
    gap: 4.2666666667vw 6%;
  }
  .l-banner .banner-list__item {
    width: 47%;
  }
}
.l-card {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.l-card--col4 {
  gap: 70px 4%;
}
.l-card--col4 .c-card {
  width: 22%;
}
.l-card--col2 {
  gap: 48px 8%;
}
.l-card--col2 .c-card {
  width: 46%;
}

@media only screen and (max-width: 767px) {
  .l-card--col4 {
    gap: 32px 4%;
  }
  .l-card--col4 .c-card {
    width: 48%;
  }
  .l-card--col2 {
    gap: 32px 4%;
  }
  .l-card--col2 .c-card {
    width: 48%;
  }
}
.l-news {
  max-width: 960px;
  margin: auto;
}

.l-mapicon {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 0 10px;
}

.l-feature {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 64px 3.5%;
}
.l-feature .c-feature {
  width: 31%;
}

@media only screen and (max-width: 767px) {
  .l-feature {
    gap: 40px;
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
  }
  .l-feature .c-feature {
    width: 100%;
  }
}
.l-special {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 0 8%;
}
.l-special .c-special {
  width: 46%;
}

@media only screen and (max-width: 767px) {
  .l-special .c-special {
    width: 100%;
  }
}
/*------------------------------------------
  header
------------------------------------------*/
.l-header {
  position: relative;
  padding-right: 118px;
  padding-left: clamp(20px, 2.9282576867vw, 40px);
  z-index: 100;
}
.l-header__inner {
  display: flex;
  height: 110px;
  gap: clamp(15px, 2.196193265vw, 30px);
  align-items: center;
}
.l-header .header-logo {
  width: 275px;
}
.l-header .header-announce {
  flex: 1;
  padding-left: clamp(5px, 0.7320644217vw, 10px);
  line-height: 1.46;
  font-size: clamp(1.1rem, 0.9516837482vw, 1.3rem);
  font-weight: 700;
  color: #01522E;
}
.l-header .header-announce__inner {
  margin-bottom: 2px;
}
.l-header .header-announce__inner:last-child {
  margin-bottom: 0;
}
.l-header .header-announce__label {
  white-space: nowrap;
}
.l-header .header-announce__text {
  flex: 1;
}
.l-header .header-announce__text span {
  display: inline-block;
}
.l-header .pc-header-guide {
  width: 282px;
  margin-left: auto;
  position: relative;
}
.l-header .pc-header-guide .c-button01 {
  min-width: auto;
  width: 100%;
  font-weight: 500;
  min-height: 37px;
}
.l-header .pc-header-guide__language {
  width: 137px;
  border: 1px solid #01522E;
  border-radius: 22px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.l-header .pc-header-guide__language .language-label {
  border: none;
  min-height: 35px;
}
.l-header .pc-header-guide__language .language-list {
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.l-header .pc-header-guide__language .language-list li {
  margin-bottom: 4px;
}
.l-header .pc-header-guide__language .language-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 24px;
}
.l-header .pc-header-guide__language .language-list a {
  color: #01522E;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.l-header .pc-header-guide__language.is--active {
  background: #E6EFEC;
}
.l-header .pc-header-guide__language.is--active .language-label .c-arrow--type02 .c-arrow__icon--down {
  transform: rotate(-90deg);
}
.l-header .pc-header-guide__button {
  margin-left: auto;
  width: 137px;
}

@media only screen and (max-width: 1024px) {
  .l-header .header-announce {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    padding-right: 88px;
    padding-left: 16px;
  }
  .l-header__inner {
    height: 88px;
    gap: 0;
  }
  .l-header .header-logo {
    width: 150px;
  }
  .l-header .sp-header-guide {
    margin-left: auto;
  }
  .l-header .sp-header-guide__list {
    gap: 12px;
    align-items: flex-start;
  }
  .l-header .sp-header-guide__list img {
    width: auto;
    height: 42px;
  }
  .l-header .sp-header-guide__language {
    position: relative;
  }
  .l-header .sp-header-guide__language .language-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 6px);
    width: 102px;
    border: 1px solid #01522E;
    background: #E6EFEC;
    border-radius: 19px;
    padding: 16px 0;
    text-align: center;
  }
  .l-header .sp-header-guide__language .language-list li {
    margin-bottom: 8px;
  }
  .l-header .sp-header-guide__language .language-list li:last-child {
    margin-bottom: 0;
  }
  .l-header .sp-header-guide__language .language-list a {
    color: #01522E;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
/*------------------------------------------
  menu
------------------------------------------*/
.l-menu {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
}
.l-menu__trigger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 88px;
  height: 88px;
  background: #01522E;
  border-radius: 0 0 0 24px/0 0 0 24px;
  cursor: pointer;
  padding: 22px 0 0;
}
.l-menu__trigger.is--fixed {
  position: fixed;
}
.l-menu__trigger .trigger-text {
  color: #E6EFEC;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.254em;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 8px;
}
.l-menu__trigger .trigger-text:after {
  content: "MENU";
}
.l-menu__trigger .trigger-icon {
  position: relative;
  width: 34px;
  height: 18px;
  margin: auto;
}
.l-menu__trigger .trigger-icon span {
  position: absolute;
  right: 0;
  height: 2px;
  background: #E6EFEC;
  transition: 0.6s;
}
.l-menu__trigger .trigger-icon span:nth-child(1) {
  top: 0;
  width: 100%;
}
.l-menu__trigger .trigger-icon span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
  width: 27px;
}
.l-menu__trigger .trigger-icon span:nth-child(3) {
  bottom: 0;
  width: 17px;
}
.l-menu__trigger.is--active .trigger-text:after {
  content: "CLOSE";
}
.l-menu__trigger.is--active .trigger-icon span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
  margin-top: -1px;
}
.l-menu__trigger.is--active .trigger-icon span:nth-child(2) {
  opacity: 0;
}
.l-menu__trigger.is--active .trigger-icon span:nth-child(3) {
  width: 100%;
  bottom: 50%;
  transform: rotate(-45deg);
  margin-bottom: -1px;
}
.l-menu__inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 332px;
  height: 100vh;
  padding-bottom: 50px;
  z-index: 99;
  -ms-overflow-y: auto;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.l-menu__inner.is--active {
  transform: translateX(0);
}
.l-menu__contents {
  background: #01522E;
  color: #fff;
  padding: 112px 50px;
  min-height: calc(100vh - 50px);
  border-radius: 0 0 0 24px/0 0 0 24px;
}
.l-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px) brightness(90%);
  display: none;
}
.l-menu .menu-list {
  margin-bottom: 32px;
}
.l-menu .menu-list:last-child {
  margin-bottom: 0;
}
.l-menu .menu-list li:last-child {
  margin-bottom: 0;
}
.l-menu .menu-list a {
  color: #fff;
  display: block;
}
.l-menu .menu-list--main {
  border-top: 1px solid #317657;
}
.l-menu .menu-list--main li {
  border-bottom: 1px solid #317657;
}
.l-menu .menu-list--main a {
  font-weight: 500;
  font-size: 1.8rem;
  padding: 16px 0;
}
.l-menu .menu-list--sub li {
  margin-bottom: 16px;
}
.l-menu .menu-list--sub a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.l-menu .menu-list--sns {
  gap: 24px;
}

@media only screen and (max-width: 767px) {
  .l-menu__trigger {
    width: 64px;
    height: 64px;
    border-radius: 0 0 0 16px/0 0 0 16px;
    padding: 16px 0 0;
  }
  .l-menu__trigger .trigger-text {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  .l-menu__trigger .trigger-icon {
    width: 26px;
    height: 14px;
  }
  .l-menu__trigger .trigger-icon span:nth-child(2) {
    width: 20px;
  }
  .l-menu__trigger .trigger-icon span:nth-child(3) {
    width: 14px;
  }
  .l-menu__contents {
    padding-top: 80px;
    border-radius: 0 0 0 16px/0 0 0 16px;
  }
}
/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
  position: relative;
  background: #FAF9F7;
  padding: 35px 0;
  letter-spacing: 0.1em;
}
.l-footer__info {
  width: 40%;
}
.l-footer__map {
  width: 56%;
  max-width: 630px;
  margin-left: auto;
  padding: 10px 0 0;
}
.l-footer__copy {
  width: 100%;
  text-align: right;
  margin-top: 15px;
}
.l-footer .footer-about {
  margin-bottom: 25px;
  gap: 16px 52px;
  align-items: flex-end;
  justify-content: center;
}
.l-footer .footer-about__textbox {
  width: 270px;
  padding: 0 0 14px;
  color: #01522E;
}
.l-footer .footer-about__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.l-footer .footer-about__address {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.l-footer .footer-about__access a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 23px;
  color: #01522E;
  border: 1px solid #01522E;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  transition: 0.3s;
}
.l-footer .footer-about__access a:hover {
  background-color: #E6EFEC;
}
.l-footer .footer-menu {
  margin-bottom: 40px;
  gap: 16px 0;
  justify-content: space-between;
}
.l-footer .footer-menu li {
  width: 48%;
}
.l-footer .footer-menu a {
  color: #01522E;
  font-size: 1.4rem;
}
.l-footer .footer-sns {
  gap: 24px;
}
.l-footer .footer-map {
  height: 100%;
}
.l-footer .footer-map iframe {
  width: 100%;
  height: 100%;
}
.l-footer .footer-copy {
  font-size: 1.2rem;
  color: #01522E;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 0 0 40px;
    letter-spacing: 0.1em;
  }
  .l-footer:before {
    content: "";
    width: 100%;
    height: 24px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
  }
  .l-footer__info {
    width: 100%;
  }
  .l-footer__copy {
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }
  .l-footer .footer-about {
    margin-bottom: 16px;
  }
  .l-footer .footer-about__logo {
    width: 100%;
    text-align: center;
  }
  .l-footer .footer-about__textbox {
    padding-bottom: 0;
    text-align: center;
  }
  .l-footer .footer-about__access a:hover {
    background-color: inherit;
  }
  .l-footer .footer-about__access a:hover .btn-arrow:before {
    animation: none;
  }
  .l-footer .footer-about__access a:hover .btn-arrow:after {
    animation: none;
  }
  .l-footer .footer-menu {
    margin: 24px 0;
  }
  .l-footer .footer-menu a {
    font-size: 1.2rem;
  }
  .l-footer .footer-menu li {
    width: 42%;
  }
  .l-footer .footer-sns {
    justify-content: center;
  }
  .l-footer .footer-map {
    height: 42.6666666667vw;
  }
}
/*------------------------------------------
  project
------------------------------------------*/
/* ========== post ========== */
.p-post {
  background: #F2F3F0;
  padding: 80px 0;
  margin-bottom: 24px;
}
.p-post__head {
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
}
.p-post__head .head-title__en {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
.p-post__head .head-title__ja {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .p-post {
    padding: 48px 0;
  }
  .p-post__head {
    margin-bottom: 24px;
  }
  .p-post__head .head-title__en {
    font-size: 3.2rem;
  }
  .p-post__head .head-button {
    display: none;
  }
  .p-post__more {
    text-align: center;
    margin-top: 32px;
  }
}