@charset "utf-8";

/* ----------------------------------------- */
/* TOP Page */
/* ----------------------------------------- */

/* MV ----------------------------------------- */
#mv h2 {
  font-size: clamp(37px, 4.35vw, 4.8rem);
  line-height: 1.5;
  margin-bottom: 7.2rem;
  z-index: 0;
}
#mv h2:after {
  content: "";
  display: inline-block;
  background-image: url(../img/header-bg_logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 480px;
  height: 300px;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: -1;
}
.mv {
  width: 100%;
  height: 400px;
  border-radius: 5px;
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* scroll down */
.scroll-btn {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  bottom: -10rem;
  right: 6vw;
}
.scroll-btn a:hover {
  opacity: 0.7;
}
.scroll-down {
  position: relative;
  width: 200px;
  height: 200px;
  color: var(--dgreen);
  font-family: "Shippori Mincho", serif;
  text-decoration: none;
}
.scroll-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}
.scroll-text span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}
.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: var(--dgreen);
  transform: translateX(-50%);
}
.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid var(--dgreen);
  transform: translateX(-50%) rotate(-45deg);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

@media screen and (max-width: 768px){
  #mv h2:after {
    width: 50vw;
    height: 30vw;
  }
    #top-menu h2:before {
      width: 170px;
      height: 120px;
  }
}
@media screen and (max-width: 576px) {
  #mv h2 {
    display: block;
    font-size: clamp(29px, 8.35vw, 4.8rem);
    margin-bottom: 3.6rem;
  }
  #mv h2 span {
    display: block;
    font-size: 130%;
  }
  .scroll-btn {
    bottom: -15%;
    right: inherit;
    left: 5%;
  }
}

/* TOP PAGE Menu ----------------------------------------- */
#top-menu h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#top-menu h2:before {
  background-image: url(../img/top-menu.png);
  width: 240px;
  height: 180px;
}

/* TOP PAGE Blog / News ----------------------------------------- */
#top-blog h2:before {
  background-image: url(../img/blog.png);
  width: 200px;
  height: 65px;
  left: 0;
}
#top-blog .blog-wrap {
  width: 58.6%;
  margin: 0 0 0 auto;
}
#top-blog .blog-wrap .more-btn {
  font-size: 2rem;
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  justify-content: flex-end;
}
#top-blog .blog-wrap .more-btn:after {
  content: "";
  display: inline-block;
  background-image: url(../img/link-icon2.svg);
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background-size: contain;
  background-repeat: no-repeat;
}
#top-blog .img04 {
  bottom: -9.6rem;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  #top-blog {
    margin-bottom: 14rem !important;
  }
  #top-blog .blog-wrap {
    width: 100%;
  }
  .home #feature {
    padding-top: 12rem;
  }
}



/* ----------------------------------------- */
/* About PAGE */
/* ----------------------------------------- */
#about-header h2:before {
  background-image: url(../img/about.png);
  height: 63px;
  left: 0;
}
.about-header_mv {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  background-image: url(../img/about-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}

/* AboutPAGE Greeting ----------------------------------------- */
#greeting-block h2:before {
  background-image: url(../img/greeting.png);
  height: 37px;
  left: 50%;
  transform: translateX(-50%);
}
.greeting-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.greeting-wrap01 {
  gap: 7.2rem;
  margin-bottom: 12rem;
}
.greeting-img01 {
  width: 44.2%;
}
.greeting-img01 img {
  aspect-ratio: 433 / 613;
}
.greeting-txtbox01 {
  flex: 1;
}
.greeting-txtbox01 .title-director,
.greeting-txtbox02 p:first-child {
  display: inline-block;
  border: 1px solid var(--dgreen);
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(16px, 2vw, 20px);
  padding: 0.2em 1em;
  line-height: 1;
}
.greeting-txtbox01 .name {
  font-size: clamp(24px, 5.5vw, 36px);
  line-height: 1;
  margin-bottom: 1.8rem;
}
.greeting-txtbox01  .name span {
  margin-left: 1.5em;
}
.greeting-txtbox02 ul li {
  font-size: clamp(16px, 2.2vw, 20px);
  padding: 0.2em 0;
  line-height: 1.5;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.greeting-txtbox02 ul li:before {
  content: "";
  display: inline-block;
  background-image: url(../img/greeting-list_circle.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
}
.greeting-img02 {
  width: 35%;
}
.greeting-txtbox02 {
  width: 75%;
}
.greeting-img02 img {
  aspect-ratio: 368 / 270;
  object-fit: cover;
}
.greeting-wrap02 {
  gap: 2%;
}
.greeting-wrap02 .img01 {
  bottom: 0;
  left: 47%;
  transform: translateX(-50%);
}
.greeting-wrap02 .img02 {
  top: -35%;
  left: -10vw;
}
.greeting-wrap02 .img03 {
  bottom: -35%;
  right: -10vw;
}

/* AboutPAGE Staff ----------------------------------------- */
#staff-block h2:before {
  background-image: url(../img/staff.png);
  height: 52px;
}
.staff-inner {
  gap: 5%;
}
.staff-inner h2 {
  width: 26.2%;
}
.staff-inner ul {
  flex: 1;
}
.staff-inner ul li {
  width: 46%;
}
.staff-img {
  margin-bottom: 1.6rem;
}
.staff-img img {
  aspect-ratio: 325 / 433;
  object-fit: cover;
}
.staff-comment {
  line-height: 1.5;
}
.title-staff {
  display: inline-block;
  border: 1px solid var(--dgreen);
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  padding: 0.2em 1em;
  line-height: 1;
}
.staff-name {
  font-size: clamp(24px, 5.5vw, 36px);
  margin-bottom: 1.6rem;
}
.staff-name span {
  margin-left: 0.5em;
}
.staff-remarks {
  font-size: 1.4rem;
}
.staff-block .img04 {
  bottom: -30%;
  left: 0;
  opacity: 0.5;
  z-index: -2;
}

/* AboutPAGE Feature ----------------------------------------- */
#feature {
  padding-top: 12rem;
}
.feature-inner h2 {
  line-height: 1;
}
.feature-inner h2:before {
  content: "";
  display: inline-block;
  background-image: url(../img/greeting-list_circle.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.feature .box ol li {
  gap: 5vw;
}
.feature .box ol li:nth-child(2) .feature-wrap_right {
  order: -1;
}
.feature-wrap_left {
  flex: 1;
}
.feature-wrap_left h3 {
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.6;
}
.feature-wrap_right {
  width: 50%;
}
.feature-wrap_right img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 3px;
}

/* AboutPAGE Gallery ----------------------------------------- */
#gallery-block h2:before {
  background-image: url(../img/gallery.png);
  height: 52px;
  left: 50%;
  transform: translateX(-50%);
}
.gallery-wrap {
  width: 100%;
  height: 100%;
}
.gallery-wrap li {
  margin-right: 0.5%;
  margin-left: 0.5%;
  height: auto;
}
.gallery-wrap li img {
  aspect-ratio: 312 / 292;
  object-fit: cover;
}
.gallery-wrap li div {
  margin-bottom: 0.5em;
}
.gallery-wrap .slick-list {
  width: 95%;
  margin: 0 auto;
}
.gallery-wrap .slick-prev,
.gallery-wrap .slick-next {
  display: inline-block !important;
  width: 38px;
  height: 38px;
  background-size: cover;
}
.gallery-wrap .slick-prev {
  background-image: url(../img/slide-arrows_prev.svg);
}
.gallery-wrap .slick-next {
  background-image: url(../img/slide-arrows_next.svg);
}

/* AboutPAGE Access ----------------------------------------- */
#access-block .box {
  max-width: 1100px;
  padding-left: 6rem;
  padding-right: 6rem;
}
#access-block h2:before {
  background-image: url(../img/access.png);
  height: 52px;
  left: 50%;
  transform: translateX(-50%);
}
.access-wrap li {
  margin-bottom: 4.8rem;
}
.access-wrap li h3:before {
  content: "";
  display: inline-block;
  background-image: url(../img/greeting-list_circle.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 0.2em;
}
.access-wrap li p {
  line-height: 1.5;
}

.greeting-pcnone {
  display: contents;
}

@media screen and (max-width: 992px){
  .greeting-wrap01 {
    gap: 3rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #about-header h2:before {
    height: 50px;
    margin-bottom: 0;
  }
  .about-header_mv {
    height: 200px;
  }
  .greeting-wrap01 {
    gap: 2rem;
  }
  .greeting-txtbox02 ul li {
    display: block;
  }
  .greeting-txtbox02 ul li:before {
    width: 15px;
    height: 15px;
  }
  .greeting-img02 {
    width: 30%;
  }
  .greeting-txtbox02 {
    width: 70%;
  }
  .tel{
    pointer-events: inherit;
  }
  .feature-wrap_right img {
    aspect-ratio: 4 / 3;
  }
  .feature-wrap_left div {
    width: 70%;
  }
}
@media screen and (max-width: 680px) {
  .greeting-img01 {
    width: 33%;
  }
  .greeting-wrap02 .img02,
  .greeting-wrap02 .img03 {
    display: none;
  }
  .staff-inner {
    flex-direction: column;
  }
  .staff-inner h2 {
    width: 100%;
  }
  .staff-inner ul li {
    width: 48%;
  }
  .staff-block .img04 {
    display: none;
  }
  #feature {
    padding-top: 5rem;
  }
  .feature .box ol li {
    gap: 3vw;
  }
  .feature-wrap_right {
    width: 40%;
  }
  .feature-wrap_left div {
    width: 60%;
  }
  .gallery-wrap .slick-prev,
  .gallery-wrap .slick-next {
    width: 25px;
    height: 25px;
  }
  .gallery-wrap .slick-list {
    width: 90%;
  }
  .slick-prev {
    left: 0
  }
  .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .greeting-wrap01 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
  }
  .greeting-img01 {
    width: 40%;
  }
  .greeting-txtbox01 {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .greeting-txtbox01 p:first-child {
    text-align: center;
  }
  .greeting-pcnone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8%;
  }
  .greeting-txtbox01 .title-director,
  .greeting-txtbox02 p:first-child {
    line-height: 1.7;
  }
  .greeting-wrap02 {
    flex-direction: column;
  }
  .greeting-txtbox02,
  .greeting-img02 {
    width: 100%;
    margin-bottom: 2em;
  }
  .greeting-wrap02 .img01 {
    left: inherit;
    right: 0;
    transform: translateX(0);
  }
  .staff-name span {
    display: block;
    margin-left: 0;
  }
  .feature-inner h2 {
    line-height: 1.3;
  }
  .feature .box ol li {
    flex-direction: column;
  }
  .feature-wrap_left div {
    width: 30%;
  }
  .feature .box ol li:nth-child(2) .feature-wrap_right {
    order: 0;
  }
  .feature-wrap_left h3 {
    width: 75%;
  }
  .feature-wrap_right {
    width: 100%;
  }
  .feature-wrap_right img {
    aspect-ratio: 2 / 1;
  }
  #access-block .box {
    padding-left: min(3vw, 17rem);
    padding-right: min(3vw, 17rem);
  }
}
@media screen and (max-width: 480px) {
  .about-header_mv {
    height: 130px;
  }
  .feature-wrap_left h3 {
    width: 100%;
  }
  .feature-inner h2:before {
    width: 30px;
    height: 30px;
    margin-right: 0.2em;
  }
  .gallery-wrap .slick-list {
    width: 80%;
  }
}



/* ----------------------------------------- */
/* Menu */
/* ----------------------------------------- */
#menu-header h2:before {
  background-image: url(../img/menu_.png);
  height: 63px;
  left: 0;
}
.menu-header_mv {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  background-image: url(../img/menu-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}

/* MenuPAGE Read ----------------------------------------- */
.read-block .box p {
  font-size: clamp(16px,2vw,24px);
}

/* MenuPAGE Menu ----------------------------------------- */
#menu-block {
  margin-bottom: 14rem;
}
.menu-title {
  font-size: clamp(18px, 2vw, 2.8rem);
  padding-bottom: 2.4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--lgreen);
}
.menu-title:before,
.menu-title:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
  cursor: pointer;
}
.menu-title:before:hover,
.menu-title:after:hover {
  cursor: pointer;
}
.menu-title:before {
  top: 40%;
  right: 1.5em;
  transform: rotate(0deg);
}
.menu-title:after {
  top: 40%;
  right: 1.5em;
  transform: rotate(90deg);
  transition: all .5s ease;
}
.menu-title.close:after {
  opacity: 0;
}
.bx-wrapper {
  flex: 1;
}
.menu-wrap {
  width: 64%;
  margin-left: 5.4rem;
}
.menu-wrap h2 {
  font-size: clamp(24px, 4.2vw, 3.6rem);
}
.menu-wrap .sub-txt {
  font-size: clamp(14px, 2vw, 16px);
}
.menu-wrap .sub-txt span:first-child {
  color: rgb(142 52 86);
}
.menu-wrap .sub-txt span:nth-child(2) {
  color: rgb(6 199 85);
}
.menu-tag_box span {
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(13px,1.5vw,14px);
  border: 1px solid var(--dgreen);
  padding: 0.2em 3em;
  margin-right: 1em;
  border-radius: 3px;
}
.menu-list {
  width: 100%;
}
.menu-list ul li {
  padding: 3em 0;
  border-bottom: 1px solid var(--lgreen);
}
.menu-list ul li h3 {
  margin-right: 1em;
  flex: 1;
}
.menu-list ul li h3,
.menu-list ul li p {
  font-size: clamp(16px, 2vw, 20px);
}
.menu-price span {
  font-size: 1.4rem;
}
.menu-line_link {
  font-size: clamp(14px, 2vw, 20px);
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: end;
}
.menu-line_link img {
  width: 1.5em;
  margin-right: 0.5em;
}
/* .menu-list a:before {
  content: "";
  display: inline-block;
  background-image: url(../img/link-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
} */
.menu-list a:after {
  content: "";
  display: inline-block;
  background-image: url(../img/link-icon2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5em;
}
.slider-item img {
  aspect-ratio: 349 / 246;
  object-fit: cover;
}
.menu-title br {
  display: none;
}
.menu-header {
  flex: 1;
}
.menu-header p:first-child {
  margin-right: 1em;
}
.menu-beauty_area,
.menu-beauty_area a {
  display: flex;
  align-items: center;
  width: 120px;
}
.menu-beauty_area a img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .menu-title {
    font-size: clamp(18px, 2.5vw, 2.8rem);
  }
}
@media screen and (max-width: 768px) {
  #menu-header h2:before {
    height: 46px;
  }
  .menu-header_mv {
    height: 200px;
  }
  #menu-block {
    margin-bottom: 8rem;
  }
  .menu-list {
    width: 100%;
  }
  .menu-tag_box {
    margin-bottom: 2rem;
  }
  .menu-tag_box span {
    padding: 0.2em 1em;
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 680px) {
  .menu-title br {
    display: block;
  }
  .menu-title {
    font-size: clamp(17px, 3.6vw, 2.8rem);
  }
  .menu-block_inner {
    flex-direction: column;
  }
  .slick-dotted.slick-slider {
    width: 50%;
    margin: 0 auto 50px;
  }
  .menu-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .menu-wrap h2 {
    text-align: center;
  }
  .menu-header {
    flex-direction: column;
    align-items: inherit;
  }
}
@media screen and (max-width: 576px) {
  .read-block .box p br {
    display: none;
  }
  .slick-dotted.slick-slider {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .menu-header_mv {
    height: 130px;
  }
  .menu-title:before,
  .menu-title:after {
    right: 0;
    width: 20px;
  }
  .menu-title {
    letter-spacing: -0.5px;
  }
  .menu-beauty_area, .menu-beauty_area a {
    width: 80px;
  }
}


/* ----------------------------------------- */
/* Faq */
/* ----------------------------------------- */
#faq-header h2:before {
  background-image: url(../img/faq.png);
  height: 63px;
  left: 0;
}
.faq-accordion_area li section {
  border: 1px solid var(--lgreen);
  border-radius: 5px;
}
.faq-question {
  cursor: pointer;
  font-size: clamp(19px, 3.4vw, 28px);
  padding: 1.5em 3em 0.8em 1.7em;
  transition: all .5s ease;
}
.faq-question span,
.faq-box p span {
  font-size: clamp(19px, 3.4vw, 28px);
  margin-right: 0.5em;
}
.faq-question:before,
.faq-question:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}
.faq-question:before {
  top: 48%;
  right: 1.5em;
  transform: rotate(0deg);
}
.faq-question:after {
  top: 48%;
  right: 1.5em;
  transform: rotate(90deg);
  transition: all .5s ease;
}
.faq-question.close:after {
  opacity: 0;
}
.faq-box {
  display: none;
  font-size: 2.8rem;
  padding: 0 3em 1.5em 1.7em;
}
.faq-box p {
  font-size: clamp(16px, 3.2vw, 24px);
}
@media screen and (max-width: 576px) {
  .faq-question {
    padding: 1.3em 3.5em 0.7em 0.8em;
  }
  .faq-box {
    padding: 0 0.8em 0.7em 0.8em;
  }
  .faq-question:before,
  .faq-question:after {
    right: 1em;
  }
}



/* ----------------------------------------- */
/* Blog */
/* ----------------------------------------- */
.blog-date {
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-right: 1em;
  margin-bottom: 0.5em;
  font-size: clamp(14px, 2vw, 16px);
}
.blog-cate a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--lgreen);
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  padding: 0.2em 2em;
  border: 1px solid var(--lgreen);
  border-radius: 50px;
}
#blog-header h2:before {
  background-image: url(../img/blog.png);
  width: 200px;
  height: 65px;
  left: 0;
}
.blog-list .box ul {
  margin-bottom: 7.2rem;
}
.blog-list .box ul li {
  padding-bottom: 3.6rem;
  margin-bottom: 6.4rem;
  border-bottom: 1px solid var(--lgreen);
}
.blog-list_img {
  width: 23.5%;
  margin-right: 3.3%;
}
.blog-list_img div img {
  aspect-ratio: 258 / 159;
}
.blog-list_txt {
  flex: 1;
}
.blog-wrap .blog-permalink {
  padding-bottom: 1.5em;
  display: block;
  border-bottom: 1px solid var(--lgreen);
}
.blog-ttl {
  font-size: 1.8rem;
  padding: 1.5em 0.5em 0;
}
#blog-list .blog-ttl {
  padding: 1.5em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#blog-list .blog-ttl:after {
  content: "";
  display: inline-block;
  background-image: url(../img/link-icon2.svg); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1em;
  height: 1em;
}
.page-numbers {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.4vw, 18px);
}
.page-numbers:first-child,
.page-numbers:last-child {
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(16px, 1.4vw, 18px);
  display: flex;
  align-items: center;
  gap: 1em;
}
.page-numbers:first-child:before,
.page-numbers:last-child:after {
  content: "";
  display: inline-block;
  background-image: url(../img/link-icon2.svg); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1em;
  height: 1em;
}
.page-numbers:first-child:before {
  transform: scale(-1, 1);
}
.navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 576px) {
  #blog-header h2:before {
    width: 150px;
    height: 45px;
  }
  .blog-list_img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .blog-cate a {
    padding: 0.2em 1em;
  }
  .blog-list .box ul li {
    padding-bottom: 1.6rem;
    margin-bottom: 4.4rem;
  }
}


/* BlogPAGE Single ----------------------------------------- */
.single main {
  margin-bottom: 12rem;
}
#single-header h2 {
  background: none;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  color: var(--black);
  margin-top: 0.5em;
}
.article .container {
  padding-left: 4em;
  max-width: 750px;
}
.article .container p,
.article .container figure {
  margin-bottom: 1em;
}
.article .post-link a {
	background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.4vw, 18px);
}
.post-link a:before,
.post-link a:after {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.post-link_prev a:before {
  background-image: url(../img/link-icon2.svg);
  transform: scale(-1, 1);
  margin-right: 1em;
}
.post-link_next a:after {
  background-image: url(../img/link-icon2.svg);
  margin-left: 1em;
}



/* ----------------------------------------- */
/* Template Parts */
/* ----------------------------------------- */
.ct-box {
  width: 45.5%;
}
.ct-box a{
  font-size: clamp(21px, 2vw,32px);
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  border: 1px solid var(--dgreen);
  padding: 2.2em 1em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-box a img {
  margin-left: 0.5em;
}
@media screen and (max-width: 992px) {
  .ct-box {
    width: 46.5%;
  }
}
@media screen and (max-width: 768px) {
  .ct-box {
    width: 48.5%;
  }
  .ct-box a {
    padding: 1.5em 1em;
  }
  .ct-box a img {
    display: block;
    width: 10%;
  }
}
@media screen and (max-width: 680px) {
  .cta-inner {
    flex-direction: column;
  }
  .ct-box {
    width: 100%;
    margin-bottom: 5%;
  }
  .ct-box a img {
    width: 7%;
  }
}
@media screen and (max-width: 480px) {
  .ct-box a img {
    width: 10%;
  }
}



/* ----------------------------------------- */
/* 404 Page */
/* ----------------------------------------- */
#error-inner a {
  display: block;
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--dgreen);
  padding: 1em;
  width: 16em;
  margin: 0 auto;
}


.slick-dots li button:before {
	display: none;	
}